crepe
This commit is contained in:
@@ -816,6 +816,40 @@
|
||||
fitting_swords = list(/obj/item/melee/rapier)
|
||||
starting_sword = /obj/item/melee/rapier
|
||||
|
||||
/obj/item/storage/belt/sabre/secbelt
|
||||
name = "security sheath"
|
||||
desc = "A statement on modern practical fashion; this limber black sheath is fitted to a lightened security belt, allowing one to look fashionable with their sword-shaped stun-baton, while of course carrying less things."
|
||||
icon_state = "secsheath"
|
||||
item_state = "secsheath"
|
||||
w_class = WEIGHT_CLASS_BULKY
|
||||
starting_sword = /obj/item/melee/baton/stunsword
|
||||
content_overlays = TRUE
|
||||
|
||||
/obj/item/storage/belt/sabre/secbelt/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.max_items = 5
|
||||
STR.max_w_class = WEIGHT_CLASS_NORMAL
|
||||
STR.rustle_sound = TRUE
|
||||
STR.quickdraw = FALSE
|
||||
STR.can_hold = typecacheof(list( // cannot carry other batons
|
||||
/obj/item/melee/baton/stunsword,
|
||||
/obj/item/grenade,
|
||||
/obj/item/reagent_containers/spray/pepper,
|
||||
/obj/item/restraints/handcuffs,
|
||||
/obj/item/assembly/flash/handheld,
|
||||
/obj/item/clothing/glasses,
|
||||
/obj/item/reagent_containers/food/snacks/donut,
|
||||
/obj/item/flashlight/seclite,
|
||||
/obj/item/radio,
|
||||
/obj/item/clothing/gloves,
|
||||
/obj/item/restraints/legcuffs/bola
|
||||
))
|
||||
|
||||
/obj/item/storage/belt/sabre/secbelt/PopulateContents()
|
||||
new /obj/item/melee/baton/stunsword(src)
|
||||
update_icon()
|
||||
|
||||
/obj/item/storage/belt/sabre/twin
|
||||
name = "twin sheath"
|
||||
desc = "Two sheaths. One is capable of holding a katana (or bokken) and the other a wakizashi. You could put two wakizashis in if you really wanted to. Now you can really roleplay as a samurai."
|
||||
|
||||
Reference in New Issue
Block a user