Skip to content

Commit

Permalink
brig remap full commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsVyzo committed Nov 24, 2023
1 parent facf5a7 commit 9ca7a48
Show file tree
Hide file tree
Showing 5 changed files with 6,074 additions and 6,424 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/computer/security.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
if("Released")
background = "'background-color:#3BB9FF;'"
if("Suspect")
background = "'background-color:#1AAFFF;'"
background = "'background-color:#686A6C;'"
if("NJP")
background = "'background-color:#faa20a;'"
if("None")
Expand Down
8 changes: 8 additions & 0 deletions code/game/machinery/doors/brig_system.dm
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,14 @@
name = "Cell 4"
id = "Cell 4"

/obj/structure/machinery/brig_cell/cell_5
name = "Cell 5"
id = "Cell 5"

/obj/structure/machinery/brig_cell/cell_6
name = "Cell 6"
id = "Cell 6"

/obj/structure/machinery/brig_cell/perma_1
name = "Perma 1"
id = "Perma 1"
Expand Down
17 changes: 17 additions & 0 deletions code/game/machinery/vending/vending_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,23 @@
)
contraband = list(/obj/item/clothing/glasses/sunglasses = 2,/obj/item/storage/donut_box = 2)

/obj/structure/machinery/vending/security/riot
name = "\improper RiotTech"
desc = "A security riot equipment vendor."
hacking_safety = TRUE
wrenchable = FALSE
products = list(
/obj/item/handcuffs/zip = 40,
/obj/item/explosive/grenade/flashbang = 20,
/obj/item/explosive/grenade/custom/teargas = 40,
/obj/item/ammo_magazine/smg/m39/rubber = 40,
/obj/item/ammo_magazine/pistol/rubber = 40,
/obj/item/ammo_magazine/pistol/mod88/rubber = 40,
/obj/item/ammo_magazine/rifle/rubber = 40,
/obj/item/ammo_magazine/rifle/m4ra/rubber = 40,
/obj/item/clothing/head/helmet/marine/MP = 8,
)

/obj/structure/machinery/vending/sea
name = "\improper SeaTech"
desc = "An equipment vendor designed to save lives"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,58 @@
locked = TRUE
var/id = null

/obj/structure/closet/secure_closet/brig/prisoner

/obj/structure/closet/secure_closet/brig/prisoner/Initialize()
. = ..()
new /obj/item/clothing/under/color/orange(src)
new /obj/item/clothing/shoes/orange(src)
new /obj/item/device/radio/headset(src)

/obj/structure/closet/secure_closet/brig/prison_uni
name = "Spare Prison Uniforms"
req_one_access = list(ACCESS_MARINE_BRIG, ACCESS_CIVILIAN_BRIG)
anchored = TRUE
locked = TRUE
/obj/structure/closet/secure_closet/brig/prison_uni/Initialize()
. = ..()
new /obj/item/clothing/shoes/orange(src)
new /obj/item/clothing/shoes/orange(src)
new /obj/item/clothing/shoes/orange(src)
new /obj/item/clothing/shoes/orange(src)
new /obj/item/clothing/shoes/orange(src)
new /obj/item/clothing/under/color/orange(src)
new /obj/item/clothing/under/color/orange(src)
new /obj/item/clothing/under/color/orange(src)
new /obj/item/clothing/under/color/orange(src)
new /obj/item/clothing/under/color/orange(src)
new /obj/item/device/radio/headset(src)
new /obj/item/device/radio/headset(src)
new /obj/item/device/radio/headset(src)
new /obj/item/device/radio/headset(src)
new /obj/item/device/radio/headset(src)

/obj/structure/closet/secure_closet/brig/restraints
name = "Spare Restraints"
req_one_access = list(ACCESS_MARINE_BRIG, ACCESS_CIVILIAN_BRIG)
anchored = TRUE
locked = TRUE
/obj/structure/closet/secure_closet/brig/restraints/Initialize()
. = ..()
new /obj/item/clothing/suit/straight_jacket(src)
new /obj/item/clothing/suit/straight_jacket(src)
new /obj/item/clothing/suit/straight_jacket(src)
new /obj/item/clothing/suit/straight_jacket(src)
new /obj/item/clothing/suit/straight_jacket(src)
new /obj/item/clothing/glasses/sunglasses/blindfold(src)
new /obj/item/clothing/glasses/sunglasses/blindfold(src)
new /obj/item/clothing/glasses/sunglasses/blindfold(src)
new /obj/item/clothing/glasses/sunglasses/blindfold(src)
new /obj/item/clothing/glasses/sunglasses/blindfold(src)

/obj/structure/closet/secure_closet/brig/Initialize()
. = ..()

/obj/structure/closet/secure_closet/brig/Initialize()
. = ..()
new /obj/item/clothing/under/color/orange(src)
Expand Down
Loading

0 comments on commit 9ca7a48

Please sign in to comment.