From adb03d5ca829b00479ec41be0617c2ba115a8739 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 29 Apr 2020 12:51:37 -0400 Subject: [PATCH] Add Vader-San's synths --- media/attribution.js | 19 ++ media/species/synths/back.svg | 372 +++++++++++++++++++++ media/species/synths/bulky.svg | 583 +++++++++++++++++++++++++++++++++ media/species/synths/femme.svg | 500 ++++++++++++++++++++++++++++ media/species/synths/front.svg | 388 ++++++++++++++++++++++ presets/species.js | 65 ++++ 6 files changed, 1927 insertions(+) create mode 100644 media/species/synths/back.svg create mode 100644 media/species/synths/bulky.svg create mode 100644 media/species/synths/femme.svg create mode 100644 media/species/synths/front.svg diff --git a/media/attribution.js b/media/attribution.js index 126f243c..a3f3dc5e 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -9596,6 +9596,21 @@ const attributionData = { "firaxis" ] }, + { + prefix: "./media/species/synths/", + files: [ + { name: "front.svg", source: "https://twitter.com/VaderSan/status/1098510601511419904" }, + { name: "back.svg", source: "https://twitter.com/VaderSan/status/1098510601511419904" }, + { name: "bulky.svg", source: "https://twitter.com/VaderSan/status/1098514374866673664" }, + { name: "femme.svg", source: "https://twitter.com/VaderSan/status/1098514846407184384" }, + ], + authors: [ + "vader-san" + ], + owners: [ + "vader-san" + ] + }, { prefix: "./media/vehicles/", files: [ @@ -12816,6 +12831,10 @@ const attributionData = { "name": "chomanderjake", "url": "https://www.furaffinity.net/user/chomanderjake", }, + "vader-san": { + "name": "Vader-San", + "url": "https://twitter.com/VaderSan", + }, } } diff --git a/media/species/synths/back.svg b/media/species/synths/back.svg new file mode 100644 index 00000000..71963f11 --- /dev/null +++ b/media/species/synths/back.svg @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/species/synths/bulky.svg b/media/species/synths/bulky.svg new file mode 100644 index 00000000..1cac29cb --- /dev/null +++ b/media/species/synths/bulky.svg @@ -0,0 +1,583 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/species/synths/femme.svg b/media/species/synths/femme.svg new file mode 100644 index 00000000..f123a84a --- /dev/null +++ b/media/species/synths/femme.svg @@ -0,0 +1,500 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/species/synths/front.svg b/media/species/synths/front.svg new file mode 100644 index 00000000..abaa31ec --- /dev/null +++ b/media/species/synths/front.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/species.js b/presets/species.js index f4626c2c..5d18d913 100644 --- a/presets/species.js +++ b/presets/species.js @@ -74,6 +74,71 @@ speciesMakers["Viper"] = () => makeCharacter( ] ); +speciesMakers["Synths"] = () => makeCharacter( + { name: "Synths" }, + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(300, "lb"), + name: "Front", + image: { + source: "./media/species/synths/front.svg", + extra: 263/253.5, + bottom: 6.22/268.85 + } + }, + back: { + height: math.unit(6, "feet"), + weight: math.unit(300, "lb"), + name: "Back", + image: { + source: "./media/species/synths/back.svg", + extra: 263.5/254.5, + bottom: 4.7/269 + } + }, + bulky: { + height: math.unit(6, "feet"), + weight: math.unit(900, "lb"), + name: "Bulky", + image: { + source: "./media/species/synths/bulky.svg", + extra: 753/740, + bottom: 17.7/771.8 + } + }, + femme: { + height: math.unit(6, "feet"), + weight: math.unit(400, "lb"), + name: "Femme", + image: { + source: "./media/species/synths/femme.svg", + extra: 756/733, + bottom: 17.2/774 + } + }, + }, + [ + { + name: "Small", + height: math.unit(1, "meters") + }, + { + name: "Normal", + height: math.unit(2, "meters"), + default: true + }, + { + name: "Big", + height: math.unit(3, "meters") + }, + { + name: "Huge", + height: math.unit(4, "meters") + }, + ] +); + function makeSpecies() { const results = [];