From f5dd74c8842ec906e1e76c7f4b38cf129683b940 Mon Sep 17 00:00:00 2001 From: mamengke01 <794347210@qq.com> Date: Wed, 16 Dec 2020 21:05:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/servers/role/handler/equipHandler.ts | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/game-server/app/servers/role/handler/equipHandler.ts b/game-server/app/servers/role/handler/equipHandler.ts index 923315594..c351f27a7 100644 --- a/game-server/app/servers/role/handler/equipHandler.ts +++ b/game-server/app/servers/role/handler/equipHandler.ts @@ -38,5 +38,35 @@ export class EquipHandler { // TODO 装备洗炼 public async reStrengthen(msg: { }, session: BackendSession) { + } + //=================================================================== + //TODO 分解装备 + public async decomposeEquips(msg: { }, session: BackendSession) { + + } + + //TODO 穿戴装备 + public async wearEquips(msg: { }, session: BackendSession) { + + } + + //TODO 卸下装备 + public async removeEquips(msg: { }, session: BackendSession) { + + } + + //TODO 装备打孔 + public async unlockEquipHole(msg: { }, session: BackendSession) { + + } + + //TODO 宝石镶嵌 + public async setEquipGemstone(msg: { }, session: BackendSession) { + + } + + //TODO 宝石合成 + public async composeGemstone(msg: { }, session: BackendSession) { + } } \ No newline at end of file