From dd448ff96811f9a4a649dcb397263033db90469d Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 6 Feb 2020 23:00:26 -0500 Subject: [PATCH] Add March --- media/LICENSES.md | 8 ++ media/characters/march/front.svg | 186 +++++++++++++++++++++++++++++++ presets/characters.js | 33 ++++++ 3 files changed, 227 insertions(+) create mode 100644 media/characters/march/front.svg diff --git a/media/LICENSES.md b/media/LICENSES.md index a830bbae..16275413 100644 --- a/media/LICENSES.md +++ b/media/LICENSES.md @@ -32,3 +32,11 @@ https://www.furaffinity.net/view/16704878/ * front.svg * back.svg + +## March + +https://www.deviantart.com/natsuakai + +https://www.deviantart.com/natsuakai/art/Comm-Big-Guy-558510348 + +* front.svg \ No newline at end of file diff --git a/media/characters/march/front.svg b/media/characters/march/front.svg new file mode 100644 index 00000000..366dda92 --- /dev/null +++ b/media/characters/march/front.svg @@ -0,0 +1,186 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 1c724605..40c98699 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -107,6 +107,35 @@ function makeSofia() { return entity; } +function makeMarch() { + const views = { + front: { + attributes: { + height: { + name: "Height", + power: 1, + type: "length", + base: math.unit(7, "feet") + }, + weight: { + name: "Weight", + power: 3, + type: "mass", + base: math.unit(100, "kg") + } + }, + image: { + source: "./media/characters/march/front.svg" + }, + name: "Front" + } + }; + + const entity = makeEntity("March", "March-Dragon", views); + entity.views.front.height = math.unit(2.98, "km"); + return entity; +} + function makeMan() { const views = { body: { @@ -144,6 +173,10 @@ function makeCharacters() { name: "Sofia", constructor: makeSofia }); + results.push({ + name: "March", + constructor: makeMarch + }); results.push({ name: "Normal man", constructor: makeMan