mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] fake coins and coin/mint refactors (#10324)
Co-authored-by: Killian <49700375+KillianKirilenko@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ab171de574
commit
c6483dba4f
@@ -16,6 +16,7 @@
|
||||
|
||||
var/default_type = MAT_STEEL
|
||||
var/datum/material/material
|
||||
var/coin_type = null
|
||||
var/perunit = SHEET_MATERIAL_AMOUNT
|
||||
var/apply_colour //temp pending icon rewrite
|
||||
drop_sound = 'sound/items/drop/axe.ogg'
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
no_variants = FALSE
|
||||
drop_sound = 'sound/items/drop/glass.ogg'
|
||||
pickup_sound = 'sound/items/pickup/glass.ogg'
|
||||
coin_type = /obj/item/coin/phoron
|
||||
|
||||
/obj/item/stack/material/diamond
|
||||
name = MAT_DIAMOND
|
||||
@@ -13,6 +14,7 @@
|
||||
no_variants = FALSE //CHOMPedit - Variants added
|
||||
drop_sound = 'sound/items/drop/glass.ogg'
|
||||
pickup_sound = 'sound/items/pickup/glass.ogg'
|
||||
coin_type = /obj/item/coin/diamond
|
||||
|
||||
/obj/item/stack/material/painite
|
||||
name = MAT_PAINITE
|
||||
@@ -54,6 +56,7 @@
|
||||
default_type = MAT_VERDANTIUM
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/verdantium
|
||||
|
||||
/obj/item/stack/material/morphium
|
||||
name = MAT_MORPHIUM
|
||||
@@ -62,6 +65,7 @@
|
||||
default_type = MAT_MORPHIUM
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/morphium
|
||||
|
||||
/obj/item/stack/material/glamour
|
||||
name = MAT_GLAMOUR
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
default_type = MAT_STEEL
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/steel
|
||||
|
||||
/obj/item/stack/material/plasteel
|
||||
name = MAT_PLASTEEL
|
||||
@@ -11,6 +12,7 @@
|
||||
default_type = MAT_PLASTEEL
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/plasteel
|
||||
|
||||
/obj/item/stack/material/plasteel/rebar
|
||||
name = MAT_PLASTEELREBAR
|
||||
@@ -32,6 +34,7 @@
|
||||
default_type = MAT_DURASTEEL
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/durasteel
|
||||
|
||||
/obj/item/stack/material/titanium
|
||||
name = MAT_TITANIUM
|
||||
@@ -40,6 +43,7 @@
|
||||
item_state = "sheet-silver"
|
||||
default_type = MAT_TITANIUM
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/titanium
|
||||
|
||||
/obj/item/stack/material/iron
|
||||
name = MAT_IRON
|
||||
@@ -47,6 +51,7 @@
|
||||
default_type = MAT_IRON
|
||||
apply_colour = 1
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/iron
|
||||
|
||||
/obj/item/stack/material/lead
|
||||
name = MAT_LEAD
|
||||
@@ -54,6 +59,7 @@
|
||||
default_type = MAT_LEAD
|
||||
apply_colour = 1
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/lead
|
||||
|
||||
/obj/item/stack/material/gold
|
||||
name = MAT_GOLD
|
||||
@@ -61,6 +67,7 @@
|
||||
default_type = MAT_GOLD
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/gold
|
||||
|
||||
/obj/item/stack/material/silver
|
||||
name = MAT_SILVER
|
||||
@@ -68,6 +75,7 @@
|
||||
default_type = MAT_SILVER
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/silver
|
||||
|
||||
//Valuable resource, cargo can sell it.
|
||||
/obj/item/stack/material/platinum
|
||||
@@ -76,12 +84,14 @@
|
||||
default_type = MAT_PLATINUM
|
||||
no_variants = FALSE
|
||||
apply_colour = TRUE
|
||||
coin_type = /obj/item/coin/platinum
|
||||
|
||||
/obj/item/stack/material/uranium
|
||||
name = MAT_URANIUM
|
||||
icon_state = "sheet-uranium"
|
||||
default_type = MAT_URANIUM
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/uranium
|
||||
|
||||
//Extremely valuable to Research.
|
||||
/obj/item/stack/material/mhydrogen
|
||||
@@ -119,6 +129,7 @@
|
||||
default_type = MAT_GRAPHITE
|
||||
apply_colour = 1
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/graphite
|
||||
|
||||
/obj/item/stack/material/bronze
|
||||
name = MAT_BRONZE
|
||||
@@ -143,6 +154,7 @@
|
||||
default_type = MAT_COPPER
|
||||
apply_colour = 1
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/copper
|
||||
|
||||
/obj/item/stack/material/aluminium
|
||||
name = MAT_ALUMINIUM
|
||||
@@ -151,3 +163,4 @@
|
||||
default_type = MAT_ALUMINIUM
|
||||
apply_colour = 1
|
||||
no_variants = FALSE
|
||||
coin_type = /obj/item/coin/aluminium
|
||||
|
||||
Reference in New Issue
Block a user