mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
@@ -636,6 +636,7 @@
|
|||||||
#include "code\game\objects\devices\chameleonproj.dm"
|
#include "code\game\objects\devices\chameleonproj.dm"
|
||||||
#include "code\game\objects\devices\flash.dm"
|
#include "code\game\objects\devices\flash.dm"
|
||||||
#include "code\game\objects\devices\flashlight.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\infra_sensor.dm"
|
||||||
#include "code\game\objects\devices\multitool.dm"
|
#include "code\game\objects\devices\multitool.dm"
|
||||||
#include "code\game\objects\devices\paicard.dm"
|
#include "code\game\objects\devices\paicard.dm"
|
||||||
|
|||||||
@@ -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
BIN
icons/obj/artifacts.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
Reference in New Issue
Block a user