|
|
|
@@ -28,44 +28,44 @@ export default class App extends Vue { |
|
|
|
|
|
|
|
const fighter = new Creatures.Human(new ProperNoun("Redgar"), MalePronouns, { |
|
|
|
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.items.push(Items.Sword) |
|
|
|
const rogue = new Creatures.Human(new ProperNoun('Lidda'), FemalePronouns, { |
|
|
|
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.items.push(Items.Dagger) |
|
|
|
const wizard = new Creatures.Human(new ProperNoun('Mialee'), FemalePronouns, { |
|
|
|
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.items.push(Items.Wand) |
|
|
|
const cleric = new Creatures.Human(new ProperNoun('Jozan'), MalePronouns, { |
|
|
|
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" |
|
|
|
|