diff --git a/src/App.vue b/src/App.vue index 8e521f8..d782fab 100644 --- a/src/App.vue +++ b/src/App.vue @@ -72,7 +72,8 @@ export default class App extends Vue { const withers = new Creatures.Withers() const kenzie = new Creatures.Kenzie() const cafat = new Creatures.Cafat() - this.combatants = [fighter, withers, wizard, rogue, cleric, kenzie, cafat] + const wolf = new Creatures.Wolf() + this.combatants = [fighter, withers, wizard, rogue, cleric, kenzie, cafat, wolf] } } diff --git a/src/components/Combat.vue b/src/components/Combat.vue index 2a59364..14ff23b 100644 --- a/src/components/Combat.vue +++ b/src/components/Combat.vue @@ -42,7 +42,8 @@