mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-17 09:47:55 +01:00
requires #6644 Entirely replaces how (most) belts perform insertion checks. This pretty much allows belts to hold most things. Armor vests are next. Trashbags will also use the systems we use on main. Closes #7256 and #7435 --------- Co-authored-by: silicons <silicons@silicons.dev>
14 lines
408 B
Plaintext
14 lines
408 B
Plaintext
/**
|
|
* just a tool supertype
|
|
*
|
|
* the tool system is implemented at /item level
|
|
*/
|
|
/obj/item/tool
|
|
item_flags = ITEM_CAREFUL_BLUDGEON | ITEM_ENCUMBERS_WHILE_HELD
|
|
suit_storage_class = SUIT_STORAGE_CLASS_SOFTWEAR | SUIT_STORAGE_CLASS_HARDWEAR
|
|
belt_storage_class = BELT_CLASS_SMALL
|
|
|
|
/obj/item/tool/get_description_info()
|
|
. = ..()
|
|
. += "It appears to work at [(TOOL_SPEED_DEFAULT/tool_speed)*100]% speed."
|