This commit is contained in:
WoolyAypa
2023-02-09 23:57:41 -03:00
parent 23c7028513
commit 48cd331cd7
11 changed files with 66 additions and 3 deletions
@@ -2,7 +2,7 @@
/datum/gear/shoes/footwraps
name = "Cloth Footwraps"
path= /obj/item/clothing/shoes/footwraps
/datum/gear/shoes/invisiboots
name = "Invisifiber Footwraps"
path= /obj/item/clothing/shoes/invisiboots
@@ -36,3 +36,7 @@
/datum/gear/shoes/puttee
restricted_roles = list("Security Officer", "Warden", "Head of Security", "Brig Physician", "Blueshield")
/datum/gear/shoes/highheel_sandals
name = "High-heel Sandals"
path = /obj/item/clothing/shoes/highheel_sandals
@@ -146,3 +146,19 @@
path = /obj/item/clothing/under/goner/fake/poly
loadout_flags = LOADOUT_CAN_NAME | LOADOUT_CAN_DESCRIPTION | LOADOUT_CAN_COLOR_POLYCHROMIC
loadout_initial_colors = list("#E6E6E6")
/datum/gear/uniform/leia_outfit
name = "Princess Leia Putfit"
path = /obj/item/clothing/under/misc/leia_outfit
/datum/gear/uniform/leia_outfit/red
name = "Red Princess Leia Outfit"
path = /obj/item/clothing/under/misc/leia_outfit/red
/datum/gear/uniform/leia_outfit/blue
name = "Blue Princess Leia Outfit"
path = /obj/item/clothing/under/misc/leia_outfit/blue
/datum/gear/uniform/performer/polychromic
name = "Polychromic performers one piece"
path = /obj/item/clothing/under/performer/polychromic
@@ -84,3 +84,15 @@
build_path = /obj/item/clothing/shoes/jackboots/cbrn/mopp
category = list("Equipment")
departmental_flags = DEPARTMENTAL_FLAG_SECURITY
/obj/item/clothing/shoes/highheel_sandals
name = "high-heel sandals"
desc = "A pair of high-heel sandals"
icon = 'modular_splurt/icons/obj/clothing/shoes.dmi'
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/shoes.dmi'
anthro_mob_worn_overlay = 'modular_splurt/icons/mob/clothing/shoes_digi.dmi'
icon_state = "highheel_sandals"
/obj/item/clothing/shoes/highheel_sandals/Initialize()
. = ..()
AddComponent(/datum/component/squeak, list('modular_splurt/sound/effects/footstep/highheel1.ogg' = 1,'modular_splurt/sound/effects/footstep/highheel2.ogg' = 1), 20)
@@ -311,3 +311,30 @@
/obj/item/clothing/under/misc/gear_harness
body_parts_covered = NONE
/obj/item/clothing/under/misc/leia_outfit
name = "space princess outfit"
desc = "Chain for your Master's erotic asphyxiation not included."
icon = 'modular_splurt/icons/obj/clothing/uniforms.dmi'
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/uniform.dmi'
icon_state = "leia"
can_adjust = FALSE
/obj/item/clothing/under/misc/leia_outfit/red
name = "red space princess outfit"
icon_state = "leia_red"
desc = "Now in sexy gold and red! Chain for your Master's erotic asphyxiation not included."
/obj/item/clothing/under/misc/leia_outfit/blue
name = "blue space princess outfit"
icon_state = "leia_blue"
desc = "Now in sexy gold and blue! Chain for your Master's erotic asphyxiation not included."
/obj/item/clothing/under/performer/polychromic
name = "polychromic performers one piece"
icon = 'modular_splurt/icons/obj/clothing/uniforms.dmi'
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/uniform.dmi'
icon_state = "poly_performer"
/obj/item/clothing/under/performer/polychromic/ComponentInitialize()
. = ..()
AddElement(/datum/element/polychromic, list("#ffffff"), 1)
@@ -16,7 +16,10 @@
/obj/item/clothing/under/officesexy = 3,
/obj/item/clothing/suit/toggle/tunnelfox = 3,
/obj/item/clothing/under/performer = 2,
/obj/item/clothing/under/bluedress = 3
/obj/item/clothing/under/bluedress = 3,
/obj/item/clothing/under/misc/leia_outfit = 2,
/obj/item/clothing/under/misc/leia_outfit/red = 2,
/obj/item/clothing/under/misc/leia_outfit/blue = 2
)
var/list/extra_contraband = list(
/obj/item/clothing/under/rank/civilian/lawyer/galaxy_red = 3,
@@ -29,7 +29,8 @@
/obj/item/restraints/bondage_rope = 5,
/obj/item/clothing/under/domina = 5,
/obj/item/clothing/under/performer = 3,
/obj/item/clothing/shoes/invisiboots = 10 // Added here to go with the Gear Harness
/obj/item/clothing/shoes/invisiboots = 10, // Added here to go with the Gear Harness
/obj/item/clothing/shoes/highheel_sandals = 3
)
var/list/extra_contraband = list(
//Lewd-Clothes
Binary file not shown.

Before

Width:  |  Height:  |  Size: 922 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 28 KiB