Allows trophy belts to hold limbs, fixes incorrect uplink description (#31203)

* changes uplink description for trophy belt to reflect ability to hold limbs

* allows trophy belt to hold limbs and updates its description to reflect this fact

* removed reference in trophy belt's uplink description to having 7 slots because this wasn't true even before i made any changes to what it could hold
This commit is contained in:
ConfusedCactus
2021-11-04 12:25:21 -04:00
committed by GitHub
parent be3492a822
commit 9355581f49
2 changed files with 11 additions and 3 deletions

View File

@@ -582,7 +582,7 @@ var/list/uplink_items = list()
/datum/uplink_item/badass/trophybelt
name = "Trophy Belt"
desc = "An unremarkable leather belt specially crafted to hold whole heads in storage, perfect for serial killers with something to prove. Comes with seven storage slots. Will not accept brains, so behead mindfully."
desc = "An unremarkable leather belt specially crafted to hold whole heads and limbs in storage, perfect for serial killers and maimers with something to prove. Will not accept brains, so behead mindfully."
item = /obj/item/weapon/storage/belt/skull
cost = 4

View File

@@ -319,13 +319,21 @@
/obj/item/weapon/storage/belt/skull
name = "trophy-belt" //FATALITY
desc = "Excellent for holding the heads of your fallen foes."
desc = "Excellent for holding the heads and limbs of your fallen foes."
icon_state = "utilitybelt"
item_state = "utility"
fits_max_w_class = 4
max_combined_w_class = 28
can_only_hold = list(
"/obj/item/organ/external/head"
"/obj/item/organ/external/head",
"/obj/item/organ/external/r_arm",
"/obj/item/organ/external/r_hand",
"/obj/item/organ/external/r_foot",
"/obj/item/organ/external/r_leg",
"/obj/item/organ/external/l_arm",
"/obj/item/organ/external/l_hand",
"/obj/item/organ/external/l_foot",
"/obj/item/organ/external/l_leg"
)
/obj/item/weapon/storage/belt/silicon