JSGOtherCardModule.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. using CommonAI.Data;
  2. using CommonAI.ZoneServer.JSGModule;
  3. using CommonLang.Log;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using XmdsCommon.JSGModule;
  10. using XmdsCommon.JSGModule.Interface;
  11. using XmdsCommon.Plugin;
  12. using XmdsCommonServer.Plugin;
  13. using CommonAI.Zone.Formula;
  14. using XmdsCommonServer.XLS.Data;
  15. using XmdsCommonServer.Plugin.CardSkill;
  16. using CommonAI.data;
  17. namespace XmdsCommonSkill.Plugin.CardSkill
  18. {
  19. /** 卡牌珠技能模块 */
  20. public class JSGOtherCardModule : IJSCardSkillModule
  21. {
  22. protected static Logger log = LoggerFactory.GetLogger("JSGPlayerCardModule");
  23. void IJSCardSkillModule.AddCard(int nums, bool random)
  24. {
  25. //throw new NotImplementedException();
  26. }
  27. void IJSCardSkillModule.AddCard(CardType type, int nums)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. public void ReloadCardSkillWeight() { }
  32. NextCardStrengthenInfo IJSCardSkillModule.AddNextStrengthInfo(CardType type, CardStrengthenType strenghType, int value1, int value2, int validTime, int validTimes, byte needSames, DamageType dmgType, CardLayerRule layerRules)
  33. {
  34. return null;
  35. }
  36. void IJSCardSkillModule.ChangeCardWeight(CardType type, CardRateChgType chgType, int value, int validTime, bool isPrecent, int validTimes, int uniqueID)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. void IJSCardSkillModule.Dispose()
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. ICardData ICardModule.GetCardInterface()
  45. {
  46. return null;
  47. }
  48. GetCardData IJSCardSkillModule.GetLastCardData()
  49. {
  50. return null;
  51. }
  52. IntIntData IJSCardSkillModule.GetStrengthInfo(CardStrengthenType strgnthenType)
  53. {
  54. return null;
  55. }
  56. void IJSCardSkillModule.Init(XmdsVirtual owner)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. void IJSCardSkillModule.OnHitDamage(XmdsVirtual attacker, AttackSource source, int damage, DamageType damageType)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. void IJSCardSkillModule.OnHitOther(XmdsVirtual hitter, AttackSource source, int damage, DamageType damageType)
  65. {
  66. //throw new NotImplementedException();
  67. }
  68. void IJSCardSkillModule.OnInitOver(GameSkill gs, IJSGCardSkill cardSkill)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. void IJSCardSkillModule.OnSkillDataChange(GameSkill info)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. void IJSCardSkillModule.TriggerSkillLoadStrength(CardSkillData skillData, int sameNums)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. void IJSCardSkillModule.Update(int interval, bool slowRefresh)
  81. {
  82. //throw new NotImplementedException();
  83. }
  84. }
  85. }