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
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaAISettings
-- This file is automatically generated. Edits will be overwritten.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaBootstrap
-- 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.
---
---[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.
on_configuration_changed=function(f)end,
---@param handler fun(param1:ConfigurationChangedData)|nil@The handler for this event. Passing `nil` will unregister it.
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.
---
---[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"}})
---```
---@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.
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.
---
---**Note:** For more context, refer to the page.
@@ -107,8 +107,8 @@ on_event=function(event,f,filters)end,
--- global.players = {}
---end)
---```
---@param f fun()|nil@The handler for this event. Passing `nil` will unregister it.
on_init=function(f)end,
---@param handler fun()|nil@The handler for this event. Passing `nil` will unregister it.
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.
---
---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.
---
---[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.
on_load=function(f)end,
---@param handler fun()|nil@The handler for this event. Passing `nil` will unregister it.
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.
---
---[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 f 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,
---@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,handler)end,
---[View documentation](https://lua-api.factorio.com/latest/LuaBootstrap.html#LuaBootstrap.raise_biter_base_built)
---@class LuaBootstrap.raise_biter_base_built_param
---The entity that was built.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaEntity
-- 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_
---@param damage float@The amount of damage to be done.
---@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.
---@return float@the total damage actually applied after resistances.
damage=function(damage,force,type,dealer)end,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaGameScript
-- 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 reason LocalisedString?@The reason given if any.
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.
---

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaGuiElement
-- 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_
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.
---
---**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
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaHeatBufferPrototype
-- This file is automatically generated. Edits will be overwritten.

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaInventory
-- 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)
---@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
count_empty_stacks=function(include_filtered)end,
count_empty_stacks=function(include_filtered,include_bar)end,
---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.
@@ -167,6 +168,11 @@ is_empty=function()end,
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.is_filtered)
---@return boolean
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.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaInventory.html#LuaInventory.remove)

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaItemPrototype
-- This file is automatically generated. Edits will be overwritten.
@@ -39,6 +39,63 @@
---_Can only be used if this is SelectionTool_
---@field alt_entity_type_filters? {[string]: boolean}
---[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.
---
---[View documentation](https://lua-api.factorio.com/latest/LuaItemPrototype.html#LuaItemPrototype.alt_selection_border_color)

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaLogisticContainerControlBehavior
-- This file is automatically generated. Edits will be overwritten.
@@ -11,7 +11,7 @@
---[View documentation](https://lua-api.factorio.com/latest/LuaLogisticContainerControlBehavior.html)
---@class LuaLogisticContainerControlBehavior:LuaControlBehavior
---[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)
---@field circuit_mode_of_operation defines.control_behavior.logistic_container.circuit_mode_of_operation

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section LuaPlayer
-- This file is automatically generated. Edits will be overwritten.
@@ -328,7 +328,7 @@ can_build_from_cursor=function(param)end,
---@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)
---@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.
---
---[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 filter InfinityInventoryFilter|nil@The new filter or `nil` to clear the filter.
set_infinity_inventory_filter=function(index,filter)end,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section concepts
-- This file is automatically generated. Edits will be overwritten.
@@ -1651,7 +1651,7 @@
---
---[View documentation](https://lua-api.factorio.com/latest/Concepts.html#InfinityInventoryFilter)
---@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)
---@field index uint

View File

@@ -1,7 +1,7 @@
---@meta
---@diagnostic disable
--$Factorio 1.1.70
--$Factorio 1.1.72
--$Overlay 5
--$Section custom
-- 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