mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 17:14:47 +01:00
Merge pull request #2000 from Cheridan/PlantThatGrows357Revolvers
Plant that grows 357 revolvers
This commit is contained in:
@@ -977,3 +977,21 @@
|
||||
reagents.add_reagent("nutriment", 1+round((potency / 20), 1))
|
||||
reagents.add_reagent("singulo", 1+round((potency / 5), 1))
|
||||
bitesize = 1+round(reagents.total_volume / 2, 1)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/grown/gatfruit
|
||||
seed = "/obj/item/seeds/gatfruit"
|
||||
name = "gatfruit"
|
||||
desc = "It smells like burning."
|
||||
icon_state = "gatfruit"
|
||||
potency = 60
|
||||
origin_tech = "combat=3"
|
||||
trash = /obj/item/weapon/gun/projectile/revolver
|
||||
New()
|
||||
..()
|
||||
spawn(5) //So potency can be set in the proc that creates these crops
|
||||
reagents.add_reagent("sulfur", 1+round((potency / 10), 1))
|
||||
reagents.add_reagent("carbon", 1+round((potency / 10), 1))
|
||||
reagents.add_reagent("nitrogen", 1+round((potency / 15), 1))
|
||||
reagents.add_reagent("potassium", 1+round((potency / 20), 1))
|
||||
bitesize = 1+round(reagents.total_volume / 2, 1)
|
||||
|
||||
|
||||
@@ -1050,3 +1050,19 @@
|
||||
potency = 20
|
||||
plant_type = 0
|
||||
growthstages = 6
|
||||
|
||||
/obj/item/seeds/gatfruit
|
||||
name = "pack of gatfruit seeds"
|
||||
desc = "These seeds grow into .357 revolvers."
|
||||
icon_state = "seed-gatfruit"
|
||||
species = "gatfruit"
|
||||
plantname = "gatfruit"
|
||||
product = /obj/item/weapon/reagent_containers/food/snacks/grown/gatfruit
|
||||
lifespan = 20
|
||||
endurance = 20
|
||||
maturation = 40
|
||||
production = 10
|
||||
yield = 2
|
||||
potency = 60
|
||||
plant_type = 0
|
||||
growthstages = 2
|
||||
Reference in New Issue
Block a user