Пример #1
0
 public EffectRec(int name, EffectParams reqParams, EffectFlags flags,
                  int frameCount, string gfx, string sfx, MNXRange duration,
                  MNXRange magnitude, int mpReq, int levReq,
                  AbilityID resistance, MNXRange damage)
 {
     NameRS     = name;
     ReqParams  = reqParams;
     Flags      = flags;
     FrameCount = (sbyte)frameCount;
     GFX        = gfx;
     SFX        = sfx;
     Duration   = duration;
     Magnitude  = magnitude;
     MPReq      = (short)mpReq;
     LevReq     = (short)levReq;
     Resistance = resistance;
     Damage     = damage;
     ImageIndex = -1;
 }
Пример #2
0
 public EffectExt()
 {
     ReqParams  = new EffectParams();
     fHasParams = new EffectParams();
 }