示例#1
0
        public static DataJewelry Get(int iD)
        {
            DataJewelry v;

            return(all.TryGetValue(iD, out v) ? v : null);
        }
示例#2
0
        public static DataTask Get(int taskid)
        {
            DataTask v;

            return(all.TryGetValue(taskid, out v) ? v : null);
        }
示例#3
0
        public static DataJewelryrandom Get(Config.DataLevelrank lvlRank)
        {
            DataJewelryrandom v;

            return(all.TryGetValue(lvlRank, out v) ? v : null);
        }
示例#4
0
        public static DataLoot Get(int lootid)
        {
            DataLoot v;

            return(all.TryGetValue(lootid, out v) ? v : null);
        }
示例#5
0
        public static DataJewelrysuit Get(int suitID)
        {
            DataJewelrysuit v;

            return(all.TryGetValue(suitID, out v) ? v : null);
        }
示例#6
0
        public static DataLootitem Get(int lootid, int itemid)
        {
            DataLootitem v;

            return(all.TryGetValue(new Key(lootid, itemid), out v) ? v : null);
        }
示例#7
0
        public static DataSignin Get(int id)
        {
            DataSignin v;

            return(all.TryGetValue(id, out v) ? v : null);
        }
示例#8
0
        public static DataRank Get(int rankID)
        {
            DataRank v;

            return(all.TryGetValue(rankID, out v) ? v : null);
        }
示例#9
0
        public static DataAbility Get(int id)
        {
            DataAbility v;

            return(all.TryGetValue(id, out v) ? v : null);
        }
示例#10
0
        public static DataCompleteconditiontype Get(int id)
        {
            DataCompleteconditiontype v;

            return(all.TryGetValue(id, out v) ? v : null);
        }
示例#11
0
        public static DataMonster Get(int id)
        {
            DataMonster v;

            return(all.TryGetValue(id, out v) ? v : null);
        }
示例#12
0
        public static DataJewelrytype Get(string typeName)
        {
            DataJewelrytype v;

            return(all.TryGetValue(typeName, out v) ? v : null);
        }