mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-05-01 04:45:09 +01:00
For now, hack all ACU spirit enemies to use the old fixed 8 hit die.
This commit is contained in:
parent
8cc6e4f445
commit
964988db75
1 changed files with 3 additions and 0 deletions
|
@ -3474,6 +3474,9 @@ hd_size(ptr)
|
|||
struct permonst *ptr;
|
||||
{
|
||||
int size = 8;
|
||||
// acu spirits all use 8 as hit dice
|
||||
if((ptr->mtyp >= PM_AHAZU && ptr->mtyp <= PM_NUMINA))
|
||||
return size;
|
||||
if(ptr->mtyp == PM_ZHI_REN_MONK)
|
||||
size = 4;
|
||||
// return 8;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue