1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 15:00:26 +00:00

added flags for Dice

This commit is contained in:
Zeno Rogue 2021-05-30 13:43:17 +02:00
parent 689732f852
commit 6d63af62ca

View File

@ -384,4 +384,12 @@ EX bool is_paired(eMonster m) {
return among(m, moPair, moNorthPole, moSouthPole);
}
EX bool isDie(eMonster m) {
return among(m, moAnimatedDie, moAngryDie);
}
EX bool isDie(eWall w) {
return among(w, waRichDie, waHappyDie);
}
}