| @@ -20876,6 +20876,18 @@ const attributionData = { | |||||
| "pyrow" | "pyrow" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/rexx/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.weasyl.com/~rexxwolfe/submissions/891277/beach-pic-individual" } | |||||
| ], | |||||
| authors: [ | |||||
| "coonerart" | |||||
| ], | |||||
| owners: [ | |||||
| "rexxwolfe" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -29097,6 +29109,14 @@ const attributionData = { | |||||
| "name": "Squillafrixum", | "name": "Squillafrixum", | ||||
| "url": "https://www.furaffinity.net/user/squillafrixum/" | "url": "https://www.furaffinity.net/user/squillafrixum/" | ||||
| }, | }, | ||||
| "coonerart": { | |||||
| "name": "Cooner Arts", | |||||
| "url": "https://twitter.com/coonerArt" | |||||
| }, | |||||
| "rexxwolfe": { | |||||
| "name": "Rexxwolfe", | |||||
| "url": "https://twitter.com/Rexxwolfe" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -58482,6 +58482,45 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Rexx", species: ["wolf"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(8, "feet"), | |||||
| weight: math.unit(760, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/rexx/front.svg", | |||||
| extra: 786/750, | |||||
| bottom: 17/803 | |||||
| }, | |||||
| extraAttributes: { | |||||
| "pawLength": { | |||||
| name: "Paw Length", | |||||
| power: 1, | |||||
| type: "length", | |||||
| base: math.unit(27, "inches") | |||||
| }, | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Micro", | |||||
| height: math.unit(2, "inches") | |||||
| }, | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(8, "feet"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Macro", | |||||
| height: math.unit(150, "feet") | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||