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