mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 01:51:46 +00:00
* Icon folder cleaning wave one * Fixe a merge conflict * Fixes some more merge conflicts * Fixes some modular icon paths * Fixes even more modular icon paths... Hopefully that's the last of them * Fixes some merge discrepencies * More merge issues * ok * not ok --------- Co-authored-by: YesterdaysPromise <122572637+YesterdaysPromise@users.noreply.github.com> Co-authored-by: Giz <vinylspiders@gmail.com>
19 lines
591 B
Plaintext
19 lines
591 B
Plaintext
/obj/item/skub
|
|
desc = "It's skub."
|
|
name = "skub"
|
|
icon = 'icons/obj/maintenance_loot.dmi'
|
|
icon_state = "skub"
|
|
w_class = WEIGHT_CLASS_BULKY
|
|
attack_verb_continuous = list("skubs")
|
|
attack_verb_simple = list("skub")
|
|
|
|
/obj/item/skub/Initialize(mapload)
|
|
. = ..()
|
|
AddComponent(/datum/component/container_item/tank_holder, "holder_skub", FALSE)
|
|
|
|
/obj/item/skub/suicide_act(mob/living/user)
|
|
user.visible_message(span_suicide("[user] has declared themself as anti-skub! The skub tears them apart!"))
|
|
user.gib()
|
|
playsound(src, 'sound/items/eatfood.ogg', 50, TRUE, -1)
|
|
return MANUAL_SUICIDE
|