Prototype definitions: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(The settings are not part of the data stage/prototypes)
(updated to 0.17)
Line 1: Line 1:
This is a list of all available prototype types in the game. Each point lists the link to the prototype page which is named after the class in the code, and the string that is used as the type name. Prototypes that have the type name <code><abstract></code> cannot be directly created, they simple exist as classes that multiple prototypes can inherit properties from. '''This list and all existing prototype pages are up to date as of version 0.16. Pages with the Types/ prefix are not guaranteed to be up to date.'''
This is a list of all available prototype types in the game. Each point lists the link to the prototype page which is named after the class in the code, and the string that is used as the type name. Prototypes that have the type name <code><abstract></code> cannot be directly created, they simple exist as classes that multiple prototypes can inherit properties from. '''This list is updated to 0.17. All existing prototype pages are either for 0.17 or 0.16, please check the individual page history for information on when they were last updated. Pages with the Types/ prefix are not guaranteed to be up to date.'''


General info for prototype creation:
General info for prototype creation:
Line 5: Line 5:
* Only the properties listed on the page of a prototype, and the properties the prototype inherits, are recognized by the game. Any additional code will be discarded at the end of the data phase.
* Only the properties listed on the page of a prototype, and the properties the prototype inherits, are recognized by the game. Any additional code will be discarded at the end of the data phase.
== Prototypes ==
== Prototypes ==
* [[Prototype/AmbientSound]] '''ambient-sound'''
* [[Prototype/Animation]] '''animation'''
* [[Prototype/EditorController]] '''editor-controller'''
* [[Prototype/Font]] '''font'''
* [[Prototype/Font]] '''font'''
* [[Prototype/GodController]] '''god-controller'''
* [[Prototype/GodController]] '''god-controller'''
Line 10: Line 13:
* [[Prototype/MapGenPresets]] '''map-gen-presets'''
* [[Prototype/MapGenPresets]] '''map-gen-presets'''
* [[Prototype/MapSettings]] '''map-settings'''
* [[Prototype/MapSettings]] '''map-settings'''
* [[Prototype/MouseCursor]] '''mouse-cursor'''
* [[Prototype/Sound]] '''sound'''
* [[Prototype/Sound]] '''sound'''
* [[Prototype/SpectatorController]] '''spectator-controller'''
* [[Prototype/Sprite]] '''sprite'''
* [[Prototype/Sprite]] '''sprite'''
* [[Prototype/Tutorial]] '''tutorial'''
* [[Prototype/Tutorial]] '''tutorial'''
Line 16: Line 21:
* [[Prototype/UtilitySounds]] '''utility-sounds'''
* [[Prototype/UtilitySounds]] '''utility-sounds'''
* [[Prototype/UtilitySprites]] '''utility-sprites'''
* [[Prototype/UtilitySprites]] '''utility-sprites'''
* [[Prototype/WindSound]] '''wind-sound'''
* [[Prototype]] <abstract>
* [[Prototype]] <abstract>
<div class="factorio-list">
<div class="factorio-list">
Line 35: Line 41:
:** [[Prototype/ResearchAchievement]] '''research-achievement'''
:** [[Prototype/ResearchAchievement]] '''research-achievement'''
:** [[Prototype/TrainPathAchievement]] '''train-path-achievement'''
:** [[Prototype/TrainPathAchievement]] '''train-path-achievement'''
:* [[Prototype/AmbientSound]] '''ambient-sound'''
:* [[Prototype/AmmoCategory]] '''ammo-category'''
:* [[Prototype/AmmoCategory]] '''ammo-category'''
:* [[Prototype/AutoplaceControl]] '''autoplace-control'''
:* [[Prototype/AutoplaceControl]] '''autoplace-control'''
Line 78: Line 83:
:*** [[Prototype/Gate]] '''gate'''
:*** [[Prototype/Gate]] '''gate'''
:*** [[Prototype/Generator]] '''generator'''
:*** [[Prototype/Generator]] '''generator'''
:*** [[Prototype/HeatInterface]] '''heat-interface'''
:*** [[Prototype/HeatPipe]] '''heat-pipe'''
:*** [[Prototype/HeatPipe]] '''heat-pipe'''
:*** [[Prototype/Inserter]] '''inserter'''
:*** [[Prototype/Inserter]] '''inserter'''
Line 87: Line 93:
:*** [[Prototype/OffshorePump]] '''offshore-pump'''
:*** [[Prototype/OffshorePump]] '''offshore-pump'''
:*** [[Prototype/Pipe]] '''pipe'''
:*** [[Prototype/Pipe]] '''pipe'''
:**** [[Prototype/InfinityPipe]] '''infinity-pipe'''
:*** [[Prototype/PipeToGround]] '''pipe-to-ground'''
:*** [[Prototype/PipeToGround]] '''pipe-to-ground'''
:*** [[Prototype/PlayerPort]] '''player-port'''
:*** [[Prototype/PlayerPort]] '''player-port'''
Line 131: Line 138:
:** [[Prototype/FluidStream]] '''stream'''
:** [[Prototype/FluidStream]] '''stream'''
:** [[Prototype/FlyingText]] '''flying-text'''
:** [[Prototype/FlyingText]] '''flying-text'''
:** [[Prototype/HighlightBox]] '''highlight-box'''
:** [[Prototype/ItemEntity]] '''item-entity'''
:** [[Prototype/ItemEntity]] '''item-entity'''
:** [[Prototype/ItemRequestProxy]] '''item-request-proxy'''
:** [[Prototype/ItemRequestProxy]] '''item-request-proxy'''
Line 145: Line 153:
:*** [[Prototype/SimpleSmoke]] '''smoke'''
:*** [[Prototype/SimpleSmoke]] '''smoke'''
:*** [[Prototype/SmokeWithTrigger]] '''smoke-with-trigger'''
:*** [[Prototype/SmokeWithTrigger]] '''smoke-with-trigger'''
:** [[Prototype/SpeechBubble]] '''speech-bubble'''
:** [[Prototype/Sticker]] '''sticker'''
:** [[Prototype/Sticker]] '''sticker'''
:** [[Prototype/TileGhost]] '''tile-ghost'''
:** [[Prototype/TileGhost]] '''tile-ghost'''
Line 172: Line 181:
:*** [[Prototype/SelectionTool]] '''selection-tool'''
:*** [[Prototype/SelectionTool]] '''selection-tool'''
:**** [[Prototype/BlueprintItem]] '''blueprint'''
:**** [[Prototype/BlueprintItem]] '''blueprint'''
:**** [[Prototype/CopyPasteTool]] '''copy-paste-tool'''
:**** [[Prototype/DeconstructionItem]] '''deconstruction-item'''
:**** [[Prototype/DeconstructionItem]] '''deconstruction-item'''
:**** [[Prototype/UpgradeItem]] '''upgrade-item'''
:** [[Prototype/Module]] '''module'''
:** [[Prototype/Module]] '''module'''
:** [[Prototype/RailPlanner]] '''rail-planner'''
:** [[Prototype/RailPlanner]] '''rail-planner'''
Line 189: Line 200:
:* [[Prototype/RecipeCategory]] '''recipe-category'''
:* [[Prototype/RecipeCategory]] '''recipe-category'''
:* [[Prototype/ResourceCategory]] '''resource-category'''
:* [[Prototype/ResourceCategory]] '''resource-category'''
:* [[Prototype/Shortcut]] '''shortcut'''
:* [[Prototype/Technology]] '''technology'''
:* [[Prototype/Technology]] '''technology'''
:* [[Prototype/Tile]] '''tile'''
:* [[Prototype/Tile]] '''tile'''

Revision as of 10:54, 4 March 2019

This is a list of all available prototype types in the game. Each point lists the link to the prototype page which is named after the class in the code, and the string that is used as the type name. Prototypes that have the type name <abstract> cannot be directly created, they simple exist as classes that multiple prototypes can inherit properties from. This list is updated to 0.17. All existing prototype pages are either for 0.17 or 0.16, please check the individual page history for information on when they were last updated. Pages with the Types/ prefix are not guaranteed to be up to date.

General info for prototype creation:

  • Prototype objects are specified in the data phase: [1]
  • Only the properties listed on the page of a prototype, and the properties the prototype inherits, are recognized by the game. Any additional code will be discarded at the end of the data phase.

Prototypes