1
0
mirror of https://github.com/Oarcinae/FactorioScenarioMultiplayerSpawn.git synced 2025-01-20 02:59:53 +02:00

Merge pull request #214 from Oarcinae/203-make-starting-and-respawn-items-consistent-with-vanilla-gameplay

Set default items to be same as vanilla freeplay.
This commit is contained in:
Oarcinae 2024-10-24 08:49:39 -04:00 committed by GitHub
commit 6b73055117
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 13 deletions

View File

@ -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.
---------------------------------------------------------------------------------------------------

View File

@ -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!
},
}