1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-31 09:52:25 +01:00

Zerth half dragons can use poison.

I kinda think this alignment penalty should go away... :-/
This commit is contained in:
ChrisANG 2022-01-09 20:51:43 -05:00
parent f874112291
commit f9f10fa83b

View file

@ -12975,8 +12975,9 @@ int vis; /* True if action is at all visible to the player */
}
else if ((u.ualign.type == A_LAWFUL) && !Race_if(PM_ORC) &&
!((Race_if(PM_DROW) && !flags.initgend &&
(Role_if(PM_PRIEST) || Role_if(PM_ROGUE) || Role_if(PM_RANGER) || Role_if(PM_WIZARD))) ||
((Race_if(PM_HUMAN) || Race_if(PM_INHERITOR) || Race_if(PM_INCANTIFIER) || Race_if(PM_HALF_DRAGON)) && (Pantheon_if(PM_RANGER) || Role_if(PM_RANGER)))
(Role_if(PM_PRIEST) || Role_if(PM_ROGUE) || Role_if(PM_RANGER) || Role_if(PM_WIZARD)))
|| ((Race_if(PM_HUMAN) || Race_if(PM_INHERITOR) || Race_if(PM_INCANTIFIER) || Race_if(PM_HALF_DRAGON)) && (Pantheon_if(PM_RANGER) || Role_if(PM_RANGER)))
|| (Race_if(PM_HALF_DRAGON) && flags.initgend && Role_if(PM_MADMAN))
) &&
(u.ualign.record > -10)
) {