Prototype/Tile: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
m (→‎minable: nil is not a default)
No edit summary
(19 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Basics ==
{{Prototype parent|PrototypeBase}}
Extends [[Prototype]].
A [[tile]]. Only 255 instances of this prototype may be defined.
 
{{Prototype TOC|tile}}
 
== Mandatory properties ==
== Mandatory properties ==
Inherits all properties from [[Prototype]].
Inherits all properties from [[PrototypeBase]].
 
=== collision_mask ===
'''Type''': [[Types/CollisionMask]]


=== layer ===
{{Prototype property|collision_mask|[[Types/CollisionMask|CollisionMask]]}}
'''Type''': [[Types/uint8]]


{{Prototype property|layer|[[Types/uint8|uint8]]}}
Specifies transition drawing priority.
Specifies transition drawing priority.


=== variants ===
{{Prototype property|variants|[[Types/TileTransitions|TileTransitions]]}}
'''Type''': [[Types/Transitions]]
Graphics for this tile. This has extra properties besides the properties from [[Types/TileTransitions|TileTransitions]]:
 
Graphics for this tile. This has extra properties besides the properties from [[Types/Transitions]]:
 
==== main ====
'''Type''': [[Types/table]] of [[Types/Animation]]
 
Mandatory. Array of [[Types/Animation]]s with the following extra properties:
 
===== size =====
: '''Type''': [[Types/uint32]]
 
: Mandatory. Only powers of 2 from 1 to 128 can be used. Square size of the tile arrangement this animation is used for. Used to calculate the <code>width</code> and <code>height</code> of the animation which cannot be set directly. (width or height) = size * 32 / scale.
 
===== probability =====
: '''Type''': [[Types/double]]
 
: '''Default''': 1
 
: Optional. Probability of 1x1 (size = 1) version of tile must be 1.
 
===== weights =====
: '''Type''': [[Types/table]] of [[Types/double]]
 
: Optional. Array of [[Types/double]].
 
==== material_background ====
'''Type''': [[Types/Animation]]
 
Optional. Width and height are given by the game, setting them will not have an effect. Width and height are calculated from the expected size (32) and the scale. So, for HR tiles at a size of 64x64, the scale needs to be 0.5.


=== walking_sound ===
* main - [[Types/table|table]] of [[Types/TileSprite|TileSprite]] - Mandatory. Array of [[Types/TileSprite|TileSprite]]s with the following extra properties:
'''Type''': [[Types/Sound]]
** size - [[Types/uint32|uint32]] - Mandatory. - Only powers of 2 from 1 to 128 can be used. Square size of the tile arrangement this animation is used for. Used to calculate the <code>width</code> and <code>height</code> of the animation which cannot be set directly. (width or height) = size * 32 / scale.
** probability - [[Types/double|double]] - Optional. - Default: 1.0 - Probability of 1x1 (size = 1) version of tile must be 1.
** weights - [[Types/table|table]] of [[Types/double|double]] - Optional. - Array of [[Types/double|double]].
* material_background - [[Types/TileSprite|TileSprite]] - Optional. Width and height are given by the game, setting them will not have an effect. Width and height are calculated from the expected size (32) and the scale. So, for HR tiles at a size of 64x64, the scale needs to be 0.5.


=== map_color ===
{{Prototype property|map_color|[[Types/Color|Color]]}}
'''Type''': [[Types/Color]]


=== ageing ===
{{Prototype property|pollution_absorption_per_second|[[Types/double|double]]}}
'''Type''': [[Types/double]]
Emissions absorbed per second by this tile. Use a negative value if pollution is created instead of removed.
 
Emissions per tick. Use negative value if pollution is consumed/removed instead of produced.


== Optional properties ==
== Optional properties ==


=== transition_overlay_layer_offset ===
{{Prototype property|transition_overlay_layer_offset|[[Types/uint8|uint8]]|0|optional=true}}
'''Type''': [[Types/uint8]]


'''Default''': 0
{{Prototype property|layer_group|[[Types/string|string]]|"water" if <code>draw_in_water_layer</code> is true, else "ground"|optional=true}}
One of "zero", "water", "water-overlay", "ground" and "top".


=== draw_in_water_layer ===
{{Prototype property|draw_in_water_layer|[[Types/bool|bool]]|false|optional=true}}
'''Type''': [[Types/bool]]
Used only for the <code>layer_group</code> default, see above.
 
'''Default''': false
 
=== transition_merges_with_tile ===
'''Type''': [[Types/string]]


{{Prototype property|transition_merges_with_tile|[[Types/string|string]]|optional=true}}
Name of a tile.
Name of a tile.


=== build_sound ===
{{Prototype property|effect_color|[[Types/Color|Color]]|<nowiki>{r=1, g=1, b=1, a=1} (white)</nowiki>|optional=true}}
'''Type''': [[Types/Sound]]


=== mined_sound ===
{{Prototype property|tint|[[Types/Color|Color]]|<nowiki>{r=1, g=1, b=1, a=1} (white)</nowiki>|optional=true}}
'''Type''': [[Types/Sound]]


=== walking_speed_modifier ===
{{Prototype property|walking_sound|[[Types/Sound|Sound]]|optional=true}}
'''Type''': [[Types/double]]


'''Default''': 1
{{Prototype property|build_sound|[[Types/table|table]]|optional=true}}
Either one [[Types/Sound|Sound]] or a table with the following optional key/value pairs:
* small - [[Types/Sound|Sound]]
* medium - [[Types/Sound|Sound]]
* large - [[Types/Sound|Sound]]


=== vehicle_friction_modifier ===
If the [[Types/Sound|Sound]] is provided directly, it is loaded as the "small" build sound.
'''Type''': [[Types/double]]


'''Default''': 1
{{Prototype property|mined_sound|[[Types/Sound|Sound]]|optional=true}}


=== decorative_removal_probability ===
{{Prototype property|walking_speed_modifier|[[Types/double|double]]|1|optional=true}}
'''Type''': [[Types/float]]


'''Default''': 1.0
{{Prototype property|vehicle_friction_modifier|[[Types/double|double]]|1|optional=true}}


=== allowed_neighbors ===
{{Prototype property|decorative_removal_probability|[[Types/float|float]]|0.0|optional=true}}
'''Type''': [[Types/table]] of [[Types/string]]
 
'''Default''': All tiles


{{Prototype property|allowed_neighbors|[[Types/table|table]] of [[Types/string|string]]|All tiles|optional=true}}
Array of tile names that are allowed next to this one.
Array of tile names that are allowed next to this one.


=== needs_correction ===
{{Prototype property|needs_correction|[[Types/bool|bool]]|false|optional=true}}
'''Type''': [[Types/bool]]


'''Default''': false
{{Prototype property|minable|[[Types/MinableProperties|MinableProperties]]|optional=true}}
If you want the tile to not be mineable, don't specify the minable property. Only non-mineable tiles become hidden tiles when placing mineable tiles on top of them.


=== minable ===
{{Prototype property|next_direction|[[Types/string|string]]|optional=true}}
'''Type''': [[Types/MinableProperties]]
Name of a tile.


If you want the tile to not be minable, don't specify the minable property.
{{Prototype property|can_be_part_of_blueprint|[[Types/bool|bool]]|true|optional=true}}


=== next_direction ===
{{Prototype property|effect|[[Types/string|string]]|optional=true}}
'''Type''': [[Types/string]]
Name of a [[Prototype/TileEffect]].


Name of a tile.
{{Prototype property|trigger_effect|[[Types/TriggerEffect|TriggerEffect]]|optional=true}}
Called by [[Types/InvokeTileEffectTriggerEffectItem|InvokeTileEffectTriggerEffectItem]].
 
{{Prototype property|scorch_mark_color|[[Types/Color|Color]]|optional=true}}


=== can_be_part_of_blueprint ===
{{Prototype property|icons, icon, icon_size (IconSpecification)|[[Types/IconSpecification|IconSpecification]]|optional=true}}
'''Type''': [[Types/bool]]
If this is not set, the <code>material_background</code> in <code>variants</code> is used as the icon.


'''Default''': true
{{Prototype property|effect_color_secondary|[[Types/Color|Color]]|optional=true}}
Used by the [[pollution]] shader.


=== transitions ===
{{Prototype property|effect_is_opaque|[[Types/bool|bool]]|<code>effect_color</code> alpha >= 1|optional=true}}
'''Type''': [[Types/table]] of [[Types/Transitions]]


Extra transitions. Array of [[Types/Transitions]]. Each [[Types/Transitions]] needs the extra mandatory property <code>to_tiles</code>, which is a [[Types/string]] which is the name of a tile.
{{Prototype property|transitions|[[Types/table|table]] of [[Types/TileTransitions|TileTransitions]]|optional=true}}
Extra transitions. Array of [[Types/TileTransitions|TileTransitions]]. Each [[Types/TileTransitions|TileTransitions]] needs the extra mandatory property <code>to_tiles</code>, which is a [[Types/string|string]] which is the name of a tile. Furthermore, each [[Types/TileTransitions|TileTransitions]] needs the extra mandatory property <code>transition_group</code> which is a [[Types/uint8|uint8]].


=== transitions_between_transitions ===
{{Prototype property|transitions_between_transitions|[[Types/table|table]] of [[Types/TileTransitions|TileTransitions]]|optional=true}}
'''Type''': [[Types/table]] of [[Types/Transitions]]
Array of [[Types/TileTransitions|TileTransitions]]. Each [[Types/TileTransitions|TileTransitions]] needs the extra mandatory properties <code>transition_group1</code> and<code>transition_group2</code> , which are of [[Types/uint8|uint8]].


Array of [[Types/Transitions]]. Each [[Types/Transitions]] needs the extra mandatory property <code>to_tiles</code>, which is a [[Types/string]] which is the name of a tile.
{{Prototype property|autoplace|[[Types/AutoplaceSpecification|AutoplaceSpecification]]|optional=true}}


=== autoplace ===
{{Prototype property|placeable_by|[[Types/ItemToPlace|ItemToPlace]] or [[Types/table|table]] of [[Types/ItemToPlace|ItemToPlace]]|optional=true}}
'''Type''': [[Types/AutoplaceSpecification]]

Revision as of 18:14, 11 August 2021

Prototype definitions » PrototypeBase » Prototype/Tile


A tile. Only 255 instances of this prototype may be defined.


Prototype/Tile — tile
collision_mask::CollisionMask
layer::uint8
map_color::Color
pollution_absorption_per_second::double
variants::TileTransitions
allowed_neighbors::table of string (optional)
autoplace::AutoplaceSpecification (optional)
build_sound::table (optional)
can_be_part_of_blueprint::bool (optional)
check_collision_with_entities::bool (optional)
decorative_removal_probability::float (optional)
draw_in_water_layer::bool (optional)
effect::string (optional)
effect_color::Color (optional)
effect_color_secondary::Color (optional)
effect_is_opaque::bool (optional)
icons, icon, icon_size (IconSpecification)::IconSpecification (optional)
layer_group::string (optional)
minable::MinableProperties (optional)
mined_sound::Sound (optional)
needs_correction::bool (optional)
next_direction::string (optional)
placeable_by::ItemToPlace or table of ItemToPlace (optional)
scorch_mark_color::Color (optional)
tint::Color (optional)
transition_merges_with_tile::string (optional)
transition_overlay_layer_offset::uint8 (optional)
transitions::table of TileTransitions (optional)
transitions_between_transitions::table of TileTransitions (optional)
trigger_effect::TriggerEffect (optional)
vehicle_friction_modifier::double (optional)
walking_sound::Sound (optional)
walking_speed_modifier::double (optional)
Inherited from PrototypeBase
name::string
type::string
localised_description::LocalisedString (optional)
localised_name::LocalisedString (optional)
order::Order (optional)

Mandatory properties

Inherits all properties from PrototypeBase.

collision_mask

Type: CollisionMask

layer

Type: uint8
Specifies transition drawing priority.

variants

Type: TileTransitions
Graphics for this tile. This has extra properties besides the properties from TileTransitions:

  • main - table of TileSprite - Mandatory. Array of TileSprites with the following extra properties:
    • size - uint32 - Mandatory. - Only powers of 2 from 1 to 128 can be used. Square size of the tile arrangement this animation is used for. Used to calculate the width and height of the animation which cannot be set directly. (width or height) = size * 32 / scale.
    • probability - double - Optional. - Default: 1.0 - Probability of 1x1 (size = 1) version of tile must be 1.
    • weights - table of double - Optional. - Array of double.
  • material_background - TileSprite - Optional. Width and height are given by the game, setting them will not have an effect. Width and height are calculated from the expected size (32) and the scale. So, for HR tiles at a size of 64x64, the scale needs to be 0.5.

map_color

Type: Color

pollution_absorption_per_second

Type: double
Emissions absorbed per second by this tile. Use a negative value if pollution is created instead of removed.

Optional properties

transition_overlay_layer_offset

Type: uint8
Default: 0

layer_group

Type: string
Default: "water" if draw_in_water_layer is true, else "ground"
One of "zero", "water", "water-overlay", "ground" and "top".

draw_in_water_layer

Type: bool
Default: false
Used only for the layer_group default, see above.

transition_merges_with_tile

Type: string
Name of a tile.

effect_color

Type: Color
Default: {r=1, g=1, b=1, a=1} (white)

tint

Type: Color
Default: {r=1, g=1, b=1, a=1} (white)

walking_sound

Type: Sound

build_sound

Type: table
Either one Sound or a table with the following optional key/value pairs:

If the Sound is provided directly, it is loaded as the "small" build sound.

mined_sound

Type: Sound

walking_speed_modifier

Type: double
Default: 1

vehicle_friction_modifier

Type: double
Default: 1

decorative_removal_probability

Type: float
Default: 0.0

allowed_neighbors

Type: table of string
Default: All tiles
Array of tile names that are allowed next to this one.

needs_correction

Type: bool
Default: false

minable

Type: MinableProperties
If you want the tile to not be mineable, don't specify the minable property. Only non-mineable tiles become hidden tiles when placing mineable tiles on top of them.

next_direction

Type: string
Name of a tile.

can_be_part_of_blueprint

Type: bool
Default: true

effect

Type: string
Name of a Prototype/TileEffect.

trigger_effect

Type: TriggerEffect
Called by InvokeTileEffectTriggerEffectItem.

scorch_mark_color

Type: Color

icons, icon, icon_size (IconSpecification)

Type: IconSpecification
If this is not set, the material_background in variants is used as the icon.

effect_color_secondary

Type: Color
Used by the pollution shader.

effect_is_opaque

Type: bool

transitions

Type: table of TileTransitions
Extra transitions. Array of TileTransitions. Each TileTransitions needs the extra mandatory property to_tiles, which is a string which is the name of a tile. Furthermore, each TileTransitions needs the extra mandatory property transition_group which is a uint8.

transitions_between_transitions

Type: table of TileTransitions
Array of TileTransitions. Each TileTransitions needs the extra mandatory properties transition_group1 andtransition_group2 , which are of uint8.

autoplace

Type: AutoplaceSpecification

placeable_by

Type: ItemToPlace or table of ItemToPlace