Adds Vaurca combitool augment (#16025)

* adds the vaurca combitool

* vaurca combitool sprites

* vaurca combitool sprites fix

* changelog

* oops changelog moment

* fucking punctuation

Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>

* fucking punctuation 2

Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>

* spacing

Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>

* spelling

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* removes integrated multitool at staff request

---------

Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>
Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
This commit is contained in:
RustingWithYou
2023-04-17 03:14:50 +12:00
committed by GitHub
parent d31c201ce9
commit 04e370daf8
8 changed files with 82 additions and 0 deletions
@@ -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)