| @@ -12449,6 +12449,19 @@ const attributionData = { | |||||
| "ghostskunk" | "ghostskunk" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/arimphae/", | |||||
| files: [ | |||||
| { name: "dragon.svg", source: "https://www.furaffinity.net/view/38148664/" }, | |||||
| { name: "drake.svg", source: "https://www.furaffinity.net/view/38148664/" }, | |||||
| ], | |||||
| authors: [ | |||||
| "obligatecannibal" | |||||
| ], | |||||
| owners: [ | |||||
| "eldritchheart" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/dildos/chance/", | prefix: "./media/dildos/chance/", | ||||
| @@ -17168,6 +17181,14 @@ const attributionData = { | |||||
| "name": "Chub-United", | "name": "Chub-United", | ||||
| "url": "https://www.furaffinity.net/user/chub-united/" | "url": "https://www.furaffinity.net/user/chub-united/" | ||||
| }, | }, | ||||
| "eldritchheart": { | |||||
| "name": "EldritchHeart", | |||||
| "url": "https://www.furaffinity.net/user/eldritchheart/" | |||||
| }, | |||||
| "obligatecannibal": { | |||||
| "name": "ObligateCannibal", | |||||
| "url": "https://www.furaffinity.net/user/obligatecannibal" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -32153,6 +32153,43 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Arimphae", species: ["dragon"], tags: ["feral"] }, | |||||
| { | |||||
| dragon: { | |||||
| height: math.unit(26, "feet"), | |||||
| weight: math.unit(36, "tons"), | |||||
| name: "Dragon", | |||||
| image: { | |||||
| source: "./media/characters/arimphae/dragon.svg", | |||||
| extra: 1574/983, | |||||
| bottom: 357/1931 | |||||
| } | |||||
| }, | |||||
| drake: { | |||||
| height: math.unit(9, "feet"), | |||||
| weight: math.unit(1.5, "tons"), | |||||
| name: "Drake", | |||||
| image: { | |||||
| source: "./media/characters/arimphae/drake.svg", | |||||
| extra: 1120/925, | |||||
| bottom: 435/1555 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Small", | |||||
| height: math.unit(26*5/9, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(26, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||