@@ -25,7 +25,7 @@ export default class App extends Vue {
constructor () {
super()
const fighter = new Creatures.Human(new ImproperNoun('fighter'), They Pronouns, {
const fighter = new Creatures.Human(new ProperNoun("Redgar"), Male Pronouns, {
stats: {
Toughness: 40,
Power: 50,
@@ -34,7 +34,8 @@ export default class App extends Vue {
Charm: 20
}
})
const rogue = new Creatures.Human(new ImproperNoun('wizard'), MalePronouns, {
fighter.title = "Lv. 6 Fighter"
const rogue = new Creatures.Human(new ProperNoun('Lidda'), FemalePronouns, {
stats: {
Toughness: 25,
Power: 40,
@@ -43,7 +44,8 @@ export default class App extends Vue {
Charm: 80
}
})
const wizard = new Creatures.Human(new ImproperNoun('rogue'), FemalePronouns, {
rogue.title = "Lv. 5 Rogue"
const wizard = new Creatures.Human(new ProperNoun('Mialee'), FemalePronouns, {
stats: {
Toughness: 30,
Power: 20,
@@ -52,7 +54,8 @@ export default class App extends Vue {
Charm: 60
}
})
const cleric = new Creatures.Human(new ImproperNoun('cleric'), FemalePronouns, {
wizard.title = "Lv. 6 Wizard"
const cleric = new Creatures.Human(new ProperNoun('Jozan'), MalePronouns, {
stats: {
Toughness: 35,
Power: 40,
@@ -61,6 +64,7 @@ export default class App extends Vue {
Charm: 50
}
})
cleric.title = "Lv. 5 Wizard"
this.left = fighter
this.right = new Creatures.Withers()