mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Ports wedding rings from Citadel
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/datum/gear/gloves/goldring
|
||||
display_name = "wedding ring, gold"
|
||||
path = /obj/item/clothing/gloves/weddingring
|
||||
|
||||
/datum/gear/gloves/silverring
|
||||
display_name = "wedding ring, silver"
|
||||
path = /obj/item/clothing/gloves/weddingring/silver
|
||||
|
||||
15
code/modules/clothing/gloves/miscellaneous_vr.dm
Normal file
15
code/modules/clothing/gloves/miscellaneous_vr.dm
Normal file
@@ -0,0 +1,15 @@
|
||||
/obj/item/clothing/gloves/weddingring
|
||||
name = "golden wedding ring"
|
||||
desc = "For showing your devotion to another person. It has a golden glimmer to it."
|
||||
icon_state = "wedring_g"
|
||||
item_state = "wedring_g"
|
||||
var/partnername = ""
|
||||
|
||||
/obj/item/clothing/gloves/weddingring/attack_self(mob/user)
|
||||
partnername = copytext(sanitize(input(user, "Would you like to change the holoengraving on the ring?", "Name your betrothed", "Bae") as null|text),1,MAX_NAME_LEN)
|
||||
name = "[initial(name)] - [partnername]"
|
||||
|
||||
/obj/item/clothing/gloves/weddingring/silver
|
||||
name = "silver wedding ring"
|
||||
icon_state = "wedring_s"
|
||||
item_state = "wedring_s"
|
||||
BIN
icons/mob/hands_vr.dmi
Normal file
BIN
icons/mob/hands_vr.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 266 B |
BIN
icons/obj/clothing/gloves_vr.dmi
Normal file
BIN
icons/obj/clothing/gloves_vr.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 348 B |
@@ -1047,6 +1047,7 @@
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_eyes.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_general.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_gloves.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_gloves_vr.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_head.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_mask.dm"
|
||||
#include "code\modules\client\preference_setup\loadout\loadout_shoes.dm"
|
||||
@@ -1069,6 +1070,7 @@
|
||||
#include "code\modules\clothing\gloves\boxing.dm"
|
||||
#include "code\modules\clothing\gloves\color.dm"
|
||||
#include "code\modules\clothing\gloves\miscellaneous.dm"
|
||||
#include "code\modules\clothing\gloves\miscellaneous_vr.dm"
|
||||
#include "code\modules\clothing\head\collectable.dm"
|
||||
#include "code\modules\clothing\head\hardhat.dm"
|
||||
#include "code\modules\clothing\head\helmet.dm"
|
||||
|
||||
Reference in New Issue
Block a user