From 77ef72e9889ebb8153dbe8c2fd760aa30280dbc0 Mon Sep 17 00:00:00 2001 From: "brettdavies1995@gmail.com" Date: Tue, 30 Jan 2018 00:45:06 +0000 Subject: [PATCH] Fruit have ovaries, vegetables have schweenuses, see carrot --- code/modules/hydroponics/grown/chili.dm | 6 +++--- code/modules/hydroponics/grown/cocoa_vanilla.dm | 4 ++-- code/modules/hydroponics/grown/pumpkin.dm | 4 ++-- code/modules/hydroponics/grown/tomato.dm | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/code/modules/hydroponics/grown/chili.dm b/code/modules/hydroponics/grown/chili.dm index 382efa2a262..88cb95deddd 100644 --- a/code/modules/hydroponics/grown/chili.dm +++ b/code/modules/hydroponics/grown/chili.dm @@ -25,7 +25,7 @@ icon_state = "chilipepper" filling_color = "#FF0000" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT // Ice Chili /obj/item/seeds/chili/ice @@ -49,7 +49,7 @@ icon_state = "icepepper" filling_color = "#0000CD" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT // Ghost Chili /obj/item/seeds/chili/ghost @@ -75,7 +75,7 @@ var/mob/living/carbon/human/held_mob filling_color = "#F8F8FF" bitesize_mod = 4 - foodtype = VEGETABLES + foodtype = FRUIT /obj/item/reagent_containers/food/snacks/grown/ghost_chili/attack_hand(mob/user) ..() diff --git a/code/modules/hydroponics/grown/cocoa_vanilla.dm b/code/modules/hydroponics/grown/cocoa_vanilla.dm index f872758a655..c53709480a5 100644 --- a/code/modules/hydroponics/grown/cocoa_vanilla.dm +++ b/code/modules/hydroponics/grown/cocoa_vanilla.dm @@ -25,7 +25,7 @@ icon_state = "cocoapod" filling_color = "#FFD700" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT // Vanilla Pod /obj/item/seeds/cocoapod/vanillapod @@ -45,4 +45,4 @@ desc = "Fattening... Mmmmm... vanilla." icon_state = "vanillapod" filling_color = "#FFD700" - foodtype = VEGETABLES + foodtype = FRUIT diff --git a/code/modules/hydroponics/grown/pumpkin.dm b/code/modules/hydroponics/grown/pumpkin.dm index 7113a8feab5..2b0ffddfe74 100644 --- a/code/modules/hydroponics/grown/pumpkin.dm +++ b/code/modules/hydroponics/grown/pumpkin.dm @@ -23,7 +23,7 @@ icon_state = "pumpkin" filling_color = "#FFA500" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT juice_results = list("pumpkinjuice" = 0) /obj/item/reagent_containers/food/snacks/grown/pumpkin/attackby(obj/item/W as obj, mob/user as mob, params) @@ -54,5 +54,5 @@ icon_state = "blumpkin" filling_color = "#87CEFA" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT juice_results = list("blumpkinjuice" = 0) diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm index 4d066e769e7..0f5b969b3be 100644 --- a/code/modules/hydroponics/grown/tomato.dm +++ b/code/modules/hydroponics/grown/tomato.dm @@ -22,7 +22,7 @@ splat_type = /obj/effect/decal/cleanable/tomato_smudge filling_color = "#FF6347" bitesize_mod = 2 - foodtype = VEGETABLES + foodtype = FRUIT grind_results = list("ketchup" = 0) juice_results = list("tomatojuice" = 0) @@ -45,7 +45,7 @@ icon_state = "bloodtomato" splat_type = /obj/effect/gibspawner/generic filling_color = "#FF0000" - foodtype = VEGETABLES | GROSS + foodtype = FRUIT | GROSS grind_results = list("ketchup" = 0, "blood" = 0)