mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
@@ -467,7 +467,7 @@
|
||||
STR.max_items = 40
|
||||
STR.max_w_class = WEIGHT_CLASS_SMALL
|
||||
STR.insert_preposition = "in"
|
||||
STR.set_holdable(list(/obj/item/stack/ore/bluespace_crystal, /obj/item/assembly, /obj/item/stock_parts, /obj/item/reagent_containers/glass/beaker, /obj/item/stack/cable_coil, /obj/item/circuitboard, /obj/item/electronics, /obj/item/modular_computer))
|
||||
STR.set_holdable(list(/obj/item/stack/ore/bluespace_crystal, /obj/item/assembly, /obj/item/stock_parts, /obj/item/reagent_containers/glass/beaker, /obj/item/stack/cable_coil, /obj/item/circuitboard, /obj/item/electronics, /obj/item/modular_computer, /obj/item/computer_hardware))
|
||||
|
||||
|
||||
/obj/item/storage/bag/construction/admin/full/Initialize(mapload)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
icon_state_unpowered = "pda"
|
||||
icon_state_powered = "pda"
|
||||
hardware_flag = PROGRAM_PDA
|
||||
max_hardware_size = WEIGHT_CLASS_TINY
|
||||
max_hardware_size = WEIGHT_CLASS_SMALL
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
max_bays = 1
|
||||
steel_sheet_cost = 1
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
icon_state_unpowered = "phone"
|
||||
icon_state_powered = "phone"
|
||||
hardware_flag = PROGRAM_PHONE
|
||||
max_hardware_size = WEIGHT_CLASS_TINY
|
||||
max_hardware_size = WEIGHT_CLASS_SMALL
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
max_bays = 2
|
||||
steel_sheet_cost = 1
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
extended_desc = "This program allows access to standard security camera networks."
|
||||
requires_ntnet = TRUE
|
||||
transfer_access = ACCESS_BRIG
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_LAPTOP | PROGRAM_INTEGRATED // Probably not a good idea to let borgs use this, though im curious how it will pan out
|
||||
usage_flags = PROGRAM_LAPTOP |PROGRAM_STATIONARY| PROGRAM_INTEGRATED // Probably not a good idea to let borgs use this, though im curious how it will pan out
|
||||
size = 10
|
||||
tgui_id = "NtosSecurEye"
|
||||
program_icon = "eye"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
icon_state = "cpu"
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
power_usage = 25
|
||||
max_idle_programs = 1
|
||||
max_idle_programs = 2
|
||||
|
||||
/obj/item/computer_hardware/processor_unit/photonic
|
||||
name = "photonic processor board"
|
||||
@@ -38,7 +38,7 @@
|
||||
icon_state = "cpu_super"
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
power_usage = 75
|
||||
max_idle_programs = 2
|
||||
max_idle_programs = 3
|
||||
|
||||
/obj/item/computer_hardware/processor_unit/pda
|
||||
name = "cheep microprocessor"
|
||||
@@ -46,7 +46,7 @@
|
||||
icon_state = "cpu"
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
power_usage = 25
|
||||
max_idle_programs = 2
|
||||
max_idle_programs = 1
|
||||
|
||||
/obj/item/computer_hardware/processor_unit/pda/can_install(obj/item/modular_computer/M, mob/living/user)
|
||||
if(!istype(M, /obj/item/modular_computer/tablet))
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
icon_state = "radio"
|
||||
lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi'
|
||||
righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi'
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/computer_hardware/network_card/wired
|
||||
name = "wired network card"
|
||||
@@ -76,7 +76,7 @@
|
||||
ethernet = 1
|
||||
power_usage = 100 // Better range but higher power usage.
|
||||
icon_state = "net_wired"
|
||||
w_class = WEIGHT_CLASS_BULKY
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
|
||||
/obj/item/computer_hardware/network_card/integrated //Borg tablet version, only works while the borg has power and is not locked
|
||||
name = "cyborg data link"
|
||||
|
||||
@@ -3065,7 +3065,6 @@
|
||||
#include "code\modules\modular_computers\file_system\programs\file_browser.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\minesweeper.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\ntdownloader.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\ntmonitor.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\ntnrc_client.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\ntpda_msg.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\paperworkprinter.dm"
|
||||
@@ -3085,6 +3084,7 @@
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\alarm.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\atmosscan.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\energyharvestercontrol.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\ntmonitor.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\powermonitor.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\reactor_monitor.dm"
|
||||
#include "code\modules\modular_computers\file_system\programs\engineering\sm_monitor.dm"
|
||||
|
||||
Reference in New Issue
Block a user