forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#FEELTHEGOOF Election PR: This is what the local conservative radio s…
…aid all sanders voters wanted (tgstation#19105) Added a new plant to the game to encourage the Chef to be a more relevant job, alongside a recipe for a food related to it. Throw a cannabis leaf on a table and check the recipes list to find it.
- Loading branch information
1 parent
dcdafc1
commit 5755a41
Showing
8 changed files
with
135 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
// Cannabis | ||
/obj/item/seeds/cannabis | ||
name = "pack of cannabis seeds" | ||
desc = "Taxable." | ||
icon = 'goon/icons/obj/hydroponics.dmi' | ||
icon_state = "seed-cannabis" | ||
species = "cannabis" | ||
plantname = "Cannabis Plant" | ||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cannabis | ||
maturation = 8 | ||
oneharvest = 0 | ||
potency = 20 | ||
growthstages = 1 | ||
growing_icon = 'goon/icons/obj/hydroponics.dmi' | ||
icon_grow = "cannabis-grow" // Uses one growth icons set for all the subtypes | ||
icon_dead = "cannabis-dead" // Same for the dead icon | ||
mutatelist = list(/obj/item/seeds/cannabis/rainbow, | ||
/obj/item/seeds/cannabis/death, | ||
/obj/item/seeds/cannabis/white, | ||
/obj/item/seeds/cannabis/ultimate) | ||
reagents_add = list("space_drugs" = 0.15, "lipolicide" = 0.35) // gives u the munchies | ||
|
||
|
||
/obj/item/seeds/cannabis/rainbow | ||
name = "pack of rainbow weed seeds" | ||
desc = "These seeds grow into rainbow weed. Groovy." | ||
icon_state = "seed-megacannabis" | ||
species = "megacannabis" | ||
plantname = "Rainbow Weed" | ||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/rainbow | ||
mutatelist = list() | ||
reagents_add = list("mindbreaker" = 0.15, "lipolicide" = 0.35) | ||
rarity = 40 | ||
|
||
/obj/item/seeds/cannabis/death | ||
name = "pack of deathweed seeds" | ||
desc = "These seeds grow into deathweed. Not groovy." | ||
icon_state = "seed-blackcannabis" | ||
species = "blackcannabis" | ||
plantname = "Deathweed" | ||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/death | ||
mutatelist = list() | ||
reagents_add = list("cyanide" = 0.35, "space_drugs" = 0.15, "lipolicide" = 0.15) | ||
rarity = 40 | ||
|
||
/obj/item/seeds/cannabis/white | ||
name = "pack of lifeweed seeds" | ||
desc = "I will give unto him that is munchies of the fountain of the cravings of life, freely." | ||
icon_state = "seed-whitecannabis" | ||
species = "whitecannabis" | ||
plantname = "Lifeweed" | ||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/white | ||
mutatelist = list() | ||
reagents_add = list("omnizine" = 0.35, "space_drugs" = 0.15, "lipolicide" = 0.15) | ||
rarity = 40 | ||
|
||
|
||
/obj/item/seeds/cannabis/ultimate | ||
name = "pack of omega weed seeds" | ||
desc = "These seeds grow into omega weed." | ||
icon_state = "seed-ocannabis" | ||
species = "ocannabis" | ||
plantname = "Omega Weed" | ||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/ultimate | ||
mutatelist = list() | ||
reagents_add = list("space_drugs" = 0.03, | ||
"mindbreaker" = 0.03, | ||
"mercury" = 0.015, | ||
"lithium" = 0.015, | ||
"atropine" = 0.015, | ||
"haloperidol" = 0.015, | ||
"methamphetamine" = 0.015, | ||
"capsaicin" = 0.015, | ||
"barbers_aid" = 0.015, | ||
"bath_salts" = 0.015, | ||
"itching_powder" = 0.015, | ||
"crank" = 0.015, | ||
"krokodil" = 0.015, | ||
"histamine" = 0.015, | ||
"lipolicide" = 0.015) | ||
rarity = 69 | ||
|
||
|
||
// --------------------------------------------------------------- | ||
|
||
/obj/item/weapon/reagent_containers/food/snacks/grown/cannabis | ||
seed = /obj/item/seeds/cannabis | ||
icon = 'goon/icons/obj/hydroponics.dmi' | ||
name = "cannabis leaf" | ||
desc = "Recently legalized in most galaxies." | ||
icon_state = "cannabis" | ||
filling_color = "#00FF00" | ||
bitesize_mod = 2 | ||
|
||
|
||
/obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/rainbow | ||
seed = /obj/item/seeds/cannabis/rainbow | ||
desc = "Is it supposed to be glowing like that...?" | ||
icon_state = "megacannabis" | ||
|
||
/obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/death | ||
seed = /obj/item/seeds/cannabis/death | ||
desc = "Looks a bit dark. Oh well." | ||
icon_state = "blackcannabis" | ||
|
||
/obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/white | ||
seed = /obj/item/seeds/cannabis/white | ||
desc = "It feels smooth and nice to the touch." | ||
icon_state = "whitecannabis" | ||
|
||
/obj/item/weapon/reagent_containers/food/snacks/grown/cannabis/ultimate | ||
seed = /obj/item/seeds/cannabis/ultimate | ||
desc = "You feel dizzy looking at it. What the fuck?" | ||
icon_state = "ocannabis" | ||
volume = 69 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters