XmdsBuff_SwordShadow.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Instance;
  3. using System;
  4. using XmdsCommonServer.Plugin;
  5. using XmdsCommonServer.Plugin.XmdsSkillTemplate.DamageCalculator;
  6. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  7. using static CommonAI.Zone.Instance.InstanceUnit;
  8. namespace XmdsCommonSkill.Plugin.Buffs
  9. {
  10. //剑影强化模块类,因为buff只是挂一个标记而已,所以buff没有能力(普攻强化放在BuffState的扩展字段中)
  11. public class XmdsBuff_SwordShadow
  12. {
  13. public readonly static int BuffID = (int)XmdsBuffBase.XmdsBuffList.PASSIVE_FS_6_1;
  14. //剑影类型
  15. public enum SwordShadownType : ushort
  16. {
  17. NormalAtk = 0, // 默认普攻
  18. Normal = 1, // 默认剑影
  19. TalentLv1 = 2, // 剑气1层-剑影
  20. TalentLv2 = 3, // 剑气2层-剑影
  21. TalentLv3 = 4, // 剑气3层-剑影
  22. }
  23. private static void UpdateBuffExtData(ref BuffState buffState, SwordShadownType addType)
  24. {
  25. buffState.BuffExtData = buffState.BuffExtData * 10 + (int)addType;
  26. //只有五个剑影
  27. if (buffState.BuffExtData > 100000)
  28. {
  29. buffState.BuffExtData = buffState.BuffExtData % 100000;
  30. }
  31. }
  32. //释放技能增加剑影
  33. public static void LauncherSkillAddSwordShadow(XmdsVirtual launcher)
  34. {
  35. if (launcher == null)
  36. {
  37. return;
  38. }
  39. SwordShadownType addType = SwordShadownType.Normal;
  40. byte talentLv = launcher.GetPlayerCache().GetTalentLv();
  41. if (talentLv == 1)
  42. {
  43. addType = SwordShadownType.TalentLv1;
  44. }
  45. else if (talentLv == 2)
  46. {
  47. addType = SwordShadownType.TalentLv2;
  48. }
  49. else if (talentLv == 3)
  50. {
  51. addType = SwordShadownType.TalentLv3;
  52. }
  53. BuffState state = launcher.mUnit.GetBuffByID(BuffID);
  54. if(state == null)
  55. {
  56. launcher.mUnit.AddBuff(BuffID, launcher.mUnit, 0, false, false, false, (int)addType);
  57. }
  58. else
  59. {
  60. UpdateBuffExtData(ref state, addType);
  61. launcher.mUnit.AddBuff(BuffID, launcher.mUnit);
  62. }
  63. }
  64. //消耗剑影
  65. public static void LanucherNormalSkill(XmdsVirtual launcher, ref BuffState state)
  66. {
  67. int step = 0;
  68. int lockStep = GetShadowIndex(launcher, ref state, ref step);
  69. if(step > 0)
  70. {
  71. //使用了一层buff
  72. state.SetLayerLevel((byte)(state.OverlayLevel - 1));
  73. // state.OverlayLevel -= 1;
  74. state.BuffExtData = state.BuffExtData - step * lockStep;
  75. if (state.BuffExtData < 0)
  76. {
  77. state.BuffExtData = 0;
  78. }
  79. // 法师专属逻辑-释放剑影,增加剑气值
  80. launcher.Talent__Add(0);
  81. }
  82. }
  83. public static int GetShadowIndex(XmdsVirtual launcher, ref BuffState state, ref int step)
  84. {
  85. if (launcher == null || state == null)
  86. {
  87. return 0;
  88. }
  89. step = 1;
  90. int tempExt = state.BuffExtData;
  91. while (tempExt > 10)
  92. {
  93. step *= 10;
  94. tempExt = tempExt / 10;
  95. }
  96. if (tempExt <= 0 || tempExt > (int)SwordShadownType.TalentLv3)
  97. {
  98. return 0;
  99. }
  100. return tempExt;
  101. }
  102. }
  103. }