]> granicus.if.org Git - nethack/commitdiff
Reduce eucalyptus leaf nutrition to 1
authorcopperwater <aosdict@gmail.com>
Mon, 14 Mar 2022 14:11:07 +0000 (10:11 -0400)
committerPasi Kallinen <paxed@alt.org>
Tue, 15 Mar 2022 05:41:53 +0000 (07:41 +0200)
Eucalyptus leaves are famously inedible except by certain animals such
as koalas. I consider it very strange that a single leaf in NetHack
gives you six meatballs' worth of calories.

I considered making it 0 nutrition, but am not sure if a 0-nutrition
comestible would end up violating some assumption that all food is at
least 1 nutrition.

doc/fixes3-7-0.txt
include/objects.h

index 77f6a44d0ca5fea0c447d1a1a71f1ca95582cfc4..4b760f7874e62df571158db078a7e8c395ddf23d 100644 (file)
@@ -837,6 +837,7 @@ only give Sunsword or Demonbane as starting gear to lawful Angels
 for #knownclass with menustyle=Tradtional, allow player to ask for `a even if
        no artifacts have been discovered yet, same as `<any-object-class>;
        likewise for `u to ask to see unique items
+reduce eucalyptus leaf nutrition to 1
 
 
 Fixes to 3.7.0-x Problems that Were Exposed Via git Repository
index cd88788ef004c0f57b598a8c1f36e26534f5d184..04fd7c24a9adacf0eea2bf739d155ef719a0e0bc 100644 (file)
@@ -992,7 +992,7 @@ FOOD("glob of black pudding", 0,  2, 20, 0, FLESH,  20, CLR_BLACK,
 
 /* fruits & veggies */
 FOOD("kelp frond",            0,  1,  1, 0, VEGGY,  30, CLR_GREEN, KELP_FROND),
-FOOD("eucalyptus leaf",       3,  1,  1, 0, VEGGY,  30, CLR_GREEN,
+FOOD("eucalyptus leaf",       3,  1,  1, 0, VEGGY,   1, CLR_GREEN,
                                                              EUCALYPTUS_LEAF),
 FOOD("apple",                15,  1,  2, 0, VEGGY,  50, CLR_RED, APPLE),
 FOOD("orange",               10,  1,  2, 0, VEGGY,  80, CLR_ORANGE, ORANGE),