Adding extremely halfassed grill cooking to bonfires.

This commit is contained in:
MistakeNot4892
2024-01-17 22:15:51 +11:00
parent fd072be641
commit 5eab79f06d
13 changed files with 110 additions and 31 deletions
+3
View File
@@ -38,6 +38,9 @@
name = "[seed.seed_name]"
trash = seed.get_trash_type()
backyard_grilling_product = seed.backyard_grilling_product
backyard_grilling_threshold = seed.backyard_grilling_threshold
backyard_grilling_announcement = seed.backyard_grilling_announcement
update_icon()
+5
View File
@@ -27,6 +27,11 @@
var/has_item_product // Item products. (Eggy)
var/force_layer
// Backyard grilling vars. Not passed through genetics.
var/backyard_grilling_threshold = 5
var/backyard_grilling_product = /obj/item/reagent_containers/food/snacks/badrecipe
var/backyard_grilling_announcement = "smokes and chars!"
// Making the assumption anything in HYDRO-ponics is capable of processing water, and nutrients commonly associated with it, leaving us with the below to be tweaked.
var/list/beneficial_reagents // Reagents considered uniquely 'beneficial' by a plant.
var/list/mutagenic_reagents // Reagents considered uniquely 'mutagenic' by a plant.
@@ -46,6 +46,8 @@
seed_name = "sivian pod"
display_name = "sivian pod"
kitchen_tag = "sifpod"
backyard_grilling_product = /obj/item/reagent_containers/food/snacks/roast_sifpod
backyard_grilling_announcement = "crackles and pops as the roast hull splits open."
chems = list("nutriment" = list(1,5),"sifsap" = list(10,20))
/datum/seed/apple/sif/New()
+3 -1
View File
@@ -5,6 +5,8 @@
kitchen_tag = "corn"
chems = list("nutriment" = list(1,10), "cornoil" = list(3,15))
trash_type = /obj/item/corncob
backyard_grilling_product = /obj/item/reagent_containers/food/snacks/popcorn
backyard_grilling_announcement = "pops enthusiastically!"
/datum/seed/corn/New()
..()
@@ -18,4 +20,4 @@
set_trait(TRAIT_PLANT_ICON,"corn")
set_trait(TRAIT_IDEAL_HEAT, 298)
set_trait(TRAIT_IDEAL_LIGHT, 6)
set_trait(TRAIT_WATER_CONSUMPTION, 6)
set_trait(TRAIT_WATER_CONSUMPTION, 6)
+3 -1
View File
@@ -4,6 +4,8 @@
display_name = "potatoes"
kitchen_tag = "potato"
chems = list("nutriment" = list(1,10), "potatojuice" = list(10,10))
backyard_grilling_product = /obj/item/reagent_containers/food/snacks/bakedpotato
c = "steams as it is baked through."
/datum/seed/potato/New()
..()
@@ -15,4 +17,4 @@
set_trait(TRAIT_PRODUCT_ICON,"potato")
set_trait(TRAIT_PRODUCT_COLOUR,"#D4CAB4")
set_trait(TRAIT_PLANT_ICON,"bush2")
set_trait(TRAIT_WATER_CONSUMPTION, 6)
set_trait(TRAIT_WATER_CONSUMPTION, 6)