mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
Various changes to black gloves (#21778)
- Leather gloves, black gloves and workboots now have unique names for taj and unathi variants - Updated the description of the leather and black gloves The above was done so they can be recognized on sight, particularly in the wardrobe machines where they otherwise looked identical. - Renamed the black gloves to work gloves This is effectively what they are. They have unique stats compared to other colored gloves and as such, they should stand out a bit more aside from just their description. - Added taj and uanthi variants of the work gloves, leather gloves and workboots to the wardrobe machines The drobes had the human versions already, so this permits taj and unathi to get their versions too. - Made hangar techs spawn with work gloves and workboots They already had access to these in the drobes, and it make sense for their warehouse work that they got proper gear when spawning. The workboots replace the sneakers they used to spawn.
This commit is contained in:
@@ -367,9 +367,9 @@
|
||||
spawn_amount = 1
|
||||
/singleton/cargo_item/blackgloves
|
||||
category = "security"
|
||||
name = "black gloves"
|
||||
name = "work gloves"
|
||||
supplier = "nanotrasen"
|
||||
description = "Black gloves that are somewhat fire resistant."
|
||||
description = "Work gloves that are somewhat fire resistant."
|
||||
price = 70
|
||||
items = list(
|
||||
/obj/item/clothing/gloves/black
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
/datum/gear/gloves/color/New()
|
||||
..()
|
||||
var/list/gloves = list()
|
||||
gloves["black gloves"] = /obj/item/clothing/gloves/black
|
||||
gloves["work gloves"] = /obj/item/clothing/gloves/black
|
||||
gloves["red gloves"] = /obj/item/clothing/gloves/red
|
||||
gloves["blue gloves"] = /obj/item/clothing/gloves/blue
|
||||
gloves["orange gloves"] = /obj/item/clothing/gloves/orange
|
||||
|
||||
@@ -50,7 +50,7 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara)
|
||||
/datum/gear/gloves/tajara/New()
|
||||
..()
|
||||
var/list/taj_gloves = list()
|
||||
taj_gloves["black gloves"] = /obj/item/clothing/gloves/black/tajara
|
||||
taj_gloves["work gloves"] = /obj/item/clothing/gloves/black/tajara
|
||||
taj_gloves["red gloves"] = /obj/item/clothing/gloves/red/tajara
|
||||
taj_gloves["blue gloves"] = /obj/item/clothing/gloves/blue/tajara
|
||||
taj_gloves["orange gloves"] = /obj/item/clothing/gloves/orange/tajara
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
/datum/gear/gloves/unathi/New()
|
||||
..()
|
||||
var/list/un_gloves = list()
|
||||
un_gloves["black gloves"] = /obj/item/clothing/gloves/black/unathi
|
||||
un_gloves["work gloves"] = /obj/item/clothing/gloves/black/unathi
|
||||
un_gloves["red gloves"] = /obj/item/clothing/gloves/red/unathi
|
||||
un_gloves["blue gloves"] = /obj/item/clothing/gloves/blue/unathi
|
||||
un_gloves["orange gloves"] = /obj/item/clothing/gloves/orange/unathi
|
||||
|
||||
@@ -360,7 +360,7 @@
|
||||
//********************
|
||||
|
||||
/obj/item/clothing/gloves/chameleon
|
||||
name = "black gloves"
|
||||
name = "work gloves"
|
||||
icon_state = "black"
|
||||
item_state = "black"
|
||||
desc = "It looks like a pair of gloves, but it seems to have a small dial inside."
|
||||
@@ -377,7 +377,7 @@
|
||||
/obj/item/clothing/gloves/chameleon/emp_act(severity) //Because we don't have psych for all slots right now but still want a downside to EMP. In this case your cover's blown.
|
||||
. = ..()
|
||||
|
||||
name = "black gloves"
|
||||
name = "work gloves"
|
||||
desc = "It looks like a pair of gloves, but it seems to have a small dial inside."
|
||||
icon_state = "black"
|
||||
update_icon()
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
siemens_coefficient = pick(0, 0.1, 0.3, 0.5, 0.5, 0.75, 1.35)
|
||||
|
||||
/obj/item/clothing/gloves/black
|
||||
name = "work gloves"
|
||||
desc = "These work gloves are thick and fire-resistant."
|
||||
name = "black gloves"
|
||||
icon_state = "black"
|
||||
item_state = "black"
|
||||
siemens_coefficient = 0.50
|
||||
@@ -101,8 +101,8 @@
|
||||
species_restricted = list(BODYTYPE_UNATHI)
|
||||
|
||||
/obj/item/clothing/gloves/black/unathi
|
||||
name = "black gloves"
|
||||
desc = "Black gloves made for Unathi use."
|
||||
name = "unathi work gloves"
|
||||
desc = "These work gloves are thick and fire-resistant. These are made for Unathi use."
|
||||
species_restricted = list(BODYTYPE_UNATHI)
|
||||
|
||||
//more snowflake gloves for the custom loadout
|
||||
@@ -174,8 +174,8 @@
|
||||
item_state = "black_leather"
|
||||
|
||||
/obj/item/clothing/gloves/black_leather/unathi
|
||||
name = "black leather gloves"
|
||||
desc = "Black leather gloves made for Unathi use."
|
||||
name = "black unathi leather gloves"
|
||||
desc = "A pair of tight-fitting synthleather gloves made for Unathi use."
|
||||
species_restricted = list(BODYTYPE_UNATHI)
|
||||
|
||||
/obj/item/clothing/gloves/black_leather/colour
|
||||
|
||||
@@ -4,7 +4,8 @@
|
||||
species_restricted = list(BODYTYPE_TAJARA)
|
||||
|
||||
/obj/item/clothing/gloves/black/tajara
|
||||
desc = "Black gloves made for Tajara use."
|
||||
name = "tajaran work gloves"
|
||||
desc = "These work gloves are thick and fire-resistant. These are made for Tajaran use."
|
||||
species_restricted = list(BODYTYPE_TAJARA)
|
||||
|
||||
/obj/item/clothing/gloves/red/tajara
|
||||
@@ -48,7 +49,8 @@
|
||||
species_restricted = list(BODYTYPE_TAJARA)
|
||||
|
||||
/obj/item/clothing/gloves/black_leather/tajara
|
||||
desc = "Black leather gloves made for Tajaran use."
|
||||
name = "black tajaran leather gloves"
|
||||
desc = "A pair of tight-fitting leather gloves made for Tajaran use."
|
||||
species_restricted = list(BODYTYPE_TAJARA)
|
||||
|
||||
/obj/item/clothing/gloves/black/tajara/smithgloves
|
||||
|
||||
@@ -98,24 +98,24 @@
|
||||
item_state = "ridingboots"
|
||||
|
||||
/obj/item/clothing/shoes/workboots/tajara
|
||||
name = "workboots"
|
||||
name = "tajaran workboots"
|
||||
desc = "A pair of steel-toed work boots designed for use in industrial settings. Safety first. Fitted for Tajara."
|
||||
species_restricted = list(BODYTYPE_TAJARA)
|
||||
|
||||
/obj/item/clothing/shoes/workboots/tajara/brown
|
||||
name = "brown workboots"
|
||||
name = "brown tajaran workboots"
|
||||
desc = "A pair of brown steel-toed work boots designed for use in industrial settings. Safety first. Fitted for Tajara."
|
||||
icon_state = "workboots_brown"
|
||||
item_state = "workboots_brown"
|
||||
|
||||
/obj/item/clothing/shoes/workboots/tajara/grey
|
||||
name = "grey workboots"
|
||||
name = "grey tajaran workboots"
|
||||
desc = "A pair of grey steel-toed work boots designed for use in industrial settings. Safety first. Fitted for Tajara."
|
||||
icon_state = "workboots_grey"
|
||||
item_state = "workboots_grey"
|
||||
|
||||
/obj/item/clothing/shoes/workboots/tajara/dark
|
||||
name = "dark workboots"
|
||||
name = "dark tajaran workboots"
|
||||
desc = "A pair of dark steel-toed work boots designed for use in industrial settings. Safety first. Fitted for Tajara."
|
||||
icon_state = "workboots_dark"
|
||||
item_state = "workboots_dark"
|
||||
|
||||
Reference in New Issue
Block a user