XmdsBuff_Nothingness.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using CommonAI.Zone;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using XmdsCommon.Plugin;
  7. using XmdsCommonServer.Plugin;
  8. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  9. namespace XmdsCommonSkill.Plugin.Buffs
  10. {
  11. /// <summary>
  12. /// 虚无.
  13. /// </summary>
  14. public class XmdsBuff_Nothingness : XmdsBuffBase
  15. {
  16. public enum NothingnessType : byte
  17. {
  18. None,
  19. NothingnessIgnoreSkill,//无视技能.
  20. NothingnessIgnoreBuff, //无视BUFF.
  21. NothingnessIgnoreAll, //无所所有.
  22. }
  23. public NothingnessType ChangeType = NothingnessType.None;
  24. public override int GetAbilityID()
  25. {
  26. return (int)XmdsBuffProperties.XmdsBuffAbility.Nothingness;
  27. }
  28. public override void CopyTo(UnitBuff other)
  29. {
  30. var ret = other as XmdsBuff_Nothingness;
  31. ret.ChangeType = this.ChangeType;
  32. base.CopyTo(other);
  33. }
  34. protected override void OnBindTemplate(ref BuffTemplate buffTemplate)
  35. {
  36. buffTemplate.IsInvisible = true;
  37. }
  38. protected override void OnBuffBegin(XmdsCommonServer.Plugin.XmdsVirtual hitter, XmdsCommonServer.Plugin.XmdsVirtual attacker, CommonAI.Zone.Instance.InstanceUnit.BuffState state)
  39. {
  40. //通过编辑器设置无敌效果.
  41. XmdsVirtual.FormatLog("单位 {0} 虚无开始", hitter.mInfo.Name);
  42. ChangeUnitStatus(hitter, true);
  43. }
  44. protected override void OnBuffEnd(XmdsCommonServer.Plugin.XmdsVirtual hitter, CommonAI.Zone.Instance.InstanceUnit.BuffState state, bool replace)
  45. {
  46. XmdsVirtual.FormatLog("单位 {0} 虚无解除", hitter.mInfo.Name);
  47. ChangeUnitStatus(hitter, false);
  48. }
  49. private void ChangeUnitStatus(XmdsVirtual hitter, bool flag)
  50. {
  51. switch (ChangeType)
  52. {
  53. case NothingnessType.NothingnessIgnoreAll:
  54. hitter.NothingnessIgnoreAll = flag;
  55. break;
  56. case NothingnessType.NothingnessIgnoreBuff:
  57. hitter.NothingnessIgnoreBuff = flag;
  58. break;
  59. case NothingnessType.NothingnessIgnoreSkill:
  60. hitter.NothingnessIgnoreSkill = flag;
  61. break;
  62. default: break;
  63. }
  64. }
  65. }
  66. }