diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/019-1/well.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 070d53bec..bd0100d3b 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -90,10 +90,12 @@ L_Quest: mesn l("???"); if (getiteminfo(.@id, ITEMINFO_WEIGHT) > 1000) mesq l("Ouch! That's heavy!"); + else if (getiteminfo(.@id, ITEMINFO_SELLPRICE) < 10) + mesq l("What cheap crap is this? It's not worth even 10 GP."); else if (getiteminfo(.@id, ITEMINFO_TYPE) == IT_HEALING) mesq l("Mhm, this looks healthy."); else if (getiteminfo(.@id, ITEMINFO_TYPE) == IT_AMMO) - mesq l("This is useless for me!"); + mesq l("Ammo? I prefer power gloves! That is useless for me!"); else mesq l("Who is throwing stuff at me?!"); next; |