mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
I did not go through the list to assign 'access' yet, so the two are currently identical. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5479 316c924e-a436-60f5-8080-3fe189b3f50e
23 lines
730 B
Plaintext
23 lines
730 B
Plaintext
/datum/job/assistant
|
|
title = "Assistant"
|
|
flag = ASSISTANT
|
|
department_flag = CIVILIAN
|
|
faction = "Station"
|
|
total_positions = -1
|
|
spawn_positions = -1
|
|
supervisors = "absolutely everyone"
|
|
selection_color = "#dddddd"
|
|
access = list() //See /datum/job/assistant/get_access()
|
|
minimal_access = list() //See /datum/job/assistant/get_access()
|
|
|
|
/datum/job/assistant/equip(var/mob/living/carbon/human/H)
|
|
if(!H) return 0
|
|
H.equip_to_slot_or_del(new /obj/item/clothing/under/color/grey(H), slot_w_uniform)
|
|
H.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(H), slot_shoes)
|
|
return 1
|
|
|
|
/datum/job/assistant/get_access()
|
|
if(config.assistant_maint)
|
|
return list(access_maint_tunnels)
|
|
else
|
|
return list() |