Browse Source

Fix Cafat using the wrong image

master
Fen Dweller 5 years ago
parent
commit
9826ffb09a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/game/creatures/cafat.ts

+ 1
- 1
src/game/creatures/cafat.ts View File

@@ -64,7 +64,7 @@ class CrushAction extends EatenAction {
lines: POVPair<Entity, Entity> = new POVPair([ lines: POVPair<Entity, Entity> = new POVPair([
[[POV.First, POV.Third], (user, target) => new LogLine(`You crush ${target.name} `)], [[POV.First, POV.Third], (user, target) => new LogLine(`You crush ${target.name} `)],
[[POV.Third, POV.First], (user) => new CompositeLog(new LogLine(`${user.name.capital} crushes you; ${user.pronouns.subjective} ${user.pronouns.isPlural ? 'belch' : 'belches'} as ${user.pronouns.possessive} gut lets out a fatal CRUNCH `), new ImgElem('./media/cafat/images/crunch.webp'))], [[POV.Third, POV.First], (user) => new CompositeLog(new LogLine(`${user.name.capital} crushes you; ${user.pronouns.subjective} ${user.pronouns.isPlural ? 'belch' : 'belches'} as ${user.pronouns.possessive} gut lets out a fatal CRUNCH `), new ImgElem('./media/cafat/images/crunch.webp'))],
[[POV.Third, POV.Third], (user, target) => new LogLine(`${user.name.capital} crushes ${target.name}; ${user.pronouns.subjective} ${user.pronouns.isPlural ? 'belch' : 'belches'} as ${user.pronouns.possessive} gut lets out a fatal CRUNCH `, new ImgElem('./media/cafat/images/belly-crush.webp'))]
[[POV.Third, POV.Third], (user, target) => new LogLine(`${user.name.capital} crushes ${target.name}; ${user.pronouns.subjective} ${user.pronouns.isPlural ? 'belch' : 'belches'} as ${user.pronouns.possessive} gut lets out a fatal CRUNCH `, new ImgElem('./media/cafat/images/crunch.webp'))]
]) ])


constructor (container: VoreContainer) { constructor (container: VoreContainer) {


Loading…
Cancel
Save