diff --git a/media/attribution.js b/media/attribution.js index aece8cf9..678eb0c1 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -8474,6 +8474,18 @@ const attributionData = { "ty-the-fox" ] }, + { + prefix: "./media/characters/rocky/", + files: [ + { name: "front.svg", source: null } + ], + authors: [ + "thatdrunkkobold" + ], + owners: [ + "thatdrunkkobold" + ] + }, //characters { prefix: "./media/fiction/halo/halo/", @@ -11740,6 +11752,10 @@ const attributionData = { "name": "Ty the Fox", "url": "https://www.furaffinity.net/user/tythefox/", }, + "thatdrunkkobold": { + "name": "Rocky", + "url": "https://t.me/ThatDrunkKobold", + }, } } diff --git a/media/characters/rocky/front.svg b/media/characters/rocky/front.svg new file mode 100644 index 00000000..91669461 --- /dev/null +++ b/media/characters/rocky/front.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 7401d090..de7950ce 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -19042,7 +19042,31 @@ characterMakers.push(() => makeCharacter( [ { name: "Normal", - height: math.unit(4.5, "meters") + height: math.unit(4.5, "meters"), + default: true + }, + ] +)) + +characterMakers.push(() => makeCharacter( + { name: "Rocky" }, + { + front: { + height: math.unit(5 + 4/12, "feet"), + weight: math.unit(115, "lb"), + name: "Front", + image: { + source: "./media/characters/rocky/front.svg", + extra: 1012/975, + bottom: 54/1066 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(5 + 4/12, "feet"), + default: true }, ] ))