物品:删除多余itid57

This commit is contained in:
qiaoxin
2021-07-16 11:30:14 +08:00
parent fc1b2c080e
commit 7edce74477

View File

@@ -70,12 +70,12 @@ export enum EQUIP_TYPE {
}
export const equipTypeToSortAttr = new Map([
[ EQUIP_TYPE.WEAPON, ABI_TYPE.ABI_ATK ],
[ EQUIP_TYPE.CLOTHES, ABI_TYPE.ABI_HP ],
[ EQUIP_TYPE.SHOES, ABI_TYPE.ABI_ATK ],
[ EQUIP_TYPE.CAP, ABI_TYPE.ABI_HP ],
[ EQUIP_TYPE.ACCESSORY, ABI_TYPE.ABI_DEF ],
[ EQUIP_TYPE.BOOK, ABI_TYPE.ABI_MDEF ]
[EQUIP_TYPE.WEAPON, ABI_TYPE.ABI_ATK],
[EQUIP_TYPE.CLOTHES, ABI_TYPE.ABI_HP],
[EQUIP_TYPE.SHOES, ABI_TYPE.ABI_ATK],
[EQUIP_TYPE.CAP, ABI_TYPE.ABI_HP],
[EQUIP_TYPE.ACCESSORY, ABI_TYPE.ABI_DEF],
[EQUIP_TYPE.BOOK, ABI_TYPE.ABI_MDEF]
]);
export enum JEWEL_TYPE {
@@ -156,10 +156,8 @@ const itid_array = [
{ id: 51, name: '相框', table: 'role', type: CONSUME_TYPE.FRAME },
{ id: 52, name: '玩家形象', table: 'role', type: CONSUME_TYPE.SPINE },
{ id: 55, name: '回复体力道具', table: 'item', type: CONSUME_TYPE.AP },
{ id: 56, name: '普通骰子', table: 'item', type: CONSUME_TYPE.DICE },
{ id: 57, name: '天机骰子', table: 'item', type: CONSUME_TYPE.DICE },
{ id: 56, name: '骰子', table: 'item', type: CONSUME_TYPE.DICE },
{ id: 58, name: '主公经验', table: 'role' },
];
export const ITID = new Map<number, { id: number, name: string, table: string, type?: number, isCurrency?: boolean, equipJewel?: number }>();