From b6e29f117ec6bd7040828d71360f0a547b05ea1e Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 7 Feb 2020 13:47:13 -0500 Subject: [PATCH] Add Noir --- media/LICENSES.md | 8 +++ media/characters/noir/front.svg | 89 +++++++++++++++++++++++++++++++++ presets/characters.js | 33 ++++++++++++ 3 files changed, 130 insertions(+) create mode 100644 media/characters/noir/front.svg diff --git a/media/LICENSES.md b/media/LICENSES.md index 8096f4ad..a42f0fe9 100644 --- a/media/LICENSES.md +++ b/media/LICENSES.md @@ -41,6 +41,14 @@ https://www.deviantart.com/natsuakai/art/Comm-Big-Guy-558510348 * front.svg +## Noir + +https://www.furaffinity.net/user/kclt + +https://www.furaffinity.net/view/28167943/ + +* front.svg + ## Okuri https://twitter.com/Citrinelle diff --git a/media/characters/noir/front.svg b/media/characters/noir/front.svg new file mode 100644 index 00000000..3b10b3c3 --- /dev/null +++ b/media/characters/noir/front.svg @@ -0,0 +1,89 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index c004ce75..a7794574 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -136,6 +136,35 @@ function makeMarch() { return entity; } +function makeNoir() { + const views = { + front: { + attributes: { + height: { + name: "Height", + power: 1, + type: "length", + base: math.unit(6, "feet") + }, + weight: { + name: "Weight", + power: 3, + type: "mass", + base: math.unit(60, "kg") + } + }, + image: { + source: "./media/characters/noir/front.svg" + }, + name: "Front" + } + }; + + const entity = makeEntity("Noir", "March-Dragon", views); + entity.views.front.height = math.unit(2.5, "km"); + return entity; +} + function makeOkuri() { const views = { front: { @@ -226,6 +255,10 @@ function makeCharacters() { name: "March", constructor: makeMarch }); + results.push({ + name: "Noir", + constructor: makeNoir + }); results.push({ name: "Okuri", constructor: makeOkuri