2019-12-08 18:17:28 +00:00
|
|
|
// Copyright (C) 2011-2019 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
|
|
|
/** \file gameutil.cpp
|
|
|
|
* \brief routines related to attacking and killing
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hyper.h"
|
|
|
|
|
|
|
|
namespace hr {
|
|
|
|
|
|
|
|
/** how many instances of each monster type has been killed */
|
|
|
|
EX array<int, motypes> kills;
|
|
|
|
|
|
|
|
int* killtable[] = {
|
|
|
|
&kills[moYeti], &kills[moWolf], &
|
|
|
|
kills[moRanger], &kills[moTroll], &kills[moGoblin], &
|
|
|
|
kills[moWorm], &kills[moDesertman], &kills[moIvyRoot], &
|
|
|
|
kills[moMonkey], &kills[moEagle], &kills[moSlime], &kills[moSeep], &
|
|
|
|
kills[moRunDog], &
|
|
|
|
kills[moCultist], &kills[moTentacle], &kills[moPyroCultist], &
|
|
|
|
kills[moLesser], &kills[moGreater], &
|
|
|
|
kills[moZombie], &kills[moGhost], &kills[moNecromancer], &
|
|
|
|
kills[moHedge], &kills[moFireFairy], &
|
|
|
|
kills[moCrystalSage], &kills[moShark], &kills[moGreaterShark], &
|
|
|
|
kills[moMiner], &kills[moFlailer], &kills[moLancer], &
|
|
|
|
kills[moVineSpirit], &kills[moVineBeast], &
|
|
|
|
kills[moBug0], &kills[moBug1], &kills[moBug2], &
|
|
|
|
kills[moDarkTroll], &kills[moEarthElemental], &
|
|
|
|
kills[moWitch], &kills[moEvilGolem], &kills[moWitchFlash], &kills[moWitchFire], &
|
|
|
|
kills[moWitchWinter], &kills[moWitchSpeed], &
|
|
|
|
kills[moCultistLeader], &
|
|
|
|
kills[moPirate], &kills[moCShark], &kills[moParrot], &
|
|
|
|
kills[moHexSnake], &kills[moRedTroll], &
|
|
|
|
kills[moPalace], &kills[moSkeleton], &kills[moFatGuard], &kills[moVizier], &
|
|
|
|
kills[moViking], &kills[moFjordTroll], &kills[moWaterElemental], &
|
|
|
|
kills[moAlbatross], &kills[moBomberbird], &
|
|
|
|
kills[moAirElemental], &kills[moFireElemental], &
|
|
|
|
kills[moGargoyle], &kills[moFamiliar], &kills[moOrangeDog], &
|
|
|
|
items[itMutant], &kills[moMetalBeast], &kills[moMetalBeast2], &
|
|
|
|
kills[moOutlaw], &kills[moForestTroll], &kills[moStormTroll], &
|
|
|
|
kills[moRedFox], &kills[moWindCrow], &
|
|
|
|
kills[moFalsePrincess], &kills[moRoseLady], &
|
|
|
|
kills[moRoseBeauty], &
|
|
|
|
kills[moRatling], &kills[moRatlingAvenger], &
|
|
|
|
kills[moDragonHead], &
|
|
|
|
kills[moGadfly], &kills[moSparrowhawk], &kills[moResearcher],
|
|
|
|
&kills[moKrakenH], &kills[moDraugr],
|
|
|
|
&kills[moBat], &kills[moReptile],
|
|
|
|
&kills[moHerdBull], &kills[moSleepBull], &kills[moRagingBull],
|
|
|
|
&kills[moButterfly],
|
|
|
|
&kills[moNarciss], &kills[moMirrorSpirit],
|
|
|
|
&kills[moHunterDog], &kills[moIceGolem], &kills[moVoidBeast],
|
|
|
|
&kills[moJiangshi], &kills[moTerraWarrior],
|
|
|
|
&kills[moSalamander], &kills[moLavaWolf],
|
|
|
|
&kills[moSwitch1], &kills[moSwitch2],
|
|
|
|
&kills[moMonk], &kills[moCrusher], &kills[moHexDemon], &kills[moAltDemon], &kills[moPair],
|
|
|
|
&kills[moBrownBug], &kills[moAcidBird],
|
|
|
|
&kills[moFallingDog], &kills[moVariantWarrior], &kills[moWestHawk],
|
2020-02-26 00:27:26 +00:00
|
|
|
&kills[moPike], &kills[moRusalka], &kills[moFrog], &kills[moPhaser], &kills[moVaulter],
|
2021-05-30 11:39:52 +00:00
|
|
|
&kills[moHexer], &kills[moAnimatedDie], &kills[moAngryDie],
|
2019-12-08 18:17:28 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
EX int tkills() {
|
|
|
|
int res = 0;
|
|
|
|
for(int i=0; killtable[i]; i++) res += killtable[i][0];
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX int killtypes() {
|
|
|
|
int res = 0;
|
|
|
|
for(int i=0; killtable[i]; i++) if(killtable[i][0]) res++;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EX bool arrow_stuns(eMonster m) {
|
|
|
|
return among(m, moCrusher, moMonk, moAltDemon, moHexDemon, moGreater, moGreaterM, moHedge);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool canAttack(cell *c1, eMonster m1, cell *c2, eMonster m2, flagtype flags) {
|
|
|
|
|
|
|
|
// cannot eat worms
|
|
|
|
if((flags & AF_EAT) && isWorm(m2)) return false;
|
|
|
|
|
|
|
|
if(m1 == passive_switch || m2 == passive_switch) return false;
|
|
|
|
|
|
|
|
if((flags & AF_GETPLAYER) && isPlayerOn(c2)) m2 = moPlayer;
|
|
|
|
|
|
|
|
if(!m2) return false;
|
|
|
|
|
|
|
|
if(m2 == moPlayer && peace::on) return false;
|
2021-05-02 13:16:29 +00:00
|
|
|
|
|
|
|
if((flags & AF_WEAK) && isIvy(c2)) return false;
|
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
if((flags & AF_MUSTKILL) && attackJustStuns(c2, flags, m1))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if((flags & AF_ONLY_FRIEND) && m2 != moPlayer && !isFriendly(c2)) return false;
|
|
|
|
if((flags & AF_ONLY_FBUG) && m2 != moPlayer && !isFriendlyOrBug(c2)) return false;
|
|
|
|
if((flags & AF_ONLY_ENEMY) && (m2 == moPlayer || isFriendlyOrBug(c2))) return false;
|
|
|
|
|
2020-03-02 19:35:15 +00:00
|
|
|
if(isFriendly(c2) && markOrb(itOrbEmpathy) && (flags & (AF_STAB | AF_MAGIC | AF_HORNS | AF_SWORD | AF_SWORD_INTO | AF_SIDE | AF_PLAGUE)))
|
|
|
|
return false;
|
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
if(m1 == moArrowTrap && arrow_stuns(m2)) return true;
|
|
|
|
|
2021-05-30 11:48:24 +00:00
|
|
|
if(isDie(m2) && !(flags & (AF_MAGIC | AF_CRUSH))) return false;
|
2021-05-27 11:00:20 +00:00
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
if(among(m2, moAltDemon, moHexDemon, moPair, moCrusher, moNorthPole, moSouthPole, moMonk) && !(flags & (AF_EAT | AF_MAGIC | AF_BULL | AF_CRUSH)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(m2 == moHedge && !(flags & (AF_STAB | AF_TOUGH | AF_EAT | AF_MAGIC | AF_LANCE | AF_SWORD_INTO | AF_HORNS | AF_BULL | AF_CRUSH)))
|
|
|
|
if(!checkOrb(m1, itOrbThorns)) return false;
|
|
|
|
|
|
|
|
// krakens do not try to fight even with Discord
|
|
|
|
if((m1 == moKrakenT || m1 == moKrakenH) &&
|
|
|
|
(m2 == moKrakenT || m2 == moKrakenH))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(m2 == moDraugr && !(flags & (AF_SWORD | AF_MAGIC | AF_SWORD_INTO | AF_HORNS | AF_CRUSH))) return false;
|
|
|
|
|
|
|
|
// if(m2 == moHerdBull && !(flags & AF_MAGIC)) return false;
|
|
|
|
if(isBull(m2) && !(flags & (AF_MAGIC | AF_HORNS | AF_SWORD_INTO | AF_CRUSH))) return false;
|
|
|
|
if(m2 == moButterfly && !(flags & (AF_MAGIC | AF_BULL | AF_HORNS | AF_SWORD_INTO | AF_CRUSH))) return false;
|
|
|
|
|
|
|
|
if(!(flags & AF_NOSHIELD) && ((flags & AF_NEXTTURN) ? checkOrb2 : checkOrb)(m2, itOrbShield)) return false;
|
|
|
|
|
|
|
|
if((flags & AF_STAB) && m2 != moHedge)
|
|
|
|
if(!checkOrb(m1, itOrbThorns)) return false;
|
|
|
|
|
|
|
|
if(flags & AF_BACK) {
|
|
|
|
if(m2 == moFlailer && !c2->stuntime) flags |= AF_IGNORE_UNARMED;
|
|
|
|
else if(m2 == moVizier && !isUnarmed(m1)) ;
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & AF_APPROACH) {
|
|
|
|
if(m2 == moLancer) ;
|
|
|
|
else if((flags & AF_HORNS) && checkOrb(m1, itOrbHorns)) ;
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!(flags & AF_IGNORE_UNARMED) && isUnarmed(m1)) return false;
|
|
|
|
|
|
|
|
if(m2 == moGreater || m2 == moGreaterM)
|
|
|
|
if(!(flags & (AF_MAGIC | AF_SWORD_INTO | AF_HORNS | AF_CRUSH))) return false;
|
|
|
|
|
2020-02-26 01:49:35 +00:00
|
|
|
if(!(flags & (AF_GUN | AF_SWORD | AF_SWORD_INTO | AF_MAGIC | AF_PLAGUE)))
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c1 != c2 && !logical_adjacent(c1, m1, c2)) return false;
|
|
|
|
|
2020-02-26 01:49:35 +00:00
|
|
|
if(!(flags & (AF_LANCE | AF_STAB | AF_BACK | AF_APPROACH | AF_GUN | AF_MAGIC | AF_PLAGUE | AF_SIDE)))
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c1 && c2 && againstRose(c1, c2) && !ignoresSmell(m1))
|
|
|
|
return false;
|
|
|
|
|
2021-06-03 08:48:32 +00:00
|
|
|
if(m2 == moShadow && !(flags & (AF_SWORD | AF_SWORD_INTO | AF_CRUSH))) return false;
|
2019-12-08 18:17:28 +00:00
|
|
|
if(isWorm(m2) && m2 != moTentacleGhost && !isDragon(m2)) return false;
|
|
|
|
|
|
|
|
// dragon can't attack itself, or player who mounted it
|
|
|
|
if(c1 && c2 && isWorm(c1->monst) && isWorm(c2->monst) && wormhead(c1) == wormhead(c2)
|
|
|
|
&& m1 != moTentacleGhost && m2 != moTentacleGhost)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// if(m2 == moTortoise && !(flags & AF_MAGIC)) return false;
|
|
|
|
|
|
|
|
if(m2 == moRoseBeauty)
|
|
|
|
if(!(flags & (AF_MAGIC | AF_LANCE | AF_GUN | AF_SWORD_INTO | AF_BULL | AF_CRUSH)))
|
|
|
|
if(!isMimic(m1))
|
|
|
|
if(!checkOrb(m1, itOrbBeauty) && !checkOrb(m1, itOrbAether) && !checkOrb(m1, itOrbShield))
|
|
|
|
if(!c1 || !c2 || !withRose(c1,c2))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(m2 == moFlailer && !c2->stuntime)
|
|
|
|
if(!(flags & (AF_MAGIC | AF_TOUGH | AF_EAT | AF_HORNS | AF_LANCE | AF_BACK | AF_SWORD_INTO | AF_BULL | AF_CRUSH))) return false;
|
|
|
|
|
|
|
|
if(m2 == moVizier && c2->hitpoints > 1 && !c2->stuntime)
|
|
|
|
if(!(flags & (AF_MAGIC | AF_TOUGH | AF_EAT | AF_HORNS | AF_LANCE | AF_BACK | AF_FAST | AF_BULL | AF_CRUSH))) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool petrify(cell *c, eWall walltype, eMonster m) {
|
|
|
|
destroyHalfvine(c);
|
|
|
|
destroyTrapsOn(c);
|
|
|
|
playSound(c, "die-troll");
|
|
|
|
|
|
|
|
if(walltype == waIcewall && !isIcyLand(c->land))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(c->land == laWestWall) return false;
|
|
|
|
|
|
|
|
if(isWateryOrBoat(c) && c->land == laWhirlpool) {
|
|
|
|
c->wall = waSea;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(c->wall == waRoundTable) return false;
|
|
|
|
|
|
|
|
if(walltype == waGargoyle && cellUnstableOrChasm(c))
|
|
|
|
walltype = waGargoyleFloor;
|
|
|
|
else if(walltype == waGargoyle && isWatery(c))
|
|
|
|
walltype = waGargoyleBridge;
|
|
|
|
else if(walltype == waPetrified && isWatery(c))
|
|
|
|
walltype = waPetrifiedBridge;
|
|
|
|
else if((c->wall == waTempBridge || c->wall == waTempBridgeBlocked) && c->land == laWhirlpool) {
|
|
|
|
c->wall = waTempBridgeBlocked;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(!doesnotFall(c)) {
|
|
|
|
fallingFloorAnimation(c, walltype, m);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isReptile(c->wall)) kills[moReptile]++;
|
|
|
|
destroyHalfvine(c);
|
|
|
|
c->wall = walltype;
|
|
|
|
c->wparam = m;
|
|
|
|
c->item = itNone;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killIvy(cell *c, eMonster who) {
|
|
|
|
if(c->monst == moIvyDead) return;
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
if(checkOrb(who, itOrbStone)) petrify(c, waPetrified, c->monst);
|
|
|
|
c->monst = moIvyDead; // NEWYEARFIX
|
|
|
|
for(int i=0; i<c->type; i++) if(c->move(i))
|
|
|
|
if(isIvy(c->move(i)) && c->move(i)->mondir == c->c.spin(i))
|
2019-12-25 22:08:41 +00:00
|
|
|
killIvy(c->move(i), who), kills[moIvyDead]++;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EX void prespill(cell* c, eWall t, int rad, cell *from) {
|
|
|
|
if(againstWind(c, from)) return;
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
// these monsters block spilling
|
|
|
|
if(c->monst == moSeep || c->monst == moVineSpirit || c->monst == moShark ||
|
|
|
|
c->monst == moGreaterShark || c->monst == moParrot || c->monst == moCShark)
|
|
|
|
return;
|
|
|
|
// turn statues into Slimes!
|
|
|
|
if(among(c->wall, waBigStatue, waTerraWarrior) && t != waNone) {
|
|
|
|
c->wall = waNone;
|
|
|
|
c->monst = moSlimeNextTurn;
|
|
|
|
}
|
|
|
|
// slimedeath spill
|
|
|
|
if((c->monst == moSlime || c->monst == moSlimeNextTurn) && t == waNone) {
|
|
|
|
c->wall = waNone; attackMonster(c, 0, moNone);
|
|
|
|
}
|
|
|
|
if(c->wall == waClosedGate) {
|
|
|
|
c->wall = waPalace;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// no slime in Whirlpool
|
|
|
|
if(c->land == laWhirlpool) return;
|
|
|
|
// these walls block spilling completely
|
|
|
|
if(c->wall == waIcewall || c->wall == waBarrier || c->wall == waWarpGate ||
|
|
|
|
c->wall == waDeadTroll || c->wall == waDeadTroll2 ||
|
|
|
|
c->wall == waDune || c->wall == waAncientGrave ||
|
|
|
|
c->wall == waThumperOff || c->wall == waThumperOn ||
|
|
|
|
c->wall == waFreshGrave || c->wall == waColumn || c->wall == waPartialFire ||
|
|
|
|
c->wall == waDeadwall || c->wall == waWaxWall || c->wall == waCamelot || c->wall == waRoundTable ||
|
|
|
|
c->wall == waBigStatue || c->wall == waRed1 || c->wall == waRed2 || c->wall == waRed3 ||
|
|
|
|
c->wall == waTower ||
|
|
|
|
c->wall == waPalace ||
|
|
|
|
c->wall == waPlatform || c->wall == waStone || c->wall == waTempWall ||
|
|
|
|
c->wall == waTempFloor || c->wall == waTempBridge || c->wall == waPetrifiedBridge || c->wall == waTempBridgeBlocked ||
|
|
|
|
c->wall == waSandstone || c->wall == waCharged || c->wall == waGrounded ||
|
|
|
|
c->wall == waMetal || c->wall == waSaloon || c->wall == waFan ||
|
|
|
|
c->wall == waBarrowDig || c->wall == waBarrowWall ||
|
|
|
|
c->wall == waMirrorWall)
|
|
|
|
return;
|
|
|
|
if(c->wall == waFireTrap) {
|
|
|
|
if(c->wparam == 0) c->wparam = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(c->wall == waExplosiveBarrel)
|
|
|
|
explodeBarrel(c);
|
|
|
|
destroyTrapsOn(c);
|
|
|
|
// these walls block further spilling
|
|
|
|
if(c->wall == waCavewall || cellUnstable(c) || c->wall == waSulphur ||
|
|
|
|
c->wall == waSulphurC || c->wall == waLake || c->wall == waChasm ||
|
|
|
|
c->wall == waBigTree || c->wall == waSmallTree || c->wall == waTemporary ||
|
|
|
|
c->wall == waVinePlant || isFire(c) || c->wall == waBonfireOff || c->wall == waVineHalfA || c->wall == waVineHalfB ||
|
|
|
|
c->wall == waCamelotMoat || c->wall == waSea || c->wall == waCTree ||
|
|
|
|
c->wall == waRubble || c->wall == waGargoyleFloor || c->wall == waGargoyle ||
|
2020-02-29 03:07:17 +00:00
|
|
|
c->wall == waRose || c->wall == waPetrified || c->wall == waPetrifiedBridge || c->wall == waRuinWall ||
|
|
|
|
among(c->wall, waDeepWater, waShallow))
|
2019-12-08 18:17:28 +00:00
|
|
|
t = waTemporary;
|
|
|
|
|
|
|
|
if(c->wall == waSulphur) {
|
|
|
|
// remove the center as it would not look good
|
|
|
|
for(int i=0; i<c->type; i++) if(c->move(i) && c->move(i)->wall == waSulphurC)
|
|
|
|
c->move(i)->wall = waSulphur;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isReptile(c->wall)) {
|
|
|
|
if(c->monst || isPlayerOn(c)) kills[moReptile]++;
|
|
|
|
else c->monst = moReptile, c->stuntime = 3, c->hitpoints = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroyHalfvine(c);
|
|
|
|
if(c->wall == waTerraWarrior) kills[waTerraWarrior]++;
|
|
|
|
c->wall = t;
|
|
|
|
// destroy items...
|
|
|
|
c->item = itNone;
|
|
|
|
// block spill
|
|
|
|
if(t == waTemporary) return;
|
|
|
|
// cwt.at->item = itNone;
|
2019-12-26 18:04:32 +00:00
|
|
|
if(rad) for(cell *c2: adj_minefield_cells(c))
|
|
|
|
prespill(c2, t, rad-1, c);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EX void spillfix(cell* c, eWall t, int rad) {
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c->wall == waTemporary) {
|
|
|
|
changes.ccell(c);
|
|
|
|
c->wall = t;
|
|
|
|
}
|
2019-12-26 18:04:32 +00:00
|
|
|
if(rad) for(cell *c2: adj_minefield_cells(c))
|
|
|
|
spillfix(c2, t, rad-1);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EX void spill(cell* c, eWall t, int rad) {
|
|
|
|
prespill(c,t,rad, c); spillfix(c,t,rad);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void degradeDemons() {
|
|
|
|
addMessage(XLAT("You feel more experienced in demon fighting!"));
|
2020-07-07 19:24:56 +00:00
|
|
|
playSound(cwt.at, "levelup");
|
2019-12-08 18:17:28 +00:00
|
|
|
int dcs = isize(dcal);
|
|
|
|
for(int i=0; i<dcs; i++) {
|
|
|
|
cell *c = dcal[i];
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c->monst == moGreaterM || c->monst == moGreater) {
|
|
|
|
changes.ccell(c);
|
2020-04-06 07:22:05 +00:00
|
|
|
achievement_gain_once("DEMONSLAYER");
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c->monst == moGreaterM) c->monst = moLesserM;
|
|
|
|
if(c->monst == moGreater) c->monst = moLesser;
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
2020-02-29 16:58:59 +00:00
|
|
|
shmup::degradeDemons();
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EX void stunMonster(cell *c2, eMonster killer, flagtype flags) {
|
|
|
|
int newtime = (
|
|
|
|
c2->monst == moFatGuard ? 2 :
|
|
|
|
c2->monst == moSkeleton && c2->land != laPalace && c2->land != laHalloween ? 7 :
|
|
|
|
c2->monst == moTerraWarrior ? min(int(c2->stuntime + 8 - c2->hitpoints), 7) :
|
|
|
|
isMetalBeast(c2->monst) ? 7 :
|
|
|
|
c2->monst == moTortoise ? 7 :
|
2020-03-02 02:06:15 +00:00
|
|
|
c2->monst == moWorldTurtle ? 7 :
|
2019-12-08 18:17:28 +00:00
|
|
|
c2->monst == moReptile ? 7 :
|
|
|
|
isPrincess(c2->monst) ? 6 :
|
|
|
|
// spear stunning
|
|
|
|
isBull(c2->monst) ? 3 :
|
|
|
|
(c2->monst == moGreater || c2->monst == moGreaterM) ? 5 :
|
|
|
|
c2->monst == moButterfly ? 2 :
|
|
|
|
c2->monst == moDraugr ? 1 :
|
|
|
|
c2->monst == moVizier ? 0 :
|
|
|
|
c2->monst == moHedge ? 1 :
|
|
|
|
c2->monst == moFlailer ? 1 :
|
|
|
|
c2->monst == moSalamander ? 6 :
|
|
|
|
c2->monst == moBrownBug ? 3 :
|
2021-05-02 13:16:29 +00:00
|
|
|
((flags & AF_WEAK) && !attackJustStuns(c2, flags &~ AF_WEAK, killer)) ? min(5+c2->stuntime, 15) :
|
2019-12-08 18:17:28 +00:00
|
|
|
3);
|
|
|
|
if(killer == moArrowTrap) newtime = min(newtime + 3, 7);
|
2021-07-18 06:50:57 +00:00
|
|
|
if(!(flags & AF_WEAK) && !isMetalBeast(c2->monst) && !among(c2->monst, moSkeleton, moReptile, moSalamander, moTortoise, moWorldTurtle, moBrownBug)) {
|
2019-12-08 18:17:28 +00:00
|
|
|
c2->hitpoints--;
|
|
|
|
if(c2->monst == moPrincess)
|
|
|
|
playSound(c2, princessgender() ? "hit-princess" : "hit-prince");
|
|
|
|
}
|
|
|
|
if(c2->stuntime < newtime) c2->stuntime = newtime;
|
|
|
|
if(isBull(c2->monst)) c2->mondir = NODIR;
|
|
|
|
checkStunKill(c2);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool attackJustStuns(cell *c2, flagtype f, eMonster attacker) {
|
2021-05-02 13:16:29 +00:00
|
|
|
if(f & AF_WEAK)
|
|
|
|
return true;
|
2019-12-08 18:17:28 +00:00
|
|
|
if(f & AF_HORNS)
|
|
|
|
return hornStuns(c2);
|
|
|
|
else if(attacker == moArrowTrap && arrow_stuns(c2->monst))
|
|
|
|
return true;
|
|
|
|
else if((f & AF_SWORD) && c2->monst == moSkeleton)
|
|
|
|
return false;
|
2020-11-05 14:12:50 +00:00
|
|
|
else if(f & (AF_CRUSH | AF_MAGIC | AF_FALL | AF_EAT | AF_GUN | AF_PSI))
|
2019-12-08 18:17:28 +00:00
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return isStunnable(c2->monst) && c2->hitpoints > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void minerEffect(cell *c) {
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
eWall ow = c->wall;
|
|
|
|
if(c->wall == waOpenGate || c->wall == waFrozenLake || c->wall == waBoat ||
|
|
|
|
c->wall == waStrandedBoat ||
|
|
|
|
c->wall == waCIsland || c->wall == waCIsland2 || c->wall == waTrapdoor ||
|
|
|
|
c->wall == waGiantRug) ;
|
|
|
|
else if(c->wall == waMineUnknown || c->wall == waMineMine || c->wall == waMineOpen)
|
|
|
|
c->wall = waMineOpen;
|
|
|
|
else if(c->wall == waRed2) c->wall = waRed1;
|
|
|
|
else if(c->wall == waRed3) c->wall = waRed2;
|
|
|
|
else if(isReptile(c->wall))
|
|
|
|
c->wparam = 1; // wake up next turn
|
|
|
|
else if(c->wall == waTempFloor) c->wall = waChasm;
|
|
|
|
else if(c->wall == waTempBridge || c->wall == waPetrifiedBridge || c->wall == waTempBridgeBlocked)
|
|
|
|
placeWater(c, NULL);
|
|
|
|
else if(doesFall(c))
|
|
|
|
ow = waNone;
|
|
|
|
else
|
|
|
|
c->wall = waNone;
|
|
|
|
if(c->wall != ow && ow) drawParticles(c, winf[ow].color, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killMutantIvy(cell *c, eMonster who) {
|
|
|
|
if(checkOrb(who, itOrbStone)) petrify(c, waPetrified, moMutant);
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
removeIvy(c);
|
|
|
|
for(int i=0; i<c->type; i++)
|
|
|
|
if(c->move(i)->mondir == c->c.spin(i) && (isMutantIvy(c->move(i)) || c->move(i)->monst == moFriendlyIvy))
|
2019-12-25 10:53:50 +00:00
|
|
|
kills[c->move(i)->monst]++, killMutantIvy(c->move(i), who);
|
|
|
|
if(c->land == laClearing) clearing::imput(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 21:03:17 +00:00
|
|
|
EX bignum ivy_total() {
|
2019-12-25 22:08:41 +00:00
|
|
|
return kills[moMutant] + kills[moFriendlyIvy] +
|
|
|
|
kills[moIvyRoot] + kills[moIvyHead] + kills[moIvyBranch] + kills[moIvyWait] + kills[moIvyDead]
|
|
|
|
+ clearing::imputed;
|
2019-12-25 21:03:17 +00:00
|
|
|
}
|
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
EX void killMonster(cell *c, eMonster who, flagtype deathflags IS(0)) {
|
|
|
|
eMonster m = c->monst;
|
|
|
|
DEBBI(DF_TURN, ("killmonster ", dnameof(m)));
|
|
|
|
|
|
|
|
if(!m) return;
|
|
|
|
|
|
|
|
if(m == moKrakenH) return;
|
|
|
|
if(m == moKrakenT) {
|
|
|
|
if(c->hitpoints && m == moKrakenT) kills[moKrakenT]++;
|
|
|
|
c->hitpoints = 0;
|
|
|
|
c->stuntime = 1;
|
|
|
|
cell *head = kraken::head(c);
|
2020-07-07 19:24:56 +00:00
|
|
|
if(kraken::totalhp(head) == 0) {
|
|
|
|
kraken::kill(head, who);
|
|
|
|
playSound(head, "die-kraken");
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isDragon(m)) {
|
|
|
|
if(c->hitpoints && m != moDragonHead) kills[moDragonTail]++;
|
|
|
|
c->hitpoints = 0;
|
|
|
|
c->stuntime = 1;
|
|
|
|
cell *head = dragon::findhead(c);
|
|
|
|
if(dragon::totalhp(head) == 0) dragon::kill(head, who);
|
2020-03-11 09:06:12 +00:00
|
|
|
return;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
if(isWorm(c) && m != moTentacleGhost) return;
|
|
|
|
|
|
|
|
bool fallanim = (deathflags & AF_FALL) && m != moMimic;
|
|
|
|
|
|
|
|
int pcount = fallanim ? 0 : 16;
|
2021-06-03 08:48:32 +00:00
|
|
|
if(m == moShadow)
|
|
|
|
kill_shadow_at(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
#if CAP_HISTORY
|
|
|
|
if(!isBug(m) && !isAnyIvy(m)) {
|
|
|
|
history::killhistory.push_back(make_pair(c,m));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(m == moGolemMoved) m = moGolem;
|
|
|
|
if(m == moKnightMoved) m = moKnight;
|
|
|
|
if(m == moSlimeNextTurn) m = moSlime;
|
|
|
|
if(m == moLesserM) m = moLesser;
|
|
|
|
if(m == moGreater) m = moLesser;
|
|
|
|
if(m == moGreaterM) m = moLesser;
|
|
|
|
if(isPrincess(m)) m = moPrincess;
|
|
|
|
if(m == moTentacleGhost) m = moGhost;
|
|
|
|
if(m == moHunterGuard) m = moHunterDog;
|
|
|
|
if(m == moHunterChanging) m = moHunterDog;
|
|
|
|
if(m == moWolfMoved) m = moWolf;
|
2019-12-25 22:08:41 +00:00
|
|
|
if(!isBulletType(m) && m != moIvyDead) kills[m]++;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
if(saved_tortoise_on(c)) c->item = itNone;
|
|
|
|
|
|
|
|
if(!c->item) if(m == moButterfly && (deathflags & AF_BULL))
|
|
|
|
c->item = itBull;
|
|
|
|
|
|
|
|
if(isRatling(m) && c->wall == waBoat) {
|
|
|
|
bool avenge = false;
|
|
|
|
for(int i=0; i<c->type; i++) if(!isWarpedType(c->move(i)->land))
|
|
|
|
avenge = true;
|
2020-02-29 16:58:59 +00:00
|
|
|
if(avenge)
|
|
|
|
changes.value_add(avengers, 2);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moMirrorSpirit && who != moMimic && !(deathflags & (AF_MAGIC | AF_CRUSH))) {
|
|
|
|
kills[m]--;
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.value_inc(mirrorspirits);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(isMutantIvy(m) || m == moFriendlyIvy) {
|
|
|
|
pcount = 0;
|
2020-02-29 16:58:59 +00:00
|
|
|
if(isMutantIvy(m)) changes.at_commit([] { clearing::direct++; });
|
2020-03-01 13:08:40 +00:00
|
|
|
changes.value_keep(clearing::imputed);
|
2019-12-25 21:03:17 +00:00
|
|
|
bignum s = ivy_total() - 1;
|
2019-12-08 18:17:28 +00:00
|
|
|
killMutantIvy(c, who);
|
2019-12-25 22:03:46 +00:00
|
|
|
s = ivy_total() - s;
|
2019-12-26 08:39:50 +00:00
|
|
|
if(vid.bubbles_special && s > bignum(1))
|
2019-12-25 21:03:17 +00:00
|
|
|
drawBubble(c, 0xFFFF00, s.get_str(100), .5);
|
2020-03-06 13:22:59 +00:00
|
|
|
if(isize(clearing::imputed.digits) > 11)
|
|
|
|
achievement_gain_once("KILLMUTANT");
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moPrincess) {
|
|
|
|
princess::info *i = princess::getPrincessInfo(c);
|
|
|
|
if(i) {
|
2021-07-11 01:57:54 +00:00
|
|
|
changes.value_keep(*i);
|
2019-12-08 18:17:28 +00:00
|
|
|
i->princess = NULL;
|
|
|
|
if(i->bestdist == OUT_OF_PALACE) {
|
|
|
|
items[itSavedPrincess]--;
|
|
|
|
if(items[itSavedPrincess] < 0) {
|
|
|
|
printf("princess below 0\n");
|
|
|
|
items[itSavedPrincess] = 0;
|
|
|
|
}
|
|
|
|
if(items[itSavedPrincess] == 0 && !inv::on) {
|
|
|
|
items[itOrbLove] = 0;
|
2020-03-02 01:35:03 +00:00
|
|
|
changes.value_keep(princess::reviveAt);
|
2019-12-08 18:17:28 +00:00
|
|
|
princess::reviveAt = gold(NO_LOVE) + 20;
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 20:24:44 +00:00
|
|
|
if(princess::challenge) changes.at_commit([] { showMissionScreen(); });
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moGargoyle && c->wall != waMineMine) {
|
|
|
|
bool connected = false;
|
|
|
|
|
|
|
|
if(isGravityLand(c->land)) {
|
|
|
|
for(int i=0; i<c->type; i++) {
|
|
|
|
cell *c2 = c->move(i);
|
|
|
|
if(c2->wall == waPlatform || c2->wall == waGargoyle || c2->wall == waBarrier ||
|
|
|
|
c2->wall == waDeadTroll || c2->wall == waDeadTroll2 || c2->wall == waTrunk ||
|
|
|
|
c2->wall == waPetrified || isAlchAny(c2->wall))
|
|
|
|
connected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for(int i=0; i<c->type; i++) {
|
|
|
|
cell *c2 = c->move(i);
|
|
|
|
if(!cellUnstableOrChasm(c2) && !isWatery(c2)) connected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(connected) petrify(c, waGargoyle, m), pcount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moIceGolem) {
|
|
|
|
if(petrify(c, waIcewall, m)) pcount = 0;
|
|
|
|
heat::affect(c, -1);
|
2020-02-29 16:58:59 +00:00
|
|
|
forCellEx(c2, c) {
|
|
|
|
changes.ccell(c2);
|
|
|
|
heat::affect(c2, -.5);
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moTroll) {
|
|
|
|
petrify(c, waDeadTroll, m); pcount = 0;
|
2020-02-29 16:58:59 +00:00
|
|
|
forCellEx(c1, c) {
|
|
|
|
changes.ccell(c1);
|
|
|
|
c1->item = itNone;
|
2021-07-10 09:32:13 +00:00
|
|
|
if(c1->wall == waDeadwall) c1->wall = waCavewall;
|
|
|
|
if(c1->wall == waDeadfloor2 && !c1->monst && !isPlayerOn(c1)) c1->wall = waCavewall;
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c1->wall == waDeadfloor) c1->wall = waCavefloor;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m == moFjordTroll || m == moForestTroll || m == moStormTroll) {
|
|
|
|
petrify(c, waDeadTroll2, m);
|
|
|
|
}
|
|
|
|
if(m == moMiner) {
|
|
|
|
pcount = 32;
|
|
|
|
playSound(c, "splash" + pick12());
|
|
|
|
destroyHalfvine(c);
|
|
|
|
minerEffect(c);
|
2020-05-22 14:52:30 +00:00
|
|
|
#if CAP_COMPLEX2
|
2019-12-08 18:17:28 +00:00
|
|
|
brownian::dissolve_brownian(c, 1);
|
2020-05-22 14:52:30 +00:00
|
|
|
#endif
|
2020-02-29 16:58:59 +00:00
|
|
|
forCellEx(c1, c) if(passable(c1, c, P_MONSTER | P_MIRROR | P_CLIMBUP | P_CLIMBDOWN)) {
|
|
|
|
changes.ccell(c1);
|
|
|
|
destroyHalfvine(c1);
|
|
|
|
minerEffect(c1);
|
2020-05-22 14:52:30 +00:00
|
|
|
#if CAP_COMPLEX2
|
2020-02-29 16:58:59 +00:00
|
|
|
brownian::dissolve_brownian(c1, 1);
|
2020-05-22 14:52:30 +00:00
|
|
|
#endif
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c1->monst == moSlime || c1->monst == moSlimeNextTurn)
|
|
|
|
killMonster(c1, who);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
2020-02-26 00:31:31 +00:00
|
|
|
forCellEx(c2, c) {
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.ccell(c2);
|
2020-02-26 00:31:31 +00:00
|
|
|
if(c2->wall == waPalace) c2->wall = waRubble;
|
|
|
|
if(c2->wall == waDeadwall) c2->wall = waDeadfloor2;
|
|
|
|
if(c2->wall == waExplosiveBarrel) explodeBarrel(c2);
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
if(m == moOrangeDog) {
|
|
|
|
if(pcount) for(int i=0; i<8; i++) {
|
|
|
|
drawParticle(c, 0xFFFFFF);
|
|
|
|
drawParticle(c, 0x202020);
|
|
|
|
}
|
|
|
|
pcount = 0;
|
|
|
|
}
|
|
|
|
if(m == moDraugr) {
|
|
|
|
if(pcount) drawParticles(c, 0x804000, 8);
|
|
|
|
pcount = 0;
|
|
|
|
}
|
|
|
|
if(m == moPalace) {
|
|
|
|
if(pcount) {
|
|
|
|
pcount = 4;
|
|
|
|
for(int i=0; i<12; i++) drawParticle(c, 0x20C020);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m == moPrincess) {
|
|
|
|
playSound(c, princessgender() ? "die-princess" : "die-prince");
|
|
|
|
}
|
|
|
|
if(m == moVineBeast)
|
|
|
|
petrify(c, waVinePlant, m), pcount = 0;
|
|
|
|
if(isBird(m)) moveEffect(movei(c, FALL), moDeadBird);
|
|
|
|
if(m == moAcidBird) {
|
|
|
|
playSound(c, "die-bomberbird");
|
|
|
|
pcount = 64;
|
|
|
|
#if CAP_COMPLEX2
|
|
|
|
brownian::dissolve(c, 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if(m == moBomberbird || m == moTameBomberbird) {
|
|
|
|
pcount = 0;
|
|
|
|
playSound(c, "die-bomberbird");
|
|
|
|
if(c->wall == waNone || c->wall == waMineUnknown || c->wall == waMineOpen ||
|
|
|
|
c->wall == waCavefloor || c->wall == waDeadfloor || c->wall == waDeadfloor2 ||
|
|
|
|
c->wall == waRubble || c->wall == waGargoyleFloor ||
|
|
|
|
c->wall == waCIsland || c->wall == waCIsland2 ||
|
|
|
|
c->wall == waStrandedBoat || c->wall == waRed1 || c->wall == waGiantRug) {
|
|
|
|
c->wall = waMineMine;
|
|
|
|
if(c->item) explodeMine(c);
|
|
|
|
else if(c->land == laMinefield) c->landparam = 1;
|
|
|
|
}
|
|
|
|
else if(c->wall == waFrozenLake)
|
|
|
|
c->wall = waLake;
|
|
|
|
else if(c->wall == waGargoyleBridge)
|
|
|
|
placeWater(c, c);
|
|
|
|
else if(c->wall == waRed3 || c->wall == waRed2) {
|
|
|
|
c->wall = waRed1;
|
|
|
|
for(int i=0; i<c->type; i++) if(c->move(i)->wall == waRed3)
|
|
|
|
c->move(i)->wall = waRed2;
|
|
|
|
c->item = itNone;
|
|
|
|
}
|
|
|
|
eWall w = c->wall;
|
|
|
|
if(isFire(c) || c->wall == waRose || isReptile(c->wall)) {
|
|
|
|
c->wall = waMineMine;
|
|
|
|
explodeMine(c);
|
|
|
|
if(isReptile(w)) kills[moReptile]++;
|
|
|
|
if(w == waReptile) c->wall = waChasm;
|
|
|
|
if(w == waReptileBridge) placeWater(c, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m == moVineSpirit) {
|
|
|
|
pcount = 32;
|
|
|
|
playSound(c, "die-vinespirit");
|
|
|
|
destroyHalfvine(c);
|
|
|
|
if(!isFire(c)) c->wall = waNone;
|
|
|
|
}
|
|
|
|
if(m == moRedTroll) {
|
|
|
|
playSound(c, "die-troll");
|
|
|
|
if(doesFall(c)) fallingFloorAnimation(c, waRed1, m), pcount = 0;
|
|
|
|
else if(snakepile(c, m)) pcount = 0;
|
|
|
|
}
|
|
|
|
if(m == moBrownBug) {
|
|
|
|
if(doesFall(c)) ;
|
|
|
|
else if(snakepile(c, m)) pcount = 0;
|
|
|
|
}
|
|
|
|
if(m == moDarkTroll) {
|
|
|
|
playSound(c, "die-troll");
|
|
|
|
if(doesFall(c)) fallingFloorAnimation(c, waDeadwall, m), pcount = 0;
|
|
|
|
else if(c->wall == waRed1 || c->wall == waRed2 || c->wall == waRed3)
|
|
|
|
c->wall = waDeadwall, pcount = 0;
|
|
|
|
else if(snakepile(c, m))
|
|
|
|
pcount = 0;
|
|
|
|
}
|
|
|
|
if(isWitch(m) && (isFire(c) || passable(c, NULL, P_MONSTER)) && !c->item) {
|
|
|
|
if(m == moWitchFire) c->item = itOrbFire;
|
|
|
|
if(m == moWitchFlash) c->item = itOrbFlash;
|
|
|
|
if(m == moWitchGhost) c->item = itOrbAether;
|
|
|
|
if(m == moWitchWinter) c->item = itOrbWinter;
|
|
|
|
if(m == moWitchSpeed) c->item = itOrbSpeed;
|
|
|
|
if(isFire(c) && itemBurns(c->item))
|
|
|
|
c->item = itNone;
|
|
|
|
}
|
2020-02-26 00:31:45 +00:00
|
|
|
if(who == moPlayer || (isFriendly(who) && items[itOrbEmpathy])) {
|
2020-02-29 19:45:01 +00:00
|
|
|
eItem o = frog_power(m);
|
|
|
|
if(o && who != moPlayer) markOrb2(itOrbEmpathy);
|
2020-02-29 23:19:22 +00:00
|
|
|
if(o) items[o] += 5;
|
2020-02-26 00:31:45 +00:00
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
if(checkOrb(who, itOrbStone))
|
|
|
|
petrify(c, waPetrified, m), pcount = 0;
|
|
|
|
if(m == moFireFairy) {
|
|
|
|
drawFireParticles(c, 16); pcount = 0;
|
|
|
|
playSound(c, "die-fairy");
|
|
|
|
playSound(c, "fire");
|
|
|
|
makeflame(c, 50, false);
|
|
|
|
}
|
|
|
|
if(c->monst == moMetalBeast2 && !c->item && who == moLightningBolt && c->wall != waPetrified && c->wall != waChasm)
|
|
|
|
c->item = itFulgurite; // this is actually redundant in many cases
|
|
|
|
if(m == moPyroCultist && c->item == itNone && c->wall != waChasm && c->wall != waPetrified) {
|
|
|
|
// a reward for killing him before he shoots!
|
|
|
|
c->item = itOrbDragon;
|
|
|
|
}
|
|
|
|
if(m == moOutlaw && (c->item == itNone || c->item == itRevolver) && c->wall != waChasm)
|
|
|
|
c->item = itBounty;
|
|
|
|
// note: an Orb appears underwater!
|
|
|
|
if(m == moWaterElemental && c->item == itNone)
|
|
|
|
c->item = itOrbWater;
|
|
|
|
|
|
|
|
if(m == moPirate && isOnCIsland(c) && c->item == itNone && (
|
|
|
|
eubinary ||
|
|
|
|
(c->master->alt && celldistAlt(c) <= 2-getDistLimit()) ||
|
|
|
|
isHaunted(c->land)) && !cryst) {
|
|
|
|
bool toomany = false;
|
|
|
|
for(int i=0; i<c->type; i++) {
|
|
|
|
cell *c2 = c->move(i);
|
|
|
|
if(c2 && c2->item == itCompass) toomany = true;
|
|
|
|
if(c2 && BITRUNCATED) for(int j=0; j<c2->type; j++)
|
|
|
|
if(c2->move(j) && c2->move(j)->item == itCompass)
|
|
|
|
toomany = true;
|
|
|
|
}
|
|
|
|
if(!toomany) c->item = itCompass;
|
|
|
|
}
|
|
|
|
if(m == moSlime) {
|
|
|
|
pcount = 0;
|
|
|
|
drawParticles(c, winf[c->wall].color, 80, 200);
|
|
|
|
playSound(c, "splash" + pick12());
|
|
|
|
c->monst = moNone;
|
|
|
|
spill(c, c->wall, 2);
|
|
|
|
}
|
|
|
|
// if(c->monst == moShark) c->heat += 1;
|
|
|
|
// if(c->monst == moGreaterShark) c->heat += 10;
|
|
|
|
if(isIcyLand(c)) {
|
|
|
|
if(m == moCultist) HEAT(c) += 3;
|
|
|
|
if(m == moPyroCultist) HEAT(c) += 6;
|
|
|
|
if(m == moLesser) HEAT(c) += 10;
|
|
|
|
}
|
|
|
|
if(m == moLesser && !(kills[m] % 10))
|
|
|
|
degradeDemons();
|
2019-12-25 22:04:07 +00:00
|
|
|
if(m == moLesser) {
|
|
|
|
if(kills[m] % 10) {
|
|
|
|
if(vid.bubbles_special)
|
|
|
|
drawBubble(c, 0xFF0000, its(kills[m]%10), 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(vid.bubbles_special)
|
|
|
|
drawBubble(c, 0xFF8000, "+1 XP", .8);
|
|
|
|
degradeDemons();
|
|
|
|
}
|
|
|
|
}
|
2020-02-29 16:58:59 +00:00
|
|
|
if(isIvy(c)) {
|
2019-12-08 18:17:28 +00:00
|
|
|
pcount = 0;
|
|
|
|
eMonster m = c->monst;
|
2019-12-25 22:08:41 +00:00
|
|
|
bignum s = ivy_total() - 1;
|
2019-12-08 18:17:28 +00:00
|
|
|
/*if((m == moIvyBranch || m == moIvyHead) && c->move(c->mondir)->monst == moIvyRoot)
|
|
|
|
ivynext(c, moIvyNext); */
|
|
|
|
killIvy(c, who);
|
2019-12-25 22:08:41 +00:00
|
|
|
s = ivy_total() - s;
|
|
|
|
if(s > bignum(1) && vid.bubbles_special)
|
|
|
|
drawBubble(c, 0xFFFF00, s.get_str(100), .5);
|
2019-12-08 18:17:28 +00:00
|
|
|
if(m == moIvyBranch || m == moIvyHead || m == moIvyNext) {
|
|
|
|
int qty = 0;
|
2020-12-26 16:22:32 +00:00
|
|
|
cell *c2 = proper(c, c->mondir) ? c->move(c->mondir) : nullptr;
|
|
|
|
if(!c2) c2 = c; /* should not happen */
|
2019-12-08 18:17:28 +00:00
|
|
|
for(int i=0; i<c2->type; i++)
|
|
|
|
if(c2->move(i)->monst == moIvyWait && c2->move(i)->mondir == c2->c.spin(i))
|
|
|
|
qty++;
|
2020-03-06 13:23:14 +00:00
|
|
|
if(c2->monst == moIvyRoot || qty) {
|
2019-12-08 18:17:28 +00:00
|
|
|
c->monst = moIvyNext;
|
|
|
|
/* c->monst = moIvyHead;
|
|
|
|
ivynext(c);
|
|
|
|
if(c->monst == moIvyHead) c->monst = moIvyNext;
|
|
|
|
else c->monst = moNone; */
|
|
|
|
}
|
|
|
|
else {
|
2020-03-06 13:23:14 +00:00
|
|
|
changes.ccell(c2);
|
|
|
|
c2->monst = moIvyHead;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(c->monst == moTentacleGhost)
|
|
|
|
c->monst = moTentacletail;
|
|
|
|
else c->monst = moNone;
|
|
|
|
|
2020-03-02 17:02:07 +00:00
|
|
|
if(m == moPair && c->move(c->mondir)->monst == moPair) {
|
|
|
|
changes.ccell(c->move(c->mondir));
|
2019-12-08 18:17:28 +00:00
|
|
|
killMonster(c->move(c->mondir), who, deathflags);
|
2020-03-02 17:02:07 +00:00
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2020-03-02 17:02:07 +00:00
|
|
|
if(isMagneticPole(m) && c->move(c->mondir)->monst == otherpole(m)) {
|
|
|
|
changes.ccell(c->move(c->mondir));
|
2019-12-08 18:17:28 +00:00
|
|
|
killMonster(c->move(c->mondir), who, deathflags);
|
2020-03-02 17:02:07 +00:00
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
if(m == moEarthElemental) earthWall(c);
|
|
|
|
if(m == moAlbatross && items[itOrbLuck])
|
|
|
|
useupOrb(itOrbLuck, items[itOrbLuck] / 2);
|
|
|
|
|
|
|
|
if(m == moAirElemental) {
|
2020-02-29 16:58:59 +00:00
|
|
|
changes.value_keep(airmap);
|
2019-12-08 18:17:28 +00:00
|
|
|
airmap.clear();
|
|
|
|
for(int i=0; i<isize(dcal); i++)
|
|
|
|
if(dcal[i]->monst == moAirElemental)
|
|
|
|
airmap.push_back(make_pair(dcal[i],0));
|
|
|
|
buildAirmap();
|
|
|
|
}
|
|
|
|
if(m == moMimic) {
|
|
|
|
for(auto& m: mirror::mirrors) if(c == m.second.at) {
|
|
|
|
drawParticles(c, mirrorcolor(m.second.mirrored), pcount);
|
|
|
|
if(c->wall == waMirrorWall)
|
|
|
|
drawParticles(c, mirrorcolor(!m.second.mirrored), pcount);
|
|
|
|
}
|
|
|
|
pcount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
drawParticles(c, minf[m].color, pcount);
|
|
|
|
if(fallanim) {
|
|
|
|
fallingMonsterAnimation(c, m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void fightmessage(eMonster victim, eMonster attacker, bool stun, flagtype flags) {
|
|
|
|
|
|
|
|
if(isBird(attacker)) {
|
|
|
|
playSound(NULL, "hit-axe"+pick123());
|
|
|
|
addMessage(XLAT("%The1 claws %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(isGhost(attacker))
|
|
|
|
addMessage(XLAT("%The1 scares %the2!", attacker, victim));
|
|
|
|
|
|
|
|
else if(isSlimeMover(attacker) && !stun) {
|
|
|
|
playSound(NULL, "hit-crush"+pick123());
|
|
|
|
addMessage(XLAT("%The1 eats %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(flags & AF_EAT) {
|
|
|
|
playSound(NULL, "hit-crush"+pick123());
|
|
|
|
addMessage(XLAT("%The1 eats %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(attacker == moLancer) {
|
|
|
|
playSound(NULL, "hit-rose");
|
|
|
|
addMessage(XLAT("%The1 pierces %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(attacker == moEarthElemental) {
|
|
|
|
playSound(NULL, "hit-crush"+pick123());
|
|
|
|
addMessage(XLAT("%The1 punches %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(attacker == moPlayer) {
|
|
|
|
if(flags & (AF_SWORD | AF_SWORD_INTO)) {
|
|
|
|
playSound(NULL, "hit-axe"+pick123());
|
|
|
|
addMessage(XLAT("You slash %the1.", victim));
|
|
|
|
if(victim == moGoblin)
|
2020-04-06 07:22:05 +00:00
|
|
|
achievement_gain_once("GOBLINSWORD");
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
else if(victim == moKrakenT || victim == moDragonTail || victim == moDragonHead) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("You hit %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(stun && victim == moVizier) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("You hit %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(stun) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("You stun %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(isNonliving(victim)) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("You destroy %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(flags & AF_STAB) {
|
|
|
|
playSound(NULL, "hit-axe"+pick123());
|
|
|
|
addMessage(XLAT("You stab %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(flags & AF_APPROACH) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
if(victim == moLancer)
|
|
|
|
addMessage(XLAT("You trick %the1.", victim)); // normal
|
|
|
|
else
|
|
|
|
addMessage(XLAT("You pierce %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
else if(!peace::on) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("You kill %the1.", victim)); // normal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
if(victim == moKrakenT || victim == moDragonTail || victim == moDragonHead) {
|
|
|
|
playSound(NULL, "hit-crush"+pick123());
|
|
|
|
addMessage(XLAT("%The1 hits %the2.", attacker, victim)); // normal
|
|
|
|
}
|
|
|
|
else if(stun && victim == moVizier) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("%The1 hits %the2.", attacker, victim)); // normal
|
|
|
|
}
|
|
|
|
else if(stun) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("%The1 attacks %the2!", attacker, victim)); // normal
|
|
|
|
}
|
|
|
|
else if(isNonliving(victim)) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("%The1 destroys %the2!", attacker, victim)); // normal
|
|
|
|
}
|
|
|
|
else if(flags & AF_STAB) {
|
|
|
|
playSound(NULL, "hit-axe"+pick123());
|
|
|
|
addMessage(XLAT("%The1 stabs %the2.", attacker, victim));
|
|
|
|
}
|
|
|
|
else if(flags & AF_APPROACH) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("%The1 tricks %the2.", attacker, victim));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
addMessage(XLAT("%The1 kills %the2!", attacker, victim));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool notthateasy(eMonster m) {
|
|
|
|
return
|
|
|
|
isMultitile(m) || isStunnable(m) || m == moDraugr;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool attackMonster(cell *c, flagtype flags, eMonster killer) {
|
|
|
|
|
|
|
|
if((flags & AF_GETPLAYER) && isPlayerOn(c)) {
|
|
|
|
killThePlayerAt(killer, c, flags);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
eMonster m = c->monst;
|
|
|
|
int tk = tkills();
|
|
|
|
|
|
|
|
int tkt = killtypes();
|
|
|
|
|
|
|
|
bool dostun = attackJustStuns(c, flags, killer);
|
|
|
|
|
|
|
|
if((flags & AF_BULL) && c->monst == moVizier && c->hitpoints > 1) {
|
|
|
|
dostun = true;
|
|
|
|
c->stuntime = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool eu = landUnlocked(laElementalWall);
|
|
|
|
bool tu = landUnlocked(laTrollheim);
|
|
|
|
|
|
|
|
if(flags & AF_MSG) fightmessage(m, killer, dostun, flags);
|
|
|
|
if(dostun)
|
|
|
|
stunMonster(c, killer, flags);
|
|
|
|
else
|
|
|
|
killMonster(c, killer, flags);
|
|
|
|
|
|
|
|
if(peace::on) return false;
|
|
|
|
|
|
|
|
int ntk = tkills();
|
|
|
|
int ntkt = killtypes();
|
|
|
|
|
|
|
|
if(tkt < R20 && ntkt >= R20 && in_full_game()) {
|
|
|
|
addMessage(XLAT("You hear a distant roar!"));
|
|
|
|
playSound(NULL, "message-roar");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tk == 0 && ntk > 0 && in_full_game() && !cheater) {
|
|
|
|
if(notthateasy(m))
|
|
|
|
addMessage(XLAT("Quite tough, for your first fight."));
|
|
|
|
else {
|
|
|
|
bool more = false;
|
|
|
|
forCellEx(c2, cwt.at) forCellEx(c3, c2)
|
|
|
|
if(c3->monst) more = true;
|
|
|
|
if(!more)
|
|
|
|
addMessage(XLAT("That was easy, but groups could be dangerous."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tk < 10 && ntk >= 10 && in_full_game() && !big_unlock)
|
|
|
|
addMessage(XLAT("Good to know that your fighting skills serve you well in this strange world."));
|
|
|
|
|
|
|
|
if(tk < R100/2 && ntk >= R100/2 && in_full_game())
|
|
|
|
addMessage(XLAT("You wonder where all these monsters go, after their death..."));
|
|
|
|
|
|
|
|
if(tk < R100 && ntk >= R100 && in_full_game())
|
|
|
|
addMessage(XLAT("You feel that the souls of slain enemies pull you to the Graveyard..."));
|
|
|
|
|
|
|
|
if(!tu && landUnlocked(laTrollheim) && in_full_game()) {
|
|
|
|
playSound(c, "message-troll");
|
|
|
|
addMessage(XLAT("%The1 says, \"I die, but my clan in Trollheim will avenge me!\"", m));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!eu && landUnlocked(laElementalWall) && in_full_game())
|
|
|
|
addMessage(XLAT("After killing %the1, you feel able to reach the Elemental Planes!", m));
|
|
|
|
|
|
|
|
if(m == moVizier && c->monst != moVizier && kills[moVizier] == 1 && in_full_game()) {
|
|
|
|
addMessage(XLAT("Hmm, he has been training in the Emerald Mine. Interesting..."));
|
|
|
|
princess::forceMouse = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m == moIvyRoot && ntk>tk)
|
2020-04-06 07:22:05 +00:00
|
|
|
achievement_gain_once("IVYSLAYER");
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
return ntk > tk;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void pushMonster(const movei& mi) {
|
2020-07-29 19:56:34 +00:00
|
|
|
if(mi.s->monst == moPair || isMagneticPole(mi.s)) {
|
|
|
|
cell *other = mi.s->move(mi.s->mondir);
|
|
|
|
int id = neighborId(mi.t, other);
|
|
|
|
if(id == -1) {
|
|
|
|
killMonster(mi.s, moPlayer);
|
|
|
|
killMonster(other, moPlayer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
moveMonster(mi);
|
|
|
|
if(mi.t->monst) {
|
|
|
|
mi.t->mondir = id;
|
|
|
|
other->mondir = mi.t->c.spin(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
moveMonster(mi);
|
2019-12-08 18:17:28 +00:00
|
|
|
auto& cf = mi.s;
|
|
|
|
auto& ct = mi.t;
|
|
|
|
if(ct->monst == moBrownBug) {
|
|
|
|
int t = snakelevel(ct) - snakelevel(cf);
|
|
|
|
if(t > 0)
|
|
|
|
ct->stuntime = min(ct->stuntime + 2 * t, 7);
|
|
|
|
}
|
|
|
|
if(isBull(ct->monst)) ct->monst = moRagingBull;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killFriendlyIvy() {
|
|
|
|
forCellEx(c2, cwt.at) if(c2->monst == moFriendlyIvy)
|
|
|
|
killMonster(c2, moPlayer, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool monsterPushable(cell *c2) {
|
2021-05-21 23:22:03 +00:00
|
|
|
if(markOrb(itCurseWeakness) && (c2->stuntime < 2 || attackJustStuns(c2, 0, moPlayer))) return false;
|
2021-07-10 03:00:25 +00:00
|
|
|
if(isMultitile(c2->monst)) return false;
|
2020-03-02 02:06:15 +00:00
|
|
|
return (c2->monst != moFatGuard && !(isMetalBeast(c2->monst) && c2->stuntime < 2) && c2->monst != moTortoise && c2->monst != moTerraWarrior && c2->monst != moVizier && c2->monst != moWorldTurtle);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EX bool should_switchplace(cell *c1, cell *c2) {
|
|
|
|
if(isPrincess(c2->monst) || among(c2->monst, moGolem, moIllusion, moMouse, moFriendlyGhost))
|
|
|
|
return true;
|
|
|
|
|
2021-08-04 18:15:46 +00:00
|
|
|
if(peace::on) return c2->monst;
|
2019-12-08 18:17:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-04 18:15:46 +00:00
|
|
|
EX bool switchplace_prevent(cell *c1, cell *c2, struct pcmove& m) {
|
2019-12-08 18:17:28 +00:00
|
|
|
if(!should_switchplace(c1, c2)) return false;
|
2021-08-04 18:15:46 +00:00
|
|
|
if(peace::on && (isMultitile(c2->monst) || saved_tortoise_on(c2) || isDie(c2->monst))) {
|
|
|
|
if(m.vmsg(miRESTRICTED)) addMessage(XLAT("Cannot switch places with %the1!", c2->monst));
|
|
|
|
return true;
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c1->monst && c1->monst != moFriendlyIvy) {
|
2021-08-04 18:15:46 +00:00
|
|
|
if(m.vmsg(miRESTRICTED)) addMessage(XLAT("There is no room for %the1!", c2->monst));
|
2019-12-08 18:17:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(passable(c1, c2, P_ISFRIEND | (c2->monst == moTameBomberbird ? P_FLYING : 0))) return false;
|
|
|
|
if(warningprotection_hit(c2->monst)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void handle_switchplaces(cell *c1, cell *c2, bool& switchplaces) {
|
|
|
|
if(should_switchplace(c1, c2)) {
|
|
|
|
bool pswitch = false;
|
|
|
|
if(c2->monst == moMouse)
|
|
|
|
princess::mouseSqueak(c2);
|
|
|
|
else if(isPrincess(c2->monst)) {
|
|
|
|
princess::line(c2);
|
|
|
|
princess::move(match(c2, c1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pswitch = true;
|
|
|
|
c1->hitpoints = c2->hitpoints;
|
|
|
|
c1->stuntime = c2->stuntime;
|
|
|
|
placeGolem(c1, c2, c2->monst);
|
|
|
|
if(cwt.at->monst != moNone && pswitch)
|
|
|
|
addMessage(XLAT("You switch places with %the1.", c2->monst));
|
|
|
|
c2->monst = moNone;
|
|
|
|
switchplaces = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool flashWouldKill(cell *c, flagtype extra) {
|
|
|
|
for(int t=0; t<c->type; t++) {
|
|
|
|
cell *c2 = c->move(t);
|
|
|
|
for(int u=0; u<c2->type; u++) {
|
|
|
|
cell *c3 = c2->move(u);
|
|
|
|
if(isWorm(c3)) continue; // immune to Flash
|
2021-07-02 22:24:51 +00:00
|
|
|
if(isFriendly(c3)) continue; // player's allies and mounts don't count
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c3->monst == moEvilGolem) continue; // evil golems don't count
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c3 != c && (c3->monst || isPlayerOn(c3))) {
|
2019-12-08 18:17:28 +00:00
|
|
|
bool b = canAttack(NULL, moWitchFlash, c3, c3->monst, AF_MAGIC | extra);
|
|
|
|
if(b) return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX vector<cell*> gun_targets(cell *c) {
|
|
|
|
manual_celllister cl;
|
|
|
|
vector<int> dists;
|
|
|
|
cl.add(c); dists.push_back(0);
|
|
|
|
for(int i=0; i<isize(dists); i++) {
|
|
|
|
cell *c1 = cl.lst[i];
|
|
|
|
if(dists[i] <= 2)
|
|
|
|
forCellEx(c2, c1)
|
|
|
|
if(passable(c2, c1, P_BULLET | P_FLYING | P_MONSTER))
|
|
|
|
if(cl.add(c2)) dists.push_back(dists[i] + 1);
|
|
|
|
}
|
|
|
|
return cl.lst;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void fallMonster(cell *c, flagtype flags IS(0)) {
|
|
|
|
attackMonster(c, flags, moNone);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killHardcorePlayer(int id, flagtype flags) {
|
|
|
|
charstyle& cs = getcs(id);
|
|
|
|
cell *c = playerpos(id);
|
|
|
|
if(flags & AF_FALL)
|
|
|
|
fallingMonsterAnimation(c, moPlayer);
|
|
|
|
else for(int i=0; i<6; i++) {
|
|
|
|
drawParticle(c, cs.skincolor >> 8, 100);
|
|
|
|
drawParticle(c, cs.haircolor >> 8, 125);
|
|
|
|
if(cs.charid)
|
|
|
|
drawParticle(c, cs.dresscolor >> 8, 150);
|
|
|
|
else
|
|
|
|
drawParticle(c, cs.skincolor >> 8, 150);
|
|
|
|
if(cs.charid == 3)
|
|
|
|
drawParticle(c, cs.dresscolor2 >> 8, 175);
|
|
|
|
else
|
|
|
|
drawParticle(c, cs.skincolor >> 8, 150);
|
|
|
|
drawParticle(c, cs.swordcolor >> 8, 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(multi::players > 1 && multi::activePlayers() > 1) {
|
|
|
|
multi::leaveGame(id);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
canmove = false;
|
|
|
|
achievement_final(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killThePlayer(eMonster m, int id, flagtype flags) {
|
|
|
|
if(markOrb(itOrbShield)) return;
|
|
|
|
if(shmup::on) {
|
|
|
|
multi::cpid = id;
|
|
|
|
shmup::killThePlayer(m);
|
|
|
|
}
|
|
|
|
else if(items[itOrbDomination] && playerpos(id)->monst) {
|
|
|
|
addMessage(XLAT("%The1 tries to dismount you!", m));
|
|
|
|
attackMonster(playerpos(id), AF_NORMAL, m);
|
|
|
|
useupOrb(itOrbDomination, items[itOrbDomination]/2);
|
|
|
|
}
|
|
|
|
else if(items[itOrbShell] && !(flags & AF_EAT)) {
|
|
|
|
addMessage(XLAT("%The1 attacks your shell!", m));
|
|
|
|
useupOrb(itOrbShell, 10);
|
|
|
|
if(items[itOrbShell] < 1) items[itOrbShell] = 1, orbused[itOrbShell] = true;
|
|
|
|
}
|
|
|
|
else if(hardcore) {
|
|
|
|
addMessage(XLAT("You are killed by %the1!", m));
|
|
|
|
killHardcorePlayer(id, flags);
|
|
|
|
}
|
|
|
|
else if(m == moLightningBolt && lastmovetype == lmAttack && isAlchAny(playerpos(id))) {
|
|
|
|
addMessage(XLAT("You are killed by %the1!", m));
|
|
|
|
addMessage(XLAT("Don't play with slime and electricity next time, okay?"));
|
|
|
|
kills[moPlayer]++;
|
|
|
|
items[itOrbSafety] = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// printf("confused!\n");
|
|
|
|
addMessage(XLAT("%The1 is confused!", m));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void killThePlayerAt(eMonster m, cell *c, flagtype flags) {
|
2021-03-06 10:46:13 +00:00
|
|
|
for(int i: player_indices())
|
|
|
|
if(playerpos(i) == c)
|
|
|
|
killThePlayer(m, i, flags);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if HDR
|
2020-11-05 13:24:01 +00:00
|
|
|
template<class T> void do_swords(movei mi, eMonster who, const T& f) {
|
2019-12-08 18:17:28 +00:00
|
|
|
for(int bb=0; bb<2; bb++) if(who == moPlayer && sword::orbcount(bb)) {
|
2020-11-05 13:24:01 +00:00
|
|
|
cell *sf = sword::pos(mi.s, sword::dir[multi::cpid], bb);
|
|
|
|
cell *st = sword::pos(mi.t, sword::shift(mi, sword::dir[multi::cpid]), bb);
|
2019-12-08 18:17:28 +00:00
|
|
|
f(st, bb);
|
|
|
|
if(sf != st && !isNeighbor(sf,st)) {
|
|
|
|
// also attack the in-transit cell
|
|
|
|
if(S3 == 3) {
|
2020-11-05 13:24:01 +00:00
|
|
|
forCellEx(sb, sf) if(isNeighbor(sb, st) && sb != mi.s && sb != mi.t) f(sb, bb);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-11-05 13:24:01 +00:00
|
|
|
forCellEx(sb, mi.s) if(isNeighbor(sb, st) && sb != mi.t) f(sb, bb);
|
|
|
|
forCellEx(sb, mi.t) if(isNeighbor(sb, sf) && sb != mi.s) f(sb, bb);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int lastdouble = -3;
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
EX void stabbingAttack(movei mi, eMonster who, int bonuskill IS(0)) {
|
2019-12-08 18:17:28 +00:00
|
|
|
int numsh = 0, numflail = 0, numlance = 0, numslash = 0, numbb[2];
|
|
|
|
|
|
|
|
numbb[0] = numbb[1] = 0;
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
cell *mf = mi.s;
|
|
|
|
cell *mt = mi.t;
|
2020-12-25 05:07:30 +00:00
|
|
|
int backdir = mi.rev_dir_mirror();
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
do_swords(mi, who, [&] (cell *c, int bb) { if(swordAttack(mt, who, c, bb)) numbb[bb]++, numslash++; });
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
for(int bb=0; bb<2; bb++) achievement_count("SLASH", numbb[bb], 0);
|
|
|
|
|
|
|
|
if(peace::on) return;
|
|
|
|
|
|
|
|
for(int t=0; t<mf->type; t++) {
|
|
|
|
cell *c = mf->move(t);
|
|
|
|
if(!c) continue;
|
|
|
|
|
|
|
|
bool stabthere = false, away = true;
|
|
|
|
if(logical_adjacent(mt, who, c)) stabthere = true, away = false;
|
|
|
|
|
|
|
|
if(stabthere && c->wall == waExplosiveBarrel && markOrb(itOrbThorns))
|
|
|
|
explodeBarrel(c);
|
|
|
|
|
|
|
|
if(stabthere && canAttack(mt,who,c,c->monst,AF_STAB)) {
|
2020-03-02 16:50:44 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c->monst != moHedge) {
|
|
|
|
markOrb(itOrbThorns); if(who != moPlayer) markOrb(itOrbEmpathy);
|
|
|
|
}
|
|
|
|
eMonster m = c->monst;
|
|
|
|
int k = tkills();
|
2020-02-29 19:20:08 +00:00
|
|
|
if(attackMonster(c, AF_STAB | AF_MSG, who)) {
|
|
|
|
spread_plague(mt, c, t, who);
|
2019-12-08 18:17:28 +00:00
|
|
|
produceGhost(c, m, who);
|
2020-02-29 19:20:08 +00:00
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
if(tkills() > k) numsh++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(away && c != mt && canAttack(mf,who,c,c->monst,AF_BACK)) {
|
2020-03-02 16:50:44 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c->monst == moVizier && c->hitpoints > 1) {
|
|
|
|
fightmessage(c->monst, who, true, AF_BACK);
|
|
|
|
c->hitpoints--;
|
|
|
|
// c->stuntime = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
eMonster m = c->monst;
|
|
|
|
if(c->monst != moFlailer) {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
fightmessage(c->monst, who, false, AF_BACK);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
playSound(NULL, "hit-sword"+pick123());
|
|
|
|
if(who != moPlayer)
|
|
|
|
addMessage(XLAT("%The1 tricks %the2.", who, c->monst));
|
|
|
|
else
|
|
|
|
addMessage(XLAT("You trick %the1.", c->monst));
|
|
|
|
}
|
|
|
|
if(c->monst == moFlailer && isPrincess(who) && isUnarmed(who))
|
2020-04-06 07:22:05 +00:00
|
|
|
achievement_gain_once("PRINCESS_PACIFIST");
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2020-02-29 19:20:08 +00:00
|
|
|
if(attackMonster(c, 0, who)) {
|
|
|
|
numflail++;
|
|
|
|
spread_plague(mf, c, t, who);
|
|
|
|
produceGhost(c, m, who);
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!isUnarmed(who)) forCellIdEx(c, t, mt) {
|
|
|
|
if(!logical_adjacent(mt, who, c)) continue;
|
|
|
|
eMonster mm = c->monst;
|
|
|
|
int flag = AF_APPROACH;
|
2020-12-25 05:07:30 +00:00
|
|
|
if(proper(mt, backdir) && anglestraight(mt, backdir, t)) flag |= AF_HORNS;
|
2019-12-08 18:17:28 +00:00
|
|
|
if(canAttack(mt,who,c,c->monst, flag)) {
|
2020-03-02 02:18:11 +00:00
|
|
|
changes.ccell(c);
|
2019-12-08 18:17:28 +00:00
|
|
|
if(attackMonster(c, flag | AF_MSG, who)) numlance++;
|
2020-02-29 19:20:08 +00:00
|
|
|
spread_plague(mt, c, t, who);
|
2019-12-08 18:17:28 +00:00
|
|
|
produceGhost(c, mm, who);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(who == moPlayer) {
|
|
|
|
if(numsh) achievement_count("STAB", numsh, 0);
|
|
|
|
|
2020-04-06 07:22:05 +00:00
|
|
|
if(numlance && numflail && numsh) achievement_gain_once("MELEE3");
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2020-04-06 07:22:05 +00:00
|
|
|
if(numlance + numflail + numsh + numslash + bonuskill >= 5) achievement_gain_once("MELEE5");
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
if(numsh == 2) {
|
|
|
|
if(lastdouble == turncount-1) achievement_count("STAB", 4, 0);
|
2021-02-04 15:15:47 +00:00
|
|
|
changes.value_set(lastdouble, turncount);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|