diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm index 57df4683e7c..cb5417c802a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm @@ -219,3 +219,18 @@ sort_category = "Xenowear - Vaurca" whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_BREEDER, SPECIES_VAURCA_BULWARK) flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION + +/datum/gear/augment/vaurcatool + display_name = "vaurca integrated toolset" + description = "A heavy arm-mounted toolset designed for use by Bound Workers and Bulwarks." + cost = 5 + path = /obj/item/organ/internal/augment/tool/combitool/vaurca + sort_category = "Xenowear - Vaurca" + whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_BULWARK) + +/datum/gear/augment/vaurcatool/New() + ..() + var/list/augs = list() + augs["vaurca integrated toolset, right hand"] = /obj/item/organ/internal/augment/tool/combitool/vaurca + augs["vaurca integrated toolset, left hand"] = /obj/item/organ/internal/augment/tool/combitool/vaurca/left + gear_tweaks += new /datum/gear_tweak/path(augs) \ No newline at end of file diff --git a/code/modules/organs/subtypes/vaurca.dm b/code/modules/organs/subtypes/vaurca.dm index fb4a86d67c7..9c7f57eb3de 100644 --- a/code/modules/organs/subtypes/vaurca.dm +++ b/code/modules/organs/subtypes/vaurca.dm @@ -92,6 +92,30 @@ obj/item/organ/vaurca/neuralsocket/process() to_chat(target, "Your mind suddenly grows dark as the unity of the Hive is torn from you.") ..() +/obj/item/organ/internal/augment/tool/combitool/vaurca + name = "vaurca integrated toolset" + icon_state = "vaurcatool" + action_button_name = "Deploy Toolset" + action_button_icon = "vaurcatool" + augment_type = /obj/item/combitool/robotic/vaurca + +/obj/item/organ/internal/augment/tool/combitool/vaurca/left + parent_organ = BP_L_HAND + aug_slot = slot_l_hand + +/obj/item/combitool/robotic/vaurca + name = "vaurca toolset" + desc = "An integrated toolset in the arm designed for use by Bound Workers." + icon_state = "vaurcatool" + item_state = "vaurcatool" + tools = list( + "crowbar", + "screwdriver", + "wrench", + "wirecutters" + ) + + /obj/item/organ/internal/vaurca/preserve icon = 'icons/obj/organs/vaurca_organs.dmi' name = BP_PHORON_RESERVE diff --git a/html/changelogs/RustingWithYou - vhorthequeenz.yml b/html/changelogs/RustingWithYou - vhorthequeenz.yml new file mode 100644 index 00000000000..02f8cdc12d1 --- /dev/null +++ b/html/changelogs/RustingWithYou - vhorthequeenz.yml @@ -0,0 +1,43 @@ +################################ +# 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 + +# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds a Vaurca version of the combitool augment, available from loadout for Bulwarks and Workers." + + diff --git a/icons/mob/items/lefthand_tools.dmi b/icons/mob/items/lefthand_tools.dmi index 8038543cc3d..06d6630bd4c 100644 Binary files a/icons/mob/items/lefthand_tools.dmi and b/icons/mob/items/lefthand_tools.dmi differ diff --git a/icons/mob/items/righthand_tools.dmi b/icons/mob/items/righthand_tools.dmi index 8c530cdda9a..40c60f4a820 100644 Binary files a/icons/mob/items/righthand_tools.dmi and b/icons/mob/items/righthand_tools.dmi differ diff --git a/icons/obj/action_buttons/organs.dmi b/icons/obj/action_buttons/organs.dmi index 65db81ed02b..d5162296ad8 100644 Binary files a/icons/obj/action_buttons/organs.dmi and b/icons/obj/action_buttons/organs.dmi differ diff --git a/icons/obj/organs/augments.dmi b/icons/obj/organs/augments.dmi index 5740c2dc39e..dd9a0d8ff76 100644 Binary files a/icons/obj/organs/augments.dmi and b/icons/obj/organs/augments.dmi differ diff --git a/icons/obj/tools.dmi b/icons/obj/tools.dmi index 62242621752..33b2485dfa7 100644 Binary files a/icons/obj/tools.dmi and b/icons/obj/tools.dmi differ