XmdsStatic.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XmdsCommon.Plugin
  6. {
  7. public struct NumericalBound
  8. {
  9. public int MinValue;
  10. public int MaxValue;
  11. public NumericalBound(int min, int max)
  12. {
  13. this.MinValue = min;
  14. this.MaxValue = max;
  15. }
  16. }
  17. public class XmdsStaticLimit
  18. {
  19. //攻速基础值
  20. public static readonly int BaseAttackSpeed = 10000;
  21. //攻速限制
  22. public static readonly NumericalBound AttackSpeed = new NumericalBound(-5000, 25000);
  23. //移速限制
  24. public static readonly NumericalBound MoveSpeed = new NumericalBound(-5000, 5000);
  25. //冷却缩减
  26. public static readonly NumericalBound SkillCoolCut = new NumericalBound(0, 4000);
  27. //伤害减免
  28. public static readonly NumericalBound DamageRemit = new NumericalBound(0, 5000);
  29. //韧性
  30. public static readonly NumericalBound Toughness = new NumericalBound(0, 3000);
  31. //技能伤害增幅
  32. public static readonly NumericalBound SkillDamageDeep = new NumericalBound(0, 5000);
  33. //治疗增幅
  34. public static readonly NumericalBound CureDeep = new NumericalBound(0, 5000);
  35. //控制增幅
  36. public static readonly NumericalBound ControlDeep = new NumericalBound(0, 5000);
  37. //
  38. //
  39. //
  40. //
  41. //
  42. //
  43. //
  44. //
  45. //
  46. //
  47. //
  48. //
  49. //
  50. //
  51. //
  52. //
  53. //
  54. //
  55. //
  56. public static int GetNormalAttackCD(int atkSpeed, int totalCDTime)
  57. {
  58. if (atkSpeed < XmdsStaticLimit.BaseAttackSpeed)
  59. {
  60. int downCD = totalCDTime * atkSpeed / XmdsStaticLimit.BaseAttackSpeed;
  61. return totalCDTime * 2 - downCD;
  62. }
  63. else if (XmdsStaticLimit.BaseAttackSpeed < atkSpeed)
  64. {
  65. int downCD = totalCDTime * XmdsStaticLimit.BaseAttackSpeed / atkSpeed;
  66. return totalCDTime - downCD;
  67. }
  68. return totalCDTime;
  69. }
  70. }
  71. }