形象:解锁头像相框形象
This commit is contained in:
@@ -28,6 +28,9 @@ export const CONSUME_TYPE = {
|
||||
PIECE: 8, // 装备碎片
|
||||
JEWEL: 9, //宝石
|
||||
FRIEND_FAVOUR: 10, // 好友道具
|
||||
HEAD: 11, // 头像
|
||||
FRAME: 12, // 相框
|
||||
SPINE: 13, // 形象
|
||||
};
|
||||
|
||||
export enum ROLE_TERAPH {
|
||||
@@ -127,7 +130,10 @@ const itid_array = [
|
||||
{ id: 46, name: '礼器宝石', table: 'item', type: CONSUME_TYPE.JEWEL },
|
||||
{ id: 47, name: '典籍宝石', table: 'item', type: CONSUME_TYPE.JEWEL },
|
||||
{ id: 48, name: '灵玄石', table: 'item', type: CONSUME_TYPE.JEWEL },
|
||||
{ id: 49, name: '玩家好感道具', table: 'item', type: CONSUME_TYPE.FRIEND_FAVOUR }
|
||||
{ id: 49, name: '玩家好感道具', table: 'item', type: CONSUME_TYPE.FRIEND_FAVOUR },
|
||||
{ id: 50, name: '形象', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR },
|
||||
{ id: 51, name: '相框', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR },
|
||||
{ id: 52, name: '玩家形象', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR }
|
||||
];
|
||||
|
||||
export const ITID = new Map<number, {id: number, name: string, table: string, type?: number, isCurrency?: boolean, equipJewel?: number}>();
|
||||
@@ -235,4 +241,11 @@ export function getDropItems() {
|
||||
{ id:2008 ,count: 2 },{ id:2012 ,count: 2 },{ id:2208 ,count: 2 },{ id:2016 ,count: 2 },{ id:2120 ,count: 2 },{ id:2220 ,count: 2 },{ id:50031, count: 1000}
|
||||
]
|
||||
return items;
|
||||
}
|
||||
|
||||
|
||||
// 头像/相框 获取条件
|
||||
export enum FIGURE_UNLOCK_CONDITION {
|
||||
GET_HERO = 1, // 获取武将
|
||||
HERO_FAVOR = 2, // 武将好感度达到
|
||||
}
|
||||
Reference in New Issue
Block a user