diff --git a/media/attribution.js b/media/attribution.js index a5990ff7..7e120070 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -3620,6 +3620,35 @@ const attributionData = { "enormouse" ] }, + { + prefix: "./media/characters/pia-jr/", + files: [ + { name: "front.svg", source: null }, + { name: "hand.svg", source: null }, + { name: "paw.svg", source: null }, + ], + authors: [ + "calheb-db" + ], + owners: [ + "ziralkia" + ] + }, + { + prefix: "./media/characters/pia-sr/", + files: [ + { name: "front.svg", source: null }, + { name: "back.svg", source: null }, + { name: "hand.svg", source: null }, + { name: "foot.svg", source: null }, + ], + authors: [ + "jaeh" + ], + owners: [ + "ziralkia" + ] + }, { prefix: "./media/characters/pianostrong/", files: [ @@ -7072,6 +7101,10 @@ const attributionData = { "name": "Ziralkia", "url": "https://www.furaffinity.net/user/ziralkia/", }, + "calheb-db": { + "name": "Calheb-DB", + "url": "https://www.furaffinity.net/user/calheb-db", + }, } } diff --git a/media/characters/pia-jr/front.svg b/media/characters/pia-jr/front.svg new file mode 100644 index 00000000..a9630da3 --- /dev/null +++ b/media/characters/pia-jr/front.svg @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/pia-jr/hand.svg b/media/characters/pia-jr/hand.svg new file mode 100644 index 00000000..7f32b3d4 --- /dev/null +++ b/media/characters/pia-jr/hand.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/media/characters/pia-jr/paw.svg b/media/characters/pia-jr/paw.svg new file mode 100644 index 00000000..52865487 --- /dev/null +++ b/media/characters/pia-jr/paw.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + diff --git a/media/characters/pia-sr/back.svg b/media/characters/pia-sr/back.svg new file mode 100644 index 00000000..3d006b8f --- /dev/null +++ b/media/characters/pia-sr/back.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + diff --git a/media/characters/pia-sr/foot.svg b/media/characters/pia-sr/foot.svg new file mode 100644 index 00000000..fac7c3b7 --- /dev/null +++ b/media/characters/pia-sr/foot.svg @@ -0,0 +1,46 @@ + + + + + + + + + + diff --git a/media/characters/pia-sr/front.svg b/media/characters/pia-sr/front.svg new file mode 100644 index 00000000..27fea6c8 --- /dev/null +++ b/media/characters/pia-sr/front.svg @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/pia-sr/hand.svg b/media/characters/pia-sr/hand.svg new file mode 100644 index 00000000..dc886f14 --- /dev/null +++ b/media/characters/pia-sr/hand.svg @@ -0,0 +1,58 @@ + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index ade57cb9..b992347c 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -12884,6 +12884,119 @@ characterMakers["Shayla"] = () => { ) }; +characterMakers["Pia Jr."] = () => { + return makeCharacter( + "Pia Jr.", + "Ziralkia", + { + front: { + height: math.unit(2.2, "m"), + weight: math.unit(120, "kg"), + name: "Front", + image: { + source: "./media/characters/pia-jr/front.svg", + extra: 1000/970 * (1 / (1 - 0.035)), + bottom: 0.035 + } + }, + hand: { + height: math.unit(0.759 * 7.21 / 6, "feet"), + name: "Hand", + image: { + source: "./media/characters/pia-jr/hand.svg" + } + }, + paw: { + height: math.unit(1.185 * 7.21 / 6, "feet"), + name: "Paw", + image: { + source: "./media/characters/pia-jr/paw.svg" + } + }, + }, + [ + { + name: "Micro", + height: math.unit(1.2, "cm") + }, + { + name: "Normal", + height: math.unit(2.2, "m"), + default: true + }, + { + name: "Macro", + height: math.unit(180, "m") + }, + { + name: "Megamacro", + height: math.unit(420, "km") + }, + ] + ) +}; + +characterMakers["Pia Sr."] = () => { + return makeCharacter( + "Pia Sr.", + "Ziralkia", + { + front: { + height: math.unit(2, "m"), + weight: math.unit(115, "kg"), + name: "Front", + image: { + source: "./media/characters/pia-sr/front.svg", + extra: 760/730 * (1 / (1 - 0.015)), + bottom: 0.015 + } + }, + back: { + height: math.unit(2, "m"), + weight: math.unit(115, "kg"), + name: "Back", + image: { + source: "./media/characters/pia-sr/back.svg", + extra: 760/730 * (1 / (1 - 0.01)), + bottom: 0.01 + } + }, + hand: { + height: math.unit(0.89 * 6.56 / 6, "feet"), + name: "Hand", + image: { + source: "./media/characters/pia-sr/hand.svg" + } + }, + foot: { + height: math.unit(1.83, "feet"), + name: "Foot", + image: { + source: "./media/characters/pia-sr/foot.svg" + } + }, + }, + [ + { + name: "Micro", + height: math.unit(88, "mm") + }, + { + name: "Normal", + height: math.unit(2, "m"), + default: true + }, + { + name: "Macro", + height: math.unit(200, "m") + }, + { + name: "Megamacro", + height: math.unit(420, "km") + }, + ] + ) +}; function makeCharacters() { const results = [];