mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
Orb of Summoning now works on deep water, shallow water, and Camelot moat tiles
This commit is contained in:
parent
9ba9797068
commit
51ecd882e1
4
orbs.cpp
4
orbs.cpp
@ -884,6 +884,10 @@ EX eMonster summonedAt(cell *dest) {
|
||||
dest->land == laWarpCoast ? moRatling :
|
||||
dest->land == laDocks ? moWaterElemental :
|
||||
moPirate;
|
||||
if(among(dest->wall, waDeepWater, waShallow))
|
||||
return moRusalka;
|
||||
if(dest->wall == waCamelotMoat)
|
||||
return moWaterElemental;
|
||||
if(isReptile(dest->wall))
|
||||
return moReptile;
|
||||
if(dest->wall == waChasm)
|
||||
|
Loading…
Reference in New Issue
Block a user