Modular Computer Tweaks P1 (#21370)

* the set

* woops

* wibi
This commit is contained in:
wonderinghost
2024-02-11 12:21:49 -05:00
committed by GitHub
parent d79c5948fb
commit c97e083740
8 changed files with 10 additions and 10 deletions

View File

@@ -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)

View File

@@ -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

View File

@@ -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

View File

@@ -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"

View File

@@ -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))

View File

@@ -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"

View File

@@ -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"