Skip to content

Commit b8528ec

Browse files
Adding unlocked rig subtypes.
1 parent e3b2165 commit b8528ec

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

code/game/objects/items/weapons/storage/boxes.dm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,10 @@
169169
/obj/item/box/ammo/blanks/large
170170
icon_state = "largebox"
171171
w_class = ITEM_SIZE_LARGE
172-
storage = /datum/storage/box/large/metal
172+
173+
/obj/item/box/ammo/blanks/large/Initialize(ml, material_key)
174+
. = ..()
175+
storage.make_exact_fit()
173176

174177
/obj/item/box/ammo/blanks/large/WillContain()
175178
return list(/obj/item/ammo_casing/shotgun/blank = 16)

code/modules/clothing/spacesuits/rig/suits/light.dm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@
6464
/obj/item/rig_module/cooling_unit
6565
)
6666

67+
/obj/item/rig/light/hacker/unlocked
68+
req_access = null
69+
6770
//The cybersuit is not space-proof. It does however, have good siemens_coefficient values
6871
/obj/item/clothing/head/lightrig/hacker
6972
name = "HUD"
@@ -90,3 +93,6 @@
9093
/obj/item/rig_module/stealth_field,
9194
/obj/item/rig_module/vision
9295
)
96+
97+
/obj/item/rig/light/stealth/unlocked
98+
req_access = null

code/modules/clothing/spacesuits/rig/suits/merc.dm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
/obj/item/clothing/suit/space/rig/merc
4545
icon = 'icons/clothing/rigs/chests/chest_merc.dmi'
4646

47+
/obj/item/rig/merc/empty/unlocked
48+
req_access = null
49+
4750
//Has most of the modules removed
4851
/obj/item/rig/merc/empty
4952
initial_modules = list(

code/modules/clothing/spacesuits/rig/suits/station.dm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
icon = 'icons/clothing/rigs/gloves/gloves.dmi'
8282
siemens_coefficient = 0
8383

84+
/obj/item/rig/industrial/unlocked
85+
req_access = null
86+
8487
/obj/item/rig/industrial/equipped
8588

8689
initial_modules = list(
@@ -118,6 +121,9 @@
118121

119122
req_access = list(access_engine_equip)
120123

124+
/obj/item/rig/eva/unlocked
125+
req_access = null
126+
121127
/obj/item/clothing/head/helmet/space/rig/eva
122128
camera = /obj/machinery/camera/network/engineering
123129
icon = 'icons/clothing/rigs/helmets/helmet_eva.dmi'
@@ -338,6 +344,9 @@
338344
allowed = list(/obj/item/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/handcuffs,/obj/item/flashlight,/obj/item/tank,/obj/item/suit_cooling_unit,/obj/item/baton)
339345
anomaly_shielding = 1
340346

347+
/obj/item/rig/hazard/unlocked
348+
req_access = null
349+
341350
/obj/item/clothing/head/helmet/space/rig/hazard
342351
camera = /obj/machinery/camera/network/security
343352
icon = 'icons/clothing/rigs/helmets/helmet_hazard.dmi'

0 commit comments

Comments
 (0)