fake coins and coin/mint refactors (#17218)

* fake coins and fake coin accessories

* coin and mint refactors

* coin and mint refactors
This commit is contained in:
Killian
2025-03-06 21:54:13 +00:00
committed by GitHub
parent e439e1debc
commit d39234c734
12 changed files with 248 additions and 38 deletions
@@ -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