diff --git a/media/attribution.js b/media/attribution.js index d2858005..676efa2b 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -9844,6 +9844,18 @@ const attributionData = { "angelthecatgirl" ] }, + { + prefix: "./media/characters/pixie/", + files: [ + { name: "front.svg", source: null, nsfw: true }, + ], + authors: [ + "angelthecatgirl" + ], + owners: [ + "angelthecatgirl" + ] + }, //characters { prefix: "./media/dildos/chance/", diff --git a/media/characters/pixie/front.svg b/media/characters/pixie/front.svg new file mode 100644 index 00000000..632f8984 --- /dev/null +++ b/media/characters/pixie/front.svg @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 713a50e9..ebd958d0 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -498,6 +498,10 @@ const speciesData = { name: "Cowgirl", parents: ["mammal"] }, + "pony": { + name: "Pony", + parents: ["horse"] + }, @@ -23472,7 +23476,8 @@ characterMakers.push(() => makeCharacter( [ { name: "Normal", - height: math.unit(7 + 2/12, "feet") + height: math.unit(7 + 2/12, "feet"), + default: true }, { name: "Macro", @@ -23526,7 +23531,35 @@ characterMakers.push(() => makeCharacter( [ { name: "Normal", - height: math.unit(5, "feet") + height: math.unit(5, "feet"), + default: true + }, + ] +)) + +characterMakers.push(() => makeCharacter( + { name: "Pixie", species: ["pony"], tags: ["anthro"] }, + { + front: { + height: math.unit(4 + 6/12, "feet"), + weight: math.unit(80, "lb"), + name: "Front", + image: { + source: "./media/characters/pixie/front.svg", + extra: 1924/1825, + bottom: 22.4/1946 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(4 + 6/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(40, "feet") }, ] ))