|  |  | @@ -18,19 +18,19 @@ var macro = | 
		
	
		
			
			|  |  |  | "scaling": function(value, scale, factor) { return value * Math.pow(scale,factor); }, | 
		
	
		
			
			|  |  |  | "species": "crux", | 
		
	
		
			
			|  |  |  | "color" : "blue", | 
		
	
		
			
			|  |  |  | "baseHeight": 3.65, | 
		
	
		
			
			|  |  |  | "baseHeight": 2.26, | 
		
	
		
			
			|  |  |  | get height() { return this.scaling(this.baseHeight, this.scale, 1); }, | 
		
	
		
			
			|  |  |  | "baseMass": 1360, | 
		
	
		
			
			|  |  |  | "baseMass": 135, | 
		
	
		
			
			|  |  |  | get mass () { return this.scaling(this.baseMass, this.scale, 3); }, | 
		
	
		
			
			|  |  |  | "basePawArea": 1, | 
		
	
		
			
			|  |  |  | "basePawArea": 0.1, | 
		
	
		
			
			|  |  |  | get pawArea() { return this.scaling(this.basePawArea, this.scale, 2); }, | 
		
	
		
			
			|  |  |  | "baseAnalVoreArea": 1, | 
		
	
		
			
			|  |  |  | "baseAnalVoreArea": 0.1, | 
		
	
		
			
			|  |  |  | get analVoreArea() { return this.scaling(this.baseAnalVoreArea, this.scale, 2); }, | 
		
	
		
			
			|  |  |  | "baseAssArea": 1, | 
		
	
		
			
			|  |  |  | "baseAssArea": 0.4, | 
		
	
		
			
			|  |  |  | get assArea() { return this.scaling(this.baseAssArea, this.scale, 2); }, | 
		
	
		
			
			|  |  |  | "baseHandArea": 1, | 
		
	
		
			
			|  |  |  | "baseHandArea": 0.3, | 
		
	
		
			
			|  |  |  | get handArea() { return this.scaling(this.baseHandArea, this.scale, 2); }, | 
		
	
		
			
			|  |  |  | "scale": 1, | 
		
	
		
			
			|  |  |  | "scale": 3, | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | "scaleWithMass": function(mass) { | 
		
	
		
			
			|  |  |  | var startMass = this.mass; | 
		
	
	
		
			
				|  |  | 
 |