mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Supposed to help compilation times. Who knows. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
24 lines
459 B
Plaintext
24 lines
459 B
Plaintext
/obj/item/changestone
|
|
name = "An uncut ruby"
|
|
desc = "The ruby shines and catches the light, despite being uncut"
|
|
icon = 'icons/obj/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()
|
|
..()
|
|
|
|
|
|
|
|
|
|
|
|
|