| @@ -36571,6 +36571,100 @@ characterMakers.push(() => makeCharacter( | |||
| ] | |||
| )) | |||
| characterMakers.push(() => makeCharacter( | |||
| { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] }, | |||
| { | |||
| front: { | |||
| height: math.unit(15, "feet"), | |||
| name: "Front", | |||
| image: { | |||
| source: "./media/characters/rojas/front.svg", | |||
| extra: 1462/1408, | |||
| bottom: 95/1557 | |||
| } | |||
| }, | |||
| back: { | |||
| height: math.unit(15, "feet"), | |||
| name: "Back", | |||
| image: { | |||
| source: "./media/characters/rojas/back.svg", | |||
| extra: 1023/954, | |||
| bottom: 28/1051 | |||
| } | |||
| }, | |||
| }, | |||
| [ | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(15, "feet"), | |||
| default: true | |||
| }, | |||
| ] | |||
| )) | |||
| characterMakers.push(() => makeCharacter( | |||
| { name: "Alek Dryagan", species: ["sea-monster", "human"], tags: ["anthro"] }, | |||
| { | |||
| frontHuman: { | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| name: "Front (Human)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/front-human.svg", | |||
| extra: 1687/1667, | |||
| bottom: 69/1756 | |||
| } | |||
| }, | |||
| backHuman: { | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| name: "Back (Human)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/back-human.svg", | |||
| extra: 1670/1649, | |||
| bottom: 65/1735 | |||
| } | |||
| }, | |||
| frontDemi: { | |||
| height: math.unit(65, "feet"), | |||
| name: "Front (Demi)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/front-demi.svg", | |||
| extra: 1669/1642, | |||
| bottom: 49/1718 | |||
| } | |||
| }, | |||
| backDemi: { | |||
| height: math.unit(65, "feet"), | |||
| name: "Back (Demi)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/back-demi.svg", | |||
| extra: 1658/1637, | |||
| bottom: 40/1698 | |||
| } | |||
| }, | |||
| mawHuman: { | |||
| height: math.unit(0.3, "feet"), | |||
| name: "Maw (Human)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/maw-human.svg" | |||
| } | |||
| }, | |||
| mawDemi: { | |||
| height: math.unit(3.8, "feet"), | |||
| name: "Maw (Demi)", | |||
| image: { | |||
| source: "./media/characters/alek-dryagan/maw-demi.svg" | |||
| } | |||
| }, | |||
| }, | |||
| [ | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| default: true | |||
| }, | |||
| ] | |||
| )) | |||
| //characters | |||
| function makeCharacters() { | |||