diff --git a/media/attribution.js b/media/attribution.js index a9430324..7bec9dc9 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -2220,6 +2220,18 @@ const attributionData = { "colwag" ] }, + { + prefix: "./media/characters/shingo/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/32499316/" } + ], + authors: [ + "feve" + ], + owners: [ + "shingo" + ] + }, { prefix: "./media/characters/starry-aqua/", files: [ @@ -3701,6 +3713,10 @@ const attributionData = { "name": "Rookie", "url": "https://twitter.com/Tails_High_", }, + "shingo": { + "name": "Shingo", + "url": "https://www.furaffinity.net/user/threes/", + }, } } diff --git a/media/characters/shingo/front.svg b/media/characters/shingo/front.svg index b5de6db8..8fc67110 100644 --- a/media/characters/shingo/front.svg +++ b/media/characters/shingo/front.svg @@ -1,112 +1,252 @@ - + + viewBox="0 0 511.96 843.49" style="enable-background:new 0 0 511.96 843.49;" xml:space="preserve"> + - + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index bdaedf9e..00e8bdd9 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -1007,48 +1007,39 @@ function makeKurrikage() { return entity; } -function makeShingo() { - const views = { - front: { - attributes: { - height: { - name: "Height", - power: 1, - type: "length", - base: math.unit(6, "feet") - }, - weight: { - name: "Weight", - power: 3, - type: "mass", - base: math.unit(75, "kg") +characterMakers["Shingo"] = () => { + return makeCharacter( + "Shingo", + "Shingo", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(75, "kg"), + name: "Front", + image: { + source: "./media/characters/shingo/front.svg", + extra: 3511/3338 * (1 / (1 - 0.005)), + bottom: 0.005 } }, - image: { - source: "./media/characters/shingo/front.svg" + }, + [ + { + name: "Micro", + height: math.unit(4, "inches") }, - name: "Front" - } - }; - - const entity = makeEntity({ name: "Shingo", author: "Threes" }, views, []); - - entity.sizes.push({ - name: "Micro", - height: math.unit(4, "inches") - }); - - entity.sizes.push({ - name: "Normal", - height: math.unit(6, "feet") - }); - - entity.sizes.push({ - name: "Macro", - height: math.unit(108, "feet") - }); - return entity; -} + { + name: "Normal", + height: math.unit(6, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(108, "feet") + } + ] + ) +}; function makeAigey() { const views = { @@ -7232,10 +7223,6 @@ function makeCharacters() { name: "Kurrikage", constructor: makeKurrikage }); - results.push({ - name: "Shingo", - constructor: makeShingo - }); results.push({ name: "Aigey", constructor: makeAigey