Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 32b5f60

Browse files
vox tank can now be printed from autolathe/protolathe(cargo/engi) (#22926)
1 parent 0eee8fe commit 32b5f60

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

code/modules/research/designs/autolathe_designs.dm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,15 @@
337337
category = list("hacked","Miscellaneous","Equipment")
338338
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_CARGO
339339

340+
/datum/design/vox_tank
341+
name = "Vox Nitrogen Tank"
342+
id = "vox_tank"
343+
build_type = AUTOLATHE | PROTOLATHE
344+
materials = list(/datum/material/iron = 800)
345+
build_path = /obj/item/tank/internals/emergency_oxygen/vox/empty
346+
category = list("hacked","Miscellaneous","Equipment")
347+
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_CARGO
348+
340349
/datum/design/metal
341350
name = "Metal"
342351
id = "metal"

code/modules/research/techweb/all_nodes.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
design_ids = list("solarcontrol", "recharger", "powermonitor", "rped", "pacman", "adv_capacitor", "adv_scanning", "emitter", "high_cell", "adv_matter_bin", "scanner_gate",
156156
"atmosalerts", "atmos_control", "recycler", "autolathe", "high_micro_laser", "nano_mani", "mesons", "thermomachine", "rad_collector", "tesla_coil", "grounding_rod",
157157
"cell_charger", "stack_console", "stack_machine", "conveyor_belt", "conveyor_switch", "reactor_control",
158-
"oxygen_tank", "plasma_tank", "emergency_oxygen", "emergency_oxygen_engi", "plasmaman_tank_belt", "electrolyzer", "floorigniter", "crystallizer", "suit_storage_unit",
158+
"oxygen_tank", "plasma_tank", "emergency_oxygen", "emergency_oxygen_engi", "plasmaman_tank_belt", "vox_tank", "electrolyzer", "floorigniter", "crystallizer", "suit_storage_unit",
159159
"atmos_thermal", "mech_heat_sink", "mech_passive_cooling")
160160
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)
161161

yogstation/code/game/objects/items/tanks/tank_types.dm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@
2424

2525
/obj/item/tank/internals/emergency_oxygen/vox/populate_gas()
2626
air_contents.set_moles(GAS_N2, (10*ONE_ATMOSPHERE)* volume/(R_IDEAL_GAS_EQUATION*T20C))
27+
28+
/obj/item/tank/internals/emergency_oxygen/vox/empty/populate_gas()
29+
return

0 commit comments

Comments
 (0)