diff --git a/code/modules/clothing/gloves/rings.dm b/code/modules/clothing/gloves/rings.dm index 590efa7cd91..9a512ca2cd5 100644 --- a/code/modules/clothing/gloves/rings.dm +++ b/code/modules/clothing/gloves/rings.dm @@ -6,6 +6,7 @@ icon_state = "ironring" item_state = "" icon = 'icons/obj/clothing/rings.dmi' + var/fluff_material = FALSE //If true, will ignore the material when examining var/material = "iron" var/stud = 0 @@ -21,7 +22,8 @@ /obj/item/clothing/gloves/ring/examine(mob/user) ..(user) - to_chat(user, "This one is made of [material].") + if(!fluff_material) + to_chat(user, "This one is made of [material].") if(stud) to_chat(user, "It is adorned with a single gem.") diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index ed13ae560c4..09ecdad8ed7 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1752,4 +1752,25 @@ icon_state = "kiamask" item_state = "kiamask" item_color = "kiamask" - species_restricted = list("Vox") \ No newline at end of file + species_restricted = list("Vox") + + + +/obj/item/clothing/gloves/ring/fluff + name = "fluff ring" + desc = "Someone forgot to set this fluff item's description, notify a coder!" + icon = 'icons/obj/custom_items.dmi' + fluff_material = TRUE + +/obj/item/clothing/gloves/ring/fluff/update_icon() + return + +/obj/item/clothing/gloves/ring/fluff/attackby(obj/item/I as obj, mob/user as mob, params) + return + + + +/obj/item/clothing/gloves/ring/fluff/benjaminfallout //Benjaminfallout: Pretzel Brassheart + name = "Pretzel's Ring" + desc = "A small platinum ring with a large light blue diamond. Engraved inside the band are the words: 'To my lovely Pristine Princess. Forever yours, Savinien.'" + icon_state = "benjaminfallout_ring" \ No newline at end of file diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 5cf056ca967..e1ca3d3380e 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ