Vegetarians shouldn't drink flasks of chicken soup / beef strogonoff.
This commit is contained in:
parent
6a7175a8d3
commit
e5dfd28216
2
data.c
2
data.c
|
@ -3858,6 +3858,7 @@ void initobjects(void) {
|
|||
addot(OT_POT_SOUPCHICKEN, "flask of chicken soup", "A watery soup which cures diseases and heals you.", MT_GLASS, 1, OC_POTION, SZ_TINY);
|
||||
addflag(lastot->flags, F_NOBLESS, B_TRUE, NA, NA, NULL);
|
||||
killflagsofid(lastot->flags, F_HASHIDDENNAME);
|
||||
addflag(lastot->flags, F_ISMEAT, B_TRUE, 80, NA, "");
|
||||
addflag(lastot->flags, F_RARITY, H_ALL, 100, RR_UNCOMMON, NULL);
|
||||
addflag(lastot->flags, F_VALUE, 20, NA, NA, NULL);
|
||||
|
||||
|
@ -3876,6 +3877,7 @@ void initobjects(void) {
|
|||
addot(OT_POT_STROGONOFF, "flask of beef strogonoff", "A beef and mushroom stew which temporarily boosts your Fitness, and heals you a little.", MT_GLASS, 1, OC_POTION, SZ_TINY);
|
||||
addflag(lastot->flags, F_NOBLESS, B_TRUE, NA, NA, NULL);
|
||||
killflagsofid(lastot->flags, F_HASHIDDENNAME);
|
||||
addflag(lastot->flags, F_ISMEAT, B_TRUE, 80, NA, "");
|
||||
addflag(lastot->flags, F_RARITY, H_ALL, 100, RR_UNCOMMON, NULL);
|
||||
addflag(lastot->flags, F_VALUE, 25, NA, NA, NULL);
|
||||
|
||||
|
|
3
io.c
3
io.c
|
@ -3245,6 +3245,9 @@ void cantdrink(enum ERROR reason) {
|
|||
case E_UNDEAD:
|
||||
msg("You are undead and don't need to drink.");
|
||||
break;
|
||||
case E_VEGETARIAN:
|
||||
msg("The thought of consuming meat disgusts you.");
|
||||
break;
|
||||
case E_FACECOVERED:
|
||||
oo = facecovered(player);
|
||||
assert(oo);
|
||||
|
|
Loading…
Reference in New Issue