-
Notifications
You must be signed in to change notification settings - Fork 15
/
LuaAI.lua
61 lines (59 loc) · 1.6 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
58
59
60
61
-- $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: Casual',
desc = 'A difficulty for those who are just picking up RTS games'
},
{
name = 'Chicken: Normal',
desc = 'A difficulty for players who are new to Future Wars'
},
{
name = 'Chicken: Hard',
desc = 'A Chill and easy experiance that still offers challange'
},
{
name = 'Chicken: Brutal',
desc = 'A mix between challange and feasibility.'
},
{
name = 'Chicken: Suicidal',
desc = 'A challanging experiance meant for experianced Future Wars players.'
},
{
name = 'Chicken: Nightmare',
desc = 'An Onslaught meant for grizzled veterans of Future Wars.'
},
{
name = 'Chicken: Annihilation',
desc = 'This clucking hell will push the very best players to their limits. Good Luck.'
},
{
name = 'Chicken: Custom',
desc = 'A chicken experience customizable using modoptions'
},
{
name ='Null AI',
desc = 'Empty AI for testing purposes'
}
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------