JSGOtherCardModule.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. NextCardStrengthenInfo IJSCardSkillModule.AddNextStrengthInfo(CardType type, CardStrengthenType strenghType, int value1, int value2, int validTime, int validTimes, byte needSames, DamageType dmgType, CardLayerRule layerRules)
  32. {
  33. return null;
  34. }
  35. void IJSCardSkillModule.ChangeCardWeight(CardType type, CardRateChgType chgType, int value, int validTime, bool isPrecent, int validTimes, int uniqueID)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. void IJSCardSkillModule.Dispose()
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. ICardData ICardModule.GetCardInterface()
  44. {
  45. return null;
  46. }
  47. GetCardData IJSCardSkillModule.GetLastCardData()
  48. {
  49. return null;
  50. }
  51. IntIntData IJSCardSkillModule.GetStrengthInfo(CardStrengthenType strgnthenType)
  52. {
  53. return null;
  54. }
  55. void IJSCardSkillModule.Init(XmdsVirtual owner)
  56. {
  57. //throw new NotImplementedException();
  58. }
  59. void IJSCardSkillModule.OnHitDamage(XmdsVirtual attacker, AttackSource source, int damage, DamageType damageType)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. void IJSCardSkillModule.OnHitOther(XmdsVirtual hitter, AttackSource source, int damage, DamageType damageType)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. void IJSCardSkillModule.OnInitOver(GameSkill gs, IJSGCardSkill cardSkill)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. void IJSCardSkillModule.OnSkillDataChange(GameSkill info)
  72. {
  73. //throw new NotImplementedException();
  74. }
  75. void IJSCardSkillModule.TriggerSkillLoadStrength(CardSkillData skillData, int sameNums)
  76. {
  77. //throw new NotImplementedException();
  78. }
  79. void IJSCardSkillModule.Update(int interval, bool slowRefresh)
  80. {
  81. //throw new NotImplementedException();
  82. }
  83. }
  84. }