XmdsBuff_Brand_5.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 XmdsCommonServer.Plugin.XmdsSkillTemplate.DamageCalculator;
  11. using CommonAI.Zone;
  12. using CommonAI.Data;
  13. namespace XmdsCommonSkill.Plugin.Buffs
  14. {
  15. /// <summary>
  16. /// buff创建者队友攻击buff拥有者,给队友增加回血buff
  17. /// </summary>
  18. public class XmdsBuff_Brand_5 : XmdsBuffBase
  19. {
  20. public int addHpTotal = 0;
  21. private int mHandleUUID = 0;
  22. private XmdsCommonServer.Plugin.XmdsVirtual attacker;
  23. //攻击,增加的buff信息
  24. private static BuffTemplate addHpBuf = null;
  25. private static int Buff_ID = (int)XmdsBuffBase.XmdsBuffList.JJC_HUICHUN;
  26. public XmdsBuff_Brand_5()
  27. {
  28. var pack = XmdsBuffFactory.GetInstance().GetXmdsBuffPack(Buff_ID);
  29. var buff = (XmdsBuff_AddHP)pack.GetXmdsBuff(XmdsBuffProperties.XmdsBuffAbility.AddHP_Unbroken);
  30. buff.ChangeValue = addHpTotal/3;
  31. addHpBuf = pack.mBuffTemplate;
  32. addHpBuf.IsHarmful = true;
  33. addHpBuf.LifeTimeMS = 3000;
  34. pack.BindTemplateAndDispose();
  35. }
  36. public override int GetAbilityID()
  37. {
  38. return (int)XmdsCommon.Plugin.XmdsBuffProperties.XmdsBuffAbility.Brand_5;
  39. }
  40. public override void CopyTo(UnitBuff other)
  41. {
  42. var ret = other as XmdsBuff_Brand_5;
  43. ret.addHpTotal = this.addHpTotal;
  44. base.CopyTo(other);
  45. }
  46. protected override void OnBuffBegin(XmdsCommonServer.Plugin.XmdsVirtual hitter, XmdsCommonServer.Plugin.XmdsVirtual attacker, InstanceUnit.BuffState state)
  47. {
  48. //注册监听.
  49. mHandleUUID = hitter.RegistOnHitDamage(OnHandleHitDmage, null);
  50. this.attacker = attacker;
  51. }
  52. protected override void OnBuffEnd(XmdsCommonServer.Plugin.XmdsVirtual hitter, InstanceUnit.BuffState state, bool replace)
  53. {
  54. //取消监听.
  55. hitter.UnRegistOnHitDamage(mHandleUUID);
  56. }
  57. //单位受到攻击
  58. private float OnHandleHitDmage(float damage, XmdsVirtual hitted, XmdsVirtual attacker, AttackSource source,
  59. ref XmdsVirtual.AtkResult result, DamageType damageType, GameSkill skill, ref bool isEndDispatch)
  60. {
  61. try
  62. {
  63. //拥有此buff的人被攻击,攻击者是友军,加一个回血的buff
  64. if (attacker != null && attacker.IsAllies(attacker, true, true) && attacker.mUnit.GetBuffByID(Buff_ID) == null)
  65. {
  66. attacker.mUnit.AddBuff(addHpBuf, attacker.mUnit);
  67. }
  68. }
  69. catch(Exception err)
  70. {
  71. log.Error("XmdsBuff_Brand_5:" + err);
  72. }
  73. return damage;
  74. }
  75. protected override void OnDispose()
  76. {
  77. base.OnDispose();
  78. }
  79. }
  80. }