浏览代码

Fix missing constructor parameter

master
Fen Dweller 5 年前
父节点
当前提交
002165f16c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/game/creatures/cafat.ts

+ 1
- 1
src/game/creatures/cafat.ts 查看文件

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

export class Cafat extends Creature {
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.Power]: 30,
[Stat.Speed]: 15,


正在加载...
取消
保存