mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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()
|
|
..()
|
|
|
|
|
|
|
|
|
|
|
|
|