Types/AttackParameters: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(Removed old prototype docs)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
==Basics==
<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/types/AttackParameters.html https://lua-api.factorio.com/latest/types/AttackParameters.html]
Definition of combat actions performed by combat robots, units, turrets and weapons.


 
</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>
== Mandatory properties ==
=== type ===
'''Type''': [[Types/string]]
 
Specification of the type. Values are:
    "projectile"
    "beam"
 
===cooldown===
'''Type''': [[Types/int]]
 
Interval between consecutive attacks.
 
=== range ===
'''Type''': [[Types/double]]
 
Distance of attack. Overrides one defined in ammo.
 
== Semi-mandatory properties ==
Depending on actual type of entity the following might or might not be needed.
 
=== ammo_category ===
'''Type''': [[Prototype/AmmoCategory]]
 
Mandatory for [[Prototype/Gun]] and [[Prototype/AmmoTurret]].
Describes which ammo should be used in attack.
 
=== ammo_type ===
'''Type''': [[Types/AmmoType]]
 
Mandatory for [[Prototype/ElectricTurret]], [[Prototype/CombatRobot]] and [[Prototype/Unit]].
Defines the ammo entities of those types use when attacking.  
 
== Optional properties ==
=== projectile_center ===
'''Type''': [[Types/Position]]
 
=== projectile_creation_distance ===
'''Type''': [[Types/double]]
 
Distance from the attacking entity, at which effects of ammo are applied (source_effects).
 
=== damage_modifier ===
'''Type''': [[Types/double]]
 
Provides damage multiplier for[[Prototype/Gun]] and [[Prototype/AmmoTurret]].
 
=== sound ===
'''Type''': [[Lua/table]]
 
Sound the entity emits when it attacks.
Table fields:
Filename [[Types/FileName]]
volume [[Types/double]]

Latest revision as of 14:32, 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/types/AttackParameters.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.