mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 22:42:26 +01:00
Adds Recolorable Aprons (#7907)
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
// Suit slot
|
||||
/datum/gear/suit
|
||||
display_name = "apron, blue"
|
||||
display_name = "apron, botanist"
|
||||
path = /obj/item/clothing/suit/apron
|
||||
slot = slot_wear_suit
|
||||
sort_category = "Suits and Overwear"
|
||||
cost = 2
|
||||
|
||||
/datum/gear/suit/colorapron
|
||||
display_name = "apron, multipurpose"
|
||||
path = /obj/item/clothing/suit/apron/colored
|
||||
slot = slot_wear_suit
|
||||
sort_category = "Suits and Overwear"
|
||||
cost = 2
|
||||
|
||||
/datum/gear/suit/colorapron/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/suit/leather
|
||||
display_name = "jacket selection"
|
||||
description = "A selection of jackets."
|
||||
|
||||
@@ -4,15 +4,22 @@
|
||||
|
||||
//Botonist
|
||||
/obj/item/clothing/suit/apron
|
||||
name = "apron"
|
||||
desc = "A basic blue apron."
|
||||
icon_state = "apron"
|
||||
item_state = "apron"
|
||||
name = "botanist apron"
|
||||
desc = "A basic blue apron meant for botanists."
|
||||
icon_state = "blueapron"
|
||||
item_state = "blueapron"
|
||||
blood_overlay_type = "armor"
|
||||
body_parts_covered = 0
|
||||
allowed = list (/obj/item/reagent_containers/spray/plantbgone,/obj/item/device/analyzer/plant_analyzer,/obj/item/seeds,/obj/item/reagent_containers/glass/fertilizer,/obj/item/material/minihoe)
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
|
||||
|
||||
obj/item/clothing/suit/apron/colored
|
||||
name = "multipurpose apron"
|
||||
desc = "A multipurpose apron that comes in many colors."
|
||||
icon_state = "apron"
|
||||
item_state = "apron"
|
||||
allowed = list (/obj/item/reagent_containers/food/drinks/shaker,/obj/item/material/kitchen/utensil, /obj/item/reagent_containers/food/condiment/, /obj/item/reagent_containers/food/drinks/bottle/)
|
||||
|
||||
/obj/item/clothing/suit/apron/overalls
|
||||
name = "coveralls"
|
||||
desc = "A set of denim overalls."
|
||||
|
||||
Reference in New Issue
Block a user