| @@ -23166,6 +23166,18 @@ const attributionData = { | |||||
| "argentvz" | "argentvz" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/sophie/", | |||||
| files: [ | |||||
| { name: "front.svg", source: "https://www.furaffinity.net/view/47508648/" } | |||||
| ], | |||||
| authors: [ | |||||
| "raps" | |||||
| ], | |||||
| owners: [ | |||||
| "raps" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -32006,6 +32018,10 @@ const attributionData = { | |||||
| "name": "muscleartguy", | "name": "muscleartguy", | ||||
| "url": "https://www.furaffinity.net/user/muscleartguy/" | "url": "https://www.furaffinity.net/user/muscleartguy/" | ||||
| }, | }, | ||||
| "raps": { | |||||
| "name": "Raps", | |||||
| "url": "https://www.furaffinity.net/user/raps/" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -67767,6 +67767,36 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Sophie", species: ["cow"], tags: ["anthro"] }, | |||||
| { | |||||
| front: { | |||||
| height: math.unit(200, "feet"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/sophie/front.svg", | |||||
| extra: 710/680, | |||||
| bottom: 3/713 | |||||
| }, | |||||
| extraAttributes: { | |||||
| "milkProduction": { | |||||
| name: "Milk Production", | |||||
| power: 3, | |||||
| type: "volume", | |||||
| base: math.unit(27000, "liters") | |||||
| }, | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(200, "feet"), | |||||
| default: true | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||