1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-03 14:53:01 +02:00

Late game ore balancing for tendrils_impure.lua

Lowered impurity amounts in iron and copper veins as there was little or no need to seek out stone or coal veins later in the game.   Purity went from about 82% to 86%.   Standardized ore weights for each cluster to add up to 1000 so that percentage of each ore = weight / 10.   Coal and stone veins effectively the same since players can tap them or not.   Kept ore percentages scattered fragments the same since the stone and coal in them is useful early game, but doesn't affect late game much since the scattered fragments are low yield overall.
This commit is contained in:
BlueRock2 2018-12-23 13:37:25 -05:00 committed by GitHub
parent 54d175b3e2
commit 7438071700
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,8 +20,8 @@
-- zero: does nothing with this source
-- one: adds the weight directly to the noise calculation
--
-- weights: recommend having resource weights for each cluster add up to 100
-- so that the weights = percentage of each ore type
-- weights: recommend having resource weights for each cluster add up to 1000
-- so that it is apparent that every 10 weight = 1%. eg. weight 860 (86%) + weight 80 (8%) + weight 60 (6%) = 100%
return {
{ -- tendril medium large impure iron
@ -40,9 +40,9 @@ return {
}
},
weights = {
['iron-ore'] = 80,
['coal'] = 10,
['stone'] = 8,
['iron-ore'] = 860,
['coal'] = 80,
['stone'] = 60,
},
distances = {
['coal'] = 16,
@ -66,9 +66,9 @@ return {
}
},
weights = {
['copper-ore'] = 80,
['coal'] = 10,
['stone'] = 8,
['copper-ore'] = 860,
['coal'] = 80,
['stone'] = 60,
},
distances = {
['coal'] = 16,
@ -92,9 +92,9 @@ return {
},
},
weights = {
['coal'] = 80,
['iron-ore'] = 16,
['stone'] = 5,
['coal'] = 790,
['iron-ore'] = 160,
['stone'] = 50,
},
distances = {
['coal'] = 16,
@ -118,9 +118,9 @@ return {
}
},
weights = {
['stone'] = 80,
['copper-ore'] = 14,
['coal'] = 7,
['stone'] = 790,
['copper-ore'] = 140,
['coal'] = 70,
},
distances = {
['coal'] = 16,
@ -173,10 +173,10 @@ return {
},
},
weights = {
['coal'] = 130,
['copper-ore'] = 280,
['iron-ore'] = 395,
['stone'] = 105,
['coal'] = 143,
['copper-ore'] = 307,
['iron-ore'] = 435,
['stone'] = 115,
},
distances = {
['coal'] = 16,