Merge pull request #2000 from Cheridan/PlantThatGrows357Revolvers

Plant that grows 357 revolvers
This commit is contained in:
Aranclanos
2013-12-09 17:43:35 -08:00
5 changed files with 34 additions and 0 deletions
+18
View File
@@ -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)
+16
View File
@@ -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