Explicitly list the random breath types

This commit is contained in:
Pasi Kallinen
2022-08-24 10:29:59 +03:00
parent f3f5fa8cfd
commit edae8273b9
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -1416,4 +1416,16 @@ mons_see_trap(struct trap *ttmp)
}
}
int
get_atkdam_type(int adtyp)
{
if (adtyp == AD_RBRE) {
static const int rnd_breath_typ[] = {
AD_MAGM, AD_FIRE, AD_COLD, AD_SLEE,
AD_DISN, AD_ELEC, AD_DRST, AD_ACID };
return rnd_breath_typ[rn2(SIZE(rnd_breath_typ))];
}
return adtyp;
}
/*mondata.c*/