Merge pull request #514 from AppleMaster/master

Abi said to do this.
This commit is contained in:
Mloc
2012-02-25 12:58:35 -08:00
4 changed files with 1691 additions and 1701 deletions
+1071 -1070
View File
File diff suppressed because it is too large Load Diff
+24
View File
@@ -0,0 +1,24 @@
/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()
H.update_face()
..()
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

+596 -631
View File
File diff suppressed because it is too large Load Diff