diff --git a/media/LICENSES.md b/media/LICENSES.md index a42f0fe9..a167492f 100644 --- a/media/LICENSES.md +++ b/media/LICENSES.md @@ -55,5 +55,14 @@ https://twitter.com/Citrinelle https://www.furaffinity.net/view/34619004/ +* front.svg +* back.svg + +## Manny + +https://www.furaffinity.net/user/sixsydes + +https://www.furaffinity.net/view/16786820/ + * front.svg * back.svg \ No newline at end of file diff --git a/media/characters/manny/back.svg b/media/characters/manny/back.svg new file mode 100644 index 00000000..5966bddf --- /dev/null +++ b/media/characters/manny/back.svg @@ -0,0 +1,79 @@ + + + + + + + diff --git a/media/characters/manny/front.svg b/media/characters/manny/front.svg new file mode 100644 index 00000000..8ff59cf1 --- /dev/null +++ b/media/characters/manny/front.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index a7794574..1d63108d 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -214,6 +214,55 @@ function makeOkuri() { return entity; } +function makeManny() { + 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/manny/front.svg" + }, + name: "Front" + }, + back: { + 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/manny/back.svg" + }, + name: "Back" + } + }; + + const entity = makeEntity("Manny", "Dialuca01", views); + entity.views.front.height = math.unit(78, "feet"); + return entity; +} + function makeMan() { const views = { body: { @@ -263,6 +312,10 @@ function makeCharacters() { name: "Okuri", constructor: makeOkuri }); + results.push({ + name: "Manny", + constructor: makeManny + }); results.push({ name: "Normal man", constructor: makeMan