diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 21675dc006..cb27f19b8a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -1463,6 +1463,12 @@ ckeywhitelist = list("yecrowbarman") character_name = list("Lemon Yellow", "Lemon Gettler Yellow", "Lemon Lee Yellow", "Lemon Jade Yellow") //different sleeves, same char +/datum/gear/fluff/cephyra_d6 + path = /obj/item/weapon/dice/loaded/ceph + display_name = "engraved d6" + ckeywhitelist = list("yeehawguvnah") + character_name = list("Cephyra") + // Z CKEYS /datum/gear/fluff/tachika_medal path = /obj/item/clothing/accessory/medal/conduct diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index ba24dccabd..ee91f280cb 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1556,3 +1556,17 @@ playsound(src, 'sound/items/drop/plushie.ogg', 25, 0) visible_message("[src] says, \"[pokephrase]\"") last_message = world.time + +//Yeehawguvnah - Cephyra + +/obj/item/weapon/dice/loaded/ceph + name = "engraved d6" + desc = "A die with six sides. It's fairly well-made, made of an unclear black material with silver pips. If you were to touch it, your hands tingle slightly as though from static. On closer inspection, it's finely engraved with curving, fractal patterns." + icon_state = "ceph_d66" + +/obj/item/weapon/dice/loaded/ceph/rollDice(mob/user, silent) + ..() + icon_state = "ceph_d6[result]" + +/obj/item/weapon/dice/loaded/ceph/New() + icon_state = "ceph_d6[rand(1,sides)]" diff --git a/icons/obj/dice.dmi b/icons/obj/dice.dmi index 17a3c64cd4..c017e2d082 100644 Binary files a/icons/obj/dice.dmi and b/icons/obj/dice.dmi differ