| @@ -13896,6 +13896,19 @@ const attributionData = { | |||||
| "galeboomer" | "galeboomer" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/chyr/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://twitter.com/draecity/status/1297995544116305921" }, | |||||
| { name: "back.svg", source: "https://twitter.com/draecity/status/1297995544116305921" }, | |||||
| ], | |||||
| authors: [ | |||||
| "draecity" | |||||
| ], | |||||
| owners: [ | |||||
| "chyr" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/dildos/chance/", | prefix: "./media/dildos/chance/", | ||||
| @@ -19075,6 +19088,14 @@ const attributionData = { | |||||
| "name": "Galeboomer", | "name": "Galeboomer", | ||||
| "url": "https://www.furaffinity.net/user/galeboomer/" | "url": "https://www.furaffinity.net/user/galeboomer/" | ||||
| }, | }, | ||||
| "chyr": { | |||||
| "name": "Chyr", | |||||
| "url": "https://www.furaffinity.net/user/chyr/" | |||||
| }, | |||||
| "draecity": { | |||||
| "name": "Draecity", | |||||
| "url": "https://twitter.com/draecity/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -36206,6 +36206,39 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Chyr", species: ["fox"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(5 + 9/12, "feet"), | |||||
| weight: math.unit(120, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/chyr/front.svg", | |||||
| extra: 1323/1254, | |||||
| bottom: 63/1386 | |||||
| } | |||||
| }, | |||||
| back: { | |||||
| height: math.unit(5 + 9/12, "feet"), | |||||
| weight: math.unit(120, "lb"), | |||||
| name: "Back", | |||||
| image: { | |||||
| source: "./media/characters/chyr/back.svg", | |||||
| extra: 1323/1252, | |||||
| bottom: 48/1371 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(5 + 9/12, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||