Removes Star Trek chemistry and transfers us to Goon Chemistry.

This commit is contained in:
Iamgoofball
2015-01-16 17:21:36 -08:00
parent f73903146b
commit f3398e58a9
58 changed files with 487 additions and 574 deletions
@@ -14,4 +14,25 @@
icon_state = "bandaid" // thanks inheritance
/obj/item/weapon/reagent_containers/pill/patch/afterattack(obj/target, mob/user , proximity)
return // thanks inheritance again
return // thanks inheritance again
/obj/item/weapon/reagent_containers/pill/patch/canconsume(mob/eater, mob/user)
if(!eater.SpeciesCanConsume())
return 0
return 1 // Masks were stopping people from "eating" patches. Thanks, inheritance.
/obj/item/weapon/reagent_containers/pill/patch/styptic
name = "styptic powder patch"
desc = "Helps with brute injuries."
/obj/item/weapon/reagent_containers/pill/patch/styptic/New()
..()
reagents.add_reagent("styptic_powder", 25)
/obj/item/weapon/reagent_containers/pill/patch/silver_sulf
name = "silver sulfadiazine patch"
desc = "Helps with burn injuries."
/obj/item/weapon/reagent_containers/pill/patch/silver_sulf/New()
..()
reagents.add_reagent("silver_sulfadiazine", 25)