GamePropertys.ts 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import { _decorator, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. export class GamePropertys {
  4. /**
  5. * 当前关卡
  6. */
  7. public static currentLevel:string="currentLevel";
  8. /**
  9. * 当前总收益
  10. */
  11. public static fullEarnings:string="fullEarnings";
  12. /**
  13. * 栅栏
  14. */
  15. public static currentFenceId:string="currentFenceId";
  16. /**
  17. * 最大关卡数
  18. */
  19. public static maxLevel:string="maxLevel";
  20. /**
  21. * 当前关杀死的怪物数量
  22. */
  23. public static killCount:string="killCount";
  24. /**
  25. * 怒气值
  26. */
  27. public static angerCount:string="angerCount";
  28. /**
  29. * 金币
  30. */
  31. public static gold:string="gold";
  32. /**
  33. * 钻石
  34. */
  35. public static diamond:string="diamond";
  36. /**
  37. * 积分
  38. */
  39. public static integral:string="integral";
  40. /**
  41. * 武器格子改变
  42. */
  43. public static WeaponCell:string="weaponCell";
  44. /**
  45. * 合成最大等级
  46. */
  47. public static synthesisMaxWeaponId:string="synthesisMaxWeaponId";
  48. /**
  49. * 自动合成Buffer剩余时间
  50. */
  51. public static autoSynthesisTime:string="autoSynthesisTime";
  52. /**
  53. * 当前武器槽ID
  54. */
  55. public static currentWeaponCellId:string="currentWeaponCellId";
  56. /**
  57. * 加速BUFFER剩余时间
  58. */
  59. public static accelerateTime:string="accelerateTime";
  60. /**
  61. * 登录天数
  62. */
  63. public static signDay:string="signDay";
  64. /**
  65. * 上次登录日期
  66. */
  67. public static lastSignTime:string="lastSignTime";
  68. /**
  69. * 7日登录领取记录
  70. */
  71. public static signGetRecord:string="signGetRecord";
  72. }