| @@ -22653,6 +22653,18 @@ const attributionData = { | |||||
| "va0027" | "va0027" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/sifray/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://twitter.com/GirlYlbs/status/1530523470206889984/photo/2" } | |||||
| ], | |||||
| authors: [ | |||||
| "icymasamune" | |||||
| ], | |||||
| owners: [ | |||||
| "girlylbs" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -31348,6 +31360,14 @@ const attributionData = { | |||||
| "name": "royalty", | "name": "royalty", | ||||
| "url": "https://www.furaffinity.net/user/royalty" | "url": "https://www.furaffinity.net/user/royalty" | ||||
| }, | }, | ||||
| "girlylbs": { | |||||
| "name": "YLBSGirl", | |||||
| "url": "https://twitter.com/GirlYlbs/" | |||||
| }, | |||||
| "icymasamune": { | |||||
| "name": "icymasamune", | |||||
| "url": "https://twitter.com/icymasamune" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -2417,6 +2417,10 @@ const speciesData = { | |||||
| name: "Driger", | name: "Driger", | ||||
| parents: ["dragon", "tiger"] | parents: ["dragon", "tiger"] | ||||
| }, | }, | ||||
| "homestuck-troll": { | |||||
| name: "Troll (Homestuck)", | |||||
| parents: ["humanoid"] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -65655,6 +65659,28 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(5 + 6/12, "feet"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/sifray/front.svg", | |||||
| extra: 722/691, | |||||
| bottom: 64/786 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(5 + 6/12, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||