diff --git a/media/attribution.js b/media/attribution.js index f462a80e..dc2c99ba 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -10264,6 +10264,18 @@ const attributionData = { "bluefiremarkii" ] }, + { + prefix: "./media/characters/zeus/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/34276370/", nsfw: true } + ], + authors: [ + "thebigbadwolf01" + ], + owners: [ + "fox3087" + ] + }, //characters { prefix: "./media/dildos/chance/", @@ -14168,6 +14180,14 @@ const attributionData = { "name": "BluefiremarkII", "url": "https://www.furaffinity.net/user/bluefiremarkii/", }, + "fox3087": { + "name": "fox3087", + "url": "https://www.furaffinity.net/user/fox3087/", + }, + "thebigbadwolf01": { + "name": "thebigbadwolf01", + "url": "https://www.furaffinity.net/user/thebigbadwolf01", + }, } } diff --git a/media/characters/zeus/front.svg b/media/characters/zeus/front.svg new file mode 100644 index 00000000..f53c4763 --- /dev/null +++ b/media/characters/zeus/front.svg @@ -0,0 +1,643 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index f7cb306b..33270205 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -1274,6 +1274,10 @@ const speciesData = { name: "Oni", parents: ["monster"] }, + "pegasus": { + name: "Pegasus", + parents: ["horse"] + }, @@ -25515,6 +25519,49 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Zeus", species: ["pegasus"], tags: ["anthro"] }, + { + front: { + height: math.unit(12, "feet"), + weight: math.unit(1, "ton"), + capacity: math.unit(660000, "gallons"), + name: "Front", + image: { + source: "./media/characters/zeus/front.svg", + extra: 5005/4717, + bottom: 363/5388 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(12, "feet") + }, + { + name: "Preferred Size", + height: math.unit(0.5, "miles"), + default: true + }, + { + name: "Giga Horse", + height: math.unit(300, "miles") + }, + { + name: "Riding Planets", + height: math.unit(30, "megameters") + }, + { + name: "Cosmic Giant", + height: math.unit(3, "zettameters") + }, + { + name: "Breeding God", + height: math.unit(9.92e22, "yottameters") + }, + ] +))