mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-07 07:22:56 +00:00
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
/obj/item/weapon/reagent_containers/pill/patch
|
|
name = "chemical patch"
|
|
desc = "A chemical patch for touch based applications."
|
|
icon = 'icons/obj/chemical.dmi'
|
|
icon_state = "bandaid"
|
|
item_state = "bandaid"
|
|
possible_transfer_amounts = list()
|
|
volume = 50
|
|
apply_type = PATCH
|
|
apply_method = "apply"
|
|
self_delay = 30 // three seconds
|
|
|
|
/obj/item/weapon/reagent_containers/pill/patch/afterattack(obj/target, mob/user , proximity)
|
|
return // thanks inheritance again
|
|
|
|
/obj/item/weapon/reagent_containers/pill/patch/canconsume(mob/eater, mob/user)
|
|
if(!iscarbon(eater))
|
|
return 0
|
|
return 1 // Masks were stopping people from "eating" patches. Thanks, inheritance.
|
|
|
|
/obj/item/weapon/reagent_containers/pill/patch/styptic
|
|
name = "brute patch"
|
|
desc = "Helps with brute injuries."
|
|
list_reagents = list("styptic_powder" = 50)
|
|
icon_state = "bandaid_brute"
|
|
|
|
/obj/item/weapon/reagent_containers/pill/patch/silver_sulf
|
|
name = "burn patch"
|
|
desc = "Helps with burn injuries."
|
|
list_reagents = list("silver_sulfadiazine" = 50)
|
|
icon_state = "bandaid_burn"
|