From 2776b67b5460151f8599b6a7ee571832690fed86 Mon Sep 17 00:00:00 2001 From: Lynn Date: Thu, 13 Dec 2018 21:42:15 +0100 Subject: [PATCH] Balanced chest raffle to be more rewarding --- map_gen/Diggy/Config.lua | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/map_gen/Diggy/Config.lua b/map_gen/Diggy/Config.lua index 4704d646..35df9c43 100644 --- a/map_gen/Diggy/Config.lua +++ b/map_gen/Diggy/Config.lua @@ -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}, } },