diff --git a/media/attribution.js b/media/attribution.js index 1c856f8c..f35940b6 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -736,6 +736,18 @@ const attributionData = { "rogue" ] }, + { + prefix: "./media/characters/rook/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/29795775/" } + ], + authors: [ + "kclt" + ], + owners: [ + "rook" + ] + }, { prefix: "./media/characters/rose-lion/", files: [ @@ -1330,6 +1342,10 @@ const attributionData = { name: "Rogue Megawolf", url: "https://twitter.com/roguemegawolf" }, + "rook": { + name: "Rook", + url: "https://twitter.com/rooktowers" + }, "roman-shamin": { name: "Roman Shamin", url: "https://twitter.com/romanshamin" diff --git a/media/characters/rook/front.svg b/media/characters/rook/front.svg new file mode 100644 index 00000000..5044d4a1 --- /dev/null +++ b/media/characters/rook/front.svg @@ -0,0 +1,76 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 7709c219..ff09732d 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5578,6 +5578,38 @@ characterMakers["Akane Sato"] = () => { ) }; +characterMakers["Rook"] = () => { + return makeCharacter( + "Rook", + "Rook", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(65, "kg"), + name: "Front", + image: { + source: "./media/characters/rook/front.svg" + } + } + }, + [ + { + name: "Normal", + height: math.unit(8.8, "feet") + }, + { + name: "Macro", + height: math.unit(88, "feet"), + default: true + }, + { + name: "Megamacro", + height: math.unit(8, "miles") + }, + ] + ) +}; + function makeCharacters() { const results = [];