mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
New Map Mining (#1935)
* Alpha Commit * Alpha Commit * Seconds * Some Commit * Final Commit * Fixing minedrone synth ID * Dance Fever * Fixing Travis part 1 * Satisfying the demands * Stuff * Sub-final commit * Sculpting update * more sculpting. pr is 99% sculpting, in fact * kkk * brightness_off * swjaugyuwvhuw
This commit is contained in:
@@ -17,6 +17,7 @@ var/global/list/ore_data = list()
|
||||
"million" = 999
|
||||
)
|
||||
var/xarch_source_mineral = "iron"
|
||||
var/worth = 0 // Arbitrary point value for the ore redemption console
|
||||
|
||||
/ore/New()
|
||||
. = ..()
|
||||
@@ -28,7 +29,7 @@ var/global/list/ore_data = list()
|
||||
display_name = "pitchblende"
|
||||
smelts_to = "uranium"
|
||||
result_amount = 5
|
||||
spread_chance = 10
|
||||
spread_chance = 15
|
||||
ore = /obj/item/weapon/ore/uranium
|
||||
scan_icon = "mineral_uncommon"
|
||||
xarch_ages = list(
|
||||
@@ -36,6 +37,7 @@ var/global/list/ore_data = list()
|
||||
"million" = 704
|
||||
)
|
||||
xarch_source_mineral = "potassium"
|
||||
worth = 25
|
||||
|
||||
/ore/hematite
|
||||
name = ORE_IRON
|
||||
@@ -43,9 +45,10 @@ var/global/list/ore_data = list()
|
||||
smelts_to = "iron"
|
||||
alloy = 1
|
||||
result_amount = 5
|
||||
spread_chance = 25
|
||||
spread_chance = 30
|
||||
ore = /obj/item/weapon/ore/iron
|
||||
scan_icon = "mineral_common"
|
||||
worth = 4
|
||||
|
||||
/ore/coal
|
||||
name = ORE_COAL
|
||||
@@ -53,21 +56,22 @@ var/global/list/ore_data = list()
|
||||
smelts_to = "plastic"
|
||||
alloy = 1
|
||||
result_amount = 5
|
||||
spread_chance = 25
|
||||
spread_chance = 35
|
||||
ore = /obj/item/weapon/ore/coal
|
||||
scan_icon = "mineral_common"
|
||||
worth = 2
|
||||
|
||||
/ore/glass
|
||||
name = ORE_SAND
|
||||
display_name = "sand"
|
||||
smelts_to = "glass"
|
||||
compresses_to = "sandstone"
|
||||
worth = 1
|
||||
|
||||
/ore/phoron
|
||||
name = ORE_PHORON
|
||||
display_name = "phoron crystals"
|
||||
compresses_to = "phoron"
|
||||
//smelts_to = something that explodes violently on the conveyor, huhuhuhu
|
||||
result_amount = 5
|
||||
spread_chance = 25
|
||||
ore = /obj/item/weapon/ore/phoron
|
||||
@@ -79,15 +83,17 @@ var/global/list/ore_data = list()
|
||||
"billion_lower" = 10
|
||||
)
|
||||
xarch_source_mineral = "phoron"
|
||||
worth = 8
|
||||
|
||||
/ore/silver
|
||||
name = ORE_SILVER
|
||||
display_name = "native silver"
|
||||
smelts_to = "silver"
|
||||
result_amount = 5
|
||||
spread_chance = 10
|
||||
spread_chance = 15
|
||||
ore = /obj/item/weapon/ore/silver
|
||||
scan_icon = "mineral_uncommon"
|
||||
worth = 20
|
||||
|
||||
/ore/gold
|
||||
smelts_to = ORE_GOLD
|
||||
@@ -103,16 +109,18 @@ var/global/list/ore_data = list()
|
||||
"billion" = 4,
|
||||
"billion_lower" = 3
|
||||
)
|
||||
worth = 30
|
||||
|
||||
/ore/diamond
|
||||
name = ORE_DIAMOND
|
||||
display_name = "diamond"
|
||||
compresses_to = "diamond"
|
||||
result_amount = 5
|
||||
spread_chance = 10
|
||||
spread_chance = 5
|
||||
ore = /obj/item/weapon/ore/diamond
|
||||
scan_icon = "mineral_rare"
|
||||
xarch_source_mineral = "nitrogen"
|
||||
worth = 50
|
||||
|
||||
/ore/platinum
|
||||
name = ORE_PLATINUM
|
||||
@@ -121,9 +129,10 @@ var/global/list/ore_data = list()
|
||||
compresses_to = "osmium"
|
||||
alloy = 1
|
||||
result_amount = 5
|
||||
spread_chance = 10
|
||||
spread_chance = 15
|
||||
ore = /obj/item/weapon/ore/osmium
|
||||
scan_icon = "mineral_rare"
|
||||
worth = 15
|
||||
|
||||
/ore/hydrogen
|
||||
name = ORE_HYDROGEN
|
||||
@@ -131,3 +140,4 @@ var/global/list/ore_data = list()
|
||||
smelts_to = "tritium"
|
||||
compresses_to = "mhydrogen"
|
||||
scan_icon = "mineral_rare"
|
||||
worth = 30
|
||||
|
||||
Reference in New Issue
Block a user