C# Class Aura.Channel.Skills.Action.DiceTossing

Inheritance: ISkillHandler, IPreparable, IReadyable, IUseable, ICompletable, ICancelable
Datei anzeigen Open project: aura-project/aura

Public Methods

Method Description
Cancel ( Creature creature, Skill skill ) : void

Cancels skill, Cancels Motion and returns the character to idle position.

Complete ( Creature creature, Skill skill, Packet packet ) : void

Completes skill

Prepare ( Creature creature, Skill skill, Packet packet ) : bool

Prepares skill, fails if no Dice is found.

Ready ( Creature creature, Skill skill, Packet packet ) : bool

Readies the skill.

Use ( Creature creature, Skill skill, Packet packet ) : void

Uses skill, the actual usage is in Complete.

Method Details

Cancel() public method

Cancels skill, Cancels Motion and returns the character to idle position.
public Cancel ( Creature creature, Skill skill ) : void
creature Aura.Channel.World.Entities.Creature
skill Skill
return void

Complete() public method

Completes skill
public Complete ( Creature creature, Skill skill, Packet packet ) : void
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Packet
return void

Prepare() public method

Prepares skill, fails if no Dice is found.
public Prepare ( Creature creature, Skill skill, Packet packet ) : bool
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Packet
return bool

Ready() public method

Readies the skill.
public Ready ( Creature creature, Skill skill, Packet packet ) : bool
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Packet
return bool

Use() public method

Uses skill, the actual usage is in Complete.
public Use ( Creature creature, Skill skill, Packet packet ) : void
creature Aura.Channel.World.Entities.Creature
skill Skill
packet Packet
return void