mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +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"
|
display_name = "fed uniform, eng"
|
||||||
path = /obj/item/clothing/suit/storage/fluff/fedcoat/fedeng
|
path = /obj/item/clothing/suit/storage/fluff/fedcoat/fedeng
|
||||||
allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer")
|
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))
|
||||||
@@ -135,3 +135,61 @@
|
|||||||
new /obj/item/weapon/storage/fancy/cigarettes/dromedaryco(src)
|
new /obj/item/weapon/storage/fancy/cigarettes/dromedaryco(src)
|
||||||
new /obj/item/weapon/storage/box/matches(src)
|
new /obj/item/weapon/storage/box/matches(src)
|
||||||
new /obj/item/weapon/reagent_containers/food/snacks/sliceable/plaincake(src)
|
new /obj/item/weapon/reagent_containers/food/snacks/sliceable/plaincake(src)
|
||||||
|
|
||||||
|
//Xsdew:Penelope Allen
|
||||||
|
/obj/item/weapon/storage/box/fluff/penelope
|
||||||
|
name = "Penelope's capsule"
|
||||||
|
desc = "A little capsule where a designer's swimsuit is stored."
|
||||||
|
icon = 'icons/vore/custom_items_vr.dmi'
|
||||||
|
icon_state = "capsule"
|
||||||
|
storage_slots = 1
|
||||||
|
foldable = null
|
||||||
|
max_w_class = ITEMSIZE_NORMAL
|
||||||
|
can_hold = list(/obj/item/clothing/under/swimsuit/)
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/fluff/penelope)
|
||||||
|
|
||||||
|
/*
|
||||||
|
Swimsuits, for general use, to avoid arriving to work with your swimsuit.
|
||||||
|
*/
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit
|
||||||
|
name = "Black Swimsuit capsule"
|
||||||
|
desc = "A little capsule where a swimsuit is usually stored."
|
||||||
|
storage_slots = 1
|
||||||
|
icon = 'icons/vore/custom_items_vr.dmi'
|
||||||
|
icon_state = "capsule"
|
||||||
|
foldable = null
|
||||||
|
max_w_class = ITEMSIZE_NORMAL
|
||||||
|
can_hold = list(/obj/item/clothing/under/swimsuit/)
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/black)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/blue
|
||||||
|
name = "Blue Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/blue)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/purple
|
||||||
|
name = "Purple Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/purple)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/green
|
||||||
|
name = "Green Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/green)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/red
|
||||||
|
name = "Red Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/red)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/engineering
|
||||||
|
name = "Engineering Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/fluff/engineering)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/science
|
||||||
|
name = "Science Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/fluff/science)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/security
|
||||||
|
name = "Security Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/fluff/security)
|
||||||
|
|
||||||
|
/obj/item/weapon/storage/box/fluff/swimsuit/medical
|
||||||
|
name = "Medical Swimsuit capsule"
|
||||||
|
has_items = list(/obj/item/clothing/under/swimsuit/fluff/medical)
|
||||||
|
|||||||
@@ -559,3 +559,43 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
|
|||||||
user.set_id_info(src)
|
user.set_id_info(src)
|
||||||
configured = 1
|
configured = 1
|
||||||
user << "<span class='notice'>Card settings set.</span>"
|
user << "<span class='notice'>Card settings set.</span>"
|
||||||
|
|
||||||
|
/*
|
||||||
|
Departamental Swimsuits, for general use
|
||||||
|
*/
|
||||||
|
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/
|
||||||
|
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||||
|
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||||
|
siemens_coefficient = 1
|
||||||
|
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/engineering
|
||||||
|
name = "Engineering Swimsuit"
|
||||||
|
desc = "It's an orange high visibility swimsuit worn by engineers. It lacks radiation, or any, shielding."
|
||||||
|
icon_state = "swimsuit_engineering"
|
||||||
|
item_state = "swimsuit_engineering_mob"
|
||||||
|
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/science
|
||||||
|
name = "Science Swimsuit"
|
||||||
|
desc = "It's made of a special fiber that provides no protection whatsoever, but its hydrophobic. It has markings that denote the wearer as a scientist."
|
||||||
|
icon_state = "swimsuit_science"
|
||||||
|
item_state = "swimsuit_science_mob"
|
||||||
|
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/security
|
||||||
|
name = "Security Swimsuit"
|
||||||
|
desc = "It's made of a slightly sturdier material than standard swimsuits, to allow for a more robust appearance."
|
||||||
|
icon_state = "swimsuit_security"
|
||||||
|
item_state = "swimsuit_security_mob"
|
||||||
|
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/medical
|
||||||
|
name = "Medical Swimsuit"
|
||||||
|
desc = "It's made of a special fiber that provides no protection whatsoever, but its elastic. It has a cross on the back denoting that the wearer is trained medical personnel."
|
||||||
|
icon_state = "swimsuit_medical"
|
||||||
|
item_state = "swimsuit_medical_mob"
|
||||||
|
|
||||||
|
//Xsdew:Penelope Allen
|
||||||
|
/obj/item/clothing/under/swimsuit/fluff/penelope
|
||||||
|
name = "Penelope's Swimsuit"
|
||||||
|
desc = "It's an orange high visibility swimsuit worn by engineers. It lacks radiation, or any, shielding."
|
||||||
|
icon_state = "swimsuit_penelope"
|
||||||
|
item_state = "swimsuit_penelope_mob"
|
||||||
|
|||||||
@@ -487,6 +487,13 @@ item_path: /obj/item/clothing/glasses/hud/health/fluff/wickedtemphud
|
|||||||
}
|
}
|
||||||
|
|
||||||
# ######## X CKEYS
|
# ######## X CKEYS
|
||||||
|
|
||||||
|
{
|
||||||
|
ckey: Xsdew
|
||||||
|
character_name: Penelope Allen
|
||||||
|
item_path: /obj/item/weapon/storage/box/fluff/penelope
|
||||||
|
}
|
||||||
|
|
||||||
# ######## Y CKEYS
|
# ######## Y CKEYS
|
||||||
# ######## Z CKEYS
|
# ######## Z CKEYS
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 126 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Reference in New Issue
Block a user