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:
OrbisAnima
2017-01-29 11:02:11 -03:00
parent 1cf7c439a7
commit 16a44b75bd
6 changed files with 121 additions and 0 deletions

View File

@@ -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))