|  |  | @@ -1,5 +1,5 @@ | 
		
	
		
			
			|  |  |  | import { Place, Choice, Direction, World } from '../world' | 
		
	
		
			
			|  |  |  | import { ProperNoun, ImproperNoun, MalePronouns, FemalePronouns, TheyPronouns } from '../language' | 
		
	
		
			
			|  |  |  | import { ProperNoun, ImproperNoun, MalePronouns, FemalePronouns, TheyPronouns, LiveText } from '../language' | 
		
	
		
			
			|  |  |  | import { Encounter, Stat, Damage, DamageType, Vigor, Side } from '../combat' | 
		
	
		
			
			|  |  |  | import * as Creatures from '../creatures' | 
		
	
		
			
			|  |  |  | import * as Items from '../items' | 
		
	
	
		
			
				|  |  | @@ -66,7 +66,7 @@ function makeParty (): Creature[] { | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | export const Town = (): Place => { | 
		
	
		
			
			|  |  |  | const home = new Place( | 
		
	
		
			
			|  |  |  | new ProperNoun('Your home'), | 
		
	
		
			
			|  |  |  | new ProperNoun("Home"), | 
		
	
		
			
			|  |  |  | "A very home-y place" | 
		
	
		
			
			|  |  |  | ) | 
		
	
		
			
			|  |  |  | 
 | 
		
	
	
		
			
				|  |  | 
 |