2023-11-17 18:29:39 +08:00
|
|
|
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,
|
2023-11-20 03:47:00 +08:00
|
|
|
//出售野怪
|
|
|
|
GOnHookSellCreeps : async (creepId) => RData(await app.api.post(`/game/mode/onHook/onSellCreeps/${creepId}`)),
|
2023-11-17 18:29:39 +08:00
|
|
|
|
|
|
|
}
|