Merge pull request #10705 from KorPhaeron/golem

Golem Logging
This commit is contained in:
Jordie
2015-07-25 19:08:56 +10:00
@@ -410,13 +410,17 @@
var/mob/living/carbon/human/G = new /mob/living/carbon/human
if(prob(50)) G.gender = "female"
hardset_dna(G, null, null, null, null, /datum/species/golem/adamantine)
G.set_cloned_appearance()
G.real_name = text("Adamantine Golem ([rand(1, 1000)])")
G.dna.species.auto_equip(G)
G.loc = src.loc
G.key = ghost.key
G << "You are an adamantine golem. 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. Serve [user], and assist them in completing their goals at any cost."
G.mind.store_memory("<b>Serve [user.real_name], your creator.</b>")
if(user.mind.special_role)
message_admins("[G.real_name] has been summoned by [user.real_name], an antagonist.")
log_game("[G.real_name] ([G.key]) was made a golem by [user.real_name]([user.key]).")
qdel(src)