mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Materials subsystem, material defines instead of strings, structure materials. (#8447)
The shitcode crusade begins.
This commit is contained in:
@@ -17,13 +17,13 @@
|
||||
var/list/resource_field = list()
|
||||
|
||||
var/ore_types = list(
|
||||
"iron" = /obj/item/ore/iron,
|
||||
"uranium" = /obj/item/ore/uranium,
|
||||
"gold" = /obj/item/ore/gold,
|
||||
"silver" = /obj/item/ore/silver,
|
||||
"diamond" = /obj/item/ore/diamond,
|
||||
"phoron" = /obj/item/ore/phoron,
|
||||
"osmium" = /obj/item/ore/osmium,
|
||||
MATERIAL_IRON = /obj/item/ore/iron,
|
||||
MATERIAL_URANIUM = /obj/item/ore/uranium,
|
||||
MATERIAL_GOLD = /obj/item/ore/gold,
|
||||
MATERIAL_SILVER = /obj/item/ore/silver,
|
||||
MATERIAL_DIAMOND = /obj/item/ore/diamond,
|
||||
MATERIAL_PHORON = /obj/item/ore/phoron,
|
||||
MATERIAL_OSMIUM = /obj/item/ore/osmium,
|
||||
"hydrogen" = /obj/item/ore/hydrogen,
|
||||
"silicates" = /obj/item/ore/glass,
|
||||
"carbonaceous rock" = /obj/item/ore/coal
|
||||
|
||||
Reference in New Issue
Block a user