mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
15 lines
530 B
Plaintext
15 lines
530 B
Plaintext
/obj/effect/proc_holder/changeling/lesserform
|
|
name = "Lesser Form"
|
|
desc = "We debase ourselves and become lesser. We become a monkey."
|
|
chemical_cost = 5
|
|
dna_cost = 1
|
|
req_human = 1
|
|
|
|
//Transform into a monkey.
|
|
/obj/effect/proc_holder/changeling/lesserform/sting_action(mob/living/carbon/human/user)
|
|
if(!user || user.notransform)
|
|
return 0
|
|
to_chat(user, "<span class='warning'>Our genes cry out!</span>")
|
|
|
|
user.monkeyize(TR_KEEPITEMS | TR_KEEPIMPLANTS | TR_KEEPORGANS | TR_KEEPDAMAGE | TR_KEEPVIRUS | TR_KEEPSE)
|
|
return TRUE |