diff --git a/media/attribution.js b/media/attribution.js index 6778c98c..8e713689 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -6232,6 +6232,30 @@ const attributionData = { "boringcactus" ] }, + { + prefix: "./media/characters/luno/", + files: [ + { name: "front.svg", source: null } + ], + authors: [ + "sorendipity" + ], + owners: [ + "jamesy" + ] + }, + { + prefix: "./media/characters/jamesy/", + files: [ + { name: "front.svg", source: null } + ], + authors: [ + "phantom-hyena" + ], + owners: [ + "jamesy" + ] + }, //characters { prefix: "./media/food/animals/", @@ -8644,6 +8668,18 @@ const attributionData = { "name": "boring_cactus", "url": "http://twitter.com/boring_cactus", }, + "sorendipity": { + "name": "Sörendipity★", + "url": "https://aminoapps.com/c/furry-amino/page/user/sorendipity-lonesome/r0Vb_k2nSBf0B484RPKWPDWg2rr5ERr4PrRcZ", + }, + "phantom-hyena": { + "name": "phantom.hyena", + "url": "https://aminoapps.com/c/furry-amino/page/user/phantom-hyena-ps79-250/3Wk6_jgYTMf8ZdewoG67j1PPaZP2Bj2XRETV", + }, + "jamesy": { + "name": "Jamesy", + "url": null, + }, } } diff --git a/media/characters/jamesy/front.svg b/media/characters/jamesy/front.svg new file mode 100644 index 00000000..46d47a12 --- /dev/null +++ b/media/characters/jamesy/front.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + diff --git a/media/characters/luno/front.svg b/media/characters/luno/front.svg new file mode 100644 index 00000000..b5d47ddf --- /dev/null +++ b/media/characters/luno/front.svg @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index f6472945..5f38752b 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -15080,7 +15080,84 @@ characterMakers["Memory"] = () => { }, ] ) -};c +}; + +characterMakers["Luno"] = () => { + return makeCharacter( + "Luno", + "Jamesy", + { + front: { + height: math.unit(4 + 11/12, "feet"), + weight: math.unit(100, "lb"), + name: "Front", + image: { + source: "./media/characters/luno/front.svg", + extra: 1535/1487, + bottom: 0.03 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(3, "inches") + }, + { + name: "Normal", + height: math.unit(4 + 11/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(300, "feet") + }, + { + name: "Megamacro", + height: math.unit(700, "miles") + }, + ] + ) +}; + +characterMakers["Jamesy"] = () => { + return makeCharacter( + "Jamesy", + "Jamesy", + { + front: { + height: math.unit(6 + 2/12, "feet"), + weight: math.unit(170, "lb"), + name: "Front", + image: { + source: "./media/characters/jamesy/front.svg", + extra: 440/382, + bottom: 0.005 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(3, "inches") + }, + { + name: "Normal", + height: math.unit(6 + 2/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(300, "feet") + }, + { + name: "Megamacro", + height: math.unit(700, "miles") + }, + ] + ) +}; + //characters