added flags for Dice

This commit is contained in:
Zeno Rogue
2021-06-01 13:07:56 +02:00
parent 689732f852
commit 6d63af62ca
+8
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);
}
}