mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Swimsuits for All! Fluff items for some
-Added swimsuits to be picked in the loadout, since I created a special container for them, they wont replace the uniform you spawn with. They can be found in uniforms and suits! -Added Xsdew departamental selection of swimsuits! (Security, Medbay, Science and Engineering) -Added Xsdew Fluff swimsuit!
This commit is contained in:
@@ -43,3 +43,19 @@
|
||||
display_name = "fed uniform, eng"
|
||||
path = /obj/item/clothing/suit/storage/fluff/fedcoat/fedeng
|
||||
allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer")
|
||||
|
||||
/*
|
||||
Swimsuits
|
||||
*/
|
||||
|
||||
/datum/gear/uniform/swimsuits
|
||||
display_name = "Swimsuits selection"
|
||||
path = /obj/item/weapon/storage/box/fluff/swimsuit
|
||||
|
||||
/datum/gear/uniform/swimsuits/New()
|
||||
..()
|
||||
var/list/swimsuits = list()
|
||||
for(var/swimsuit in typesof(/obj/item/weapon/storage/box/fluff/swimsuit))
|
||||
var/obj/item/weapon/storage/box/fluff/swimsuit/swimsuit_type = swimsuit
|
||||
swimsuits[initial(swimsuit_type.name)] = swimsuit_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(swimsuits))
|
||||
Reference in New Issue
Block a user