From 29b70e6622dc7145cd56dce166d2a85798705989 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 27 Feb 2020 14:09:07 -0500 Subject: [PATCH] Add Sentri --- media/attribution.js | 32 +++++++ media/characters/sentri/front-alt.svg | 110 +++++++++++++++++++++ media/characters/sentri/front.svg | 133 ++++++++++++++++++++++++++ presets/characters.js | 42 +++++++- 4 files changed, 316 insertions(+), 1 deletion(-) create mode 100644 media/characters/sentri/front-alt.svg create mode 100644 media/characters/sentri/front.svg diff --git a/media/attribution.js b/media/attribution.js index 5020187f..76253d9d 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -883,6 +883,30 @@ const attributionData = { "xelchew" ] }, + { + prefix: "./media/characters/sentri/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/20773611/" } + ], + authors: [ + "hakunaro" + ], + owners: [ + "sentri" + ] + }, + { + prefix: "./media/characters/sentri/", + files: [ + { name: "front-alt.svg", source: "https://www.furaffinity.net/view/26222143/" } + ], + authors: [ + "sentri" + ], + owners: [ + "sentri" + ] + }, { prefix: "./media/characters/sofia/", files: [ @@ -1950,6 +1974,14 @@ const attributionData = { "name": "Arcturax", "url": "https://www.furaffinity.net/user/arcturax", }, + "hakunaro": { + "name": "Hakunaro", + "url": "https://www.furaffinity.net/user/hakunaro", + }, + "sentri": { + "name": "Sentri", + "url": "https://www.furaffinity.net/user/sparkfloof/", + }, } } diff --git a/media/characters/sentri/front-alt.svg b/media/characters/sentri/front-alt.svg new file mode 100644 index 00000000..ab586c0b --- /dev/null +++ b/media/characters/sentri/front-alt.svg @@ -0,0 +1,110 @@ + + + + + + + diff --git a/media/characters/sentri/front.svg b/media/characters/sentri/front.svg new file mode 100644 index 00000000..ee792621 --- /dev/null +++ b/media/characters/sentri/front.svg @@ -0,0 +1,133 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 298c1177..92c8fddf 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5942,7 +5942,7 @@ characterMakers["Arcturax"] = () => { side: { height: math.unit(6, "feet"), weight: math.unit(2304, "lbs"), - name: "side", + name: "Side", image: { source: "./media/characters/arcturax/side.svg", extra: 790/376 * (1 / (1 - 0.01)), @@ -5972,6 +5972,46 @@ characterMakers["Arcturax"] = () => { ) }; +characterMakers["Sentri"] = () => { + return makeCharacter( + "Sentri", + "Sentri", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(50, "lbs"), + name: "Front", + image: { + source: "./media/characters/sentri/front.svg", + extra: 1750/1570 * (1 / (1 - 0.025)), + bottom: 0.025 + } + }, + frontAlt: { + height: math.unit(6, "feet"), + weight: math.unit(50, "lbs"), + name: "Front (Alt)", + image: { + source: "./media/characters/sentri/front-alt.svg", + extra: 1750/1570 * (1 / (1 - 0.025)), + bottom: 0.025 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(15, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(2500, "feet") + } + ] + ) +}; + function makeCharacters() { const results = [];