M_ActivityKingCraftSignCFG.ts 907 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Day:天数, Item:奖励物品, Count:奖励数量
  2. export default class M_ActivityKingCraftSignCFG {
  3. private static data =
  4. {"1":{"Day":1,"Item":[1,291],"Count":[10000,10]}
  5. ,"2":{"Day":2,"Item":[1,291],"Count":[10000,10]}
  6. ,"3":{"Day":3,"Item":[1,291],"Count":[10000,10]}
  7. ,"4":{"Day":4,"Item":[1,291],"Count":[10000,10]}
  8. ,"5":{"Day":5,"Item":[1,291],"Count":[10000,10]}
  9. ,"6":{"Day":6,"Item":[1,291],"Count":[10000,10]}
  10. ,"7":{"Day":7,"Item":[1,291],"Count":[10000,10]}
  11. ,"8":{"Day":8,"Item":[1,291],"Count":[10000,10]}
  12. ,"9":{"Day":9,"Item":[1,291],"Count":[200000,20]}
  13. }// Day:天数, Item:奖励物品, Count:奖励数量
  14. static getData(key: any): any {
  15. if (key == null || key == undefined)
  16. return null;
  17. return this.data[key];
  18. }
  19. static getAllData(): any {
  20. return this.data;
  21. }
  22. }