Click or drag to resize
AttackCompletedEventArgs Constructor
Initializes a new set of event arguments that can be used in an event handler to notify the creature that an attack has been completed.

Namespace: Terrarium.Sdk.Classes.Creature.Events
Assembly: Terrarium.Sdk (in Terrarium.Sdk.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
public AttackCompletedEventArgs(
	int actionID,
	Action action,
	bool killed,
	bool escaped,
	int inflictedDamage
)

Parameters

actionID
Type: SystemInt32
The ID of the action.
action
Type: Terrarium.Sdk.Classes.ActionsAction
The action being completed.
killed
Type: SystemBoolean
Whether the target was killed.
escaped
Type: SystemBoolean
Whether the target escaped.
inflictedDamage
Type: SystemInt32
How much damage was inflicted.
See Also