diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index 7825cef52a..f02579320f 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -1678,3 +1678,25 @@ Departamental Swimsuits, for general use
icon_override = 'icons/vore/custom_clothes_vr.dmi'
item_state = "kilanogloves_mob"
species_restricted = null
+
+//Mewchild: Phi Vietsi
+/obj/item/clothing/gloves/fluff/vietsi
+ name = "signet ring"
+ desc = "A signet ring carved from the bones of something long extinct, as a ward against bad luck."
+
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "vietsi_ring"
+ var/nameset = 0
+
+/obj/item/clothing/gloves/fluff/vietsi/attack_self(mob/user)
+ if(nameset)
+ to_chat(user, "The [src] has already been claimed!")
+ return
+
+ to_chat(user, "You claim the [src] as your own!")
+ change_name(user)
+ nameset = 1
+
+/obj/item/clothing/gloves/fluff/vietsi/proc/change_name(var/signet_name = "Unknown")
+ name = "[signet_name]'s Bone Signet Ring"
+ desc = "A signet ring belonging to [signet_name], carved from the bones of something long extinct, as a ward against bad luck."
\ No newline at end of file
diff --git a/config/custom_items.txt b/config/custom_items.txt
index f2571b77c6..4f8b240e78 100644
--- a/config/custom_items.txt
+++ b/config/custom_items.txt
@@ -477,6 +477,11 @@ item_path: /obj/item/weapon/implanter/reagent_generator/savannah
}
# ######## M CKEYS
+{ckey: mewchild
+character_name: Phi Vietsi
+item_path: /obj/item/clothing/gloves/fluff/vietsi
+}
+
{
ckey: molenar
character_name: Uya Kohakuren
diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi
index 14247f50f2..3939512269 100644
Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ