mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
.
This commit is contained in:
@@ -20,90 +20,90 @@ return {
|
|||||||
dusk = 0.25,
|
dusk = 0.25,
|
||||||
evening = 0.45,
|
evening = 0.45,
|
||||||
morning = 0.55,
|
morning = 0.55,
|
||||||
dawn = 0.75
|
dawn = 0.75,
|
||||||
},
|
},
|
||||||
|
|
||||||
interface_limit = { --- @setting interface_limit Sets the limit for the number of vlayer interfaces that can be created
|
interface_limit = { --- @setting interface_limit Sets the limit for the number of vlayer interfaces that can be created
|
||||||
energy = 1, -- >1 allows for disconnected power networks to receive power
|
energy = 1, -- >1 allows for disconnected power networks to receive power
|
||||||
circuit = 20, -- No caveats
|
circuit = 20, -- No caveats
|
||||||
storage_input = 30, -- No caveats
|
storage_input = 30, -- No caveats
|
||||||
storage_output = 1 -- >0 allows for item teleportation (allowed_items only)
|
storage_output = 1, -- >0 allows for item teleportation (allowed_items only)
|
||||||
},
|
},
|
||||||
|
|
||||||
allowed_items = { --- @setting allowed_items List of all items allowed in vlayer storage and their properties
|
allowed_items = { --- @setting allowed_items List of all items allowed in vlayer storage and their properties
|
||||||
--[[
|
--[[
|
||||||
Allowed properties:
|
Allowed properties:
|
||||||
starting_value = 0: The amount of the item placed into the vlayer on game start, ignores area requirements
|
starting_value : The amount of the item placed into the vlayer on game start, ignores area requirements
|
||||||
required_area = 0: When greater than 0 the items properties are not applied unless their is sufficient surplus surface area
|
required_area : When greater than 0 the items properties are not applied unless their is sufficient surplus surface area
|
||||||
production = 0: The energy production of the item in MW, used for solar panels
|
production : The energy production of the item in MW, used for solar panels
|
||||||
discharge = 0: The energy discharge of the item in MW, used for accumulators
|
discharge : The energy discharge of the item in MW, used for accumulators
|
||||||
capacity = 0: The energy capacity of the item in MJ, used for accumulators
|
capacity : The energy capacity of the item in MJ, used for accumulators
|
||||||
surface_area = 0: The surface area provided by the item, used for landfill
|
surface_area : The surface area provided by the item, used for landfill
|
||||||
]]
|
]]
|
||||||
["solar-panel"] = {
|
["solar-panel"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 9,
|
required_area = 9,
|
||||||
production = 0.06 -- MW
|
production = 0.06, -- MW
|
||||||
},
|
},
|
||||||
["accumulator"] = {
|
["accumulator"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 4,
|
required_area = 4,
|
||||||
discharge = 0.3, -- MW
|
discharge = 0.3, -- MW
|
||||||
capacity = 5 -- MJ
|
capacity = 5, -- MJ
|
||||||
},
|
},
|
||||||
["landfill"] = {
|
["landfill"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 8 -- Tiles
|
surface_area = 8, -- Tiles
|
||||||
},
|
},
|
||||||
["wood"] = {
|
["wood"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0,
|
surface_area = 0,
|
||||||
fuel_value = 2, -- MJ
|
fuel_value = 2, -- MJ
|
||||||
power = true -- turn all wood to power to reduce trash
|
power = true, -- turn all wood to power to reduce trash
|
||||||
},
|
},
|
||||||
["coal"] = {
|
["coal"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0,
|
surface_area = 0,
|
||||||
fuel_value = 4, -- MJ
|
fuel_value = 4, -- MJ
|
||||||
power = true -- turn all coal to power to reduce trash
|
power = true, -- turn all coal to power to reduce trash
|
||||||
},
|
},
|
||||||
["solid-fuel"] = {
|
["solid-fuel"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0,
|
surface_area = 0,
|
||||||
fuel_value = 12, -- MJ
|
fuel_value = 12, -- MJ
|
||||||
power = true -- turn all solid fuel to power to reduce trash
|
power = true, -- turn all solid fuel to power to reduce trash
|
||||||
},
|
},
|
||||||
["rocket-fuel"] = {
|
["rocket-fuel"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0,
|
surface_area = 0,
|
||||||
fuel_value = 100, -- MJ
|
fuel_value = 100, -- MJ
|
||||||
power = true -- turn all rocket fuel to power to reduce trash
|
power = true, -- turn all rocket fuel to power to reduce trash
|
||||||
}
|
}
|
||||||
--[[
|
--[[
|
||||||
["iron-ore"] = {
|
["iron-ore"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0
|
surface_area = 0,
|
||||||
},
|
},
|
||||||
["copper-ore"] = {
|
["copper-ore"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0
|
surface_area = 0,
|
||||||
},
|
},
|
||||||
["stone"] = {
|
["stone"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0
|
surface_area = 0,
|
||||||
},
|
},
|
||||||
["uranium-ore"] = {
|
["uranium-ore"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
required_area = 0,
|
required_area = 0,
|
||||||
surface_area = 0
|
surface_area = 0,
|
||||||
},
|
},
|
||||||
]]
|
]]
|
||||||
},
|
},
|
||||||
@@ -112,72 +112,72 @@ return {
|
|||||||
["solar-panel-2"] = {
|
["solar-panel-2"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 4
|
multiplier = 4,
|
||||||
},
|
},
|
||||||
["solar-panel-3"] = {
|
["solar-panel-3"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 16
|
multiplier = 16,
|
||||||
},
|
},
|
||||||
["solar-panel-4"] = {
|
["solar-panel-4"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 64
|
multiplier = 64,
|
||||||
},
|
},
|
||||||
["solar-panel-5"] = {
|
["solar-panel-5"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 256
|
multiplier = 256,
|
||||||
},
|
},
|
||||||
["solar-panel-6"] = {
|
["solar-panel-6"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 1024
|
multiplier = 1024,
|
||||||
},
|
},
|
||||||
["solar-panel-7"] = {
|
["solar-panel-7"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 4096
|
multiplier = 4096,
|
||||||
},
|
},
|
||||||
["solar-panel-8"] = {
|
["solar-panel-8"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "solar-panel",
|
base_game_equivalent = "solar-panel",
|
||||||
multiplier = 16384
|
multiplier = 16384,
|
||||||
},
|
},
|
||||||
["accumulator-2"] = {
|
["accumulator-2"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 4
|
multiplier = 4,
|
||||||
},
|
},
|
||||||
["accumulator-3"] = {
|
["accumulator-3"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 16
|
multiplier = 16,
|
||||||
},
|
},
|
||||||
["accumulator-4"] = {
|
["accumulator-4"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 64
|
multiplier = 64,
|
||||||
},
|
},
|
||||||
["accumulator-5"] = {
|
["accumulator-5"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 256
|
multiplier = 256,
|
||||||
},
|
},
|
||||||
["accumulator-6"] = {
|
["accumulator-6"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 1024
|
multiplier = 1024,
|
||||||
},
|
},
|
||||||
["accumulator-7"] = {
|
["accumulator-7"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 4096
|
multiplier = 4096,
|
||||||
},
|
},
|
||||||
["accumulator-8"] = {
|
["accumulator-8"] = {
|
||||||
starting_value = 0,
|
starting_value = 0,
|
||||||
base_game_equivalent = "accumulator",
|
base_game_equivalent = "accumulator",
|
||||||
multiplier = 16384
|
multiplier = 16384,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user