Skip to content

Commit

Permalink
vox tank can now be printed from autolathe/protolathe(cargo/engi) (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
warface1234455 authored Jan 30, 2025
1 parent 0eee8fe commit 32b5f60
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions code/modules/research/designs/autolathe_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,15 @@
category = list("hacked","Miscellaneous","Equipment")
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_CARGO

/datum/design/vox_tank
name = "Vox Nitrogen Tank"
id = "vox_tank"
build_type = AUTOLATHE | PROTOLATHE
materials = list(/datum/material/iron = 800)
build_path = /obj/item/tank/internals/emergency_oxygen/vox/empty
category = list("hacked","Miscellaneous","Equipment")
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_CARGO

/datum/design/metal
name = "Metal"
id = "metal"
Expand Down
2 changes: 1 addition & 1 deletion code/modules/research/techweb/all_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
design_ids = list("solarcontrol", "recharger", "powermonitor", "rped", "pacman", "adv_capacitor", "adv_scanning", "emitter", "high_cell", "adv_matter_bin", "scanner_gate",
"atmosalerts", "atmos_control", "recycler", "autolathe", "high_micro_laser", "nano_mani", "mesons", "thermomachine", "rad_collector", "tesla_coil", "grounding_rod",
"cell_charger", "stack_console", "stack_machine", "conveyor_belt", "conveyor_switch", "reactor_control",
"oxygen_tank", "plasma_tank", "emergency_oxygen", "emergency_oxygen_engi", "plasmaman_tank_belt", "electrolyzer", "floorigniter", "crystallizer", "suit_storage_unit",
"oxygen_tank", "plasma_tank", "emergency_oxygen", "emergency_oxygen_engi", "plasmaman_tank_belt", "vox_tank", "electrolyzer", "floorigniter", "crystallizer", "suit_storage_unit",
"atmos_thermal", "mech_heat_sink", "mech_passive_cooling")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)

Expand Down
3 changes: 3 additions & 0 deletions yogstation/code/game/objects/items/tanks/tank_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@

/obj/item/tank/internals/emergency_oxygen/vox/populate_gas()
air_contents.set_moles(GAS_N2, (10*ONE_ATMOSPHERE)* volume/(R_IDEAL_GAS_EQUATION*T20C))

/obj/item/tank/internals/emergency_oxygen/vox/empty/populate_gas()
return

0 comments on commit 32b5f60

Please sign in to comment.