|
1 | 1 | // Peacekeeping force clothing |
2 | 2 | /obj/item/clothing/under/rank/security/grey/amber/occupying |
3 | | - name = "peacekeeping force jumpsuit" |
4 | | - color = "#55ff9b" |
| 3 | + name = "peacekeeping officer jumpsuit" |
| 4 | + desc = "A Peacekeeper uniform with red marking denoting officers and heavies." |
| 5 | + icon_state = "occuniformofficer" |
| 6 | + item_state = "occuniformofficer" |
| 7 | + |
| 8 | +/obj/item/clothing/under/rank/security/grey/amber/occupying/commander |
| 9 | + name = "peacekeeping commander jumpsuit" |
| 10 | + desc = "A Peacekeeper uniform with blue markings denoting commanders" |
| 11 | + icon_state = "occuniformcommander" |
| 12 | + item_state = "occuniformcommander" |
5 | 13 |
|
6 | 14 | /obj/item/clothing/under/rank/security/grey/amber/occupying/Initialize(mapload, mob/user) |
7 | 15 | . = ..() |
|
10 | 18 |
|
11 | 19 | /obj/item/clothing/head/beret/sec/centcom/occupying |
12 | 20 | name = "peacekeeping force beret" |
13 | | - desc = "A special green beret for the mundane life of an Peacekeeper force commander." |
14 | | - color = "#55ff9b" |
| 21 | + desc = "A special white beret for the mundane life of a Peacekeeper force commander." |
| 22 | + icon_state = "occberet" |
| 23 | + item_state = "occberet" |
| 24 | + |
| 25 | +/obj/item/clothing/suit/armor/vest/alt/occupying |
| 26 | + name = "peacekeeping force vest" |
| 27 | + desc = "A blue armored vest worn by Peacekeeper officers." |
| 28 | + icon_state = "occvest" |
| 29 | + item_state = "occvest" |
15 | 30 |
|
16 | 31 | /obj/item/clothing/suit/armor/riot/occupying |
17 | 32 | armor = list(MELEE = 40, BULLET = 10, LASER = 10, ENERGY = 10, BOMB = 0, BIO = 0, RAD = 0, FIRE = 40, ACID = 40) |
18 | 33 | name = "peacekeeping force riot suit" |
19 | | - desc = "A mass produced semi-flexible polycarbonate body armor with decent padding to protect against melee attacks. Not as strong as riot suits typically issued to NT stations." |
20 | | - color = "#55ff9b" |
| 34 | + desc = "A reinforced version of the standard Peacekeeper vest with extra padding to protect against melee attacks. Not as strong as riot suits typically issued to NT stations." |
| 35 | + icon_state = "occriotsuit" |
| 36 | + item_state = "occriotsuit" |
21 | 37 |
|
22 | 38 | /obj/item/clothing/head/helmet/riot/raised/occupying |
23 | 39 | name = "peacekeeping force riot helmet" |
24 | | - desc = "It's a helmet specifically designed for the Peacekeeping force to protect against close range attacks." |
25 | | - color = "#55ff9b" |
| 40 | + desc = "A blue helmet specifically designed for the Peacekeeping force to protect against close range attacks." |
| 41 | + icon_state = "occriothelm" |
| 42 | + item_state = "occriothelm" |
| 43 | + |
| 44 | +/obj/item/storage/belt/military/occbelt |
| 45 | + name = "peacekeeping force belt" |
| 46 | + desc = "A blue belt used by Peacekeepers to store their gear." |
| 47 | + icon_state = "occbelt" |
| 48 | + item_state = "occbelt" |
26 | 49 |
|
27 | 50 | // Peacekeeping force vest loadouts |
28 | 51 | // To note: each vest has 7 normal slots - Hopek |
29 | | -/obj/item/storage/belt/military/occupying_officer/Initialize(mapload) // Occupying Officer |
| 52 | +/obj/item/storage/belt/military/occbelt/occupying_officer/Initialize(mapload) // Occupying Officer |
30 | 53 | . = ..() |
31 | 54 | new /obj/item/ammo_box/magazine/wt550m9/wtr(src) |
32 | 55 | new /obj/item/ammo_box/magazine/wt550m9/wtr(src) |
|
37 | 60 | new /obj/item/jawsoflife/jimmy(src) |
38 | 61 |
|
39 | 62 |
|
40 | | -/obj/item/storage/belt/military/occupying_commander/Initialize(mapload) // Occupying force Commander |
| 63 | +/obj/item/storage/belt/military/occbelt/occupying_commander/Initialize(mapload) // Occupying force Commander |
41 | 64 | . = ..() |
42 | 65 | new /obj/item/ammo_box/magazine/wt550m9/wtr(src) |
43 | 66 | new /obj/item/ammo_box/magazine/wt550m9/wtr(src) |
|
47 | 70 | new /obj/item/restraints/handcuffs/cable/zipties(src) |
48 | 71 | new /obj/item/jawsoflife/jimmy(src) |
49 | 72 |
|
50 | | -/obj/item/storage/belt/military/occupying_heavy |
51 | | - color = "#55ff9b" |
52 | 73 |
|
53 | | -/obj/item/storage/belt/military/occupying_heavy/Initialize(mapload) // Occupying Riot Officer |
| 74 | +/obj/item/storage/belt/military/occbelt/occupying_heavy/Initialize(mapload) // Occupying Riot Officer |
54 | 75 | . = ..() |
55 | 76 | new /obj/item/restraints/legcuffs/bola/energy(src) |
56 | 77 | new /obj/item/restraints/legcuffs/bola/energy(src) |
|
64 | 85 | /datum/outfit/occupying |
65 | 86 | name = "Peacekeeping Officer" |
66 | 87 | uniform = /obj/item/clothing/under/rank/security/grey/amber/occupying |
67 | | - suit = /obj/item/clothing/suit/armor/vest/alt |
| 88 | + suit = /obj/item/clothing/suit/armor/vest/alt/occupying |
68 | 89 | shoes = /obj/item/clothing/shoes/jackboots |
69 | 90 | gloves = /obj/item/clothing/gloves/color/black |
70 | 91 | ears = /obj/item/radio/headset/headset_cent/alt |
71 | 92 | mask = /obj/item/clothing/mask/cigarette/lit |
72 | | - belt = /obj/item/storage/belt/military/occupying_officer |
| 93 | + belt = /obj/item/storage/belt/military/occbelt/occupying_officer |
73 | 94 | suit_store = /obj/item/gun/ballistic/automatic/wt550/armory |
74 | 95 | back = /obj/item/melee/baton/cattleprod/tactical |
75 | 96 | head = /obj/item/clothing/head/helmet/sec/occupying |
|
102 | 123 |
|
103 | 124 | /datum/outfit/occupying/commander |
104 | 125 | name = "Peacekeeping force Commander" |
| 126 | + uniform = /obj/item/clothing/under/rank/security/grey/amber/occupying/commander |
105 | 127 | head = /obj/item/clothing/head/beret/sec/centcom/occupying |
106 | | - belt = /obj/item/storage/belt/military/occupying_commander |
| 128 | + belt = /obj/item/storage/belt/military/occbelt/occupying_commander |
107 | 129 | l_pocket = /obj/item/pinpointer/nuke |
108 | 130 | r_pocket = /obj/item/lighter/greyscale // everyone has ciggies, only commander has a lighter |
109 | 131 | mask = /obj/item/clothing/mask/cigarette/cigar/cohiba |
110 | 132 | glasses = /obj/item/clothing/glasses/hud/security |
111 | 133 |
|
112 | 134 | /datum/outfit/occupying/heavy |
113 | 135 | name = "Peacekeeping Riot Officer" |
114 | | - belt = /obj/item/storage/belt/military/occupying_heavy |
| 136 | + belt = /obj/item/storage/belt/military/occbelt/occupying_heavy |
115 | 137 | back = /obj/item/shield/riot |
116 | 138 | l_pocket = /obj/item/clothing/ears/earmuffs |
117 | 139 | r_pocket = /obj/item/tank/internals/emergency_oxygen/engi |
|
0 commit comments