From ae1de101d6ffc6bb19582aff09593eeb63af1893 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 7 Sep 2020 19:13:20 -0400 Subject: [PATCH] Add Cat's Nickit form --- media/attribution.js | 12 + media/characters/cat-nickit/side.svg | 587 +++++++++++++++++++++++++++ presets/characters.js | 47 +++ 3 files changed, 646 insertions(+) create mode 100644 media/characters/cat-nickit/side.svg diff --git a/media/attribution.js b/media/attribution.js index 3045730d..9e3d5129 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -11255,6 +11255,18 @@ const attributionData = { "cattinypaws" ] }, + { + prefix: "./media/characters/cat-nickit/", + files: [ + { name: "side.svg", source: null } + ], + authors: [ + "cattinypaws" + ], + owners: [ + "cattinypaws" + ] + }, //characters { prefix: "./media/dildos/chance/", diff --git a/media/characters/cat-nickit/side.svg b/media/characters/cat-nickit/side.svg new file mode 100644 index 00000000..374e74e8 --- /dev/null +++ b/media/characters/cat-nickit/side.svg @@ -0,0 +1,587 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index b09c528a..947da863 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -1346,6 +1346,11 @@ const speciesData = { name: "Kaiju", parents: ["monster"] }, + "nickit": { + name: "Nickit", + parents: ["pokemon", "cat"] + }, + } //species @@ -28470,6 +28475,48 @@ characterMakers.push(() => makeCharacter( }, ] )) + +characterMakers.push(() => makeCharacter( + { name: "Cat (Nickit)", species: ["nickit"], tags: ["feral"] }, + { + side: { + height: math.unit(2, "feet"), + name: "Side", + image: { + source: "./media/characters/cat-nickit/side.svg", + extra: 1980/1585, + bottom: 102/2082 + } + }, + }, + [ + { + name: "Really small", + height: math.unit(1, "nm") + }, + { + name: "Micro", + height: math.unit(1, "inch") + }, + { + name: "Normal", + height: math.unit(2, "feet"), + default: true + }, + { + name: "Dyanmaxed", + height: math.unit(65, "feet") + }, + { + name: "Macro", + height: math.unit(150, "feet") + }, + { + name: "Macro+", + height: math.unit(900, "feet") + }, + ] +)) //characters function makeCharacters() {