mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
14 lines
635 B
TypeScript
14 lines
635 B
TypeScript
|
import { GOnHookPets } from "../../../extensions/ngame/assets/ngame/message/proto";
|
||
|
import { app } from "../App";
|
||
|
import { PlayerPetOV, RData, RProto } from "./API";
|
||
|
import { GActionType } from "./GActionType";
|
||
|
|
||
|
export const GAPI = {
|
||
|
|
||
|
/************** 无限模式接口 ********************/
|
||
|
//生成野怪
|
||
|
GOnHookSpawnCreeps : async () => RProto(await app.api.get(`/game/mode/onHook/onSpawnCreeps`,{responseType:'arraybuffer'}),GActionType.GOnHookPets) as GOnHookPets,
|
||
|
//捕捉野怪
|
||
|
GOnHookCatchCreeps : async (creepId) => RData(await app.api.post(`/game/mode/onHook/onCatchCreeps/${creepId}`)) as PlayerPetOV,
|
||
|
|
||
|
}
|