XmdsBuff_Shield_HitLaunchSpell.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using CommonAI.Zone.Instance;
  2. using CommonAI.Zone.Formula;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using XmdsCommon.Plugin;
  8. using XmdsCommonServer.Plugin;
  9. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  10. using CommonAI.Zone;
  11. using XmdsCommonSkill.Plugin.Interface;
  12. using static XmdsCommonSkill.Plugin.Interface.ComSpellTemplate;
  13. using CommonAI.Data;
  14. using CommonAI.Zone.Helper;
  15. using CommonLang;
  16. using static CommonAI.Zone.Instance.InstanceUnit;
  17. namespace XmdsCommonSkill.Plugin.Buffs
  18. {
  19. /// <summary>
  20. /// FileName: XmdsBuff_Shield_AbsorbDamage.cs
  21. /// Author: Alex.Yu
  22. /// Corporation:...
  23. /// Description: 护盾-受击释放法术
  24. /// DateTime: 2015/6/8 21:05:08
  25. /// </summary>
  26. public class XmdsBuff_Shield_HitLaunchSpell : XmdsBuff_Shield_AbsorbDamage
  27. {
  28. // 击盾,释放法术
  29. public LaunchSpell hitLaunchSpellInfo;
  30. // 击盾,加buff
  31. public int hitAddBuffID;
  32. //shabiyang
  33. public int hitAddBuffLayers;
  34. public override int GetAbilityID()
  35. {
  36. return (int)XmdsCommon.Plugin.XmdsBuffProperties.XmdsBuffAbility.SHIELD_HitLaunchSpell;
  37. }
  38. public override void CopyTo(UnitBuff other)
  39. {
  40. var ret = other as XmdsBuff_Shield_HitLaunchSpell;
  41. ret.hitLaunchSpellInfo = (LaunchSpell)this.hitLaunchSpellInfo.Clone();
  42. ret.hitAddBuffID = this.hitAddBuffID;
  43. ret.hitAddBuffLayers = this.hitAddBuffLayers;
  44. base.CopyTo(other);
  45. }
  46. protected override void OnAbsortDamage(XmdsVirtual hitted, XmdsVirtual attacker, AttackSource source)
  47. {
  48. hitted.mUnit.Parent.unitLaunchSpell(XmdsSkillType.cardSkill, hitted.mUnit, this.hitLaunchSpellInfo, attacker.mUnit.X, attacker.mUnit.Y, attacker.mUnit.ID);
  49. if(hitAddBuffID > 0)
  50. {
  51. hitted.mUnit.AddBuff(hitAddBuffID, hitted.mUnit, 0, false, false, false, 0, hitAddBuffLayers);
  52. }
  53. }
  54. }
  55. }