Added Artifact #1

Signed-off-by: Apple_Master <cheeckan@ymail.com>
This commit is contained in:
Apple_Master
2012-02-22 20:48:55 +00:00
parent f42530a476
commit 35dfb4a7ed
3 changed files with 25 additions and 0 deletions

View File

@@ -636,6 +636,7 @@
#include "code\game\objects\devices\chameleonproj.dm"
#include "code\game\objects\devices\flash.dm"
#include "code\game\objects\devices\flashlight.dm"
#include "code\game\objects\devices\geneanalyzer.dm"
#include "code\game\objects\devices\infra_sensor.dm"
#include "code\game\objects\devices\multitool.dm"
#include "code\game\objects\devices\paicard.dm"

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()
..()

BIN
icons/obj/artifacts.dmi Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB