updated api

This commit is contained in:
Monica Moniot
2022-12-01 19:04:58 -05:00
parent 21abe6fb56
commit 30fe2946e6
104 changed files with 232 additions and 123 deletions

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaAISettings --$Section LuaAISettings
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaAccumulatorControlBehavior --$Section LuaAccumulatorControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaAchievementPrototype --$Section LuaAchievementPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaAmmoCategoryPrototype --$Section LuaAmmoCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaArithmeticCombinatorControlBehavior --$Section LuaArithmeticCombinatorControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaAutoplaceControlPrototype --$Section LuaAutoplaceControlPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaBootstrap --$Section LuaBootstrap
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -70,8 +70,8 @@ get_event_order=function()end,
---**Note:** For more context, refer to the page. ---**Note:** For more context, refer to the page.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_configuration_changed) ---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_configuration_changed)
---@param f fun(param1:ConfigurationChangedData)|nil@The handler for this event. Passing `nil` will unregister it. ---@param handler fun(param1:ConfigurationChangedData)|nil@The handler for this event. Passing `nil` will unregister it.
on_configuration_changed=function(f)end, on_configuration_changed=function(handler)end,
---Register a handler to run on the specified event(s). Each mod can only register once for every event, as any additional registration will overwrite the previous one. This holds true even if different filters are used for subsequent registrations. ---Register a handler to run on the specified event(s). Each mod can only register once for every event, as any additional registration will overwrite the previous one. This holds true even if different filters are used for subsequent registrations.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_event) ---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_event)
@@ -91,9 +91,9 @@ on_configuration_changed=function(f)end,
---{{filter = "name", name = "fast-inserter"}}) ---{{filter = "name", name = "fast-inserter"}})
---``` ---```
---@param event defines.events|defines.events[]|string@The event(s) or custom-input to invoke the handler on. ---@param event defines.events|defines.events[]|string@The event(s) or custom-input to invoke the handler on.
---@param f fun(param1:EventData)|nil@The handler for this event. Passing `nil` will unregister it. ---@param handler fun(param1:EventData)|nil@The handler for this event. Passing `nil` will unregister it.
---@param filters EventFilter?@The filters for this event. Can only be used when registering for individual events. ---@param filters EventFilter?@The filters for this event. Can only be used when registering for individual events.
on_event=function(event,f,filters)end, on_event=function(event,handler,filters)end,
---Register a function to be run on mod initialization. This is only called when a new save game is created or when a save file is loaded that previously didn't contain the mod. During it, the mod gets the chance to set up initial values that it will use for its lifetime. It has full access to [LuaGameScript](https://lua-api.factorio.com/latest/LuaGameScript.html) and the table and can change anything about them that it deems appropriate. No other events will be raised for the mod until it has finished this step. ---Register a function to be run on mod initialization. This is only called when a new save game is created or when a save file is loaded that previously didn't contain the mod. During it, the mod gets the chance to set up initial values that it will use for its lifetime. It has full access to [LuaGameScript](https://lua-api.factorio.com/latest/LuaGameScript.html) and the table and can change anything about them that it deems appropriate. No other events will be raised for the mod until it has finished this step.
--- ---
---**Note:** For more context, refer to the page. ---**Note:** For more context, refer to the page.
@@ -107,8 +107,8 @@ on_event=function(event,f,filters)end,
--- global.players = {} --- global.players = {}
---end) ---end)
---``` ---```
---@param f fun()|nil@The handler for this event. Passing `nil` will unregister it. ---@param handler fun()|nil@The handler for this event. Passing `nil` will unregister it.
on_init=function(f)end, on_init=function(handler)end,
---Register a function to be run on save load. This is only called for mods that have been part of the save previously, or for players connecting to a running multiplayer session. It gives the mod the opportunity to do some very specific actions, should it need to. Doing anything other than these three will lead to desyncs, which breaks multiplayer and replay functionality. Access to [LuaGameScript](https://lua-api.factorio.com/latest/LuaGameScript.html) is not available. The table can be accessed and is safe to read from, but not write to, as doing so will lead to an error. ---Register a function to be run on save load. This is only called for mods that have been part of the save previously, or for players connecting to a running multiplayer session. It gives the mod the opportunity to do some very specific actions, should it need to. Doing anything other than these three will lead to desyncs, which breaks multiplayer and replay functionality. Access to [LuaGameScript](https://lua-api.factorio.com/latest/LuaGameScript.html) is not available. The table can be accessed and is safe to read from, but not write to, as doing so will lead to an error.
--- ---
---The only legitimate uses of this event are the following: ---The only legitimate uses of this event are the following:
@@ -121,14 +121,14 @@ on_init=function(f)end,
---**Note:** For more context, refer to the page. ---**Note:** For more context, refer to the page.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_load) ---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_load)
---@param f fun()|nil@The handler for this event. Passing `nil` will unregister it. ---@param handler fun()|nil@The handler for this event. Passing `nil` will unregister it.
on_load=function(f)end, on_load=function(handler)end,
---Register a handler to run every nth-tick(s). When the game is on tick 0 it will trigger all registered handlers. ---Register a handler to run every nth-tick(s). When the game is on tick 0 it will trigger all registered handlers.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_nth_tick) ---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.on_nth_tick)
---@param tick uint|uint[]|nil@The nth-tick(s) to invoke the handler on. Passing `nil` as the only parameter will unregister all nth-tick handlers. ---@param tick uint|uint[]|nil@The nth-tick(s) to invoke the handler on. Passing `nil` as the only parameter will unregister all nth-tick handlers.
---@param f fun(param1:NthTickEventData)|nil@The handler to run. Passing `nil` will unregister it for the provided nth-tick(s). ---@param handler fun(param1:NthTickEventData)|nil@The handler to run. Passing `nil` will unregister it for the provided nth-tick(s).
on_nth_tick=function(tick,f)end, on_nth_tick=function(tick,handler)end,
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.raise_biter_base_built) ---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.raise_biter_base_built)
---@class LuaBootstrap.raise_biter_base_built_param ---@class LuaBootstrap.raise_biter_base_built_param
---The entity that was built. ---The entity that was built.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaBurner --$Section LuaBurner
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaBurnerPrototype --$Section LuaBurnerPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaChunkIterator --$Section LuaChunkIterator
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCircuitNetwork --$Section LuaCircuitNetwork
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCombinatorControlBehavior --$Section LuaCombinatorControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCommandProcessor --$Section LuaCommandProcessor
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaConstantCombinatorControlBehavior --$Section LuaConstantCombinatorControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaContainerControlBehavior --$Section LuaContainerControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaControl --$Section LuaControl
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaControlBehavior --$Section LuaControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCustomChartTag --$Section LuaCustomChartTag
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCustomInputPrototype --$Section LuaCustomInputPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaCustomTable --$Section LuaCustomTable
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaDamagePrototype --$Section LuaDamagePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaDeciderCombinatorControlBehavior --$Section LuaDeciderCombinatorControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaDecorativePrototype --$Section LuaDecorativePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaElectricEnergySourcePrototype --$Section LuaElectricEnergySourcePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEntity --$Section LuaEntity
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -1307,7 +1307,7 @@ create_build_effect_smoke=function()end,
---_Can only be used if this is EntityWithHealth_ ---_Can only be used if this is EntityWithHealth_
---@param damage float@The amount of damage to be done. ---@param damage float@The amount of damage to be done.
---@param force ForceIdentification@The force that will be doing the damage. ---@param force ForceIdentification@The force that will be doing the damage.
---@param type string?@The type of damage to be done, defaults to "impact". ---@param type string?@The type of damage to be done, defaults to "impact". Can't be `nil`.
---@param dealer LuaEntity?@The entity to consider as the damage dealer. Needs to be on the same surface as the entity being damaged. ---@param dealer LuaEntity?@The entity to consider as the damage dealer. Needs to be on the same surface as the entity being damaged.
---@return float@the total damage actually applied after resistances. ---@return float@the total damage actually applied after resistances.
damage=function(damage,force,type,dealer)end, damage=function(damage,force,type,dealer)end,

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEntityPrototype --$Section LuaEntityPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEquipment --$Section LuaEquipment
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEquipmentCategoryPrototype --$Section LuaEquipmentCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEquipmentGrid --$Section LuaEquipmentGrid
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEquipmentGridPrototype --$Section LuaEquipmentGridPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaEquipmentPrototype --$Section LuaEquipmentPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFlowStatistics --$Section LuaFlowStatistics
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFluidBox --$Section LuaFluidBox
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFluidBoxPrototype --$Section LuaFluidBoxPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFluidEnergySourcePrototype --$Section LuaFluidEnergySourcePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFluidPrototype --$Section LuaFluidPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFontPrototype --$Section LuaFontPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaForce --$Section LuaForce
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaFuelCategoryPrototype --$Section LuaFuelCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaGameScript --$Section LuaGameScript
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -715,9 +715,9 @@ json_to_table=function(json)end,
---@param player PlayerIdentification@The player to kick. ---@param player PlayerIdentification@The player to kick.
---@param reason LocalisedString?@The reason given if any. ---@param reason LocalisedString?@The reason given if any.
kick_player=function(player,reason)end, kick_player=function(player,reason)end,
---Marks two forces to be merged together. All entities in the source force will be reassigned to the target force. The source force will then be destroyed. ---Marks two forces to be merged together. All players and entities in the source force will be reassigned to the target force. The source force will then be destroyed. Importantly, this does not merge technologies or bonuses, which are instead retained from the target force.
--- ---
---**Note:** The three built-in forces -- player, enemy and neutral -- can't be destroyed. I.e. they can't be used as the source argument to this function. ---**Note:** The three built-in forces (player, enemy and neutral) can't be destroyed, meaning they can't be used as the source argument to this function.
--- ---
---**Note:** The source force is not removed until the end of the current tick, or if called during the [on_forces_merging](https://lua-api.factorio.com/latest/events.html#on_forces_merging) or [on_forces_merged](https://lua-api.factorio.com/latest/events.html#on_forces_merged) event, the end of the next tick. ---**Note:** The source force is not removed until the end of the current tick, or if called during the [on_forces_merging](https://lua-api.factorio.com/latest/events.html#on_forces_merging) or [on_forces_merged](https://lua-api.factorio.com/latest/events.html#on_forces_merged) event, the end of the next tick.
--- ---

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaGenericOnOffControlBehavior --$Section LuaGenericOnOffControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaGroup --$Section LuaGroup
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaGui --$Section LuaGui
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaGuiElement --$Section LuaGuiElement
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -967,6 +967,10 @@ clear=function()end,
--- ---
---_Can only be used if this is drop-down or list-box_ ---_Can only be used if this is drop-down or list-box_
clear_items=function()end, clear_items=function()end,
---Closes the dropdown list if this is a dropdown and it is open.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaGuiElement.html#LuaGuiElement.close_dropdown)
close_dropdown=function()end,
---Remove this element, along with its children. Any [LuaGuiElement](https://lua-api.factorio.com/latest/LuaGuiElement.html) objects referring to the destroyed elements become invalid after this operation. ---Remove this element, along with its children. Any [LuaGuiElement](https://lua-api.factorio.com/latest/LuaGuiElement.html) objects referring to the destroyed elements become invalid after this operation.
--- ---
---**Note:** The top-level GUI elements - [LuaGui::top](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.top), [LuaGui::left](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.left), [LuaGui::center](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.center) and [LuaGui::screen](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.screen) - can't be destroyed. ---**Note:** The top-level GUI elements - [LuaGui::top](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.top), [LuaGui::left](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.left), [LuaGui::center](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.center) and [LuaGui::screen](https://lua-api.factorio.com/latest/LuaGui.html#LuaGui.screen) - can't be destroyed.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaHeatBufferPrototype --$Section LuaHeatBufferPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaHeatEnergySourcePrototype --$Section LuaHeatEnergySourcePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaInserterControlBehavior --$Section LuaInserterControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaInventory --$Section LuaInventory
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -89,8 +89,9 @@ clear=function()end,
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.count_empty_stacks) ---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.count_empty_stacks)
---@param include_filtered boolean?@If true, filtered slots will be included. Defaults to false. ---@param include_filtered boolean?@If true, filtered slots will be included. Defaults to false.
---@param include_bar boolean?@If true, slots blocked by the current bar will be included. Defaults to true.
---@return uint ---@return uint
count_empty_stacks=function(include_filtered)end, count_empty_stacks=function(include_filtered,include_bar)end,
---Destroys this inventory. ---Destroys this inventory.
--- ---
---**Note:** Only inventories created by [LuaGameScript::create_inventory](https://lua-api.factorio.com/latest/LuaGameScript.html#LuaGameScript.create_inventory) can be destroyed this way. ---**Note:** Only inventories created by [LuaGameScript::create_inventory](https://lua-api.factorio.com/latest/LuaGameScript.html#LuaGameScript.create_inventory) can be destroyed this way.
@@ -167,6 +168,11 @@ is_empty=function()end,
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.is_filtered) ---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.is_filtered)
---@return boolean ---@return boolean
is_filtered=function()end, is_filtered=function()end,
---Is every stack in this inventory full? Ignores stacks blocked by the current bar.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.is_full)
---@return boolean
is_full=function()end,
---Remove items from this inventory. ---Remove items from this inventory.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.remove) ---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.remove)

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaItemPrototype --$Section LuaItemPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -39,6 +39,63 @@
---_Can only be used if this is SelectionTool_ ---_Can only be used if this is SelectionTool_
---@field alt_entity_type_filters? {[string]: boolean} ---@field alt_entity_type_filters? {[string]: boolean}
---[R] ---[R]
---The alt reverse entity filter mode used by this selection tool.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_alt_entity_filter_mode)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_alt_entity_filter_mode? string
---[R]
---The alt reverse entity filters used by this selection tool indexed by entity name.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_entity_filters)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_entity_filters? {[string]: LuaEntityPrototype}
---[R]
---The alt reverse entity type filters used by this selection tool indexed by entity type.
---
---**Note:** The boolean value is meaningless and is used to allow easy lookup if a type exists in the dictionary.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_entity_type_filters)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_entity_type_filters? {[string]: boolean}
---[R]
---The color used when doing alt reverse selection with this selection tool prototype.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_selection_border_color)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_selection_border_color? Color
---[R]
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_selection_cursor_box_type)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_selection_cursor_box_type? string
---[R]
---Flags that affect which entities will be selected during alt reverse selection.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_selection_mode_flags)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_selection_mode_flags? SelectionModeFlags
---[R]
---The alt reverse tile filter mode used by this selection tool.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_tile_filter_mode)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_tile_filter_mode? string
---[R]
---The alt reverse tile filters used by this selection tool indexed by tile name.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_reverse_tile_filters)
---
---_Can only be used if this is SelectionTool_
---@field alt_reverse_tile_filters? {[string]: LuaTilePrototype}
---[R]
---The color used when doing alt selection with this selection tool prototype. ---The color used when doing alt selection with this selection tool prototype.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_selection_border_color) ---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_selection_border_color)

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaItemStack --$Section LuaItemStack
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLampControlBehavior --$Section LuaLampControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLazyLoadedValue --$Section LuaLazyLoadedValue
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLogisticCell --$Section LuaLogisticCell
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLogisticContainerControlBehavior --$Section LuaLogisticContainerControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -11,7 +11,7 @@
---[View documentation](https://lua-api.factorio.com/latest/LuaLogisticContainerControlBehavior.html) ---[View documentation](https://lua-api.factorio.com/latest/LuaLogisticContainerControlBehavior.html)
---@class LuaLogisticContainerControlBehavior:LuaControlBehavior ---@class LuaLogisticContainerControlBehavior:LuaControlBehavior
---[RW] ---[RW]
---The circuit mode of operations for the logistic container. ---The circuit mode of operations for the logistic container. Can only be set on containers whose [logistic_mode](https://lua-api.factorio.com/latest/LuaEntityPrototype.html#LuaEntityPrototype.logistic_mode) is set to "requester".
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaLogisticContainerControlBehavior.html#LuaLogisticContainerControlBehavior.circuit_mode_of_operation) ---[View documentation](https://lua-api.factorio.com/latest/LuaLogisticContainerControlBehavior.html#LuaLogisticContainerControlBehavior.circuit_mode_of_operation)
---@field circuit_mode_of_operation defines.control_behavior.logistic_container.circuit_mode_of_operation ---@field circuit_mode_of_operation defines.control_behavior.logistic_container.circuit_mode_of_operation

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLogisticNetwork --$Section LuaLogisticNetwork
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaLogisticPoint --$Section LuaLogisticPoint
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaMiningDrillControlBehavior --$Section LuaMiningDrillControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaModSettingPrototype --$Section LuaModSettingPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaModuleCategoryPrototype --$Section LuaModuleCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaNamedNoiseExpression --$Section LuaNamedNoiseExpression
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaNoiseLayerPrototype --$Section LuaNoiseLayerPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaParticlePrototype --$Section LuaParticlePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaPermissionGroup --$Section LuaPermissionGroup
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaPermissionGroups --$Section LuaPermissionGroups
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaPlayer --$Section LuaPlayer
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -328,7 +328,7 @@ can_build_from_cursor=function(param)end,
---@field direction? defines.direction ---@field direction? defines.direction
---Checks if this player can build the give entity at the given location on the surface the player is on. ---Checks if this player can build the given entity at the given location on the surface the player is on.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaPlayer.html#LuaPlayer.can_place_entity) ---[View documentation](https://lua-api.factorio.com/latest/LuaPlayer.html#LuaPlayer.can_place_entity)
---@param param LuaPlayer.can_place_entity_param ---@param param LuaPlayer.can_place_entity_param
@@ -741,8 +741,6 @@ set_goal_description=function(text,only_update)end,
---Sets the filter for this map editor infinity filters at the given index. ---Sets the filter for this map editor infinity filters at the given index.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/LuaPlayer.html#LuaPlayer.set_infinity_inventory_filter) ---[View documentation](https://lua-api.factorio.com/latest/LuaPlayer.html#LuaPlayer.set_infinity_inventory_filter)
---
---_Can only be used if this is InfinityContainer_
---@param index uint@The index to set. ---@param index uint@The index to set.
---@param filter InfinityInventoryFilter|nil@The new filter or `nil` to clear the filter. ---@param filter InfinityInventoryFilter|nil@The new filter or `nil` to clear the filter.
set_infinity_inventory_filter=function(index,filter)end, set_infinity_inventory_filter=function(index,filter)end,

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaProfiler --$Section LuaProfiler
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaProgrammableSpeakerControlBehavior --$Section LuaProgrammableSpeakerControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRCON --$Section LuaRCON
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRailChainSignalControlBehavior --$Section LuaRailChainSignalControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRailPath --$Section LuaRailPath
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRailSignalControlBehavior --$Section LuaRailSignalControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRandomGenerator --$Section LuaRandomGenerator
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRecipe --$Section LuaRecipe
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRecipeCategoryPrototype --$Section LuaRecipeCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRecipePrototype --$Section LuaRecipePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRemote --$Section LuaRemote
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRendering --$Section LuaRendering
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaResourceCategoryPrototype --$Section LuaResourceCategoryPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaRoboportControlBehavior --$Section LuaRoboportControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaSettings --$Section LuaSettings
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaShortcutPrototype --$Section LuaShortcutPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaStorageTankControlBehavior --$Section LuaStorageTankControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaStyle --$Section LuaStyle
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaSurface --$Section LuaSurface
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTechnology --$Section LuaTechnology
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTechnologyPrototype --$Section LuaTechnologyPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTile --$Section LuaTile
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTilePrototype --$Section LuaTilePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTrain --$Section LuaTrain
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTrainStopControlBehavior --$Section LuaTrainStopControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTransportBeltControlBehavior --$Section LuaTransportBeltControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTransportLine --$Section LuaTransportLine
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaTrivialSmokePrototype --$Section LuaTrivialSmokePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaUnitGroup --$Section LuaUnitGroup
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaVirtualSignalPrototype --$Section LuaVirtualSignalPrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaVoidEnergySourcePrototype --$Section LuaVoidEnergySourcePrototype
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section LuaWallControlBehavior --$Section LuaWallControlBehavior
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section builtin --$Section builtin
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section concepts --$Section concepts
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.
@@ -1651,7 +1651,7 @@
--- ---
---[View documentation](https://lua-api.factorio.com/latest/Concepts.html#InfinityInventoryFilter) ---[View documentation](https://lua-api.factorio.com/latest/Concepts.html#InfinityInventoryFilter)
---@field mode? string ---@field mode? string
---The index of this filter in the filters list. ---The index of this filter in the filters list. Not required when writing a filter.
--- ---
---[View documentation](https://lua-api.factorio.com/latest/Concepts.html#InfinityInventoryFilter) ---[View documentation](https://lua-api.factorio.com/latest/Concepts.html#InfinityInventoryFilter)
---@field index uint ---@field index uint

View File

@@ -1,7 +1,7 @@
---@meta ---@meta
---@diagnostic disable ---@diagnostic disable
--$Factorio 1.1.70 --$Factorio 1.1.72
--$Overlay 5 --$Overlay 5
--$Section custom --$Section custom
-- This file is automatically generated. Edits will be overwritten. -- This file is automatically generated. Edits will be overwritten.

Some files were not shown because too many files have changed in this diff Show More