This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_Global.es
50 lines (43 loc) · 1.55 KB
/
_Global.es
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* Copyright (c) 2021 Dreamy Cecil
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
1500
%{
#include "StdH.h"
%}
// Imported events
enum EEventType {
0 EET_START "Start Event",
1 EET_STOP "Stop Event",
2 EET_TRIGGER "Trigger Event",
3 EET_IGNORE "Ignore / Don't send",
4 EET_ACTIVATE "Activate Event",
5 EET_DEACTIVATE "Deactivate Event",
6 EET_ENVIRONMENTSTART "Start Environment Event",
7 EET_ENVIRONMENTSTOP "Stop Environment Event",
8 EET_STARTATTACK "Start Attack Event",
9 EET_STOPATTACK "Stop Attack Event",
10 EET_STOPBLINDNESS "Stop Blindness Event",
11 EET_STOPDEAFNESS "Stop Deafness Event",
12 EET_TELEPORTMB "Teleport Moving Brush",
};
// Target type
enum EEntityTargetType {
0 ETT_NONE "Nothing",
1 ETT_TRIGGER "Triggerer",
2 ETT_TARGET "Target",
};
// Entity group type
enum EGroupType {
0 EGT_TARGET "None / Target",
1 EGT_CLASS "Class Name",
2 EGT_NAME "Entity Name",
};