mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 07:28:53 +01:00
Attempt to normalize computer and circuit board names and their research names.
Also moved RCON console board and SMES board where they belong. Formatted some board code and fixed some typos, too. Cloning console renamed to Cloning Control Console. The teleporter console is now called Teleporter Control Console. The power monitor is now called Power Monitoring Console. SMES board glass and acid construction price normalized (though other resources are still required; is that a good thing? It would be better to just introduce a new expensive part that is used to build it (if the coils aren't enough) rather than have a single board with atypical price.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
|
||||
/obj/machinery/computer/power_monitor
|
||||
name = "Power Monitor"
|
||||
name = "Power Monitoring Console"
|
||||
desc = "Computer designed to remotely monitor power levels around the station"
|
||||
icon = 'icons/obj/computer.dmi'
|
||||
icon_state = "power"
|
||||
|
||||
@@ -1,20 +1,8 @@
|
||||
// Constructable SMES version. Based on Coils. Each SMES can hold 6 Coils by default.
|
||||
// Each coil adds 250kW I/O and 5M capacity.
|
||||
// This is second version, now subtype of regular SMES.
|
||||
// Constructable SMES version (based on SMES Coils)
|
||||
|
||||
|
||||
//Board
|
||||
/obj/item/weapon/circuitboard/smes
|
||||
name = "Circuit board (SMES Cell)"
|
||||
build_path = "/obj/machinery/power/smes/buildable"
|
||||
board_type = "machine"
|
||||
origin_tech = "powerstorage=6;engineering=4" // Board itself is high tech. Coils have to be ordered from cargo or salvaged from existing SMESs.
|
||||
frame_desc = "Requires 1 superconducting magnetic coil and 30 wires."
|
||||
req_components = list("/obj/item/weapon/smes_coil" = 1, "/obj/item/stack/cable_coil" = 30)
|
||||
|
||||
//Construction Item
|
||||
//Construction Items
|
||||
/obj/item/weapon/smes_coil
|
||||
name = "Superconducting Magnetic Coil"
|
||||
name = "Superconductive Magnetic Coil"
|
||||
desc = "Heavy duty superconducting magnetic coil, mainly used in construction of SMES units."
|
||||
icon = 'icons/obj/stock_parts.dmi'
|
||||
icon_state = "smes_coil" // Just few icons patched together. If someone wants to make better icon, feel free to do so!
|
||||
@@ -22,9 +10,6 @@
|
||||
var/ChargeCapacity = 5000000
|
||||
var/IOCapacity = 250000
|
||||
|
||||
|
||||
|
||||
|
||||
// SMES itself
|
||||
/obj/machinery/power/smes/buildable
|
||||
var/max_coils = 6 //30M capacity, 1.5MW input/output when fully upgraded /w default coils
|
||||
|
||||
Reference in New Issue
Block a user