diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index 6c17818d43..76c946de31 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -701,6 +701,43 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
desc = "A New Space Pioneer's Bible. This one says it was printed in 2492. The name 'Eric Hayvers' is written on the inside of the cover, crossed out. \
Under it is written 'Kouri, Amina, Marine Unit 14, Fifth Echelon. Service number NTN-5528928522372'"
+//arokha:Amaya Rahl - Custom ID (Medical dept)
+/obj/item/weapon/card/id/fluff/amaya
+ registered_name = "CONFIGURE ME"
+ assignment = "CONFIGURE ME"
+ var/configured = 0
+ var/accessset = 0
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_state = "amayarahlwahID"
+ desc = "A primarily blue ID with a holographic 'WAH' etched onto its back. The letters do not obscure anything important on the card. It is shiny and it feels very bumpy."
+ var/title_strings = list("Amaya Rahl's Wah-identification card", "Amaya Rahl's Wah-ID card")
+
+/obj/item/weapon/card/id/fluff/amaya/attack_self(mob/user as mob)
+ if(configured == 1)
+ return ..()
+
+ var/title
+ if(user.client.prefs.player_alt_titles[user.job])
+ title = user.client.prefs.player_alt_titles[user.job]
+ else
+ title = user.job
+ assignment = title
+ user.set_id_info(src)
+ var/tempname = pick(title_strings)
+ name = tempname + " ([title])"
+ configured = 1
+ user << "Card settings set."
+
+/obj/item/weapon/card/id/fluff/amaya/attackby(obj/item/I as obj, mob/user as mob)
+ if(istype(I, /obj/item/weapon/card/id) && !accessset)
+ var/obj/item/weapon/card/id/O = I
+ src.access |= O.access
+ to_chat(user, "You copy the access from \the [I] to \the [src].")
+ user.drop_from_inventory(I)
+ qdel(I)
+ accessset = 1
+ ..()
+
//The perfect adminboos device?
/obj/item/device/perfect_tele
name = "personal translocator"
diff --git a/config/custom_items.txt b/config/custom_items.txt
index 8ded572d1e..4aa290e104 100644
--- a/config/custom_items.txt
+++ b/config/custom_items.txt
@@ -323,6 +323,10 @@ item_path: /obj/item/device/modkit_conversion/fluff/harmonyspace
# ######## K CKEYS
{
+ckay: kiraalitruss
+character_name: Amaya Rahl
+item_path: /obj/item/weapon/card/id/fluff/amaya
+{
ckey: kisukegema
character_name: Kisuke 'The Nerd' Gema
item_path: /obj/item/clothing/glasses/omnihud/kamina
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index 76014ddc0e..1b1653f8c6 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ