mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 03:27:46 +01:00
Merges AI Branch into Master
This commit is contained in:
@@ -106,6 +106,13 @@
|
||||
check_bans = list("AI", "Cyborg", "Syndicate")
|
||||
cutoff_number = 1
|
||||
|
||||
/datum/ghost_query/borer
|
||||
role_name = "Cortical Borer"
|
||||
question = "A cortical borer has just been created on the facility. Would you like to play as them?"
|
||||
be_special_flag = BE_ALIEN
|
||||
check_bans = list("Syndicate", "Borer")
|
||||
cutoff_number = 1
|
||||
|
||||
// Surface stuff.
|
||||
/datum/ghost_query/lost_drone
|
||||
role_name = "Lost Drone"
|
||||
|
||||
+9
-8
@@ -502,7 +502,7 @@
|
||||
if(!mind.assigned_role) mind.assigned_role = USELESS_JOB //defualt //VOREStation Edit - Visitor not Assistant
|
||||
|
||||
//slime
|
||||
/mob/living/simple_animal/slime/mind_initialize()
|
||||
/mob/living/simple_mob/slime/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "slime"
|
||||
|
||||
@@ -527,29 +527,30 @@
|
||||
mind.special_role = ""
|
||||
|
||||
//Animals
|
||||
/mob/living/simple_animal/mind_initialize()
|
||||
/mob/living/simple_mob/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Animal"
|
||||
mind.assigned_role = "Simple Mob"
|
||||
|
||||
/mob/living/simple_animal/corgi/mind_initialize()
|
||||
/mob/living/simple_mob/animal/passive/dog/corgi/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Corgi"
|
||||
|
||||
/mob/living/simple_animal/shade/mind_initialize()
|
||||
/mob/living/simple_mob/construct/shade/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Shade"
|
||||
mind.special_role = "Cultist"
|
||||
|
||||
/mob/living/simple_animal/construct/builder/mind_initialize()
|
||||
/mob/living/simple_mob/construct/artificer/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Artificer"
|
||||
mind.special_role = "Cultist"
|
||||
|
||||
/mob/living/simple_animal/construct/wraith/mind_initialize()
|
||||
/mob/living/simple_mob/construct/wraith/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Wraith"
|
||||
mind.special_role = "Cultist"
|
||||
|
||||
/mob/living/simple_animal/construct/armoured/mind_initialize()
|
||||
/mob/living/simple_mob/construct/juggernaut/mind_initialize()
|
||||
. = ..()
|
||||
mind.assigned_role = "Juggernaut"
|
||||
mind.special_role = "Cultist"
|
||||
|
||||
Reference in New Issue
Block a user