Merge pull request #35606 from coiax/hydroponic-foods-taste

Apples now taste like apples
This commit is contained in:
oranges
2018-02-15 14:52:26 -06:00
committed by CitadelStationBot
parent 1cda9ef2b4
commit 7fd53748f0
16 changed files with 46 additions and 13 deletions
@@ -23,6 +23,7 @@
bitesize_mod = 2
foodtype = GRAIN
grind_results = list("flour" = 0)
tastes = list("wheat" = 1)
// Oat
/obj/item/seeds/wheat/oat
@@ -44,6 +45,7 @@
bitesize_mod = 2
foodtype = GRAIN
grind_results = list("flour" = 0)
tastes = list("oat" = 1)
// Rice
/obj/item/seeds/wheat/rice
@@ -66,6 +68,7 @@
bitesize_mod = 2
foodtype = GRAIN
grind_results = list("rice" = 0)
tastes = list("rice" = 1)
//Meatwheat - grows into synthetic meat
/obj/item/seeds/wheat/meat
@@ -87,6 +90,7 @@
seed = /obj/item/seeds/wheat/meat
foodtype = MEAT | GRAIN
grind_results = list("flour" = 0, "blood" = 0)
tastes = list("meatwheat" = 1)
/obj/item/reagent_containers/food/snacks/grown/meatwheat/attack_self(mob/living/user)
user.visible_message("<span class='notice'>[user] crushes [src] into meat.</span>", "<span class='notice'>You crush [src] into something that resembles meat.</span>")