Exemple #1
0
 public DistanceTravelledRequirement(TripleThunderAttackContext GlobalContext)
     : base(Name, GlobalContext)
 {
     IsInit            = false;
     _DistanceToTravel = 0d;
     _MaxExecutions    = 1;
     _Delay            = 0d;
 }
 public TimeAliveRequirement(TripleThunderAttackContext GlobalContext)
     : base(Name, GlobalContext)
 {
     IsInit         = false;
     _TimeToWait    = 0d;
     _MaxExecutions = 1;
     _Delay         = 0d;
 }
Exemple #3
0
 private TripleThunderAttackParams(TripleThunderAttackContext GlobalContext, TripleThunderAttackContext LocalContext, SharedProjectileParams SharedParams)
     : base(GlobalContext, LocalContext, SharedParams)
 {
     this.GlobalContext = GlobalContext;
     this.LocalContext  = LocalContext;
 }
Exemple #4
0
 public TripleThunderAttackParams(TripleThunderAttackContext GlobalContext)
     : this(GlobalContext, new TripleThunderAttackContext(), new SharedProjectileParams())
 {
 }
Exemple #5
0
 public AttackTargetType(string TargetType, TripleThunderAttackContext GlobalContext)
     : base(TargetType)
 {
     this.GlobalContext = GlobalContext;
 }
Exemple #6
0
 public TripleThunderAttackRequirement(string EffectTypeName, TripleThunderAttackContext GlobalContext)
     : base(EffectTypeName)
 {
     this.GlobalContext = GlobalContext;
 }
Exemple #7
0
 public OnGroundCollisionRequirement(TripleThunderAttackContext GlobalContext)
     : base(OnGroundCollisionAttackName, GlobalContext)
 {
 }
Exemple #8
0
 public SelfAttackTargetType(TripleThunderAttackContext GlobalContext)
     : base(Name, GlobalContext)
 {
 }