| @@ -14822,6 +14822,18 @@ const attributionData = { | |||||
| "estina" | "estina" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/neesha/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/34730068/" } | |||||
| ], | |||||
| authors: [ | |||||
| "kullizilla" | |||||
| ], | |||||
| owners: [ | |||||
| "pilpil" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/dildos/chance/", | prefix: "./media/dildos/chance/", | ||||
| @@ -20289,6 +20301,18 @@ const attributionData = { | |||||
| "name": "DemonNyuu", | "name": "DemonNyuu", | ||||
| "url": "https://www.furaffinity.net/user/demonnyuu" | "url": "https://www.furaffinity.net/user/demonnyuu" | ||||
| }, | }, | ||||
| "kyeraangelus": { | |||||
| "name": "KyeraAngelus", | |||||
| "url": "https://twitter.com/KyeraAngelus" | |||||
| }, | |||||
| "kullizilla": { | |||||
| "name": "Kullizilla", | |||||
| "url": "https://twitter.com/Kullizilla/" | |||||
| }, | |||||
| "pilpil": { | |||||
| "name": "pilpil", | |||||
| "url": "https://www.furaffinity.net/user/pilpil/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -1651,6 +1651,10 @@ const speciesData = { | |||||
| name: "Caribou", | name: "Caribou", | ||||
| parents: ["deer"] | parents: ["deer"] | ||||
| }, | }, | ||||
| "gnoll": { | |||||
| name: "Gnoll", | |||||
| parents: ["hyena"] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -39268,6 +39272,32 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Neesha", species: ["gnoll"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(2.6, "meters"), | |||||
| weight: math.unit(900, "kg"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/neesha/front.svg", | |||||
| extra: 1803/1653, | |||||
| bottom: 128/1931 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(2.6, "meters"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Macro", | |||||
| height: math.unit(50, "meters") | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||