1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-07 07:45:11 +01:00

High level artifacts are not wishable

Also, oilskin sacks are known as OILSKIN ditty bags to pirates, instead of the non-informative buccaneer's ditty bag
This commit is contained in:
Chris-plus-alphanumericgibberish 2014-09-14 00:57:15 -04:00
parent 2eafa05390
commit f6fab78a95

View file

@ -83,7 +83,7 @@ STATIC_OVL struct Jitem Pirate_items[] = {
{ SCIMITAR, "cutlass" },
{ SMALL_SHIELD, "buckler" },
{ SACK, "ditty bag" },
{ OILSKIN_SACK, "buccaneer's ditty bag" },
{ OILSKIN_SACK, "oilskin ditty bag" },
{ LARGE_BOX, "foot locker" },
{ CLUB, "belaying pin" },
{0, "" }
@ -3177,8 +3177,7 @@ typfnd:
(otmp->oartifact >= ART_ROD_OF_SEVEN_PARTS && otmp->oartifact <= ART_SILVER_KEY) || //no wishing for alignment quest artifacts
(otmp->oartifact >= ART_SWORD_OF_ERATHAOL && otmp->oartifact <= ART_HAMMER_OF_BARQUIEL) || //no wishing for angel artifacts
(otmp->oartifact >= ART_GENOCIDE && otmp->oartifact <= ART_DOOMSCREAMER) || //no wishing for demon artifacts
(otmp->oartifact == ART_KUSANAGI_NO_TSURUGI) ||
(Role_if(PM_PIRATE) && otmp->oartifact == ART_REAVER))
(otmp->oartifact >= ART_STAFF_OF_THE_ARCHMAGI && otmp->oartifact <= ART_SNICKERSNEE))
#ifdef WIZARD
&& !wizard
#endif