2020-10-19 23:58:57 +02:00
|
|
|
#ifndef _SCRIPT_API_MAP_H_
|
|
|
|
#define _SCRIPT_API_MAP_H_
|
|
|
|
|
|
|
|
#include "common_structs.h"
|
2021-08-29 16:34:42 +02:00
|
|
|
#include "evt.h"
|
2020-10-19 23:58:57 +02:00
|
|
|
|
|
|
|
#include "script_api/common.h"
|
|
|
|
|
2024-01-16 05:56:57 +01:00
|
|
|
API_CALLABLE(MakeNpcs);
|
|
|
|
API_CALLABLE(BasicAI_Main);
|
|
|
|
API_CALLABLE(ResetFromLava);
|
|
|
|
API_CALLABLE(MakeShop);
|
|
|
|
API_CALLABLE(MakeShopOwner);
|
|
|
|
API_CALLABLE(CreateMapRoom);
|
|
|
|
API_CALLABLE(CheckActionState);
|
|
|
|
API_CALLABLE(CreatePushBlockGrid);
|
|
|
|
API_CALLABLE(SetPushBlock);
|
|
|
|
API_CALLABLE(GetPushBlock);
|
|
|
|
API_CALLABLE(GetGridIndexFromPos);
|
|
|
|
API_CALLABLE(SetPushBlockFallEffect);
|
|
|
|
API_CALLABLE(TeleportPartnerToPlayer);
|
2020-10-19 23:58:57 +02:00
|
|
|
|
2022-01-16 14:28:09 +01:00
|
|
|
extern EvtScript EnterWalk;
|
|
|
|
extern EvtScript EnterWalkShort;
|
|
|
|
extern EvtScript EnterSavePoint;
|
|
|
|
extern EvtScript ExitWalk;
|
|
|
|
extern EvtScript ExitSingleDoor;
|
|
|
|
extern EvtScript EnterSingleDoor;
|
2022-10-09 07:55:27 +02:00
|
|
|
extern EvtScript ExitSplitSingleDoor;
|
|
|
|
extern EvtScript EnterSplitSingleDoor;
|
2022-01-16 14:28:09 +01:00
|
|
|
extern EvtScript ExitDoubleDoor;
|
|
|
|
extern EvtScript EnterDoubleDoor;
|
2022-10-09 07:55:27 +02:00
|
|
|
extern EvtScript ExitSplitDoubleDoor;
|
|
|
|
extern EvtScript EnterSplitDoubleDoor;
|
2022-12-12 13:31:29 +01:00
|
|
|
extern EvtScript BaseExitDoor;
|
|
|
|
extern EvtScript BaseEnterDoor;
|
2022-10-15 18:04:53 +02:00
|
|
|
extern EvtScript EnterPostPipe;
|
2023-10-22 14:39:20 +02:00
|
|
|
extern EvtScript EVS_ShopOwnerDialog;
|
2020-10-19 23:58:57 +02:00
|
|
|
|
|
|
|
#endif
|