Exemplo n.º 1
0
 public MoveAction(BattleEntity user, string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actioncommand, DamageData damageInfo)
     : this(user, name, moveProperties, moveSequence, actioncommand)
 {
     DamageInfo = damageInfo;
 }
Exemplo n.º 2
0
 public MoveAction(BattleEntity user, string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, HealingData healingInfo)
     : this(user, name, moveProperties, moveSequence, actionCommand)
 {
     HealingInfo = HealingInfo;
 }
Exemplo n.º 3
0
 public MoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, HealingData healingInfo) : this(name, moveProperties, moveSequence, actionCommand)
 {
     HealingInfo = HealingInfo;
 }
Exemplo n.º 4
0
 public MoveAction(BattleEntity user, string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actioncommand)
     : this(user, name, moveProperties, moveSequence)
 {
     actionCommand = actioncommand;
     actionCommand.SetHandler(MoveSequence);
 }
 public SpecialMoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, DamageData damageInfo) : base(name, moveProperties, moveSequence, actionCommand, damageInfo)
 {
 }
Exemplo n.º 6
0
 public MoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actioncommand) : this(name, moveProperties, moveSequence)
 {
     actionCommand = actioncommand;
     actionCommand.SetHandler(MoveSequence);
 }
 public SpecialMoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, HealingData healingData) : base(name, moveProperties, moveSequence, actionCommand, healingData)
 {
 }
 public WaitForCommandSeqAction(double fallbackTime, ActionCommand command, bool commandEnabled) : base(fallbackTime)
 {
     Command        = command;
     CommandEnabled = commandEnabled;
 }
 public SpecialMoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, DamageData damageInfo, StarPowerTypes spType, float spCost) : base(name, moveProperties, moveSequence, actionCommand, damageInfo)
 {
     SPType = spType;
     SPCost = spCost;
 }
 public SpecialMoveAction(string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, HealingData healingData, StarPowerTypes spType, float spCost) : base(name, moveProperties, moveSequence, actionCommand, healingData)
 {
     SPType = spType;
     SPCost = spCost;
 }
Exemplo n.º 11
0
 public SpecialMoveAction(BattleEntity user, string name, MoveActionData moveProperties, Sequence moveSequence, ActionCommand actionCommand, HealingData healingData)
     : base(user, name, moveProperties, moveSequence, actionCommand, healingData)
 {
 }