| @@ -21907,6 +21907,19 @@ const attributionData = { | |||||
| "va0027" | "va0027" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/spade/", | |||||
| files: [ | |||||
| { name: "standard.svg", source: "https://www.furaffinity.net/view/46511242/" }, | |||||
| { name: "disguised.svg", source: "https://www.furaffinity.net/view/46511242/" }, | |||||
| ], | |||||
| authors: [ | |||||
| "spadethetick" | |||||
| ], | |||||
| owners: [ | |||||
| "spadethetick" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -30333,6 +30346,10 @@ const attributionData = { | |||||
| "name": "Bookman", | "name": "Bookman", | ||||
| "url": "https://twitter.com/BookmanArt" | "url": "https://twitter.com/BookmanArt" | ||||
| }, | }, | ||||
| "spadethetick": { | |||||
| "name": "SpadeTheTick", | |||||
| "url": "https://www.furaffinity.net/user/spadethetick/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -63035,6 +63035,37 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] }, | |||||
| { | |||||
| standard: { | |||||
| height: math.unit(1 + 5/12, "feet"), | |||||
| name: "Standard", | |||||
| image: { | |||||
| source: "./media/characters/spade/standard.svg", | |||||
| extra: 1794/1703, | |||||
| bottom: 115/1909 | |||||
| } | |||||
| }, | |||||
| disguised: { | |||||
| height: math.unit(1 + 5/12, "feet"), | |||||
| name: "Disguised", | |||||
| image: { | |||||
| source: "./media/characters/spade/disguised.svg", | |||||
| extra: 1794/1700, | |||||
| bottom: 98/1892 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(1 + 5/12, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||