1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

Balanced chest raffle to be more rewarding

This commit is contained in:
Lynn 2018-12-13 21:42:15 +01:00
parent 221cf9c67d
commit 2776b67b54

View File

@ -142,23 +142,40 @@ local Config = {
alien_coin_drop_chance = 0.30,
-- shows the chest locations, only use when debugging
display_chest_locations = false,
display_chest_locations = true,
treasure_chest_raffle = {
['coin'] = {chance = 1.00, min = 20, max = 255},
['steel-axe'] = {chance = 0.55, min = 1, max = 2},
['stone'] = {chance = 0.50, min = 25, max = 75},
['steel-axe'] = {chance = 0.55, min = 1, max = 3},
['stone'] = {chance = 0.20, min = 15, max = 40},
['copper-ore'] = {chance = 0.25, min = 30, max = 60},
['copper-plate'] = {chance = 0.10, min = 12, max = 25},
['iron-ore'] = {chance = 0.20, min = 10, max = 55},
['iron-plate'] = {chance = 0.10, min = 5, max = 25},
['steel-plate'] = {chance = 0.05, min = 3, max = 14},
['steel-furnace'] = {chance = 0.02, min = 1, max = 1},
['steam-engine'] = {chance = 0.02, min = 1, max = 1},
['coal'] = {chance = 0.40, min = 30, max = 55},
['steel-furnace'] = {chance = 0.03, min = 1, max = 2},
['steam-engine'] = {chance = 0.03, min = 1, max = 2},
['coal'] = {chance = 0.30, min = 30, max = 55},
['concrete'] = {chance = 0.14, min = 10, max = 50},
['stone-brick'] = {chance = 0.14, min = 25, max = 75},
['stone-wall'] = {chance = 0.50, min = 1, max = 3},
['stone-wall'] = {chance = 0.50, min = 1, max = 5},
['transport-belt'] = {chance = 0.10, min = 1, max = 5},
['fast-transport-belt'] = {chance = 0.07, min = 2, max = 7},
['express-transport-belt'] = {chance = 0.04, min = 4, max = 9},
['rail'] = {chance = 0.20, min = 7, max = 15},
['rail-signal'] = {chance = 0.05, min = 3, max = 8},
['rail-chain-signal'] = {chance = 0.05, min = 3, max = 8},
['firearm-magazine'] = {chance = 0.25, min = 35, max = 120},
['piercing-rounds-magazine'] = {chance = 0.10, min = 15, max = 35},
['gun-turret'] = {chance = 0.3, min = 1, max = 2},
['beacon'] = {chance = 0.01, min = 1, max = 2},
['effectivity-module'] = {chance = 0.03, min = 1, max = 2},
['effectivity-module-2'] = {chance = 0.01, min = 1, max = 2},
['productivity-module'] = {chance = 0.03, min = 1, max = 2},
['productivity-module-2'] = {chance = 0.01, min = 1, max = 2},
['speed-module'] = {chance = 0.03, min = 1, max = 2},
['speed-module-2'] = {chance = 0.01, min = 1, max = 2},
['small-lamp'] = {chance = 0.05, min = 1, max = 5},
}
},