Adds Waiter/Waitress

This commit is contained in:
Rykka
2019-09-19 20:45:13 -06:00
parent cee087bda9
commit c9e6a417f3
2 changed files with 14 additions and 2 deletions

View File

@@ -44,6 +44,18 @@
name = OUTFIT_JOB_NAME("Cook")
id_pda_assignment = "Cook"
// Rykka adds Waiter/Waitress Outfits
/decl/hierarchy/outfit/job/service/waiter
name = OUTFIT_JOB_NAME("Waiter")
uniform = /obj/item/clothing/under/waiter
/decl/hierarchy/outfit/job/service/waitress
name = OUTFIT_JOB_NAME("Waitress")
uniform = /obj/item/clothing/under/gentlesuit/skirt
// End Outfit addition
/decl/hierarchy/outfit/job/service/gardener
name = OUTFIT_JOB_NAME("Gardener")
uniform = /obj/item/clothing/under/rank/hydroponics

View File

@@ -6,13 +6,13 @@
faction = "Station"
total_positions = -1
spawn_positions = -1
supervisors = "the staff from the departmen you're interning in"
supervisors = "the staff from the department you're interning in"
selection_color = "#555555"
economic_modifier = 2
access = list() //See /datum/job/intern/get_access()
minimal_access = list() //See /datum/job/intern/get_access()
outfit_type = /decl/hierarchy/outfit/job/assistant/intern
alt_titles = list("Apprentice Engineer","Medical Intern","Lab Assistant","Security Cadet","Jr. Cargo Tech", "Jr. Explorer") //VOREStation Edit
alt_titles = list("Apprentice Engineer","Medical Intern","Lab Assistant","Security Cadet","Jr. Cargo Tech", "Jr. Explorer", "Waiter" = /decl/hierarchy/outfit/job/service/waiter, "Waitress" = /decl/hierarchy/outfit/job/service/waitress)
timeoff_factor = 0 // Interns, noh
/datum/job/intern/New()