diff --git a/code/game/machinery/vendors/generic_vendors.dm b/code/game/machinery/vendors/generic_vendors.dm index a525d693ec7..26399f01452 100644 --- a/code/game/machinery/vendors/generic_vendors.dm +++ b/code/game/machinery/vendors/generic_vendors.dm @@ -458,6 +458,7 @@ /obj/item/clothing/mask/balaclava = 1, /obj/item/clothing/head/ushanka = 1, /obj/item/clothing/under/costume/soviet = 1, + /obj/item/clothing/suit/pimpcoat/white = 3, /obj/item/storage/belt/fannypack/black = 1) prices = list(/obj/item/clothing/under/suit/navy = 75, @@ -540,6 +541,7 @@ /obj/item/clothing/suit/mantle = 20, /obj/item/clothing/suit/mantle/old = 20, /obj/item/clothing/suit/mantle/regal = 30, + /obj/item/clothing/suit/pimpcoat/white = 500, /obj/item/clothing/under/misc/mailman = 100) refill_canister = /obj/item/vending_refill/clothing diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cargo_lockers.dm b/code/game/objects/structures/crates_lockers/closets/secure/cargo_lockers.dm index 6bf3bb51f92..4c7538a4756 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/cargo_lockers.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/cargo_lockers.dm @@ -43,6 +43,8 @@ new /obj/item/organ/internal/eyes/cybernetic/meson(src) new /obj/item/storage/bag/garment/quartermaster(src) new /obj/item/clothing/accessory/medal/supply(src) + new /obj/item/clothing/accessory/medal/supply(src) + new /obj/item/clothing/suit/pimpcoat/tan(src) new /obj/item/rcs(src) new /obj/item/destTagger(src) new /obj/item/reagent_containers/drinks/mug/qm(src) diff --git a/code/modules/clothing/suits/misc_suits.dm b/code/modules/clothing/suits/misc_suits.dm index 604a7eb8d77..9217b991eb9 100644 --- a/code/modules/clothing/suits/misc_suits.dm +++ b/code/modules/clothing/suits/misc_suits.dm @@ -430,6 +430,26 @@ cold_protection = UPPER_TORSO | LOWER_TORSO | ARMS min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT + sprite_sheets = list( + "Grey" = 'icons/mob/clothing/species/grey/suit.dmi', + "Drask" = 'icons/mob/clothing/species/drask/suit.dmi', + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) + +/obj/item/clothing/suit/pimpcoat/white + name = "fashionable coat" + desc = "Very fluffy white coat, made out of quality synthetic fur." + icon_state = "pimpcoat_white" + item_state = "pimpcoat_white" + +/obj/item/clothing/suit/pimpcoat/tan + name = "coat of status" + desc = "Very fluffy tan coat, made out of the finest fur from the Earth. Gifted to Quartermaster of Nanotrasen. Has additional layer of protection against harsh environment of Lavaland and a strap to hold equipment of Quartermaster." + icon_state = "pimpcoat_tan" + item_state = "pimpcoat_tan" + armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 10, RAD = 0, FIRE = 15, ACID = 50) + allowed = list(/obj/item/paper, /obj/item/clipboard, /obj/item/gun/energy/kinetic_accelerator, /obj/item/melee/baton, /obj/item/flashlight/seclite, /obj/item/melee/classic_baton/telescopic, /obj/item/melee/knuckleduster, /obj/item/rcs) + /obj/item/clothing/suit/furcoat name = "fur coat" desc = "A trenchcoat made from fur. You could put an oxygen tank in one of the pockets." diff --git a/icons/mob/clothing/species/drask/suit.dmi b/icons/mob/clothing/species/drask/suit.dmi index 540819f5b08..6b3d9b8a1c7 100644 Binary files a/icons/mob/clothing/species/drask/suit.dmi and b/icons/mob/clothing/species/drask/suit.dmi differ diff --git a/icons/mob/clothing/species/grey/suit.dmi b/icons/mob/clothing/species/grey/suit.dmi index 02bce53c355..faa1637388a 100644 Binary files a/icons/mob/clothing/species/grey/suit.dmi and b/icons/mob/clothing/species/grey/suit.dmi differ diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index e267c7fc1d9..9a030c54734 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index 1d88265b1f0..646874eddca 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 05e36d082df..d43bf63a97a 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ