| @@ -22306,6 +22306,18 @@ const attributionData = { | |||||
| "epicoart" | "epicoart" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/tim/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://twitter.com/CelestialSfm/status/1519777711107067913", nsfw: true } | |||||
| ], | |||||
| authors: [ | |||||
| "colonelgabbo" | |||||
| ], | |||||
| owners: [ | |||||
| "celestialsfm" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -30844,6 +30856,14 @@ const attributionData = { | |||||
| "name": "TizThorndike", | "name": "TizThorndike", | ||||
| "url": "https://www.deviantart.com/tizthorndike" | "url": "https://www.deviantart.com/tizthorndike" | ||||
| }, | }, | ||||
| "colonelgabbo": { | |||||
| "name": "Colonel-Gabbo", | |||||
| "url": "https://twitter.com/ColonelGabbo" | |||||
| }, | |||||
| "celestialsfm": { | |||||
| "name": "Celestial", | |||||
| "url": "https://twitter.com/CelestialSfm" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -64189,6 +64189,39 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Tim", species: ["rabbit"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(150, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/tim/front.svg" | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Macro", | |||||
| height: math.unit(1000, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Megamacro", | |||||
| height: math.unit(10000, "feet"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Megamacro+", | |||||
| height: math.unit(50000, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Gigamacro", | |||||
| height: math.unit(150000, "km") | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||