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

Slave to Armok does extra damage to MG_PRINCE, not just MG_LORD

Makes it marginally more usable.
This commit is contained in:
RikerW 2021-02-01 13:56:53 -08:00
parent eacf60bcbb
commit ef422ecda0
2 changed files with 2 additions and 2 deletions

View file

@ -201,7 +201,7 @@ A("Carnwennan", DAGGER, (const char *)0,
A("Slave to Armok", DWARVISH_MATTOCK, (const char *)0,
2500L, MT_DEFAULT, MZ_DEFAULT, WT_DEFAULT,
A_LAWFUL, NON_PM, PM_DWARF, TIER_F, (ARTG_NAME),
MONS(vsMT(MT_PEACEFUL), vsMG(MG_LORD), vsMA(MA_ELF | MA_ORC)),
MONS(vsMT(MT_PEACEFUL), vsMG(MG_LORD|MG_PRINCE), vsMA(MA_ELF | MA_ORC)),
ATTK(AD_PHYS, 5, 0), (ARTA_HATES),
PROPS(), NOFLAG,
PROPS(), NOFLAG,

View file

@ -2730,7 +2730,7 @@ winid *datawin;
case ART_STING: Strcat(buf, "orcs and spiders."); break;
case ART_GRIMTOOTH: Strcat(buf, "humans, elves, dwarves, and angels."); break;
case ART_CARNWENNAN: Strcat(buf, "fey and magic-item users."); break;
case ART_SLAVE_TO_ARMOK: Strcat(buf, "lords, elves, orcs, and the innocent."); break;
case ART_SLAVE_TO_ARMOK: Strcat(buf, "nobility, elves, orcs, and the innocent."); break;
case ART_CLAIDEAMH: Strcat(buf, "those bound by iron and ancient laws."); break;
case ART_DRAGONLANCE: Strcat(buf, "dragons."); break;
case ART_NODENSFORK: Strcat(buf, "the eldritch, the telepathic, the deep."); break;