mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-06 07:32:15 +00:00
33 lines
819 B
Plaintext
33 lines
819 B
Plaintext
/datum/job/ai
|
|
title = "AI"
|
|
flag = AI
|
|
department_flag = ENGSEC
|
|
total_positions = 0 // Not used for AI, see is_position_available below and modules/mob/living/silicon/ai/latejoin.dm
|
|
spawn_positions = 1
|
|
selection_color = "#ccffcc"
|
|
supervisors = "your laws"
|
|
req_admin_notify = 1
|
|
minimal_player_age = 30
|
|
|
|
equip(var/mob/living/carbon/human/H)
|
|
if(!H) return 0
|
|
return 1
|
|
|
|
/datum/job/ai/is_position_available()
|
|
return (empty_playable_ai_cores.len != 0)
|
|
|
|
|
|
/datum/job/cyborg
|
|
title = "Cyborg"
|
|
flag = CYBORG
|
|
department_flag = ENGSEC
|
|
total_positions = 1
|
|
spawn_positions = 1
|
|
supervisors = "your laws and the AI" //Nodrak
|
|
selection_color = "#ddffdd"
|
|
minimal_player_age = 21
|
|
alt_titles = list("Android", "Robot")
|
|
|
|
equip(var/mob/living/carbon/human/H)
|
|
if(!H) return 0
|
|
return 1 |