Also fixes unwanted changes to the Illustrator scriptmaster
| @@ -21066,6 +21066,18 @@ const attributionData = { | |||||
| "myriad" | "myriad" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/serpentus/", | |||||
| files: [ | |||||
| { name: "standing.svg", source: "https://twitter.com/TheRoyalGryphon/status/1512218872077824002" } | |||||
| ], | |||||
| authors: [ | |||||
| "theroyalgryphon" | |||||
| ], | |||||
| owners: [ | |||||
| "serpentus" | |||||
| ] | |||||
| }, | |||||
| { | { | ||||
| prefix: "./media/characters/serpentus/", | prefix: "./media/characters/serpentus/", | ||||
| files: [ | files: [ | ||||
| @@ -26533,10 +26545,6 @@ const attributionData = { | |||||
| "name": "Algier", | "name": "Algier", | ||||
| "url": "https://www.f-list.net/c/algier/", | "url": "https://www.f-list.net/c/algier/", | ||||
| }, | }, | ||||
| "serpentus": { | |||||
| "name": "Serpentus", | |||||
| "url": "https://www.furaffinity.net/user/serpentus", | |||||
| }, | |||||
| "echorion": { | "echorion": { | ||||
| "name": "Echorion", | "name": "Echorion", | ||||
| "url": "https://t.me/Echorion", | "url": "https://t.me/Echorion", | ||||
| @@ -31637,6 +31645,10 @@ const attributionData = { | |||||
| "name": "TonySquee", | "name": "TonySquee", | ||||
| "url": "https://www.furaffinity.net/user/tonysquee" | "url": "https://www.furaffinity.net/user/tonysquee" | ||||
| }, | }, | ||||
| "theroyalgryphon": { | |||||
| "name": "TheRoyalGryphon", | |||||
| "url": "https://twitter.com/TheRoyalGryphon" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -59882,8 +59882,19 @@ characterMakers.push(() => makeCharacter( | |||||
| characterMakers.push(() => makeCharacter( | characterMakers.push(() => makeCharacter( | ||||
| { name: "Serpentus", species: ["snake"], tags: ["anthro"] }, | { name: "Serpentus", species: ["snake"], tags: ["anthro"] }, | ||||
| { | { | ||||
| standing: { | |||||
| height: math.unit(180, "cm"), | |||||
| weight: math.unit(185, "lb"), | |||||
| name: "Standing", | |||||
| image: { | |||||
| source: "./media/characters/serpentus/standing.svg", | |||||
| extra: 882/878, | |||||
| bottom: 16/898 | |||||
| } | |||||
| }, | |||||
| sitting: { | sitting: { | ||||
| height: math.unit(0.8, "meter"), | height: math.unit(0.8, "meter"), | ||||
| weight: math.unit(155, "lb"), | |||||
| name: "Sitting", | name: "Sitting", | ||||
| image: { | image: { | ||||
| source: "./media/characters/serpentus/sitting.svg", | source: "./media/characters/serpentus/sitting.svg", | ||||
| @@ -59895,7 +59906,7 @@ characterMakers.push(() => makeCharacter( | |||||
| [ | [ | ||||
| { | { | ||||
| name: "Normal", | name: "Normal", | ||||
| height: math.unit(0.8, "meter"), | |||||
| height: math.unit(1.8, "meter"), | |||||
| default: true | default: true | ||||
| }, | }, | ||||
| ] | ] | ||||
| @@ -8,17 +8,17 @@ settings = [ | |||||
| { | { | ||||
| name: "Light", | name: "Light", | ||||
| color: 0x4d, | color: 0x4d, | ||||
| threshold: 64 | |||||
| threshold: 128 | |||||
| }, | }, | ||||
| { | { | ||||
| name: "Medium", | name: "Medium", | ||||
| color: 0x33, | color: 0x33, | ||||
| threshold: 32 | |||||
| threshold: 96 | |||||
| }, | }, | ||||
| { | { | ||||
| name: "Dark", | name: "Dark", | ||||
| color: 0x1a, | color: 0x1a, | ||||
| threshold: 16 | |||||
| threshold: 64 | |||||
| }, | }, | ||||
| { | { | ||||
| name: "Black", | name: "Black", | ||||