mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 03:55:11 +01:00
Frees free golems (#75249)
## About The Pull Request The autolathe free golem shells created on the free golem ruin now create free golems rather than servant golems. On the backend, this was done by delegating the responsbility for what to do with the "owner" to the spawned subtype. Now the three golem ghost spawners are: - Default, which creates a normal free golem. - Adamantine, the "leaders" on the free golem ruin, who get special vocal cords. - Servant, which enslaves itself to whoever finished building the shell. Previously the servant subtype did not do anything at all, but now it holds all of the relevant behaviour and the other two simply don't care who their creator was. ## Why It's Good For The Game Makes item does what it was supposed to, not sure how long it has been broken but it has been a while. Makes raiding free golem ruin for autolathe design create free rather than loyal golems, which could backfire. Free golems constructed in the ruin by other free golems are no longer forced into a hierarchy, which can be a good or bad thing depending on the temperament of whoever made them but might reduce the incidence of one guy ordering everyone else to tide cargo.
This commit is contained in:
@@ -15,36 +15,20 @@
|
||||
you_are_text = "You are a Free Golem. Your family worships The Liberator."
|
||||
flavour_text = "In his infinite and divine wisdom, he set your clan free to travel the stars with a single declaration: \"Yeah go do whatever.\""
|
||||
spawner_job_path = /datum/job/free_golem
|
||||
/// Weakref to the creator of this golem shell.
|
||||
var/datum/weakref/owner_ref
|
||||
/// Typepath to a material to feed to the golem as soon as it is built
|
||||
var/initial_type
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/Initialize(mapload, mob/creator, made_of)
|
||||
if(creator)
|
||||
name = "inert servant golem shell"
|
||||
prompt_name = "servant golem"
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/Initialize(mapload, mob/living/creator, made_of)
|
||||
initial_type = made_of
|
||||
. = ..()
|
||||
var/area/init_area = get_area(src)
|
||||
if(!mapload && init_area)
|
||||
notify_ghosts("\A golem shell has been completed in \the [init_area.name].", source = src, action=NOTIFY_ATTACK, flashwindow = FALSE, ignore_key = POLL_IGNORE_GOLEM)
|
||||
if(creator)
|
||||
you_are_text = "You are a golem."
|
||||
flavour_text = "You move slowly, but are highly resistant to heat and cold as well as blunt trauma. You are unable to wear clothes, but can still use most tools."
|
||||
important_text = "Serve [creator], and assist [creator.p_them()] in completing [creator.p_their()] goals at any cost."
|
||||
owner_ref = WEAKREF(creator)
|
||||
spawner_job_path = /datum/job/servant_golem
|
||||
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/name_mob(mob/living/spawned_mob, forced_name)
|
||||
if(forced_name || !iscarbon(spawned_mob))
|
||||
return ..()
|
||||
|
||||
if(owner_ref?.resolve())
|
||||
forced_name = "Golem ([rand(1,999)])"
|
||||
return ..()
|
||||
|
||||
var/datum/species/golem/golem_species = new()
|
||||
forced_name = golem_species.random_name()
|
||||
return ..()
|
||||
@@ -54,40 +38,34 @@
|
||||
if(is_path_in_list(initial_type, GLOB.golem_stack_food_directory))
|
||||
var/datum/golem_food_buff/initial_buff = GLOB.golem_stack_food_directory[initial_type]
|
||||
initial_buff.apply_effects(new_spawn)
|
||||
|
||||
var/mob/living/real_owner = owner_ref?.resolve()
|
||||
if(isnull(real_owner))
|
||||
if(!is_station_level(new_spawn.z))
|
||||
to_chat(new_spawn, "Build golem shells in the autolathe, and feed refined mineral sheets to the shells to bring them to life! \
|
||||
You are generally a peaceful group unless provoked.")
|
||||
try_keep_home(new_spawn)
|
||||
|
||||
new_spawn.log_message("possessed a free golem shell.", LOG_GAME)
|
||||
log_admin("[key_name(new_spawn)] possessed a free golem shell.")
|
||||
|
||||
else if(new_spawn.mind)
|
||||
new_spawn.mind.enslave_mind_to_creator(real_owner)
|
||||
else
|
||||
stack_trace("[type] created a golem without a mind.")
|
||||
|
||||
give_directive(new_spawn)
|
||||
if(ishuman(new_spawn))
|
||||
var/mob/living/carbon/human/human_spawn = new_spawn
|
||||
human_spawn.set_cloned_appearance()
|
||||
|
||||
/// Gives lavaland golems some noble ideas, and enslaved ones a master
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/proc/give_directive(mob/living/new_spawn)
|
||||
new_spawn.log_message("possessed a free golem shell.", LOG_GAME)
|
||||
log_admin("[key_name(new_spawn)] possessed a free golem shell.")
|
||||
|
||||
if(is_station_level(new_spawn.z))
|
||||
return
|
||||
to_chat(new_spawn, "Build golem shells in the autolathe, and feed refined mineral sheets to the shells to bring them to life! \
|
||||
You are generally a peaceful group unless provoked.")
|
||||
try_keep_home(new_spawn)
|
||||
|
||||
/// Makes free golems slow and sad on the space station
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/proc/try_keep_home(mob/new_spawn)
|
||||
var/static/list/allowed_areas = typecacheof(list(/area/icemoon, /area/lavaland, /area/ruin)) + typecacheof(/area/misc/survivalpod)
|
||||
|
||||
ADD_TRAIT(new_spawn, TRAIT_FORBID_MINING_SHUTTLE_CONSOLE_OUTSIDE_STATION, INNATE_TRAIT)
|
||||
new_spawn.AddComponent(/datum/component/hazard_area, area_whitelist = allowed_areas)
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/servant
|
||||
name = "inert servant golem shell"
|
||||
prompt_name = "servant golem"
|
||||
|
||||
// Subtype which can yell at other golems
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/adamantine
|
||||
name = "dust-caked free golem shell"
|
||||
desc = "A humanoid shape, empty, lifeless, and full of potential."
|
||||
prompt_name = "free golem"
|
||||
prompt_name = "a free golem"
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/adamantine/special(mob/living/new_spawn, mob/mob_possessor)
|
||||
. = ..()
|
||||
@@ -96,3 +74,38 @@
|
||||
var/mob/living/carbon/human/new_golem = new_spawn
|
||||
var/obj/item/organ/internal/vocal_cords/adamantine/free_golem_radio = new()
|
||||
free_golem_radio.Insert(new_golem)
|
||||
|
||||
// Subtype which follows orders
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/servant
|
||||
name = "inert servant golem shell"
|
||||
prompt_name = "a servant golem"
|
||||
you_are_text = "You are a golem."
|
||||
flavour_text = "You are highly resistant to heat and cold as well as blunt trauma. You must consume minerals to maintain motion. You are unable to wear clothes, but can still use most tools."
|
||||
spawner_job_path = /datum/job/servant_golem
|
||||
/// Weakref to the creator of this golem shell.
|
||||
var/datum/weakref/owner_ref
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/servant/Initialize(mapload, mob/living/creator, made_of)
|
||||
. = ..()
|
||||
if (!creator)
|
||||
return
|
||||
owner_ref = WEAKREF(creator)
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/servant/give_directive(mob/living/new_spawn)
|
||||
var/mob/living/real_owner = owner_ref?.resolve()
|
||||
if(QDELETED(real_owner))
|
||||
new_spawn.log_message("possessed a servant golem shell with no owner.", LOG_GAME)
|
||||
log_admin("[key_name(new_spawn)] possessed a servant golem shell with no owner.")
|
||||
return // Guess you're free now
|
||||
if(isnull(new_spawn.mind))
|
||||
CRASH("[type] created a golem without a mind.")
|
||||
|
||||
new_spawn.mind.enslave_mind_to_creator(real_owner)
|
||||
to_chat(new_spawn, span_userdanger("Serve [real_owner], and assist [real_owner.p_them()] in completing [real_owner.p_their()] goals at any cost."))
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/golem/servant/name_mob(mob/living/spawned_mob, forced_name)
|
||||
if(forced_name || !iscarbon(spawned_mob))
|
||||
return ..()
|
||||
if(owner_ref?.resolve())
|
||||
forced_name = "Golem ([rand(1,999)])"
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user