Files
Bubberstation/code/game/objects/items/skub.dm
SkyratBot b5bd312379 [MIRROR] Add investigate_deaths [MDB IGNORE] (#17424)
* Add investigate_deaths

* merge changes other than giant_spider which deps on tg/70848

* gib

* dust

* death

Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com>
Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com>
Co-authored-by: tastyfish <crazychris32@gmail.com>
2022-11-11 14:44:33 -05:00

19 lines
600 B
Plaintext

/obj/item/skub
desc = "It's skub."
name = "skub"
icon = 'icons/obj/weapons/items_and_weapons.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