1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-18 14:45:12 +00:00

Orb of Luck improved

This commit is contained in:
Zeno Rogue
2021-05-22 01:40:55 +02:00
parent 5e33bd6db7
commit 49ba1a7fc4
3 changed files with 21 additions and 4 deletions

View File

@@ -292,6 +292,10 @@ EX bool isPermanentFlying(eMonster m) {
return m == moAirElemental || isGhostAether(m);
}
EX bool isLuckyLand(eLand l) {
return among(l, laIce, laDesert, laDeadCaves, laOvergrown);
}
EX bool survivesFire(eMonster m) {
return
isGhostAether(m) || m == moWitchWinter || m == moWitchGhost ||