diff --git a/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm b/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm new file mode 100644 index 0000000000..7e0b35e11d --- /dev/null +++ b/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm @@ -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 + diff --git a/code/modules/clothing/gloves/miscellaneous_vr.dm b/code/modules/clothing/gloves/miscellaneous_vr.dm new file mode 100644 index 0000000000..38a2304513 --- /dev/null +++ b/code/modules/clothing/gloves/miscellaneous_vr.dm @@ -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" diff --git a/icons/mob/hands_vr.dmi b/icons/mob/hands_vr.dmi new file mode 100644 index 0000000000..876a4e6a87 Binary files /dev/null and b/icons/mob/hands_vr.dmi differ diff --git a/icons/obj/clothing/gloves_vr.dmi b/icons/obj/clothing/gloves_vr.dmi new file mode 100644 index 0000000000..5d98bbb017 Binary files /dev/null and b/icons/obj/clothing/gloves_vr.dmi differ diff --git a/vorestation.dme b/vorestation.dme index a15365c1b6..ac72725f16 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -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"