Prototype definitions: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(mining tool is for migration purposes only)
m (→‎Prototypes: name fix)
Line 138: Line 138:
:** [[Prototype/FluidStream]] '''stream'''
:** [[Prototype/FluidStream]] '''stream'''
:** [[Prototype/FlyingText]] '''flying-text'''
:** [[Prototype/FlyingText]] '''flying-text'''
:** [[Prototype/HighlightBox]] '''highlight-box'''
:** [[Prototype/HighlightBoxEntity]] '''highlight-box'''
:** [[Prototype/ItemEntity]] '''item-entity'''
:** [[Prototype/ItemEntity]] '''item-entity'''
:** [[Prototype/ItemRequestProxy]] '''item-request-proxy'''
:** [[Prototype/ItemRequestProxy]] '''item-request-proxy'''

Revision as of 11:49, 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