Prototype/Technology: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
m (words)
(Removed old prototype docs)
Tag: Replaced
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Prototype parent|PrototypeBase}}
<div class="stub"><p>'''The prototype docs have moved to a new website with an improved format.''' This documentation page can now be found here: [https://lua-api.factorio.com/latest/prototypes/TechnologyPrototype.html https://lua-api.factorio.com/latest/prototypes/TechnologyPrototype.html]
A [[technologies|technology]].


{{Prototype TOC|technology}}
</p><p>This wiki page is no longer updated and '''will be removed at some point in the future''', so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback [https://forums.factorio.com/viewforum.php?f=233 on the forums].</p></div>
 
== General properties ==
Inherits all properties from [[PrototypeBase]].
 
{{Prototype property|icons, icon, icon_size (IconSpecification)|[[Types/IconSpecification|IconSpecification]]}}
 
=== name ===
:''See [[PrototypeBase#name ]]''
 
Inherited from [[PrototypeBase]]. If the name ends with <code>-number</code>, the number is ignored for localization purposes. E. g. if the name is <code>whatever-name-3</code>, the game looks for the <code>technology-name.whatever-name</code> localization. The technology tree will also show the number on the technology icon.
 
== Technology data ==
<!--
Anchor and property for the TOC at the top --><span id="normal">{{#subobject:normal
|Prototype property name=normal
|Prototype property type=[[Prototype/Technology#Technology_data|Technology data]] or [[Types/bool|bool]]
|Prototype property optional=true
|Prototype property pagename={{FULLPAGENAME}}
}}</span><!--
Anchor and property for the TOC at the top --><span id="expensive">{{#subobject:expensive
|Prototype property name=expensive
|Prototype property type=[[Prototype/Technology#Technology_data|Technology data]] or [[Types/bool|bool]]
|Prototype property optional=true
|Prototype property pagename={{FULLPAGENAME}}
}}</span><!--
-->
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 <code>false</code>. This will disable the technology for the difficulty, same as setting it <code>enabled = false</code>. If it is enabled (by script etc), it will use the data from the other difficulty. Not setting a difficulty, e.g. <code>normal = nil</code>, is possible and gives that difficulty the exact same properties as the difficulty that is defined.
 
{{Prototype property|upgrade|[[Types/bool|bool]]|false|optional=true}}
When set to true, and the technology contains several levels, only the relevant one is displayed in the technology screen.
<syntaxhighlight lang="lua">  {
    type = "technology",
    name = "physical-projectile-damage-2",
    ...
    upgrade = "true"
  }</syntaxhighlight>
 
{{Prototype property|enabled|[[Types/bool|bool]]|true|optional=true}}
 
{{Prototype property|hidden|[[Types/bool|bool]]|false|optional=true}}
Hides the technology from the tech screen.
 
{{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).
 
{{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]]}}
[[Types/table|table]] with the following key/value pairs:
* 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 infinite technology. May not be specified if count is specified. The formula is executed following the BODMAS order.
: Supported operators & characters:
: {| class="wikitable"
|-
! 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 — [[Types/double|double]] — How much time is needed per one unit, in lab with crafting speed 1 it is the number of seconds.
* ingredients — [[Types/table|table]] of [[Types/IngredientPrototype|IngredientPrototype]] — list of ingredients needed for one unit of research. The item types must all be [[Prototype/Tool|tools]].
 
:<syntaxhighlight lang="lua">
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
}</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}}
"infinite" for infinite technologies, otherwise uint.
 
{{Prototype property|prerequisites|[[Types/table|table]] of [[Types/string|string]]|optional=true}}
List of technologies needed to be researched before this one can be researched.
  prerequisites = {"explosives", "military-2"}
 
{{Prototype property|effects|[[Types/table|table]] of [[Types/ModifierPrototype]]|optional=true}}
List of effects of the technology (applied when the technology is researched).
 
<syntaxhighlight lang="lua">
{
  {
    type  = "unlock-recipe",
    recipe = "land-mine"
  }
}
</syntaxhighlight>

Latest revision as of 14:33, 25 October 2024

The prototype docs have moved to a new website with an improved format. This documentation page can now be found here: https://lua-api.factorio.com/latest/prototypes/TechnologyPrototype.html

This wiki page is no longer updated and will be removed at some point in the future, so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback on the forums.