| @@ -28,44 +28,44 @@ export default class App extends Vue { | |||||
| const fighter = new Creatures.Human(new ProperNoun("Redgar"), MalePronouns, { | const fighter = new Creatures.Human(new ProperNoun("Redgar"), MalePronouns, { | ||||
| stats: { | stats: { | ||||
| Toughness: 40, | |||||
| Power: 50, | |||||
| Speed: 30, | |||||
| Willpower: 40, | |||||
| Charm: 20 | |||||
| Toughness: 20, | |||||
| Power: 20, | |||||
| Speed: 15, | |||||
| Willpower: 15, | |||||
| Charm: 10 | |||||
| } | } | ||||
| }) | }) | ||||
| fighter.title = "Lv. 6 Fighter" | fighter.title = "Lv. 6 Fighter" | ||||
| fighter.items.push(Items.Sword) | fighter.items.push(Items.Sword) | ||||
| const rogue = new Creatures.Human(new ProperNoun('Lidda'), FemalePronouns, { | const rogue = new Creatures.Human(new ProperNoun('Lidda'), FemalePronouns, { | ||||
| stats: { | stats: { | ||||
| Toughness: 25, | |||||
| Power: 40, | |||||
| Speed: 70, | |||||
| Willpower: 50, | |||||
| Charm: 80 | |||||
| Toughness: 10, | |||||
| Power: 15, | |||||
| Speed: 20, | |||||
| Willpower: 15, | |||||
| Charm: 20 | |||||
| } | } | ||||
| }) | }) | ||||
| rogue.title = "Lv. 5 Rogue" | rogue.title = "Lv. 5 Rogue" | ||||
| rogue.items.push(Items.Dagger) | rogue.items.push(Items.Dagger) | ||||
| const wizard = new Creatures.Human(new ProperNoun('Mialee'), FemalePronouns, { | const wizard = new Creatures.Human(new ProperNoun('Mialee'), FemalePronouns, { | ||||
| stats: { | stats: { | ||||
| Toughness: 30, | |||||
| Power: 20, | |||||
| Speed: 50, | |||||
| Willpower: 80, | |||||
| Charm: 60 | |||||
| Toughness: 10, | |||||
| Power: 10, | |||||
| Speed: 15, | |||||
| Willpower: 20, | |||||
| Charm: 25 | |||||
| } | } | ||||
| }) | }) | ||||
| wizard.title = "Lv. 6 Wizard" | wizard.title = "Lv. 6 Wizard" | ||||
| wizard.items.push(Items.Wand) | wizard.items.push(Items.Wand) | ||||
| const cleric = new Creatures.Human(new ProperNoun('Jozan'), MalePronouns, { | const cleric = new Creatures.Human(new ProperNoun('Jozan'), MalePronouns, { | ||||
| stats: { | stats: { | ||||
| Toughness: 35, | |||||
| Power: 40, | |||||
| Speed: 25, | |||||
| Willpower: 90, | |||||
| Charm: 50 | |||||
| Toughness: 15, | |||||
| Power: 15, | |||||
| Speed: 10, | |||||
| Willpower: 20, | |||||
| Charm: 15 | |||||
| } | } | ||||
| }) | }) | ||||
| cleric.title = "Lv. 5 Cleric" | cleric.title = "Lv. 5 Cleric" | ||||