forked from ZeroK-RTS/Zero-K
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LuaAI.lua
57 lines (55 loc) · 1.28 KB
/
LuaAI.lua
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
51
52
53
54
55
56
57
-- $Id: LuaAI.lua 3171 2008-11-06 09:06:29Z det $
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--
-- LuaAI.lua
--
-- List of LuaAIs supported by the mod.
--
--
return {
{
-- to be recognised as a CAI there must be an entry with this name in
-- LuaRules\Configs\cai\configCoordinator.lua
name = 'CAI',
desc = 'AI that plays regular Zero-K'
},
--{
-- name = 'CAI2',
-- desc = 'Another AI that plays regular Zero-K'
--},
{
name = 'Chicken: Beginner',
desc = 'For PvE in PvP games'
},
{
name = 'Chicken: Very Easy',
desc = 'For PvE in PvP games'
},
{
name = 'Chicken: Easy',
desc = 'Ice cold'
},
{
name = 'Chicken: Normal',
desc = 'Lukewarm'
},
{
name = 'Chicken: Hard',
desc = 'Will burn your ass'
},
{
name = 'Chicken: Suicidal',
desc = 'Flaming hell!'
},
{
name = 'Chicken: Custom',
desc = 'A chicken experience customizable using modoptions'
},
{
name ='Null AI',
desc = 'Empty AI for testing purposes'
}
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------