Feast 2.0!
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

35 行
1.1 KiB

  1. import { Creature, POV } from '../entity'
  2. import { ProperNoun, ImproperNoun, FemalePronouns, POVPairArgs, POVPair } from '../language'
  3. import { VoreType, Stomach, Vore } from '../vore'
  4. import { Side, Damage, DamageType, Vigor, UniformRandomDamageFormula } from '../combat'
  5. import { LogLine } from '../interface'
  6. import { FeedAction, TransferAction } from '../combat/actions'
  7. import * as Words from '../words'
  8. export class Kenzie extends Creature {
  9. title = "Large Lycanroc"
  10. desc = "Will eat your party"
  11. constructor () {
  12. super(
  13. new ProperNoun('Kenzie'),
  14. new ImproperNoun('lycanroc', 'lycanrocs'),
  15. FemalePronouns,
  16. { Toughness: 60, Power: 70, Speed: 40, Willpower: 60, Charm: 120 },
  17. new Set(),
  18. new Set([VoreType.Oral]),
  19. 1000
  20. )
  21. this.side = Side.Monsters
  22. const stomach = new Stomach(this, 50, new Damage(
  23. { amount: 100, type: DamageType.Acid, target: Vigor.Health },
  24. { amount: 100, type: DamageType.Crush, target: Vigor.Stamina },
  25. { amount: 100, type: DamageType.Dominance, target: Vigor.Resolve }
  26. ))
  27. this.containers.push(stomach)
  28. }
  29. }