mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 22:17:32 +01:00
Deliveryboy (#22185)
* sprites * code1 * test * more code and testings done * i am loosing it * if only i didnt make stupid mistakes * good boy can be delivery boy * Update code/modules/client/preference/loadout/loadout_hat.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/modules/client/preference/loadout/loadout_uniform.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/modules/clothing/head/soft_caps.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/modules/clothing/under/jobs/cargo.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Apply suggestions from code review --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
@@ -77,6 +77,11 @@
|
||||
path = /obj/item/clothing/head/soft/sec
|
||||
allowed_roles = list("Head of Security", "Warden", "Security Officer")
|
||||
|
||||
/datum/gear/hat/deliverysoft
|
||||
display_name = "Cap, delivery boy"
|
||||
path = /obj/item/clothing/head/soft/deliverysoft
|
||||
allowed_roles = list("Quartermaster", "Cargo Technician")
|
||||
|
||||
/datum/gear/hat/capred
|
||||
display_name = "Cap, red"
|
||||
path = /obj/item/clothing/head/soft/red
|
||||
|
||||
@@ -232,6 +232,14 @@
|
||||
path = /obj/item/clothing/under/rank/medical/scrubs/green
|
||||
allowed_roles = list("Chief Medical Officer", "Medical Doctor")
|
||||
|
||||
/datum/gear/uniform/cargo
|
||||
main_typepath = /datum/gear/uniform/cargo
|
||||
|
||||
/datum/gear/uniform/cargo/delivery
|
||||
display_name = "Uniform, delivery boy"
|
||||
path = /obj/item/clothing/under/rank/cargo/deliveryboy
|
||||
allowed_roles = list("Quartermaster", "Cargo Technician")
|
||||
|
||||
/datum/gear/uniform/sec
|
||||
main_typepath = /datum/gear/uniform/sec
|
||||
|
||||
|
||||
@@ -8,7 +8,10 @@
|
||||
actions_types = list(/datum/action/item_action/flip_cap)
|
||||
dog_fashion = /datum/dog_fashion/head/cargo_tech
|
||||
sprite_sheets = list(
|
||||
"Vox" = 'icons/mob/clothing/species/vox/head.dmi'
|
||||
"Human" = 'icons/mob/clothing/head.dmi',
|
||||
"Vox" = 'icons/mob/clothing/species/vox/head.dmi',
|
||||
"Drask" = 'icons/mob/clothing/species/drask/head.dmi',
|
||||
"Grey" = 'icons/mob/clothing/species/grey/head.dmi'
|
||||
)
|
||||
dyeable = TRUE
|
||||
|
||||
@@ -103,6 +106,13 @@
|
||||
item_color = "rainbow"
|
||||
dog_fashion = /datum/dog_fashion/head/softcap
|
||||
|
||||
/obj/item/clothing/head/soft/deliverysoft
|
||||
name = "delivery boy cap"
|
||||
desc = "It's a baseball hat that is part of the delivery boy uniform."
|
||||
icon_state = "deliverysoft"
|
||||
item_color = "delivery"
|
||||
dog_fashion = /datum/dog_fashion/head/softcap
|
||||
|
||||
/obj/item/clothing/head/soft/sec
|
||||
name = "security cap"
|
||||
desc = "It's baseball hat in tasteful red colour."
|
||||
|
||||
@@ -16,6 +16,13 @@
|
||||
item_state = "lb_suit"
|
||||
item_color = "qm"
|
||||
|
||||
/obj/item/clothing/under/rank/cargo/deliveryboy
|
||||
name = "delivery boy uniform"
|
||||
desc = "It's a jumpsuit worn by the cargo delivery boy."
|
||||
icon_state = "delivery"
|
||||
item_state = "lb_suit"
|
||||
item_color = "delivery"
|
||||
|
||||
/obj/item/clothing/under/rank/cargo/quartermaster/skirt
|
||||
name = "quartermaster's jumpskirt"
|
||||
desc = "It's a jumpskirt worn by the quartermaster. It's specially designed to prevent back injuries caused by pushing paper."
|
||||
|
||||
Reference in New Issue
Block a user