diff --git a/changelog.txt b/changelog.txt index 35c0a52..0c4496d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -6,6 +6,7 @@ Date: ???? Changes: - Change default spacing between fluid resource patches (like crude-oil) to be 6 instead of 4. - Added config setting to control the spacing between fluid resource patches. (Not exposed in the GUI.) + - Set default starting items to be the same as Vanilla freeplay. Bugfixes: - Fixed logistics chest not shown in coin shop due to outdated item name. --------------------------------------------------------------------------------------------------- diff --git a/lib/config.lua b/lib/config.lua index ce6f972..5f267ce 100644 --- a/lib/config.lua +++ b/lib/config.lua @@ -33,27 +33,24 @@ MAX_CRASHED_SHIP_WRECKAGE_ITEMS = 1 NAUVIS_STARTER_ITEMS = { player_start_items = { - ["pistol"]=1, - ["firearm-magazine"]=200, - ["iron-plate"]=100, - ["burner-mining-drill"] = 4, - ["stone-furnace"] = 4, - ["coal"] = 50, - ["stone"] = 50, + ["iron-plate"] = 8, + ["wood"] = 1, + ["pistol"] = 1, + ["firearm-magazine"] = 10, + ["burner-mining-drill"] = 1, + ["stone-furnace"] = 1 }, player_respawn_items = { - -- ["pistol"]=1, - -- ["firearm-magazine"]=100, + ["pistol"] = 1, + ["firearm-magazine"] = 10 }, crashed_ship = true, crashed_ship_resources = { - ["electronic-circuit"] = 200, - ["iron-gear-wheel"] = 100, - ["copper-cable"] = 200 + ["firearm-magazine"] = 8 -- Max of 5 inventory slots! }, crashed_ship_wreakage = { - ["iron-plate"] = 100 -- I don't recommend more than 1 item type here! + ["iron-plate"] = 8 -- I don't recommend more than 1 item type here! }, }