mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 15:02:29 +00:00
* Fixes sticky tape spam (#52869) * Fixes sticky tape spam * ok * Fixes sticky tape spam Co-authored-by: Fhaxaris <Chrisamcculler@gmail.com>
88 lines
2.9 KiB
Plaintext
88 lines
2.9 KiB
Plaintext
|
|
|
|
/obj/item/stack/sticky_tape
|
|
name = "sticky tape"
|
|
singular_name = "sticky tape"
|
|
desc = "Used for sticking to things for sticking said things to people."
|
|
icon = 'icons/obj/tapes.dmi'
|
|
icon_state = "tape_w"
|
|
var/prefix = "sticky"
|
|
w_class = WEIGHT_CLASS_TINY
|
|
full_w_class = WEIGHT_CLASS_TINY
|
|
item_flags = NOBLUDGEON
|
|
amount = 5
|
|
max_amount = 5
|
|
resistance_flags = FLAMMABLE
|
|
grind_results = list(/datum/reagent/cellulose = 5)
|
|
splint_factor = 0.8
|
|
|
|
var/list/conferred_embed = EMBED_HARMLESS
|
|
var/overwrite_existing = FALSE
|
|
|
|
/obj/item/stack/sticky_tape/afterattack(obj/item/I, mob/living/user)
|
|
if(!istype(I))
|
|
return
|
|
|
|
if(I.embedding && I.embedding == conferred_embed)
|
|
to_chat(user, "<span class='warning'>[I] is already coated in [src]!</span>")
|
|
return
|
|
|
|
user.visible_message("<span class='notice'>[user] begins wrapping [I] with [src].</span>", "<span class='notice'>You begin wrapping [I] with [src].</span>")
|
|
|
|
if(do_after(user, 30, target=I))
|
|
use(1)
|
|
if(istype(I, /obj/item/clothing/gloves/fingerless))
|
|
var/obj/item/clothing/gloves/tackler/offbrand/O = new /obj/item/clothing/gloves/tackler/offbrand
|
|
to_chat(user, "<span class='notice'>You turn [I] into [O] with [src].</span>")
|
|
QDEL_NULL(I)
|
|
user.put_in_hands(O)
|
|
return
|
|
|
|
if(I.embedding && I.embedding == conferred_embed)
|
|
to_chat(user, "<span class='warning'>[I] is already coated in [src]!</span>")
|
|
return
|
|
|
|
I.embedding = conferred_embed
|
|
I.updateEmbedding()
|
|
to_chat(user, "<span class='notice'>You finish wrapping [I] with [src].</span>")
|
|
I.name = "[prefix] [I.name]"
|
|
|
|
if(istype(I, /obj/item/grenade))
|
|
var/obj/item/grenade/sticky_bomb = I
|
|
sticky_bomb.sticky = TRUE
|
|
|
|
/obj/item/stack/sticky_tape/super
|
|
name = "super sticky tape"
|
|
singular_name = "super sticky tape"
|
|
desc = "Quite possibly the most mischevious substance in the galaxy. Use with extreme lack of caution."
|
|
icon_state = "tape_y"
|
|
prefix = "super sticky"
|
|
conferred_embed = EMBED_HARMLESS_SUPERIOR
|
|
splint_factor = 0.6
|
|
|
|
/obj/item/stack/sticky_tape/pointy
|
|
name = "pointy tape"
|
|
singular_name = "pointy tape"
|
|
desc = "Used for sticking to things for sticking said things inside people."
|
|
icon_state = "tape_evil"
|
|
prefix = "pointy"
|
|
conferred_embed = EMBED_POINTY
|
|
|
|
/obj/item/stack/sticky_tape/pointy/super
|
|
name = "super pointy tape"
|
|
singular_name = "super pointy tape"
|
|
desc = "You didn't know tape could look so sinister. Welcome to Space Station 13."
|
|
icon_state = "tape_spikes"
|
|
prefix = "super pointy"
|
|
conferred_embed = EMBED_POINTY_SUPERIOR
|
|
|
|
/obj/item/stack/sticky_tape/surgical
|
|
name = "surgical tape"
|
|
singular_name = "surgical tape"
|
|
desc = "Made for patching broken bones back together alongside bone gel, not for playing pranks."
|
|
//icon_state = "tape_spikes"
|
|
prefix = "surgical"
|
|
conferred_embed = list("embed_chance" = 30, "pain_mult" = 0, "jostle_pain_mult" = 0, "ignore_throwspeed_threshold" = TRUE)
|
|
splint_factor = 0.4
|
|
custom_price = 500
|