物品:修改itid分类

This commit is contained in:
luying
2021-06-21 19:29:09 +08:00
parent d5e7cb12fb
commit 25e1331b10

View File

@@ -112,7 +112,7 @@ const itid_array = [
{ id: 35, name: '消耗类物品(经验书)', table: 'item', type: CONSUME_TYPE.EXP },
{ id: 36, name: '消耗类物品(好感道具)', table: 'item', type: CONSUME_TYPE.FAVOUR },
{ id: 38, name: '消耗类物品(材料类)', table: 'item', type: CONSUME_TYPE.CONSUME },
{ id: 24, name: '使用类物品(宝箱类)', table: 'item', type: CONSUME_TYPE.CONSUME },
{ id: 24, name: '使用类物品(宝箱类)', table: 'item', type: CONSUME_TYPE.GIFT_PACKAGE },
{ id: 25, name: '武将碎片', table: 'item', type: CONSUME_TYPE.SOUL },
{ id: 26, name: '剧情物品', table: 'item', type: CONSUME_TYPE.CONSUME },
@@ -142,7 +142,6 @@ const itid_array = [
{ id: 51, name: '相框', table: 'role', type: CONSUME_TYPE.FRAME },
{ id: 52, name: '玩家形象', table: 'role', type: CONSUME_TYPE.SPINE },
{ id: 54, name: '礼包分类', table: 'item', type: CONSUME_TYPE.GIFT_PACKAGE }
];
export const ITID = new Map<number, { id: number, name: string, table: string, type?: number, isCurrency?: boolean, equipJewel?: number }>();