Skip to content

Commit

Permalink
add: culinary artist clothes (#3415)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeDerevce authored Aug 28, 2023
1 parent 6fcf994 commit f5dbb9c
Show file tree
Hide file tree
Showing 26 changed files with 45 additions and 0 deletions.
10 changes: 10 additions & 0 deletions code/game/jobs/job/support.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@
var/datum/martial_art/cqc/under_siege/justacook = new
justacook.teach(H)

/datum/outfit/job/chef/pre_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
. = ..()
if(H.mind && H.mind.role_alt_title)
switch(H.mind.role_alt_title)
if("Culinary Artist")
uniform = /obj/item/clothing/under/artist
belt = /obj/item/storage/belt/chef/artistred
head = /obj/item/clothing/head/chefcap
suit = /obj/item/clothing/suit/chefbluza


/datum/job/hydro
title = "Botanist"
Expand Down
12 changes: 12 additions & 0 deletions code/game/objects/items/weapons/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -913,3 +913,15 @@
/obj/item/reagent_containers/food/condiment,
/obj/item/reagent_containers/glass/beaker,
/obj/item/radio)

/obj/item/storage/belt/chef/artist
name = "delicate apron"
desc = "Apron with pockets. Ideal for the best butchers!"
icon_state = "cabelt"
item_state = "cabelt"

/obj/item/storage/belt/chef/artistred
name = "red delicate apron"
desc = "Red apron with pockets. Ideal for the best butchers!"
icon_state = "cabeltred"
item_state = "cabeltred"
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@
new /obj/item/clothing/under/rank/chef(src)
new /obj/item/clothing/head/chefhat(src)
new /obj/item/reagent_containers/glass/rag(src)
new /obj/item/storage/belt/chef/artist(src)
new /obj/item/storage/belt/chef/artistred(src)

/*
* Janitor
Expand Down
7 changes: 7 additions & 0 deletions code/modules/clothing/head/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -288,3 +288,10 @@
desc = "A beret worn by marines of the Trans-Solar Federation Specops division. The insignia signifies the wearer bears the rank of a Lieutenant."
armor = list("melee" = 40, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 50, "acid" = 60)
icon_state = "solgov_elite_beret"

//Culinary Artist
/obj/item/clothing/head/chefcap
name = "chef's red cap"
desc = "Red cap for people who want show who`s really boss of this kitchen"
item_state = "redchefcap"
icon_state = "redchefcap"
7 changes: 7 additions & 0 deletions code/modules/clothing/suits/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -505,3 +505,10 @@
/obj/item/clothing/suit/hop_jacket/female
icon_state = "suitjacket_hop_fem_open"
item_state = "suitjacket_hop_fem_open"

//Culinary Artist
/obj/item/clothing/suit/chefbluza
name = "deluxe chef suit"
desc = "Well made expensive chief suit"
icon_state = "bluza"
item_state = "bluza"
7 changes: 7 additions & 0 deletions code/modules/clothing/under/jobs/civilian.dm
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,10 @@
icon_state = "barber"
item_state = "barber"
item_color = "barber"

/obj/item/clothing/under/artist
desc = "Formal uniform with buttons on a side"
name = "parade chef's uniform"
icon_state = "artist"
item_state = "artist"
item_color = "artist"
Binary file modified icons/mob/belt.dmi
Binary file not shown.
Binary file modified icons/mob/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/drask/suit.dmi
Binary file not shown.
Binary file modified icons/mob/species/drask/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/species/grey/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/grey/suit.dmi
Binary file not shown.
Binary file modified icons/mob/species/grey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/species/monkey/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/monkey/suit.dmi
Binary file not shown.
Binary file modified icons/mob/species/monkey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/species/unathi/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/suit.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/suit.dmi
Binary file not shown.
Binary file modified icons/mob/uniform.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/belts.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.

0 comments on commit f5dbb9c

Please sign in to comment.