diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index 43fab87519..50179ed45e 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -1202,3 +1202,30 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
B.internal_contents |= src
user.visible_message("[user] eats a telebeacon!","You eat the the beacon!")
playsound(user, B.vore_sound, 70, 1)
+
+//InterroLouis: Ruda Lizden
+/obj/item/clothing/accessory/badge/holo/detective/ruda
+ name = "Hisstective's Badge"
+ desc = "This is Ruda Lizden's personal Detective's badge. The polish is dull, as if it's simply been huffed upon and wiped against a coat. Labeled 'Hisstective.'"
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_state = "hisstective_badge"
+ //slot_flags = SLOT_TIE | SLOT_BELT
+
+/obj/item/clothing/accessory/badge/holo/detective/ruda/attack(mob/living/carbon/human/M, mob/living/user)
+ if(isliving(user))
+ user.visible_message("[user] invades [M]'s personal space, thrusting [src] into their face with an insistent huff.","You invade [M]'s personal space, thrusting [src] into their face with an insistent huff.")
+ user.do_attack_animation(M)
+ user.setClickCooldown(DEFAULT_QUICK_COOLDOWN) //to prevent spam
+
+/obj/item/clothing/accessory/badge/holo/detective/ruda/attack_self(mob/user as mob)
+
+ if(!stored_name)
+ user << "You huff along the front of your badge, then rub your sleeve on it to polish it up."
+ set_name(user.real_name)
+ return
+
+ if(isliving(user))
+ if(stored_name)
+ user.visible_message("[user] displays their [src.name].\nIt reads: [stored_name], [badge_string].","You display your [src.name].\nIt reads: [stored_name], [badge_string].")
+ else
+ user.visible_message("[user] displays their [src.name].\nIt reads: [badge_string].","You display your [src.name]. It reads: [badge_string].")
\ No newline at end of file
diff --git a/config/custom_items.txt b/config/custom_items.txt
index 9c85df2394..7609e02719 100644
--- a/config/custom_items.txt
+++ b/config/custom_items.txt
@@ -219,6 +219,12 @@ item_path: /obj/item/weapon/implanter/reagent_generator/belle
# ######## I CKEYS
+{
+ckey: interrolouis
+character_name: Ruda Lizden
+item_path:/obj/item/clothing/accessory/badge/holo/detective/ruda
+}
+
{
ckey: ivymoomoo
character_name: Ivy Baladeva
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index 2212f07472..dcf96c8d47 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ