mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
Removes Star Trek chemistry and transfers us to Goon Chemistry.
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user