1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 10:19:58 +00:00

Added some land incompatibilities

This commit is contained in:
Zeno Rogue 2022-08-25 10:41:57 +02:00
parent 9f48d4f194
commit d66a877889

View File

@ -271,6 +271,9 @@ EX bool incompatible1(eLand l1, eLand l2) {
if(l1 == laPrairie && l2 == laCrossroads4) return true; if(l1 == laPrairie && l2 == laCrossroads4) return true;
if(l1 == laWet && l2 == laDesert) return true; if(l1 == laWet && l2 == laDesert) return true;
if(l1 == laFrog && l2 == laMotion) return true; if(l1 == laFrog && l2 == laMotion) return true;
if(l1 == laBull && l2 == laTerracotta) return true;
if(l1 == laReptile && l2 == laTerracotta) return true;
if(l1 == laBull && l2 == laDeadCaves) return true;
if(isElemental(l1) && isElemental(l2)) return true; if(isElemental(l1) && isElemental(l2)) return true;
return false; return false;
} }