Parcourir la source

Fix missing constructor parameter

master
Fen Dweller il y a 5 ans
Parent
révision
002165f16c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/game/creatures/cafat.ts

+ 1
- 1
src/game/creatures/cafat.ts Voir le fichier

@@ -82,7 +82,7 @@ class CrushAction extends EatenAction {


export class Cafat extends Creature { export class Cafat extends Creature {
constructor () { constructor () {
super(new ProperNoun('Cafat'), [TheyPronouns, FemalePronouns][Math.floor(Math.random() * 2)], {
super(new ProperNoun('Cafat'), new ImproperNoun('taur', 'taurs'), [TheyPronouns, FemalePronouns][Math.floor(Math.random() * 2)], {
[Stat.Toughness]: 30, [Stat.Toughness]: 30,
[Stat.Power]: 30, [Stat.Power]: 30,
[Stat.Speed]: 15, [Stat.Speed]: 15,


Chargement…
Annuler
Enregistrer