🌱 初步完成角色天赋获取

This commit is contained in:
BTMuli
2023-06-28 11:01:45 +08:00
parent 97314d131b
commit c8963efc98
7 changed files with 296 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
/**
* @file web request TGRequest.ts
* @description 应用用到的请求函数
* @author BTMuli<bt-muli@outlook.com>
* @since Alpha v0.1.6
* @author BTMuli <bt-muli@outlook.com>
* @since Alpha v0.2.1
*/
import { getAbyss } from "./getAbyss";
@@ -13,6 +13,8 @@ import { getGameAccountsBySToken, getGameAccountsByCookie } from "./getGameAccou
import { getGameRecord } from "./getGameRecord";
import { getLTokenBySToken } from "./getLToken";
import { getGameRoleListByLToken } from "./getRoleList";
import getSyncAvatarDetail from "./getSyncAvatarDetail";
import getSyncAvatarListAll from "./getSyncAvatarListAll";
// import * from "./getTickets.ts";
import { getTokensByLoginTicket } from "./getTokens";
import { getUserInfoByCookie } from "./getUserInfo";
@@ -45,6 +47,10 @@ const TGRequest = {
getCookieToken: getCookieTokenBySToken,
getLToken: getLTokenBySToken,
},
calculate: {
getSyncAvatarListAll,
getSyncAvatarDetail,
},
},
};