JSGModule.cs 984 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using CommonAI.Data;
  2. using CommonAI.Zone;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. //using System.Threading.Tasks;
  8. namespace CommonAI.ZoneServer.JSGModule
  9. {
  10. public class JSGModule
  11. {
  12. public static int GetSpaceDiveSize(SceneType sceneType)
  13. {
  14. if (sceneType == CommonAI.Data.SceneType.NCS_MutilCross)
  15. {
  16. return 1;
  17. }
  18. else if (sceneType == CommonAI.Data.SceneType.PickLotus)
  19. {
  20. return 20;
  21. }
  22. else
  23. {
  24. return 12;
  25. }
  26. }
  27. //攻击模式是否对宠物有效
  28. public static bool IsExpectValidForPet(SkillTemplate.CastTarget type)
  29. {
  30. if (type == SkillTemplate.CastTarget.Alias || type == SkillTemplate.CastTarget.PetForMaster || type == SkillTemplate.CastTarget.EveryOne
  31. || type == SkillTemplate.CastTarget.AlliesExcludeSelf || type == SkillTemplate.CastTarget.AlliesIncludeSelf ||
  32. type == SkillTemplate.CastTarget.EveryOneExcludeSelf)
  33. {
  34. return true;
  35. }
  36. return false;
  37. }
  38. }
  39. }