// ID:ID, monster_id:怪物ID, fish_group:鱼阵方案组, num:数量, kill_count:击杀次数 export default class M_fish_scheme { private static data = {"1001":{"ID":1001,"monster_id":1001,"fish_group":1,"num":200,"kill_count":[1,1]} ,"1002":{"ID":1002,"monster_id":1002,"fish_group":1,"num":10,"kill_count":[2,3]} ,"1003":{"ID":1003,"monster_id":1001,"fish_group":2,"num":200,"kill_count":[1,1]} ,"1004":{"ID":1004,"monster_id":1002,"fish_group":2,"num":10,"kill_count":[2,3]} ,"1005":{"ID":1005,"monster_id":1001,"fish_group":3,"num":200,"kill_count":[1,1]} ,"1006":{"ID":1006,"monster_id":1002,"fish_group":3,"num":10,"kill_count":[2,3]} ,"1007":{"ID":1007,"monster_id":1001,"fish_group":4,"num":200,"kill_count":[1,1]} ,"1008":{"ID":1008,"monster_id":1002,"fish_group":4,"num":10,"kill_count":[2,3]} ,"1009":{"ID":1009,"monster_id":1001,"fish_group":5,"num":200,"kill_count":[1,1]} ,"1010":{"ID":1010,"monster_id":1002,"fish_group":5,"num":10,"kill_count":[2,3]} ,"1011":{"ID":1011,"monster_id":1001,"fish_group":6,"num":200,"kill_count":[1,1]} ,"1012":{"ID":1012,"monster_id":1002,"fish_group":6,"num":10,"kill_count":[2,3]} ,"1013":{"ID":1013,"monster_id":1001,"fish_group":7,"num":200,"kill_count":[1,1]} ,"1014":{"ID":1014,"monster_id":1002,"fish_group":7,"num":10,"kill_count":[2,3]} ,"1015":{"ID":1015,"monster_id":1001,"fish_group":8,"num":200,"kill_count":[1,1]} ,"1016":{"ID":1016,"monster_id":1002,"fish_group":8,"num":10,"kill_count":[2,3]} }// ID:ID, monster_id:怪物ID, fish_group:鱼阵方案组, num:数量, kill_count:击杀次数 static getData(key: any): any { if (key == null || key == undefined) return null; return this.data[key]; } static getAllData(): any { return this.data; } }