mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-05 06:05:58 +01:00
4397d63a55
## About The Pull Request This sprite file had been a dumping ground for miscellaneous sprites for the past decade. It's bloated and full of random kinds of icons and even has a few unused ones. It's time to reorganize them into their own separate dmi's based on theme. ## Why It's Good For The Game Better organization and easier access when looking for stuff. ## Changelog 🆑 imageadd: Split all icons in weapons_and_items.dmi to their own categories imagedel: Removed some unused icons /🆑
19 lines
582 B
Plaintext
19 lines
582 B
Plaintext
/obj/item/skub
|
|
desc = "It's skub."
|
|
name = "skub"
|
|
icon = 'icons/obj/objects.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
|