1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-- this unit defines astrological signs of various magical
-- significance. used to determine whether the stars are aligned
return {
{id = 'minx', patron = 'Minx'; duration = 4 };
{id = 'ocelot', patron = 'Ocelot'; duration = 3, cycle = 3};
{id = 'wyvern', patron = 'Wyvern'; duration = 2, cycle = 2};
{id = 'dove', patron = 'Dove'; duration = 4 };
{id = 'leper', patron = 'Leper'; duration = 1, cycle = 3 };
{id = 'petrel', patron = 'Petrel'; duration = 5 };
{id = 'kestrel', patron = 'Kestrel'; duration = 6 };
{id = 'serpent', patron = 'Serpent'; duration = 3, cycle = 2};
{id = 'wserpent', patron = 'Winged Serpent'; duration = 3, cycle = 4 };
{id = 'lamb', patron = 'Lamb'; duration = 4};
{id = 'glamb', patron = 'Golden Lamb'; duration = 6, cycle = 5};
{id = 'grackle', patron = 'Grackle'; duration = 3};
{id = 'thief', patron = 'Thief'; duration = 2, cycle = 6};
{id = 'egret', patron = 'Egret'; duration = 3};
{id = 'chipmunk', patron = 'Chipmunk'; duration = 2};
{id = 'ibis', patron = 'Ibis'; duration = 3, cycle = 7};
{id = 'fox', patron = 'Fox'; duration = 3, cycle = 8};
{id = 'cfox', patron = 'Cowled Fox'; duration = 3, cycle = 9};
|
|
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
|
-- this unit defines astrological signs of various magical
-- significance. used to determine whether the stars are aligned
return {
{id = 'mink', patron = 'Mink'; duration = 4; effects = {
enchant = {
affinity = { praxic = { confluence = 1.3 } };
};
}};
{id = 'ocelot', patron = 'Ocelot'; duration = 3, cycle = 3};
{id = 'wyvern', patron = 'Wyvern'; duration = 2, cycle = 2; effects = {
potion = {
all = { speed = 1.3 };
kind = { philter = { force = 2 } };
};
}};
{id = 'dove', patron = 'Dove'; duration = 4 };
{id = 'leper', patron = 'Leper'; duration = 1, cycle = 3 };
{id = 'petrel', patron = 'Petrel'; duration = 5 };
{id = 'kestrel', patron = 'Kestrel'; duration = 6 };
{id = 'serpent', patron = 'Serpent'; duration = 3, cycle = 2};
{id = 'wserpent', patron = 'Winged Serpent'; duration = 3, cycle = 4 };
{id = 'lamb', patron = 'Lamb'; duration = 4};
{id = 'grackle', patron = 'Grackle'; duration = 3};
{id = 'thief', patron = 'Thief'; duration = 2, cycle = 6};
{id = 'egret', patron = 'Egret'; duration = 3};
{id = 'chipmunk', patron = 'Chipmunk'; duration = 2};
{id = 'ibis', patron = 'Ibis'; duration = 3, cycle = 7};
{id = 'fox', patron = 'Fox'; duration = 3, cycle = 8};
{id = 'cfox', patron = 'Cowled Fox'; duration = 3, cycle = 9};
|