Prototype/Turret: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(Converted to SMW format)
(Removed old prototype docs)
Tag: Replaced
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Prototype parent|Prototype/EntityWithHealth}}
<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/TurretPrototype.html https://lua-api.factorio.com/latest/prototypes/TurretPrototype.html]
A turret that needs no extra ammunition. See the extensions for turrets that need some kind of ammunition.


{{Prototype TOC|turret}}
</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>
 
== Extensions ==
* [[Prototype/AmmoTurret]] '''ammo-turret'''
* [[Prototype/ElectricTurret]] '''electric-turret'''
* [[Prototype/FluidTurret]] '''fluid-turret'''
 
== Mandatory properties ==
This prototype inherits all the properties from [[Prototype/EntityWithHealth]].
 
{{Prototype property|attack_parameters|[[Types/AttackParameters|AttackParameters]]}}
Requires ammo_type in attack_parameters.  
 
{{Prototype property|call_for_help_radius|[[Types/double|double]]}}
 
== Optional properties ==
 
{{Prototype property|corpse|[[Types/string|string]]|optional=true}}
The name of an entity. Note that this overrides how EntityWithHealth loads the corpse, forcing it to be a string instead of an array of strings.
 
{{Prototype property|shoot_in_prepare_state|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|turret_base_has_direction|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|random_animation_offset|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|secondary_animation|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|attack_from_start_frame|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|allow_turning_when_starting_attack|[[Types/bool|bool]]|false|optional=true}}
 
{{Prototype property|base_picture_secondary_draw_order|[[Types/uint8|uint8]]|0|optional=true}}
 
{{Prototype property|gun_animation_secondary_draw_order|[[Types/uint8|uint8]]|0|optional=true}}
 
{{Prototype property|base_picture_render_layer|[[Types/RenderLayer|RenderLayer]]|"lower-object"|optional=true}}
 
{{Prototype property|gun_animation_render_layer|[[Types/RenderLayer|RenderLayer]]|"object"|optional=true}}
 
{{Prototype property|base_picture|[[Types/Animation4Way|Animation4Way]]|optional=true}}
 
{{Prototype property|folded_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|preparing_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|prepared_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|prepared_alternative_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|starting_attack_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|attacking_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|energy_glow_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|ending_attack_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|folding_animation|[[Types/RotatedAnimation4Way|RotatedAnimation4Way]]|optional=true}}
 
{{Prototype property|integration|[[Types/Sprite|Sprite]]|optional=true}}
 
{{Prototype property|glow_light_intensity|[[Types/float|float]]|0|optional=true}}
The intensity of light in the form of <code>energy_glow_animation</code> drawn on top of <code>energy_glow_animation</code>.
 
{{Prototype property|starting_attack_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|dying_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|preparing_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|folding_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|prepared_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|prepared_alternative_sound|[[Types/Sound|Sound]]|optional=true}}
 
{{Prototype property|rotation_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|preparing_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|folded_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|folded_speed_secondary|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepared_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepared_speed_secondary|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepared_alternative_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepared_alternative_speed_secondary|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepared_alternative_chance|[[Types/float|float]]|0|optional=true}}
 
{{Prototype property|starting_attack_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|attacking_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|ending_attack_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|folding_speed|[[Types/float|float]]|1|optional=true}}
 
{{Prototype property|prepare_range|[[Types/double|double]]|The range defined in the <code>attack_parameters</code>|optional=true}}
 
{{Prototype property|alert_when_attacking|[[Types/bool|bool]]|true|optional=true}}

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/TurretPrototype.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.