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>
This commit is contained in:
Henri215
2022-10-01 17:37:19 +02:00
committed by GitHub
co-authored by Edan
parent 2c6fc27434
commit f7f06faf3f
+30
View File
@@ -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."