rename "huge chunk of meat" to "enormous meatball"

Pull request #607 by Vivit-R proposed renaming "huge chunk of meat"
to "giant meatball" to better reflect the similarity to meatball.
But an object name that contains a monster name prefix requires extra
work in the wishing code.  I considered "huge meatball" which retains
more of the original name but decided to go with "enormous meatball"
becaues it seems more evocative.

Supersedes #607
Closes #607
This commit is contained in:
PatR
2022-09-27 13:32:51 -07:00
parent a9436f1311
commit 8509951291
7 changed files with 11 additions and 8 deletions

View File

@@ -3084,6 +3084,8 @@ static const struct alt_spellings {
{ "lembas", LEMBAS_WAFER },
{ "cookie", FORTUNE_COOKIE },
{ "pie", CREAM_PIE },
{ "huge meatball", ENORMOUS_MEATBALL }, /* likely conflated name */
{ "huge chunk of meat", ENORMOUS_MEATBALL }, /* original name */
{ "marker", MAGIC_MARKER },
{ "hook", GRAPPLING_HOOK },
{ "grappling iron", GRAPPLING_HOOK },
@@ -3174,7 +3176,7 @@ rnd_otyp_by_namedesc(
type ooze/pudding/slime don't match glob of same since that
ought to match "corpse/egg/figurine of type" too but won't */
|| (check_of
&& i != BELL_OF_OPENING && i != HUGE_CHUNK_OF_MEAT
&& i != BELL_OF_OPENING
&& (i < minglob || i > maxglob)
&& (of = strstri(zn, " of ")) != 0
&& wishymatch(name, of + 4, FALSE)) /* partial name */