mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 18:33:22 +00:00
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
// Eggplant
|
|
/obj/item/seeds/eggplant
|
|
name = "pack of eggplant seeds"
|
|
desc = "These seeds grow to produce berries that look nothing like eggs."
|
|
icon_state = "seed-eggplant"
|
|
species = "eggplant"
|
|
plantname = "Eggplants"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/eggplant
|
|
yield = 2
|
|
potency = 20
|
|
mutatelist = list(/obj/item/seeds/eggplant/eggy)
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/eggplant
|
|
seed = /obj/item/seeds/eggplant
|
|
name = "eggplant"
|
|
desc = "Maybe there's a chicken inside?"
|
|
icon_state = "eggplant"
|
|
filling_color = "#800080"
|
|
reagents_add = list("vitamin" = 0.04, "nutriment" = 0.1)
|
|
bitesize_mod = 2
|
|
|
|
// Egg-Plant
|
|
/obj/item/seeds/eggplant/eggy
|
|
desc = "These seeds grow to produce berries that look a lot like eggs."
|
|
icon_state = "seed-eggy"
|
|
species = "eggy"
|
|
product = /obj/item/weapon/reagent_containers/food/snacks/grown/shell/eggy
|
|
lifespan = 75
|
|
production = 12
|
|
mutatelist = list()
|
|
// No rarity: Centcom ships these to us in the exotic seeds crate.
|
|
|
|
/obj/item/weapon/reagent_containers/food/snacks/grown/shell/eggy
|
|
seed = /obj/item/seeds/eggplant/eggy
|
|
name = "Egg-plant"
|
|
desc = "There MUST be a chicken inside."
|
|
icon_state = "eggyplant"
|
|
trash = /obj/item/weapon/reagent_containers/food/snacks/egg
|
|
filling_color = "#F8F8FF"
|
|
reagents_add = list("nutriment" = 0.1)
|
|
bitesize_mod = 2 |