| @@ -11,7 +11,7 @@ import Combat from './components/Combat.vue' | |||||
| import Header from './components/Header.vue' | import Header from './components/Header.vue' | ||||
| import * as Creatures from '@/game/creatures' | import * as Creatures from '@/game/creatures' | ||||
| import { Creature, POV } from '@/game/entity' | import { Creature, POV } from '@/game/entity' | ||||
| import { ProperNoun, TheyPronouns, FemalePronouns, MalePronouns } from '@/game/language' | |||||
| import { ProperNoun, TheyPronouns, FemalePronouns, MalePronouns, ImproperNoun } from '@/game/language' | |||||
| @Component({ | @Component({ | ||||
| components: { | components: { | ||||
| @@ -25,7 +25,7 @@ export default class App extends Vue { | |||||
| constructor () { | constructor () { | ||||
| super() | super() | ||||
| const fighter = new Creatures.Human(new ProperNoun('Fighter'), TheyPronouns, { | |||||
| const fighter = new Creatures.Human(new ImproperNoun('fighter'), TheyPronouns, { | |||||
| stats: { | stats: { | ||||
| Toughness: 40, | Toughness: 40, | ||||
| Power: 50, | Power: 50, | ||||
| @@ -34,7 +34,7 @@ export default class App extends Vue { | |||||
| Charm: 20 | Charm: 20 | ||||
| } | } | ||||
| }) | }) | ||||
| const rogue = new Creatures.Human(new ProperNoun('Wizard'), MalePronouns, { | |||||
| const rogue = new Creatures.Human(new ImproperNoun('wizard'), MalePronouns, { | |||||
| stats: { | stats: { | ||||
| Toughness: 25, | Toughness: 25, | ||||
| Power: 40, | Power: 40, | ||||
| @@ -43,7 +43,7 @@ export default class App extends Vue { | |||||
| Charm: 80 | Charm: 80 | ||||
| } | } | ||||
| }) | }) | ||||
| const wizard = new Creatures.Human(new ProperNoun('Rogue'), FemalePronouns, { | |||||
| const wizard = new Creatures.Human(new ImproperNoun('rogue'), FemalePronouns, { | |||||
| stats: { | stats: { | ||||
| Toughness: 30, | Toughness: 30, | ||||
| Power: 20, | Power: 20, | ||||
| @@ -52,7 +52,7 @@ export default class App extends Vue { | |||||
| Charm: 60 | Charm: 60 | ||||
| } | } | ||||
| }) | }) | ||||
| const cleric = new Creatures.Human(new ProperNoun('Cleric'), FemalePronouns, { | |||||
| const cleric = new Creatures.Human(new ImproperNoun('cleric'), FemalePronouns, { | |||||
| stats: { | stats: { | ||||
| Toughness: 35, | Toughness: 35, | ||||
| Power: 40, | Power: 40, | ||||