mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -582,7 +582,7 @@ var/list/uplink_items = list()
|
|||||||
|
|
||||||
/datum/uplink_item/badass/trophybelt
|
/datum/uplink_item/badass/trophybelt
|
||||||
name = "Trophy Belt"
|
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
|
item = /obj/item/weapon/storage/belt/skull
|
||||||
cost = 4
|
cost = 4
|
||||||
|
|
||||||
|
|||||||
@@ -319,13 +319,21 @@
|
|||||||
|
|
||||||
/obj/item/weapon/storage/belt/skull
|
/obj/item/weapon/storage/belt/skull
|
||||||
name = "trophy-belt" //FATALITY
|
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"
|
icon_state = "utilitybelt"
|
||||||
item_state = "utility"
|
item_state = "utility"
|
||||||
fits_max_w_class = 4
|
fits_max_w_class = 4
|
||||||
max_combined_w_class = 28
|
max_combined_w_class = 28
|
||||||
can_only_hold = list(
|
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
|
/obj/item/weapon/storage/belt/silicon
|
||||||
|
|||||||
Reference in New Issue
Block a user