From ae150f887e74f40fcdd7edd08832ffdcfa9a01e5 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 27 Feb 2020 13:29:10 -0500 Subject: [PATCH] Add Tegon --- media/attribution.js | 16 ++++++ media/characters/tegon/front.svg | 94 ++++++++++++++++++++++++++++++++ presets/characters.js | 40 +++++++++++++- 3 files changed, 149 insertions(+), 1 deletion(-) create mode 100644 media/characters/tegon/front.svg diff --git a/media/attribution.js b/media/attribution.js index 9a6580ce..a8e0b17e 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -948,6 +948,18 @@ const attributionData = { "pilli10" ] }, + { + prefix: "./media/characters/tegon/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/15972609/" } + ], + authors: [ + "pig" + ], + owners: [ + "tegon" + ] + }, { prefix: "./media/characters/tiberius/", files: [ @@ -1914,6 +1926,10 @@ const attributionData = { "name": "andradopts", "url": "https://www.furaffinity.net/user/andradopts", }, + "tegon": { + "name": "Tegon", + "url": "https://www.furaffinity.net/user/dsc85/", + }, } } diff --git a/media/characters/tegon/front.svg b/media/characters/tegon/front.svg new file mode 100644 index 00000000..3115f4a2 --- /dev/null +++ b/media/characters/tegon/front.svg @@ -0,0 +1,94 @@ + + + + + diff --git a/presets/characters.js b/presets/characters.js index 8f6628c8..c22ef817 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5886,7 +5886,6 @@ characterMakers["Kane"] = () => { { name: "Normal", height: math.unit(2.1, "m"), - default: true }, { name: "Macro", @@ -5897,6 +5896,45 @@ characterMakers["Kane"] = () => { ) }; +characterMakers["Tegon"] = () => { + return makeCharacter( + "Tegon", + "TegonDragon", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(200, "kg"), + name: "Front", + image: { + source: "./media/characters/tegon/front.svg", + bottom: 0.01, + extra: 1 / (1 - 0.01) + } + }, + }, + [ + { + name: "Micro", + height: math.unit(1, "inch"), + default: true + }, + { + name: "Normal", + height: math.unit(6 + 3/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(300, "feet") + }, + { + name: "Megamacro", + height: math.unit(69, "miles") + }, + ] + ) +}; + function makeCharacters() { const results = [];