mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 02:43:16 +00:00
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
// Wheat
|
|
/obj/item/seeds/wheat
|
|
name = "pack of wheat seeds"
|
|
desc = "These may, or may not, grow into wheat."
|
|
icon_state = "seed-wheat"
|
|
species = "wheat"
|
|
plantname = "Wheat Stalks"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/wheat
|
|
production = 1
|
|
yield = 4
|
|
potency = 15
|
|
oneharvest = 1
|
|
mutatelist = list(/obj/item/seeds/wheat/oat)
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/wheat
|
|
seed = /obj/item/seeds/wheat
|
|
name = "wheat"
|
|
desc = "Sigh... wheat... a-grain?"
|
|
gender = PLURAL
|
|
icon_state = "wheat"
|
|
filling_color = "#F0E68C"
|
|
bitesize_mod = 2
|
|
reagents_add = list("nutriment" = 0.04)
|
|
|
|
// Oat
|
|
/obj/item/seeds/wheat/oat
|
|
name = "pack of oat seeds"
|
|
desc = "These may, or may not, grow into oat."
|
|
icon_state = "seed-oat"
|
|
species = "oat"
|
|
plantname = "Oat Stalks"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/oat
|
|
mutatelist = list()
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/oat
|
|
seed = /obj/item/seeds/wheat/oat
|
|
name = "oat"
|
|
desc = "Eat oats, do squats."
|
|
gender = PLURAL
|
|
icon_state = "oat"
|
|
filling_color = "#556B2F"
|
|
bitesize_mod = 2
|
|
reagents_add = list("nutriment" = 0.04)
|
|
|
|
// Rice
|
|
/obj/item/seeds/wheat/rice
|
|
name = "pack of rice seeds"
|
|
desc = "These may, or may not, grow into rice."
|
|
icon_state = "seed-rice"
|
|
species = "rice"
|
|
plantname = "Rice Stalks"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/rice
|
|
mutatelist = list()
|
|
growthstages = 3
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/rice
|
|
seed = /obj/item/seeds/wheat/rice
|
|
name = "rice"
|
|
desc = "Rice to meet you."
|
|
gender = PLURAL
|
|
icon_state = "rice"
|
|
filling_color = "#FAFAD2"
|
|
bitesize_mod = 2
|
|
reagents_add = list("nutriment" = 0.04) |