装备:强化

This commit is contained in:
luying
2022-02-15 18:01:37 +08:00
parent 465cc15e43
commit f25d44e391
18 changed files with 12919 additions and 187 deletions

View File

@@ -102,6 +102,7 @@ import { pick } from "underscore";
import _ = require("underscore");
import { dicEquipById, dicEquipIdByJobClassAndEplace, loadEquip } from "./dictionary/DicEquip";
import { dicJewel, loadJewel } from "./dictionary/DicJewel";
import { dicEquipStrength, loadEquipStrength } from "./dictionary/DicEquipStrength";
export const gameData = {
blurprtCompose: dicBlueprtCompose,
@@ -253,6 +254,7 @@ export const gameData = {
equipById: dicEquipById,
equipIdByJobAndEPlace: dicEquipIdByJobClassAndEplace,
jewel: dicJewel,
equipStrengthenCost: dicEquipStrength,
};
// 在此提供一些原先在gamedata中提供的方法以便更方便获取gameData数据
@@ -1005,6 +1007,7 @@ function loadDatas() {
loadApi();
loadServerConst();
loadEquip();
loadEquipStrength();
loadJewel();
}