M_ActivityMayDayLuckDrawCFG.ts 766 B

1234567891011121314151617181920
  1. // ID:编号, RaffleConsumption1:生肖抽奖消耗, RaffleConsumption2:幸运抽奖消耗, BottomGuard1:保底2挡次数, BottomGuard2:保底3挡次数, ConsumeID:消耗ID
  2. export default class M_ActivityMayDayLuckDrawCFG {
  3. private static data =
  4. {"1":{"ID":1,"RaffleConsumption1":10,"RaffleConsumption2":100,"BottomGuard1":13,"BottomGuard2":150,"ConsumeID":110}
  5. }// ID:编号, RaffleConsumption1:生肖抽奖消耗, RaffleConsumption2:幸运抽奖消耗, BottomGuard1:保底2挡次数, BottomGuard2:保底3挡次数, ConsumeID:消耗ID
  6. static getData(key: any): any {
  7. if (key == null || key == undefined)
  8. return null;
  9. return this.data[key];
  10. }
  11. static getAllData(): any {
  12. return this.data;
  13. }
  14. }