Prototype/Technology: Difference between revisions
(anchors for expensive and normal) |
(→Technology data: added interaction between formula_count and levels) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 47: | Line 47: | ||
{{Prototype property|visible_when_disabled|[[Types/bool|bool]]|false|optional=true}} | {{Prototype property|visible_when_disabled|[[Types/bool|bool]]|false|optional=true}} | ||
Controls whether the technology is shown in the tech GUI when it is disabled (enabled = false). | Controls whether the technology is shown in the tech GUI when it is disabled (enabled = false). | ||
{{Prototype property|ignore_tech_cost_multiplier|[[Types/bool|bool]]|false|optional=true}} | |||
Controls whether the technology cost ignores the tech cost multiplier set in the [https://lua-api.factorio.com/latest/Concepts.html#DifficultySettings DifficultySettings], e.g. 4 for the default expensive difficulty. | |||
{{Prototype property|unit|[[Types/table|table]]}} | {{Prototype property|unit|[[Types/table|table]]}} | ||
[[Types/table|table]] with the following key/value pairs: | [[Types/table|table]] with the following key/value pairs: | ||
* count — [[Types/ | * count — [[Types/uint64|uint64]] — How many units are needed. Must be larger than 0. May not be specified if count_formula is specified. | ||
* count_formula — [[Types/string|string]] — Formula that specifies how many units are needed per level of the | * count_formula — [[Types/string|string]] — Formula that specifies how many units are needed per level of the technology. May not be specified if count is specified. | ||
: If the last characters of the prototype name are "-digits", the level is taken to be the digits. e.g. physical-projectile-damage-2 -> 2. The unspecified default is 1. There does not need to be lower-level technologies for a technology to be detected as having a level. (a technology or sequence of upgrade technologies can begin at any number) | |||
: For an infinite technology, the level begins at the suffix (or 1) and gains +1 level upon being researched, or is completed when the max_level is completed. The initial level of a technology cannot be greater than the max_level. | |||
: The formula is executed following the BODMAS order (also known as PEMDAS). | |||
: Supported operators & characters: | : Supported operators & characters: | ||
: {| class="wikitable" | : {| class="wikitable" | ||
Line 94: | Line 101: | ||
}</syntaxhighlight> | }</syntaxhighlight> | ||
Note: The count formula can also be used in the [https://lua-api.factorio.com/latest/LuaGameScript.html#LuaGameScript.evaluate_expression runtime api]. | |||
{{Prototype property|max_level|[[Types/uint32|uint32]] or [[Types/string|string]]|Same as the level of the technology, which is 0 for non-upgrades, and the level of the upgrade for upgrades.|optional=true}} | {{Prototype property|max_level|[[Types/uint32|uint32]] or [[Types/string|string]]|Same as the level of the technology, which is 0 for non-upgrades, and the level of the upgrade for upgrades.|optional=true}} | ||
"infinite" for infinite technologies, otherwise uint. | "infinite" for infinite technologies, otherwise uint. | ||
Line 101: | Line 109: | ||
prerequisites = {"explosives", "military-2"} | prerequisites = {"explosives", "military-2"} | ||
{{Prototype property|effects|[[Types/table|table]] of [ | {{Prototype property|effects|[[Types/table|table]] of [[Types/ModifierPrototype]]|optional=true}} | ||
List of effects of the technology (applied when the technology is researched). | List of effects of the technology (applied when the technology is researched). | ||
Line 112: | Line 120: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Example == | |||
<syntaxhighlight lang="lua">{ | |||
type = "technology", | |||
name = "steel-processing", | |||
icon_size = 256, | |||
icon_mipmaps = 4, | |||
icon = "__base__/graphics/technology/steel-processing.png", | |||
effects = | |||
{ | |||
{ | |||
type = "unlock-recipe", | |||
recipe = "steel-plate" | |||
}, | |||
{ | |||
type = "unlock-recipe", | |||
recipe = "steel-chest" | |||
} | |||
}, | |||
unit = | |||
{ | |||
count = 50, | |||
ingredients = {{"automation-science-pack", 1}}, | |||
time = 5 | |||
}, | |||
order = "c-a" | |||
}</syntaxhighlight> |
Latest revision as of 01:55, 6 June 2022
Prototype definitions » PrototypeBase » Prototype/Technology
A technology.
Prototype/Technology — technology | ||
icons, icon, icon_size (IconSpecification) | :: | IconSpecification |
unit | :: | table |
effects | :: | table of Types/ModifierPrototype (optional) |
enabled | :: | bool (optional) |
expensive | :: | Technology data or bool (optional) |
hidden | :: | bool (optional) |
ignore_tech_cost_multiplier | :: | bool (optional) |
max_level | :: | uint32 or string (optional) |
normal | :: | Technology data or bool (optional) |
prerequisites | :: | table of string (optional) |
upgrade | :: | bool (optional) |
visible_when_disabled | :: | bool (optional) |
Inherited from PrototypeBase | ||
name | :: | string |
type | :: | string |
localised_description | :: | LocalisedString (optional) |
localised_name | :: | LocalisedString (optional) |
order | :: | Order (optional) |
General properties
Inherits all properties from PrototypeBase.
icons, icon, icon_size (IconSpecification)
Type: IconSpecification
name
Inherited from PrototypeBase. If the name ends with -number
, the number is ignored for localization purposes. E. g. if the name is whatever-name-3
, the game looks for the technology-name.whatever-name
localization. The technology tree will also show the number on the technology icon.
Technology data
If the technology does not have a difficulty, this is located directly in the prototype. Otherwise, if the "normal" or "expensive" property exists, the technology has difficulty. Then, the technology data has to be specified for each difficulty instead of directly in the prototype. If at least one difficulty has technology data defined, the other difficulty can be set to false
. This will disable the technology for the difficulty, same as setting it enabled = false
. If it is enabled (by script etc), it will use the data from the other difficulty. Not setting a difficulty, e.g. normal = nil
, is possible and gives that difficulty the exact same properties as the difficulty that is defined.
upgrade
Type: bool
Default: false
When set to true, and the technology contains several levels, only the relevant one is displayed in the technology screen.
{
type = "technology",
name = "physical-projectile-damage-2",
...
upgrade = "true"
}
enabled
Type: bool
Default: true
Type: bool
Default: false
Hides the technology from the tech screen.
visible_when_disabled
Type: bool
Default: false
Controls whether the technology is shown in the tech GUI when it is disabled (enabled = false).
ignore_tech_cost_multiplier
Type: bool
Default: false
Controls whether the technology cost ignores the tech cost multiplier set in the DifficultySettings, e.g. 4 for the default expensive difficulty.
unit
Type: table
table with the following key/value pairs:
- count — uint64 — How many units are needed. Must be larger than 0. May not be specified if count_formula is specified.
- count_formula — string — Formula that specifies how many units are needed per level of the technology. May not be specified if count is specified.
- If the last characters of the prototype name are "-digits", the level is taken to be the digits. e.g. physical-projectile-damage-2 -> 2. The unspecified default is 1. There does not need to be lower-level technologies for a technology to be detected as having a level. (a technology or sequence of upgrade technologies can begin at any number)
- For an infinite technology, the level begins at the suffix (or 1) and gains +1 level upon being researched, or is completed when the max_level is completed. The initial level of a technology cannot be greater than the max_level.
- The formula is executed following the BODMAS order (also known as PEMDAS).
- Supported operators & characters:
Operator meaning + Addition - Subtraction * Multiplication ^ Power, raise the preceding base number by the following exponent number () Brackets for order, supported nested brackets l or L The current level of the technology Digits Are treated as numbers . Decimal point in number SPACE Space characters are ignored
- time — double — How much time is needed per one unit, in lab with crafting speed 1 it is the number of seconds.
- ingredients — table of IngredientPrototype — list of ingredients needed for one unit of research. The item types must all be tools.
unit = { count_formula = "2^(L-6)*1000", ingredients = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"production-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, time = 60 }
Note: The count formula can also be used in the runtime api.
max_level
Type: uint32 or string
Default: Same as the level of the technology, which is 0 for non-upgrades, and the level of the upgrade for upgrades.
"infinite" for infinite technologies, otherwise uint.
prerequisites
Type: table of string
List of technologies needed to be researched before this one can be researched.
prerequisites = {"explosives", "military-2"}
effects
Type: table of Types/ModifierPrototype
List of effects of the technology (applied when the technology is researched).
{
{
type = "unlock-recipe",
recipe = "land-mine"
}
}
Example
{
type = "technology",
name = "steel-processing",
icon_size = 256,
icon_mipmaps = 4,
icon = "__base__/graphics/technology/steel-processing.png",
effects =
{
{
type = "unlock-recipe",
recipe = "steel-plate"
},
{
type = "unlock-recipe",
recipe = "steel-chest"
}
},
unit =
{
count = 50,
ingredients = {{"automation-science-pack", 1}},
time = 5
},
order = "c-a"
}