added flags for Dice

This commit is contained in:
Zeno Rogue 2021-05-30 13:43:17 +02:00
parent 689732f852
commit 6d63af62ca
1 changed files with 8 additions and 0 deletions

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);
}
}