[MIRROR] fake coins and coin/mint refactors (#10324)

Co-authored-by: Killian <49700375+KillianKirilenko@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-03-06 18:06:37 -07:00
committed by GitHub
parent ab171de574
commit c6483dba4f
12 changed files with 248 additions and 38 deletions

View File

@@ -30,6 +30,33 @@
display_name = "deck of cards"
path = /obj/item/deck/cards
/datum/gear/fake_coin
display_name = "coin selection"
description = "A small piece of metal often exchanged for goods and services, but no longer considered legal tender in most jurisdictions. Doesn't look like it'll go in the coin slot of vending machines."
path = /obj/item/fake_coin/silver
/datum/gear/fake_coin/New()
..()
var/cointype = list()
cointype["gold"] = /obj/item/fake_coin/gold
cointype["silver"] = /obj/item/fake_coin/silver
cointype["copper"] = /obj/item/fake_coin/copper
cointype["diamond"] = /obj/item/fake_coin/diamond
cointype["graphite"] = /obj/item/fake_coin/graphite
cointype["iron"] = /obj/item/fake_coin/iron
cointype["steel"] = /obj/item/fake_coin/steel
cointype["durasteel"] = /obj/item/fake_coin/durasteel
cointype["plasteel"] = /obj/item/fake_coin/plasteel
cointype["titanium"] = /obj/item/fake_coin/titanium
cointype["lead"] = /obj/item/fake_coin/lead
cointype["phoron"] = /obj/item/fake_coin/phoron
cointype["uranium"] = /obj/item/fake_coin/uranium
cointype["platinum"] = /obj/item/fake_coin/platinum
cointype["morphium"] = /obj/item/fake_coin/morphium
cointype["aluminium"] = /obj/item/fake_coin/aluminium
cointype["verdantium"] = /obj/item/fake_coin/verdantium
gear_tweaks += new/datum/gear_tweak/path(cointype)
/datum/gear/tarot
display_name = "deck of tarot cards"
path = /obj/item/deck/tarot