mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 21:48:21 +01:00
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:
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user