军团:建筑物表
This commit is contained in:
@@ -44,6 +44,7 @@ import { dicHeroRewads } from './dictionary/DicPvpHeroReward';
|
||||
import { dicRankRewads, dicRankMax } from './dictionary/DicPvpRankReward';
|
||||
import { dicPvpBoxs } from './dictionary/DicPvpBox';
|
||||
import { dicGuildAuth } from './dictionary/DicGuildAuth';
|
||||
import { dicCenterBase, dicEquipPriduceBase, dicBossBase, dicTrainBase, dicDonateBase, dicWishPoolBase, dicStoreBase, dicStructureConsume } from "../../game-server/app/pubUtils/dictionary/DicStructure";
|
||||
|
||||
export const gameData = {
|
||||
blurprtCompose: dicBlueprtCompose,
|
||||
@@ -104,7 +105,15 @@ export const gameData = {
|
||||
pvpRankRewards: dicRankRewads,
|
||||
pvpBoxs: dicPvpBoxs,
|
||||
pvpRankMax: dicRankMax,
|
||||
guildAuth: dicGuildAuth
|
||||
guildAuth: dicGuildAuth,
|
||||
centerBase: dicCenterBase,
|
||||
equipProduceBase: dicEquipPriduceBase,
|
||||
bossBase: dicBossBase,
|
||||
trainBase: dicTrainBase,
|
||||
donateBase: dicDonateBase,
|
||||
wishPoolBase: dicWishPoolBase,
|
||||
storeBase: dicStoreBase,
|
||||
structureConsume: dicStructureConsume
|
||||
};
|
||||
|
||||
// 在此提供一些原先在gamedata中提供的方法,以便更方便获取gameData数据
|
||||
@@ -305,4 +314,8 @@ export function getPvpBoxs() {
|
||||
|
||||
export function getResultMaxRank() {
|
||||
return gameData.pvpRankMax;
|
||||
}
|
||||
|
||||
export function getStructureConsume(structureId: number, level: number) {
|
||||
return gameData.structureConsume.get(structureId).get(level);
|
||||
}
|
||||
Reference in New Issue
Block a user