-
Notifications
You must be signed in to change notification settings - Fork 5
/
LuaAI.lua
51 lines (48 loc) · 1.24 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--
-- LuaAI.lua
--
-- List of LuaAIs supported by the mod.
--
--
return {
{
name = 'Chicken: Very Easy',
desc = 'Cluck'
},
{
name = 'Chicken: Easy',
desc = 'Cluck-cluck'
},
{
name = 'Chicken: Normal',
desc = 'Squawk'
},
{
name = 'Chicken: Hard',
desc = 'Peck, cluck-cluck & squawk'
},
{
name = 'Chicken: Very Hard',
desc = 'Running around with its head cut off'
},
{
name = 'Chicken: Epic!',
desc = 'COCKADOODLEDOOOOOOOO'
},
{
name = 'Chicken: Custom',
desc = 'Settings in ModOptions'
},
{
name = 'Chicken: Survival',
desc = 'Never-ending chickens'
},
{
name = 'ShardLua',
desc = 'BABAR version 6 -- ShardSpringLua version 5 -- Shard by AF -- https://github.com/Tarendai/Shard -- https://github.com/eronoobos/ShardSpringLua -- https://github.com/eronoobos/BABAR-The-Shardifant',
},
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------