| @@ -37672,39 +37672,95 @@ characterMakers.push(() => makeCharacter( | |||
| { name: "Argon", species: ["dragon"], tags: ["anthro"] }, | |||
| { | |||
| front: { | |||
| height: math.unit(5 + 10/12, "feet"), | |||
| height: math.unit(6 + 2/12, "feet"), | |||
| weight: math.unit(115, "kg"), | |||
| preyCapacity: math.unit(3, "people"), | |||
| name: "Front", | |||
| image: { | |||
| source: "./media/characters/argon/front.svg", | |||
| extra: 2009/1935, | |||
| bottom: 118/2127 | |||
| }, | |||
| extraAttributes: { | |||
| "tailLength": { | |||
| name: "Tail Length", | |||
| power: 1, | |||
| type: "length", | |||
| base: math.unit(6, "feet") | |||
| }, | |||
| "tailWeight": { | |||
| name: "Tail Weight", | |||
| power: 3, | |||
| type: "mass", | |||
| base: math.unit(40, "kg") | |||
| }, | |||
| } | |||
| }, | |||
| back: { | |||
| height: math.unit(5 + 10/12, "feet"), | |||
| height: math.unit(6 + 2/12, "feet"), | |||
| weight: math.unit(115, "kg"), | |||
| preyCapacity: math.unit(3, "people"), | |||
| name: "Back", | |||
| image: { | |||
| source: "./media/characters/argon/back.svg", | |||
| extra: 2047/1992, | |||
| bottom: 20/2067 | |||
| }, | |||
| extraAttributes: { | |||
| "tailLength": { | |||
| name: "Tail Length", | |||
| power: 1, | |||
| type: "length", | |||
| base: math.unit(6, "feet") | |||
| }, | |||
| "tailWeight": { | |||
| name: "Tail Weight", | |||
| power: 3, | |||
| type: "mass", | |||
| base: math.unit(40, "kg") | |||
| }, | |||
| } | |||
| }, | |||
| frontDressed: { | |||
| height: math.unit(5 + 10/12, "feet"), | |||
| height: math.unit(6 + 2/12, "feet"), | |||
| weight: math.unit(115, "kg"), | |||
| preyCapacity: math.unit(3, "people"), | |||
| name: "Front (Dressed)", | |||
| image: { | |||
| source: "./media/characters/argon/front-dressed.svg", | |||
| extra: 2009/1935, | |||
| bottom: 118/2127 | |||
| }, | |||
| extraAttributes: { | |||
| "tailLength": { | |||
| name: "Tail Length", | |||
| power: 1, | |||
| type: "length", | |||
| base: math.unit(6, "feet") | |||
| }, | |||
| "tailWeight": { | |||
| name: "Tail Weight", | |||
| power: 3, | |||
| type: "mass", | |||
| base: math.unit(40, "kg") | |||
| }, | |||
| } | |||
| }, | |||
| }, | |||
| [ | |||
| { | |||
| name: "Minimum", | |||
| height: math.unit(2 + 8/12, "feet") | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(5 + 10/12, "feet"), | |||
| height: math.unit(6 + 2/12, "feet"), | |||
| default: true | |||
| }, | |||
| { | |||
| name: "Maximum", | |||
| height: math.unit(20, "feet") | |||
| }, | |||
| ] | |||
| )) | |||