| @@ -22423,6 +22423,19 @@ const attributionData = { | |||||
| "shingo" | "shingo" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/kii/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://twitter.com/wolfwirles/status/1487223796486574082" } | |||||
| ], | |||||
| authors: [ | |||||
| "burn", | |||||
| "cartoonsnacks" | |||||
| ], | |||||
| owners: [ | |||||
| "burn" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -31009,6 +31022,10 @@ const attributionData = { | |||||
| "name": "VillMix", | "name": "VillMix", | ||||
| "url": "https://www.furaffinity.net/user/villmix/" | "url": "https://www.furaffinity.net/user/villmix/" | ||||
| }, | }, | ||||
| "burn": { | |||||
| "name": "BURN", | |||||
| "url": "https://twitter.com/wolfwirles/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -64831,6 +64831,30 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(7 + 6/12, "feet"), | |||||
| weight: math.unit(600, "kg"), | |||||
| preyCapacity: math.unit(10, "people"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/kii/front.svg", | |||||
| extra: 3296/3087, | |||||
| bottom: 130/3426 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(7 + 6/12, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||