Exemplo n.º 1
0
 public BuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster)
 {
     Configuration = newConfiguration;
     Controller    = newController;
     BuffCaster    = caster;
     BuffDiff      = 0;
 }
 public CurrentHealthBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
Exemplo n.º 3
0
 public ReadinessBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
 public SkillDropBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
Exemplo n.º 5
0
 public MoveSpeedBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
Exemplo n.º 6
0
 public RetaliateBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
     Continuous = true;
 }
Exemplo n.º 7
0
 public ExperienceBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
 public DelayedReviveBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
 }
 public FlatResistanceBuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
     m_GotLock = false;
 }
Exemplo n.º 10
0
 public TauntDebuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
     Configuration.IsDebuff = true;
 }
Exemplo n.º 11
0
 public StunDebuffByte(BuffByteConfig newConfiguration, BuffActive newController, BattleNPC caster) :
     base(newConfiguration, newController, caster)
 {
     m_AlreadyAppliedStun   = false;
     Configuration.IsDebuff = true;
 }