CarStruct.js 406 B

1234567891011121314151617181920
  1. //拥有的车
  2. var CarStruct = cc.Class({
  3. name:"CarStruct",
  4. properties:{
  5. icon:"",
  6. name:"",
  7. Id:cc.Integer,
  8. ownNum:cc.Integer,//拥有数量
  9. price:cc.Integer,
  10. addBonus:cc.Integer, //增加名声
  11. addHp:cc.Integer,//增加健康值
  12. addDate:0,//增加约会成功率
  13. },
  14. RefreshData:function(addNum) { //为负值表示卖出去
  15. this.ownNum += addNum;
  16. },
  17. });
  18. module.exports = CarStruct;