mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 05:32:58 +00:00
* Removes ID computer parts (Removes computer hardware) * Removes missed file * oop Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: tastyfish <crazychris32@gmail.com>
25 lines
637 B
Plaintext
25 lines
637 B
Plaintext
/obj/machinery/modular_computer/console
|
|
name = "console"
|
|
desc = "A stationary computer."
|
|
|
|
icon = 'icons/obj/modular_console.dmi'
|
|
icon_state = "console"
|
|
icon_state_powered = "console"
|
|
icon_state_unpowered = "console-off"
|
|
hardware_flag = PROGRAM_CONSOLE
|
|
density = TRUE
|
|
base_idle_power_usage = 100
|
|
base_active_power_usage = 500
|
|
steel_sheet_cost = 10
|
|
light_strength = 2
|
|
max_integrity = 300
|
|
integrity_failure = 0.5
|
|
///Used in New() to set network tag according to our area.
|
|
var/console_department = ""
|
|
|
|
/obj/machinery/modular_computer/console/Initialize(mapload)
|
|
. = ..()
|
|
if(cpu)
|
|
cpu.screen_on = TRUE
|
|
update_appearance()
|