|
|
|
@@ -20,7 +20,7 @@ export class Dragon extends Creature { |
|
|
|
|
|
|
|
this.side = Side.Monsters |
|
|
|
|
|
|
|
const stomach = new Stomach(this, 50, new Damage( |
|
|
|
const stomach = new Stomach(this, 200, new Damage( |
|
|
|
{ amount: 40, type: DamageType.Acid, target: Vigor.Health }, |
|
|
|
{ amount: 20, type: DamageType.Crush, target: Vigor.Stamina }, |
|
|
|
{ amount: 20, type: DamageType.Dominance, target: Vigor.Resolve } |
|
|
|
@@ -28,7 +28,7 @@ export class Dragon extends Creature { |
|
|
|
|
|
|
|
this.containers.push(stomach) |
|
|
|
|
|
|
|
const bowels = new Bowels(this, 50, new Damage( |
|
|
|
const bowels = new Bowels(this, 200, new Damage( |
|
|
|
{ amount: 10, type: DamageType.Crush, target: Vigor.Health }, |
|
|
|
{ amount: 25, type: DamageType.Crush, target: Vigor.Stamina }, |
|
|
|
{ amount: 50, type: DamageType.Dominance, target: Vigor.Resolve } |
|
|
|
|