|  |  | @@ -2180,6 +2180,10 @@ const speciesData = { | 
		
	
		
			
			|  |  |  | name: "AI", | 
		
	
		
			
			|  |  |  | parents: [] | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | "black-tip-reef-shark": { | 
		
	
		
			
			|  |  |  | name: "Black Tip Reef Shark", | 
		
	
		
			
			|  |  |  | parents: ["shark"] | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | //species | 
		
	
	
		
			
				|  |  | @@ -57353,6 +57357,59 @@ characterMakers.push(() => makeCharacter( | 
		
	
		
			
			|  |  |  | ] | 
		
	
		
			
			|  |  |  | )) | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | characterMakers.push(() => makeCharacter( | 
		
	
		
			
			|  |  |  | { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] }, | 
		
	
		
			
			|  |  |  | { | 
		
	
		
			
			|  |  |  | front: { | 
		
	
		
			
			|  |  |  | height: math.unit(2.4, "meters"), | 
		
	
		
			
			|  |  |  | weight: math.unit(270, "kg"), | 
		
	
		
			
			|  |  |  | name: "Front", | 
		
	
		
			
			|  |  |  | image: { | 
		
	
		
			
			|  |  |  | source: "./media/characters/alice/front.svg", | 
		
	
		
			
			|  |  |  | extra: 950/900, | 
		
	
		
			
			|  |  |  | bottom: 36/986 | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | side: { | 
		
	
		
			
			|  |  |  | height: math.unit(2.4, "meters"), | 
		
	
		
			
			|  |  |  | weight: math.unit(270, "kg"), | 
		
	
		
			
			|  |  |  | name: "Side", | 
		
	
		
			
			|  |  |  | image: { | 
		
	
		
			
			|  |  |  | source: "./media/characters/alice/side.svg", | 
		
	
		
			
			|  |  |  | extra: 921/876, | 
		
	
		
			
			|  |  |  | bottom: 19/940 | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | dressed: { | 
		
	
		
			
			|  |  |  | height: math.unit(2.4, "meters"), | 
		
	
		
			
			|  |  |  | weight: math.unit(270, "kg"), | 
		
	
		
			
			|  |  |  | name: "Dressed", | 
		
	
		
			
			|  |  |  | image: { | 
		
	
		
			
			|  |  |  | source: "./media/characters/alice/dressed.svg", | 
		
	
		
			
			|  |  |  | extra: 905/850, | 
		
	
		
			
			|  |  |  | bottom: 81/986 | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | fishnet: { | 
		
	
		
			
			|  |  |  | height: math.unit(2.4, "meters"), | 
		
	
		
			
			|  |  |  | weight: math.unit(270, "kg"), | 
		
	
		
			
			|  |  |  | name: "Fishnet", | 
		
	
		
			
			|  |  |  | image: { | 
		
	
		
			
			|  |  |  | source: "./media/characters/alice/fishnet.svg", | 
		
	
		
			
			|  |  |  | extra: 905/850, | 
		
	
		
			
			|  |  |  | bottom: 81/986 | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | [ | 
		
	
		
			
			|  |  |  | { | 
		
	
		
			
			|  |  |  | name: "Normal", | 
		
	
		
			
			|  |  |  | height: math.unit(2.4, "meters"), | 
		
	
		
			
			|  |  |  | default: true | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | ] | 
		
	
		
			
			|  |  |  | )) | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | //characters | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | function makeCharacters() { | 
		
	
	
		
			
				|  |  | 
 |