| @@ -21402,6 +21402,18 @@ const attributionData = { | |||||
| "geckonori" | "geckonori" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/centbair/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/39229944/" } | |||||
| ], | |||||
| authors: [ | |||||
| "venblackfurr" | |||||
| ], | |||||
| owners: [ | |||||
| "theelemental" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -29736,6 +29748,14 @@ const attributionData = { | |||||
| "name": "Natsukis_Commishes", | "name": "Natsukis_Commishes", | ||||
| "url": "https://www.furaffinity.net/user/natsukiscommishes/" | "url": "https://www.furaffinity.net/user/natsukiscommishes/" | ||||
| }, | }, | ||||
| "venblackfurr": { | |||||
| "name": "Ven_Blackfurr", | |||||
| "url": "https://www.furaffinity.net/user/venblackfurr" | |||||
| }, | |||||
| "theelemental": { | |||||
| "name": "The_Elemental", | |||||
| "url": "https://www.furaffinity.net/user/theelemental/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -2248,6 +2248,10 @@ const speciesData = { | |||||
| name: "Stilio", | name: "Stilio", | ||||
| parents: ["snake"] | parents: ["snake"] | ||||
| }, | }, | ||||
| "kardox": { | |||||
| name: "Kardox", | |||||
| parents: ["wolf", "dragon", "horse"] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -60922,6 +60926,29 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Centbair", species: ["kardox"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(12, "feet"), | |||||
| weight: math.unit(1800, "lb"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/centbair/front.svg", | |||||
| extra: 781/663, | |||||
| bottom: 25/806 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(12, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||