From df13ee2c096d392e7b3f8fdcc6f55fa9f11f0db6 Mon Sep 17 00:00:00 2001 From: Ben <91219575+Ben10083@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:52:56 -0400 Subject: [PATCH] Mining Module Given Hailing + Jetpack Material Change (#19715) Cyborg mining module now has hailing channel Cyborg Jetpack Module now requires silver instead of Phoron Co-authored-by: Ben10083 --- .../mob/living/silicon/robot/robot_modules.dm | 2 +- .../designs/mechfab/robot/robot_upgrades.dm | 2 +- html/changelogs/Ben10083 - MineBot.yml | 59 +++++++++++++++++++ 3 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/Ben10083 - MineBot.yml diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index c4d9f5f3872..95af74f4c5b 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -704,7 +704,7 @@ var/global/list/robot_modules = list( /obj/item/robot_module/miner name = "miner robot module" - channels = list(CHANNEL_SUPPLY = TRUE) + channels = list(CHANNEL_SUPPLY = TRUE, CHANNEL_HAILING = TRUE) networks = list(NETWORK_MINE) sprites = list( "Basic" = list(ROBOT_CHASSIS = "robot_mine", ROBOT_PANEL = "robot", ROBOT_EYES = "robot"), diff --git a/code/modules/research/designs/mechfab/robot/robot_upgrades.dm b/code/modules/research/designs/mechfab/robot/robot_upgrades.dm index 313eef6296f..f94eb84840c 100644 --- a/code/modules/research/designs/mechfab/robot/robot_upgrades.dm +++ b/code/modules/research/designs/mechfab/robot/robot_upgrades.dm @@ -34,7 +34,7 @@ /datum/design/item/robot_upgrade/jetpack name = "Jetpack Module" desc = "A carbon dioxide jetpack suitable for low-gravity mining operations." - materials = list(DEFAULT_WALL_MATERIAL = 10000, MATERIAL_PHORON = 15000, MATERIAL_URANIUM = 20000) + materials = list(DEFAULT_WALL_MATERIAL = 10000, MATERIAL_SILVER = 15000, MATERIAL_URANIUM = 20000) build_path = /obj/item/robot_parts/robot_component/jetpack /datum/design/item/robot_upgrade/syndicate diff --git a/html/changelogs/Ben10083 - MineBot.yml b/html/changelogs/Ben10083 - MineBot.yml new file mode 100644 index 00000000000..58ea8056f26 --- /dev/null +++ b/html/changelogs/Ben10083 - MineBot.yml @@ -0,0 +1,59 @@ +################################ +# 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: + - rscadd: "Mining Module now provides access to hailing channel." + - balance: "Change cyborg jetpack module material requirements to use silver instead of phoron."