| @@ -22016,6 +22016,18 @@ const attributionData = { | |||||
| "trueneutral" | "trueneutral" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/moonbeam/", | |||||
| files: [ | |||||
| { name: "side.svg", source: "https://www.furaffinity.net/view/45489982/" } | |||||
| ], | |||||
| authors: [ | |||||
| "enigma-arts" | |||||
| ], | |||||
| owners: [ | |||||
| "ussaquamarine" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -30470,6 +30482,14 @@ const attributionData = { | |||||
| "name": "BadLuxLad", | "name": "BadLuxLad", | ||||
| "url": "https://twitter.com/BadLuxLad" | "url": "https://twitter.com/BadLuxLad" | ||||
| }, | }, | ||||
| "enigma-arts": { | |||||
| "name": "Enigma-Arts", | |||||
| "url": "https://www.furaffinity.net/user/enigma-arts/" | |||||
| }, | |||||
| "ussaquamarine": { | |||||
| "name": "USSAquamarine", | |||||
| "url": "https://www.furaffinity.net/user/ussaquamarine/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -2329,6 +2329,10 @@ const speciesData = { | |||||
| name: "Shiny", | name: "Shiny", | ||||
| parents: ["pokemon"] | parents: ["pokemon"] | ||||
| }, | }, | ||||
| "latex": { | |||||
| name: "Latex", | |||||
| parents: [] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -63504,6 +63508,29 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] }, | |||||
| { | |||||
| side: { | |||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(115, "lb"), | |||||
| name: "Side", | |||||
| image: { | |||||
| source: "./media/characters/moonbeam/side.svg", | |||||
| extra: 839/485, | |||||
| bottom: 60/899 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(6, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||