mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
Adds cap revolver ammo and toy cuffs to prize counter (#19245)
* added cap revolver ammo and toy cuff, did sort by cost too * Update code/modules/arcade/prize_datums.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
@@ -111,11 +111,11 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/deck/cards/tiny
|
||||
cost = 25
|
||||
|
||||
/datum/prize_item/double_tiny_cards
|
||||
name = "Double Deck of Tiny Cards"
|
||||
desc = "Anyone fancy a tiny game of 108-card Pickup?"
|
||||
typepath = /obj/item/deck/cards/tiny/doublecards
|
||||
cost = 50
|
||||
/datum/prize_item/capgunammo
|
||||
name = "Capgun Revolver Cylinder"
|
||||
desc = "Reload your toy revolver with style."
|
||||
typepath = /obj/item/ammo_box/caps
|
||||
cost = 30
|
||||
|
||||
/datum/prize_item/crayons
|
||||
name = "Box of Crayons"
|
||||
@@ -135,6 +135,12 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/clothing/gloves/ring/shadow
|
||||
cost = 40
|
||||
|
||||
/datum/prize_item/double_tiny_cards
|
||||
name = "Double Deck of Tiny Cards"
|
||||
desc = "Anyone fancy a tiny game of 108-card Pickup?"
|
||||
typepath = /obj/item/deck/cards/tiny/doublecards
|
||||
cost = 50
|
||||
|
||||
/datum/prize_item/wallet
|
||||
name = "Colored Wallet"
|
||||
desc = "Brightly colored and big enough for standard issue ID cards."
|
||||
@@ -173,6 +179,12 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/toy/flash
|
||||
cost = 50
|
||||
|
||||
/datum/prize_item/toycuffs
|
||||
name = "Toy Handcuffs"
|
||||
desc = "Plastic and extremely cheaply made."
|
||||
typepath = /obj/item/restraints/handcuffs/toy
|
||||
cost = 50
|
||||
|
||||
/datum/prize_item/minimeteor
|
||||
name = "Mini-Meteor"
|
||||
desc = "Meteors have been detected on a collision course with your fun times!"
|
||||
@@ -233,6 +245,12 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/gun/projectile/revolver/capgun
|
||||
cost = 75
|
||||
|
||||
/datum/prize_item/codex_gigas
|
||||
name = "Toy Codex Gigas"
|
||||
desc = "For helping you come up with writing ideas for your diabolical adventures."
|
||||
typepath = /obj/item/toy/codex_gigas
|
||||
cost = 75
|
||||
|
||||
/datum/prize_item/pet_rock
|
||||
name = "Pet Rock"
|
||||
desc = "A pet of your very own!"
|
||||
@@ -329,12 +347,6 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/toy/figure/griffin
|
||||
cost = 125
|
||||
|
||||
/datum/prize_item/codex_gigas
|
||||
name = "Toy Codex Gigas"
|
||||
desc = "For helping you come up with writing ideas for your diabolical adventures."
|
||||
typepath = /obj/item/toy/codex_gigas/
|
||||
cost = 75
|
||||
|
||||
/datum/prize_item/esword
|
||||
name = "Toy Energy Sword"
|
||||
desc = "A plastic replica of an energy blade."
|
||||
@@ -353,6 +365,12 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/stack/tile/arcade_carpet/loaded
|
||||
cost = 150
|
||||
|
||||
/datum/prize_item/headpat
|
||||
name = "Gloves of Headpats"
|
||||
desc = "Gloves that fill you with an irresistable urge to give headpats."
|
||||
typepath = /obj/item/clothing/gloves/fingerless/rapid/headpat
|
||||
cost = 150
|
||||
|
||||
/datum/prize_item/tommygun
|
||||
name = "Tommy Gun"
|
||||
desc = "A replica tommy gun that fires foam darts."
|
||||
@@ -371,12 +389,6 @@ GLOBAL_DATUM_INIT(global_prizes, /datum/prizes, new())
|
||||
typepath = /obj/item/twohanded/toy/chainsaw
|
||||
cost = 200
|
||||
|
||||
/datum/prize_item/headpat
|
||||
name = "Gloves of Headpats"
|
||||
desc = "Gloves that fill you with an irresistable urge to give headpats."
|
||||
typepath = /obj/item/clothing/gloves/fingerless/rapid/headpat
|
||||
cost = 150
|
||||
|
||||
/datum/prize_item/bike
|
||||
name = "Awesome Bike!"
|
||||
desc = "WOAH."
|
||||
|
||||
Reference in New Issue
Block a user