Update advanced_start.lua

This commit is contained in:
2026-06-23 21:44:43 +09:00
committed by GitHub
parent 08328dbb8f
commit 4bfd9c3b36
+21 -26
View File
@@ -80,33 +80,28 @@ return {
enemy_expansion = false, --- @setting enemy_expansion a catch all for in case the map settings file fails to load enemy_expansion = false, --- @setting enemy_expansion a catch all for in case the map settings file fails to load
chart_radius = 10 * 32, --- @setting chart_radius the number of tiles that will be charted when the map starts chart_radius = 10 * 32, --- @setting chart_radius the number of tiles that will be charted when the map starts
items = { --- @setting items items and there condition for being given items = { --- @setting items items and there condition for being given
-- ['item-name'] = function(amount_made, production_stats, player) return <Number> end -- 0 means no items given ["iron-ore"] = cutoff_time(20 * minutes, 80, 0),
-- Plates ["stone"] = cutoff_time(20 * minutes, 20, 0),
["iron-plate"] = scale_amount_made(100, 10, 10), ["coal"] = cutoff_time(20 * minutes, 20, 0),
["copper-plate"] = scale_amount_made(100, 0, 8), -- ["burner-mining-drill"]=cutoff_time(20 * minutes, 8, 0),
["steel-plate"] = scale_amount_made(100, 0, 4), -- ["stone-furnace"]=cutoff_time(20 * minutes, 8, 0),
-- Secondary Items ["submachine-gun"] = 1,
["electronic-circuit"] = scale_amount_made(1000, 0, 6), ["piercing-rounds-magazine"] = 20,
["iron-gear-wheel"] = scale_amount_made(1000, 0, 6), ["construction-robot"] = 10,
-- Starting Items ["modular-armor"] = 1,
["burner-mining-drill"] = cutoff_time(10 * minutes, 4, 0), ["solar-panel-equipment"] = 16,
["stone-furnace"] = cutoff_time(10 * minutes, 4, 0), ["belt-immunity-equipment"] = 1,
-- Armor ["battery-equipment"] = 2,
["light-armor"] = cutoff_amount_made_unless(5, 0, 1, "heavy-armor", 5), ["personal-roboport-equipment"] = 1
["heavy-armor"] = cutoff_amount_made(5, 0, 1),
-- Weapon
["pistol"] = cutoff_amount_made_unless(0, 1, 1, "submachine-gun", 5),
["submachine-gun"] = cutoff_amount_made(5, 0, 1),
-- Ammo
["firearm-magazine"] = cutoff_amount_made_unless(100, 10, 0, "piercing-rounds-magazine", 100),
["piercing-rounds-magazine"] = cutoff_amount_made(100, 0, 10),
--[[ --[[
['construction-robot'] = 10, ["construction-robot"] = 50,
['modular-armor'] = 1, ["spidertron"] = 1,
['solar-panel-equipment'] = 16, ["spidertron-remote"] = 1,
['belt-immunity-equipment'] = 1, ["modular-armor"] = 1,
['battery-equipment'] = 2, ["solar-panel-equipment"] = 60,
['personal-roboport-equipment'] = 1 ["belt-immunity-equipment"] = 1,
["battery-equipment"] = 6,
["personal-roboport-equipment"] = 5
]] ]]
} }
} }