From f7f06faf3f193a2a98a7d84066a1c41d11238314 Mon Sep 17 00:00:00 2001 From: Henri215 <77684085+Henri215@users.noreply.github.com> Date: Sat, 1 Oct 2022 12:37:19 -0300 Subject: [PATCH] Adds plastic/glass/shadow rings to Prize Counter (#19184) * added rings as prizes * Update code/modules/arcade/prize_datums.dm Co-authored-by: Edan <29551695+Edan52@users.noreply.github.com> Co-authored-by: Edan <29551695+Edan52@users.noreply.github.com> --- code/modules/arcade/prize_datums.dm | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/code/modules/arcade/prize_datums.dm b/code/modules/arcade/prize_datums.dm index 1eec72019d1..40697f4da73 100644 --- a/code/modules/arcade/prize_datums.dm +++ b/code/modules/arcade/prize_datums.dm @@ -45,6 +45,30 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new()) typepath = /obj/item/toy/balloon cost = 10 +/datum/prize_item/plasticring + name = "White Plastic Ring" + desc = "A cheap ring made of plastic." + typepath = /obj/item/clothing/gloves/ring/plastic + cost = 10 + +/datum/prize_item/plasticringb + name = "Blue Plastic Ring" + desc = "A cheap blue ring made of plastic." + typepath = /obj/item/clothing/gloves/ring/plastic/blue + cost = 10 + +/datum/prize_item/plasticringr + name = "Red Plastic Ring" + desc = "A cheap red ring made of plastic." + typepath = /obj/item/clothing/gloves/ring/plastic/red + cost = 10 + +/datum/prize_item/glassring + name = "Glass Ring" + desc = "No refunds if you end up dropping it." + typepath = /obj/item/clothing/gloves/ring/glass + cost = 15 + /datum/prize_item/spinningtoy name = "Spinning Toy" desc = "Looks like an authentic Singularity!" @@ -105,6 +129,12 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new()) typepath = /obj/item/toy/eight_ball cost = 40 +/datum/prize_item/shadowring + name = "Shadow Ring" + desc = "Only darklords can wear this ring." + typepath = /obj/item/clothing/gloves/ring/shadow + cost = 40 + /datum/prize_item/wallet name = "Colored Wallet" desc = "Brightly colored and big enough for standard issue ID cards."