神像
This commit is contained in:
@@ -30,7 +30,7 @@ import { dicStrengthenCost } from './dictionary/DicStrengthenCost';
|
||||
import { dicRefine } from './dictionary/DicRefine';
|
||||
import { dicHeroEquip } from './dictionary/DicHeroEquip';
|
||||
import { dicSuit } from './dictionary/DicSuit';
|
||||
|
||||
import { dicTitle } from './dictionary/DicTitle'
|
||||
export const gameData = {
|
||||
blurprtCompose: dicBlueprtCompose,
|
||||
blueprtPossibility: dicBlueprtPossibility,
|
||||
@@ -71,7 +71,8 @@ export const gameData = {
|
||||
refine: dicRefine,
|
||||
jewels: dicJewel,
|
||||
dicHeroEquip: dicHeroEquip,
|
||||
suit: dicSuit
|
||||
suit: dicSuit,
|
||||
title: dicTitle
|
||||
};
|
||||
|
||||
// 在此提供一些原先在gamedata中提供的方法,以便更方便获取gameData数据
|
||||
@@ -198,3 +199,8 @@ export function getHeroJob(jobId: number) {
|
||||
const job = gameData.job.get(jobId);
|
||||
return job;
|
||||
}
|
||||
|
||||
export function getTitle(titleLv: number) {
|
||||
const titleInfo = gameData.title.get(titleLv);
|
||||
return titleInfo;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user