diff --git a/media/attribution.js b/media/attribution.js index a8e0b17e..5020187f 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -186,6 +186,18 @@ const attributionData = { "archy-d" ] }, + { + prefix: "./media/characters/arcturax/", + files: [ + { name: "side.svg", source: "https://www.deviantart.com/francis-john/art/Commission-Arcturax-583317374" } + ], + authors: [ + "francis-john" + ], + owners: [ + "arcturax" + ] + }, { prefix: "./media/characters/asana/", files: [ @@ -1930,6 +1942,14 @@ const attributionData = { "name": "Tegon", "url": "https://www.furaffinity.net/user/dsc85/", }, + "francis-john": { + "name": "Francis-John", + "url": "https://www.deviantart.com/francis-john", + }, + "arcturax": { + "name": "Arcturax", + "url": "https://www.furaffinity.net/user/arcturax", + }, } } diff --git a/media/characters/arcturax/side.svg b/media/characters/arcturax/side.svg new file mode 100644 index 00000000..35345803 --- /dev/null +++ b/media/characters/arcturax/side.svg @@ -0,0 +1,267 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 614d6590..312901b7 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5922,18 +5922,50 @@ characterMakers["Tegon"] = () => { height: math.unit(6 + 3/12, "feet"), default: true }, + { + name: "Macro", + height: math.unit(300, "feet") + }, + { + name: "Megamacro", + height: math.unit(69, "miles") + }, + ] + ) +}; + +characterMakers["Arcturax"] = () => { + return makeCharacter( + "Arcturax", + "Arcturax", + { + side: { + height: math.unit(6, "feet"), + weight: math.unit(2304, "lbs"), + name: "side", + image: { + source: "./media/characters/arcturax/side.svg", + extra: 790/376 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(2, "inch") + }, { name: "Normal", - height: math.unit(6 + 3/12, "feet"), - default: true + height: math.unit(6, "feet") }, { name: "Macro", - height: math.unit(300, "feet") + height: math.unit(39, "feet"), + default: true }, { name: "Megamacro", - height: math.unit(69, "miles") + height: math.unit(7, "miles") }, ] )