Feast 2.0!
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

21 lines
890 B

  1. import { Creature, POV } from '../entity'
  2. import { ProperNoun, TheyPronouns } from '../language'
  3. import { Stat, Damage, AttackAction, DamageType } from '../combat'
  4. import { Stomach, Bowels, VoreType } from '../vore'
  5. export class Player extends Creature {
  6. constructor () {
  7. super(new ProperNoun('The Dude'), TheyPronouns, { [Stat.STR]: 20, [Stat.DEX]: 20, [Stat.CON]: 20 }, new Set([VoreType.Oral]), new Set([VoreType.Oral, VoreType.Anal]), 50)
  8. this.actions.push(new AttackAction(new Damage({ type: DamageType.Pierce, amount: 20 })))
  9. const stomach = new Stomach(this, 100, new Damage({ amount: 100000000000, type: DamageType.Acid }, { amount: 10, type: DamageType.Crush }))
  10. this.containers.push(stomach)
  11. const bowels = new Bowels(this, 100, new Damage({ amount: 20, type: DamageType.Crush }))
  12. this.containers.push(bowels)
  13. this.perspective = POV.First
  14. }
  15. }