mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 19:03:21 +00:00
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
// Cocoa Pod
|
|
/obj/item/seeds/cocoapod
|
|
name = "pack of cocoa pod seeds"
|
|
desc = "These seeds grow into cacao trees. They look fattening." //SIC: cocoa is the seeds. The trees are spelled cacao.
|
|
icon_state = "seed-cocoapod"
|
|
species = "cocoapod"
|
|
plantname = "Cocao Tree"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod
|
|
lifespan = 20
|
|
maturation = 5
|
|
production = 5
|
|
yield = 2
|
|
growthstages = 5
|
|
mutatelist = list(/obj/item/seeds/cocoapod/vanillapod)
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod
|
|
seed = /obj/item/seeds/cocoapod
|
|
name = "cocoa pod"
|
|
desc = "Fattening... Mmmmm... chucklate."
|
|
icon_state = "cocoapod"
|
|
filling_color = "#FFD700"
|
|
reagents_add = list("cocoa" = 0.25, "nutriment" = 0.1)
|
|
bitesize_mod = 2
|
|
|
|
// Vanilla Pod
|
|
/obj/item/seeds/cocoapod/vanillapod
|
|
name = "pack of vanilla pod seeds"
|
|
desc = "These seeds grow into vanilla trees. They look fattening."
|
|
icon_state = "seed-vanillapod"
|
|
species = "vanillapod"
|
|
plantname = "Vanilla Tree"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/vanillapod
|
|
mutatelist = list()
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/vanillapod
|
|
seed = /obj/item/seeds/cocoapod/vanillapod
|
|
name = "vanilla pod"
|
|
desc = "Fattening... Mmmmm... vanilla."
|
|
icon_state = "vanillapod"
|
|
filling_color = "#FFD700"
|
|
reagents_add = list("vanilla" = 0.25, "nutriment" = 0.1) |