Files
CHOMPStation2/code/WorkInProgress/Apples/artifacts.dm
Jim Apples 3ce6514073 Re-enables....something...
huhuhuhu

Signed-off-by: Jim Apples <cheeckan@gmail.com>
2013-06-21 20:15:14 +01:00

24 lines
449 B
Plaintext

/obj/item/changestone
name = "An uncut ruby"
desc = "The ruby shines and catches the light, despite being uncut"
icon = 'artifacts.dmi'
icon_state = "changerock"
obj/item/changestone/attack_hand(var/mob/user as mob)
if(istype(user,/mob/living/carbon/human))
var/mob/living/carbon/human/H = user
if(!H.gloves)
if (H.gender == FEMALE)
H.gender = MALE
else
H.gender = FEMALE
H.dna.ready_dna(H)
H.update_body()
..()