global.js 484 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 全局通用字段定义
  3. */
  4. /**
  5. * 玩法类型
  6. * 普通任务:common=1;
  7. * 抽奖:lottery=2
  8. */
  9. export const PlayType = {
  10. common: 1,
  11. lottery: 2,
  12. };
  13. /**
  14. * 奖品类型
  15. * 货币:money=1;
  16. * 自定义奖品:custom=2
  17. */
  18. export const RewardType = {
  19. money: 1,
  20. custom: 2,
  21. };
  22. /**
  23. * 任务类型
  24. */
  25. export const TaskType = {
  26. twitterFollow: 1,
  27. twitterLikeTweet: 2,
  28. twitterRetweet: 3,
  29. joinDiscord: 7,
  30. repostToFacebook: 8,
  31. twitterCommentAndTag: 9,
  32. };