PlayerCache_Warrior.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using CommonAI.data;
  2. using CommonAI.Zone;
  3. using CommonAI.Zone.Instance;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Diagnostics;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using XmdsCommonServer.XLS.Data;
  11. namespace XmdsCommonSkill.Plugin.Skills
  12. {
  13. // 战士天赋数据
  14. public class PlayerCache_Warrior : PlayerCacheBase
  15. {
  16. private int mTalnetMax; // 天赋最大值
  17. //普攻怒气增加
  18. private int mNormalAtkAnger;
  19. public PlayerCache_Warrior(InstanceUnit unit, int talnetMaxValue, IntIntIntData refreshRule) : base(unit, refreshRule)
  20. {
  21. this.mTalnetMax = talnetMaxValue;
  22. //this.mTalnetUpdateTime = 0;
  23. this.mTalentValue = 0;
  24. }
  25. // 增加天赋点信息
  26. public override bool AddTalentValue(int value)
  27. {
  28. if(value <= 0)
  29. {
  30. return false;
  31. }
  32. // 基础天赋值变更
  33. this.mTalentValue = Math.Min(this.mTalentValue + value, this.mTalnetMax);
  34. //this.mTalnetUpdateTime = CommonLang.CUtils.S_LOCAL_TIMESTAMPMS;
  35. return base .AddTalentValue(value);
  36. }
  37. // 使用天赋(怒气/剑气)
  38. public override bool UseTalentValue(int value)
  39. {
  40. if (value <= 0)
  41. {
  42. return false;
  43. }
  44. else if (value > this.mTalentValue)
  45. {
  46. string stackInfo = new StackTrace().ToString();
  47. log.Error("UseTalentValue天赋扣除异常:" + this.mTalentValue + " - " + value + ", " + this.mOwner.PlayerUUID + ", " + stackInfo);
  48. }
  49. this.mTalentValue = Math.Max(0, this.mTalentValue - value);
  50. //this.mTalnetUpdateTime = CommonLang.CUtils.localTimeMS;
  51. return base.UseTalentValue(value);
  52. }
  53. public void SetNormalAtakAnger(int value)
  54. {
  55. this.mNormalAtkAnger = value;
  56. }
  57. public void NormalHitAddAnger()
  58. {
  59. if (this.mNormalAtkAnger > 0)
  60. {
  61. this.AddTalentValue(this.mNormalAtkAnger);
  62. }
  63. }
  64. }
  65. }