| @@ -19598,6 +19598,18 @@ const attributionData = { | |||||
| "cilenomon" | "cilenomon" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/sen-mink/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/41314549/" } | |||||
| ], | |||||
| authors: [ | |||||
| "soft--dogs" | |||||
| ], | |||||
| owners: [ | |||||
| "venomhydra" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -27243,6 +27255,14 @@ const attributionData = { | |||||
| "name": "DaFka", | "name": "DaFka", | ||||
| "url": "https://www.furaffinity.net/user/dafka/" | "url": "https://www.furaffinity.net/user/dafka/" | ||||
| }, | }, | ||||
| "soft--dogs": { | |||||
| "name": "soft--dogs", | |||||
| "url": "https://www.furaffinity.net/user/soft--dogs/" | |||||
| }, | |||||
| "venomhydra": { | |||||
| "name": "venomhydra", | |||||
| "url": "https://www.furaffinity.net/user/venomhydra/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -2053,6 +2053,10 @@ const speciesData = { | |||||
| name: "Joltik", | name: "Joltik", | ||||
| parents: ["pokemon", "insect"] | parents: ["pokemon", "insect"] | ||||
| }, | }, | ||||
| "mink": { | |||||
| name: "Mink", | |||||
| parents: ["mustelid"] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -53577,6 +53581,28 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(5, "feet"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/sen-mink/front.svg", | |||||
| extra: 1727/1675, | |||||
| bottom: 35/1762 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(5, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||