mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-10-13 02:26:07 +00:00
提交捕捉
This commit is contained in:
14
JisolGameCocos/assets/script/consts/GAPI.ts
Normal file
14
JisolGameCocos/assets/script/consts/GAPI.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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,
|
||||
|
||||
}
|
Reference in New Issue
Block a user