From e09909d5a6f43a5e396d576f6941a9df8a3ce4b6 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 5 Nov 2021 14:30:54 -0400 Subject: [PATCH] Add Siz Also remove an unwanted log statement --- macrovision.js | 2 - media/attribution.js | 16 + media/characters/siz/back.svg | 1058 +++++++++++++++++++++++++++++++++ presets/characters.js | 46 ++ 4 files changed, 1120 insertions(+), 2 deletions(-) create mode 100644 media/characters/siz/back.svg diff --git a/macrovision.js b/macrovision.js index 978bc93c..aeab3a6a 100644 --- a/macrovision.js +++ b/macrovision.js @@ -630,8 +630,6 @@ function updateRatios() { const R2 = math.subtract(math.subtract(R, prevSelectedEntity.currentView.height), math.unit(y2, "meters")) const h = math.add(selectedEntity.currentView.height, math.unit(y1, "meters")) - console.log(R, R2, h) - const first = math.pow(math.add(R, h), 2) const second = math.pow(R2, 2) diff --git a/media/attribution.js b/media/attribution.js index bc43357e..bcee8b7e 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -18589,6 +18589,18 @@ const attributionData = { "not-dead" ] }, + { + prefix: "./media/characters/siz/", + files: [ + { name: "back.svg", source: "https://twitter.com/Platinumeggsart/status/1453500050500464645?s=20", nsfw: true } + ], + authors: [ + "plat" + ], + owners: [ + "filthyizzy" + ] + }, //characters { prefix: "./media/fiction/halo/halo/", @@ -25670,6 +25682,10 @@ const attributionData = { "name": "NOT DEAD", "url": "https://notdeadlinks.carrd.co/" }, + "filthyizzy": { + "name": "Izzy", + "url": "https://twitter.com/filthyizzy" + }, } } diff --git a/media/characters/siz/back.svg b/media/characters/siz/back.svg new file mode 100644 index 00000000..a561ac0b --- /dev/null +++ b/media/characters/siz/back.svg @@ -0,0 +1,1058 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index ff2cb0e3..487a6b98 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -1930,6 +1930,10 @@ const speciesData = { name: "Viper", parents: ["snake"] }, + "cinderace": { + name: "Cinderace", + parents: ["pokemon", "rabbit"] + }, } //species @@ -50303,6 +50307,48 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Siz", species: ["cinderace"], tags: ["anthro"] }, + { + back: { + height: math.unit(6, "feet"), + weight: math.unit(350, "lb"), + name: "Back", + image: { + source: "./media/characters/siz/back.svg", + extra: 1449/1274, + bottom: 13/1462 + } + }, + }, + [ + { + name: "Over-Overcompressed", + height: math.unit(8, "feet") + }, + { + name: "Overcompressed", + height: math.unit(32, "feet") + }, + { + name: "Compressed", + height: math.unit(128, "feet"), + default: true + }, + { + name: "Half-Compressed", + height: math.unit(512, "feet") + }, + { + name: "Quarter-Compressed", + height: math.unit(2048, "feet") + }, + { + name: "Uncompressed?", + height: math.unit(8192, "feet") + }, + ] +)) //characters function makeCharacters() {