| @@ -23091,6 +23091,20 @@ const attributionData = { | |||||
| "iron-azalea" | "iron-azalea" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/lizzy/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/28609871/", nsfw: true }, | |||||
| { name: "back.svg", source: "https://www.furaffinity.net/view/28609871/", nsfw: true }, | |||||
| ], | |||||
| authors: [ | |||||
| "ashuri", | |||||
| "chesta" | |||||
| ], | |||||
| owners: [ | |||||
| "timegiga" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -31915,6 +31929,14 @@ const attributionData = { | |||||
| "name": "-Iron~Azalea-#0125", | "name": "-Iron~Azalea-#0125", | ||||
| "url": null | "url": null | ||||
| }, | }, | ||||
| "ashuri": { | |||||
| "name": "~Ashuri", | |||||
| "url": "https://www.furaffinity.net/user/ashuri~/" | |||||
| }, | |||||
| "timegiga": { | |||||
| "name": "LizzyTheOtter", | |||||
| "url": "https://twitter.com/TimeGiga" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -67455,6 +67455,39 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Lizzy", species: ["otter"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(6.4, "feet"), | |||||
| weight: math.unit(167.5, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/lizzy/front.svg", | |||||
| extra: 1916/1791, | |||||
| bottom: 103/2019 | |||||
| } | |||||
| }, | |||||
| back: { | |||||
| height: math.unit(6.4, "feet"), | |||||
| weight: math.unit(167.5, "lb"), | |||||
| name: "Back", | |||||
| image: { | |||||
| source: "./media/characters/lizzy/back.svg", | |||||
| extra: 1995/1856, | |||||
| bottom: 11/2006 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(6.4, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||