diff --git a/code/modules/client/preference_setup/loadout/loadout_augments.dm b/code/modules/client/preference_setup/loadout/loadout_augments.dm index 1e44e12b771..987c6599bf5 100644 --- a/code/modules/client/preference_setup/loadout/loadout_augments.dm +++ b/code/modules/client/preference_setup/loadout/loadout_augments.dm @@ -203,6 +203,14 @@ allowed_roles = list("Chief Engineer", "Engineer", "Atmospheric Technician", "Engineering Apprentice", "Machinist") cost = 2 +/datum/gear/augment/drill + display_name = "integrated drill" + description = "A mining drill integrated in the hand. The drill is heavy enough that it is only usable by industrial IPCs, as well as Vaurca Bulwarks and Bound Workers." + path = /obj/item/organ/internal/augment/tool/drill + whitelisted = list(SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_VAURCA_BULWARK, SPECIES_VAURCA_WORKER) + allowed_roles = list("Shaft Miner") + cost = 5 + /datum/gear/augment/head_fluff display_name = "custom head augmentation" description = "A fluff based augmentation that can be renamed/redescribed to appear as something else for RP purposes." diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm index a47eb25a78a..15c24e18df1 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm @@ -161,15 +161,6 @@ handies["gustatorial centre (left hand)"] = /obj/item/organ/internal/augment/gustatorial/hand/left gear_tweaks += new /datum/gear_tweak/path(handies) -/datum/gear/augment/drill - display_name = "integrated drill" - description = "A mining drill integrated in the hand. The drill is heavy, so only industrial IPCs can use it." - path = /obj/item/organ/internal/augment/tool/drill - whitelisted = list(SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION) - allowed_roles = list("Shaft Miner") - cost = 5 - sort_category = "Xenowear - IPC" - /datum/gear/augment/drill/New() ..() var/list/augs = list() diff --git a/html/changelogs/RustingWithYou - striketheearth.yml b/html/changelogs/RustingWithYou - striketheearth.yml new file mode 100644 index 00000000000..9ac29b9c416 --- /dev/null +++ b/html/changelogs/RustingWithYou - striketheearth.yml @@ -0,0 +1,36 @@ +################################ +# 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 +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: RustingWithYou + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +changes: + - tweak: "Integrated mining drills can now be taken by Vaurca bulwarks and workers. The integrated drill has been moved from xenowear to augments in the loadout menu." \ No newline at end of file