| @@ -5349,7 +5349,7 @@ const attributionData = { | |||||
| { | { | ||||
| prefix: "./media/characters/vemus/", | prefix: "./media/characters/vemus/", | ||||
| files: [ | files: [ | ||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/31833589/" } | |||||
| { name: "crux.svg", source: "https://www.furaffinity.net/view/31833589/" } | |||||
| ], | ], | ||||
| authors: [ | authors: [ | ||||
| "eda" | "eda" | ||||
| @@ -5358,6 +5358,18 @@ const attributionData = { | |||||
| "vemus" | "vemus" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/vemus/", | |||||
| files: [ | |||||
| { name: "skunk-tanuki.svg", source: null } | |||||
| ], | |||||
| authors: [ | |||||
| "rabidraccoon" | |||||
| ], | |||||
| owners: [ | |||||
| "vemus" | |||||
| ] | |||||
| }, | |||||
| { | { | ||||
| prefix: "./media/characters/verin/", | prefix: "./media/characters/verin/", | ||||
| files: [ | files: [ | ||||
| @@ -21786,6 +21798,10 @@ const attributionData = { | |||||
| "name": "Korbin", | "name": "Korbin", | ||||
| "url": "https://www.furaffinity.net/user/korbin" | "url": "https://www.furaffinity.net/user/korbin" | ||||
| }, | }, | ||||
| "rabidraccoon": { | |||||
| "name": "RabidRaccoon", | |||||
| "url": "https://twitter.com/RabidRaccoon" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -6634,18 +6634,28 @@ characterMakers.push(() => makeCharacter( | |||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | characterMakers.push(() => makeCharacter( | ||||
| { name: "Vemus", species: ["crux"], tags: ["anthro"] }, | |||||
| { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] }, | |||||
| { | { | ||||
| front: { | |||||
| crux: { | |||||
| height: math.unit(2, "meters"), | height: math.unit(2, "meters"), | ||||
| weight: math.unit(150, "kg"), | weight: math.unit(150, "kg"), | ||||
| name: "Front", | |||||
| name: "Crux", | |||||
| image: { | image: { | ||||
| source: "./media/characters/vemus/front.svg", | |||||
| source: "./media/characters/vemus/crux.svg", | |||||
| extra: 1074/936, | extra: 1074/936, | ||||
| bottom: 23/1097 | bottom: 23/1097 | ||||
| } | } | ||||
| } | |||||
| }, | |||||
| skunkTanuki: { | |||||
| height: math.unit(2, "meters"), | |||||
| weight: math.unit(150, "kg"), | |||||
| name: "Skunk-Tanuki", | |||||
| image: { | |||||
| source: "./media/characters/vemus/skunk-tanuki.svg", | |||||
| extra: 926/893, | |||||
| bottom: 20/946 | |||||
| } | |||||
| }, | |||||
| }, | }, | ||||
| [ | [ | ||||
| { | { | ||||