25306540-840c-4fe3-8ec5-7f6734789d2f.js 488 B

123456789101112131415161718192021222324
  1. "use strict";
  2. cc._RF.push(module, '25306VAhAxP447Ff2c0eJ0v', 'RewardType');
  3. // Scripts/Core/RewardType.js
  4. "use strict";
  5. //事件奖励类型 消耗类型
  6. //无1000 金钱 1001 健康1002 名声1003
  7. //货物1004 车子1005 房子1006 股票1007数量
  8. //1008 股票价格
  9. var RewardType = cc.Enum({
  10. NULL: 1000,
  11. Cash: 1001,
  12. HP: 1002,
  13. Reputation: 1003,
  14. Goods: 1004,
  15. Car: 1005,
  16. House: 1006,
  17. Stock: 1007,
  18. StockPrice: 1008
  19. });
  20. module.exports = RewardType;
  21. cc._RF.pop();