From 284bdd3e46d4c0b3c4e8529e70ed1cd6e049e5c4 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 23 Jul 2020 11:43:56 -0400 Subject: [PATCH] Adjust the party's stats --- src/App.vue | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/App.vue b/src/App.vue index 3d7d46a..e43dc25 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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"