| @@ -21457,6 +21457,18 @@ const attributionData = { | |||||
| "andythetanuki" | "andythetanuki" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/vix-titan/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/46211307/" } | |||||
| ], | |||||
| authors: [ | |||||
| "sparks220stars" | |||||
| ], | |||||
| owners: [ | |||||
| "gigavulpine" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -29811,6 +29823,14 @@ const attributionData = { | |||||
| "name": "Apricot", | "name": "Apricot", | ||||
| "url": "https://twitter.com/ApricotSammi" | "url": "https://twitter.com/ApricotSammi" | ||||
| }, | }, | ||||
| "gigavulpine": { | |||||
| "name": "GigaVulpine", | |||||
| "url": "https://www.furaffinity.net/user/gigavulpine/" | |||||
| }, | |||||
| "sparks220stars": { | |||||
| "name": "sparks220stars", | |||||
| "url": "https://www.deviantart.com/sparks220stars" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -61135,6 +61135,45 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(7, "feet"), | |||||
| weight: math.unit(250, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/vix-titan/front.svg", | |||||
| extra: 460/428, | |||||
| bottom: 15/475 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(7, "feet"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Giant", | |||||
| height: math.unit(1500, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Mega", | |||||
| height: math.unit(10, "miles") | |||||
| }, | |||||
| { | |||||
| name: "Giga", | |||||
| height: math.unit(150, "miles") | |||||
| }, | |||||
| { | |||||
| name: "Tera", | |||||
| height: math.unit(144000, "miles") | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||