From d3bead9140c30710142f293cfc454d477a924ff2 Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Fri, 14 Feb 2025 20:06:14 -0500 Subject: [PATCH 1/3] Remote Control Exosuits Tech Changes --- .../designs/circuit/mecha_upgrades.dm | 4 +- .../designs/protolathe/deployable_kits.dm | 2 +- .../Ben10083 - tech-changes-remote.yml | 58 +++++++++++++++++++ 3 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/Ben10083 - tech-changes-remote.yml diff --git a/code/modules/research/designs/circuit/mecha_upgrades.dm b/code/modules/research/designs/circuit/mecha_upgrades.dm index affd9700541..d200a60cb0e 100644 --- a/code/modules/research/designs/circuit/mecha_upgrades.dm +++ b/code/modules/research/designs/circuit/mecha_upgrades.dm @@ -6,7 +6,7 @@ /datum/design/circuit/exosuit_upgrade/remote name = "Standard Remote Control" - req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_MATERIAL = 4) + req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3, TECH_MATERIAL = 3) build_path = /obj/item/remote_mecha /datum/design/circuit/exosuit_upgrade/remote/penal @@ -15,5 +15,5 @@ /datum/design/circuit/exosuit_upgrade/remote/ai name = "AI Remote Control" - req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 4, TECH_MATERIAL = 4) + req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3, TECH_MATERIAL = 3) build_path = /obj/item/remote_mecha/ai diff --git a/code/modules/research/designs/protolathe/deployable_kits.dm b/code/modules/research/designs/protolathe/deployable_kits.dm index 79e2038c16f..f4482b8ab38 100644 --- a/code/modules/research/designs/protolathe/deployable_kits.dm +++ b/code/modules/research/designs/protolathe/deployable_kits.dm @@ -4,7 +4,7 @@ /datum/design/item/deployable_kit/mech_chair name = "Remote Mech Centre" desc = "A deployable kit of a remote mech chair, capable of listening in to standard remote mech networks." - req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_MATERIAL = 4) + req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3, TECH_MATERIAL = 3) materials = list(DEFAULT_WALL_MATERIAL = 3000, MATERIAL_SILVER = 750, MATERIAL_URANIUM = 250) build_path = /obj/item/deployable_kit/remote_mech diff --git a/html/changelogs/Ben10083 - tech-changes-remote.yml b/html/changelogs/Ben10083 - tech-changes-remote.yml new file mode 100644 index 00000000000..f261f3d161a --- /dev/null +++ b/html/changelogs/Ben10083 - tech-changes-remote.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Ben10083 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - balance: "Required tech levels for remote control functionality for exosuits reduced to level where it is available roundstart." From b4de2a5488df3cbe0277d8c7df0aa4a33b76b2dc Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Sat, 15 Feb 2025 10:41:22 -0500 Subject: [PATCH 2/3] Only AI remote control roundstart --- code/modules/research/designs/circuit/mecha_upgrades.dm | 2 +- code/modules/research/designs/protolathe/deployable_kits.dm | 2 +- ...ch-changes-remote.yml => Ben10083 - Tech_Remote_Changes.yml} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename html/changelogs/{Ben10083 - tech-changes-remote.yml => Ben10083 - Tech_Remote_Changes.yml} (92%) diff --git a/code/modules/research/designs/circuit/mecha_upgrades.dm b/code/modules/research/designs/circuit/mecha_upgrades.dm index d200a60cb0e..5b5bb20c78f 100644 --- a/code/modules/research/designs/circuit/mecha_upgrades.dm +++ b/code/modules/research/designs/circuit/mecha_upgrades.dm @@ -6,7 +6,7 @@ /datum/design/circuit/exosuit_upgrade/remote name = "Standard Remote Control" - req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3, TECH_MATERIAL = 3) + req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_MATERIAL = 4) build_path = /obj/item/remote_mecha /datum/design/circuit/exosuit_upgrade/remote/penal diff --git a/code/modules/research/designs/protolathe/deployable_kits.dm b/code/modules/research/designs/protolathe/deployable_kits.dm index f4482b8ab38..79e2038c16f 100644 --- a/code/modules/research/designs/protolathe/deployable_kits.dm +++ b/code/modules/research/designs/protolathe/deployable_kits.dm @@ -4,7 +4,7 @@ /datum/design/item/deployable_kit/mech_chair name = "Remote Mech Centre" desc = "A deployable kit of a remote mech chair, capable of listening in to standard remote mech networks." - req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3, TECH_MATERIAL = 3) + req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_MATERIAL = 4) materials = list(DEFAULT_WALL_MATERIAL = 3000, MATERIAL_SILVER = 750, MATERIAL_URANIUM = 250) build_path = /obj/item/deployable_kit/remote_mech diff --git a/html/changelogs/Ben10083 - tech-changes-remote.yml b/html/changelogs/Ben10083 - Tech_Remote_Changes.yml similarity index 92% rename from html/changelogs/Ben10083 - tech-changes-remote.yml rename to html/changelogs/Ben10083 - Tech_Remote_Changes.yml index f261f3d161a..f20c04ca1dc 100644 --- a/html/changelogs/Ben10083 - tech-changes-remote.yml +++ b/html/changelogs/Ben10083 - Tech_Remote_Changes.yml @@ -55,4 +55,4 @@ delete-after: True # Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. # Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. changes: - - balance: "Required tech levels for remote control functionality for exosuits reduced to level where it is available roundstart." + - balance: "Required tech levels for AI remote control functionality for exosuits reduced to level where it is available roundstart." From 58f8a3e11978f6fc9f1e49b73484acae3bf2c2e4 Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Sun, 16 Feb 2025 18:25:26 -0500 Subject: [PATCH 3/3] yeah --- ...h_Remote_Changes.yml => Ben10083 - AI_Tech_Remote_Changes.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename html/changelogs/{Ben10083 - Tech_Remote_Changes.yml => Ben10083 - AI_Tech_Remote_Changes.yml} (100%) diff --git a/html/changelogs/Ben10083 - Tech_Remote_Changes.yml b/html/changelogs/Ben10083 - AI_Tech_Remote_Changes.yml similarity index 100% rename from html/changelogs/Ben10083 - Tech_Remote_Changes.yml rename to html/changelogs/Ben10083 - AI_Tech_Remote_Changes.yml