add new clothes

This commit is contained in:
Killian
2020-02-05 21:50:32 +00:00
parent 428d851f01
commit 7d0bed5e4f
10 changed files with 30 additions and 2 deletions

View File

@@ -21,12 +21,13 @@
/obj/item/weapon/melee/baton/loaded,
/obj/item/clothing/glasses/sunglasses,
/obj/item/clothing/glasses/sunglasses/medhud,
/obj/item/clothing/head/beret/centcom/officer,
/obj/item/clothing/head/beret/blueshield,
/obj/item/clothing/head/helmet/dermal,
/obj/item/clothing/under/yw/blueshield,
/obj/item/clothing/under/yw/blueshield2,
/obj/item/clothing/suit/armor/yw/blueshield,
/obj/item/clothing/suit/armor/yw/blueshieldcoat,
/obj/item/clothing/accessory/poncho/roles/cloak/blueshield,
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/accessory/holster/leg,
/obj/item/clothing/shoes/boots/jackboots,

View File

@@ -0,0 +1,4 @@
/datum/gear/head/beret/blueshield
display_name = "beret, blueshield"
path = /obj/item/clothing/head/beret/blueshield
allowed_roles = list("Blueshield Guard")

View File

@@ -0,0 +1,4 @@
/datum/gear/suit/roles/poncho/cloak/blueshield
display_name = "cloak, blueshield"
path = /obj/item/clothing/accessory/poncho/roles/cloak/blueshield
allowed_roles = list("Blueshield Guard")

View File

@@ -0,0 +1,8 @@
/obj/item/clothing/head/beret/blueshield
name = "bodyguard's beret"
desc = "A dark blue beret adorned with a silver patch. The mark of a professional bodyguard."
item_state_slots = list(slot_r_hand_str = "beret_white", slot_l_hand_str = "beret_white")
icon = 'icons/obj/clothing/hats_yw.dmi'
icon_state = "beret_blueshield"
icon_override = 'icons/mob/head_yw.dmi'
item_state = "beret_blueshield"

View File

@@ -0,0 +1,7 @@
/obj/item/clothing/accessory/poncho/roles/cloak/blueshield
name = "bodyguard's cloak"
desc = "A dark blue cloak with silver trim around the neck. The mark of a professional bodyguard, and ideal for concealing holsters or other items."
icon = 'icons/obj/clothing/ties_yw.dmi'
icon_state = "cloak_blueshield"
icon_override = 'icons/mob/ties_yw.dmi'
item_state = "cloak_blueshield"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
icons/mob/ties_yw.dmi Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

View File

@@ -1688,12 +1688,14 @@
#include "code\modules\client\preference_setup\loadout\loadout_gloves_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_yw.dm"
#include "code\modules\client\preference_setup\loadout\loadout_mask.dm"
#include "code\modules\client\preference_setup\loadout\loadout_shoes.dm"
#include "code\modules\client\preference_setup\loadout\loadout_shoes_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_smoking.dm"
#include "code\modules\client\preference_setup\loadout\loadout_suit.dm"
#include "code\modules\client\preference_setup\loadout\loadout_suit_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_suit_yw.dm"
#include "code\modules\client\preference_setup\loadout\loadout_uniform.dm"
#include "code\modules\client\preference_setup\loadout\loadout_uniform_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_uniform_yw.dm"
@@ -1739,6 +1741,7 @@
#include "code\modules\clothing\head\hood.dm"
#include "code\modules\clothing\head\hood_yw.dm"
#include "code\modules\clothing\head\jobs.dm"
#include "code\modules\clothing\head\jobs_yw.dm"
#include "code\modules\clothing\head\misc.dm"
#include "code\modules\clothing\head\misc_special.dm"
#include "code\modules\clothing\head\misc_vr.dm"
@@ -1836,6 +1839,7 @@
#include "code\modules\clothing\under\syndicate.dm"
#include "code\modules\clothing\under\accessories\accessory.dm"
#include "code\modules\clothing\under\accessories\accessory_vr.dm"
#include "code\modules\clothing\under\accessories\accessory_yw.dm"
#include "code\modules\clothing\under\accessories\armband.dm"
#include "code\modules\clothing\under\accessories\armor.dm"
#include "code\modules\clothing\under\accessories\badges.dm"
@@ -1983,8 +1987,8 @@
#include "code\modules\food\food\sandwich.dm"
#include "code\modules\food\food\snacks.dm"
#include "code\modules\food\food\snacks_vr.dm"
#include "code\modules\food\food\z_custom_food_vr.dm"
#include "code\modules\food\food\thecake.dm"
#include "code\modules\food\food\z_custom_food_vr.dm"
#include "code\modules\food\food\drinks\bottle.dm"
#include "code\modules\food\food\drinks\cup.dm"
#include "code\modules\food\food\drinks\drinkingglass.dm"