1 /*
2 *
3 *  Iter Vehemens ad Necem (IVAN)
4 *  Copyright (C) Timo Kiviluoto
5 *  Released under the GNU General
6 *  Public License
7 *
8 *  See LICENSING which should be included
9 *  along with this file for more details
10 *
11 */
12
13/*
14 * NOTICE!!!
15 *
16 * This file contains SPOILERS, which might ruin your IVAN experience
17 * totally. Also, editing anything can DESTROY GAME BALANCE or CAUSE
18 * OBSCURE BUGS if you don't know what you're doing. So from here on,
19 * proceed at your own risk!
20 */
21
22/* Team data for the game */
23
24Teams = 19;
25
26/*
27 * Description of hard-coded teams:
28 *  0 == PLAYER_TEAM == Player and pets.
29 *  1 == MONSTER_TEAM == Monsters, by default hostile.
30 *  2 == ATTNAM_TEAM == Residents of Attnam.
31 *  3 == SUMO_TEAM == Huang Ming Pong during an arena fight.
32 *  4 == ANGEL_TEAM == Spawned hostile angels.
33 *  5 == GUILD_TEAM == Dungeon shopkeepers.
34 *  6 == IVAN_TEAM == Ivan and Vladimir.
35 *  7 == NEW_ATTNAM_TEAM == Natives and ostriches of New Attnam.
36 *  8 == COLONIST_TEAM == Colonists of New Attnam.
37 *  9 == TOURIST_GUIDE_TEAM == Dummy team which holds the village elder, whom the tourists follow.
38 * 10 == TOURIST_TEAM == Tourists of New Attnam.
39 * 11 == BETRAYED_TEAM == Pets which the player has angered.
40 * 12 == XINROCH_TOMB_ENTRY_TEAM == The dudes in the tomb entrance of the Xinroch Tomb story arc.
41 * 13 == XINROCH_TOMB_NECRO_TEAM == Necro chamber operators in Xinroch's tomb.
42 * 14 == XINROCH_TOMB_KAMIKAZE_DWARF_TEAM == The fanatics in the gas chambers.
43 * 15 == PRISONER_TEAM == Prisoners in the Cathedral Cellar.
44 * 16 == TERRA_TEAM == Terra in the Crystal Cave.
45 * 17 == ASLONA_TEAM == People loyal to Aslona.
46 * 18 == REBEL_TEAM == The rebels.
47 */
48
49Team ATTNAM_TEAM;
50{
51  Relation 0, UNCARING;
52  KillEvilness = 50;
53}
54
55Team SUMO_TEAM;
56{
57  Relation 0, HOSTILE;
58}
59
60Team ANGEL_TEAM;
61{
62  Relation 0, HOSTILE;
63  Relation 1, UNCARING;
64}
65
66Team GUILD_TEAM;
67{
68  Relation 1, UNCARING;
69  KillEvilness = 100;
70}
71
72Team IVAN_TEAM;
73{
74  KillEvilness = 100;
75}
76
77Team NEW_ATTNAM_TEAM;
78{
79  KillEvilness = 50;
80}
81
82Team COLONIST_TEAM;
83{
84  Relation 7, FRIEND;
85}
86
87Team TOURIST_GUIDE_TEAM;
88{
89  Relation 7, FRIEND;
90  Relation 8, FRIEND;
91  KillEvilness = 50;
92}
93
94Team TOURIST_TEAM;
95{
96  Relation 7, FRIEND;
97  Relation 8, FRIEND;
98  KillEvilness = 10;
99}
100
101Team BETRAYED_TEAM;
102{
103  Relation 0, HOSTILE;
104  KillEvilness = 10;
105}
106
107Team XINROCH_TOMB_ENTRY_TEAM;
108{
109  Relation 0, UNCARING;
110  Relation 1, UNCARING;
111  KillEvilness = 50;
112}
113
114Team XINROCH_TOMB_NECRO_TEAM;
115{
116  Relation 1, UNCARING;
117  KillEvilness = 50;
118}
119
120Team XINROCH_TOMB_KAMIKAZE_DWARF_TEAM;
121{
122  Relation 1, UNCARING;
123  KillEvilness = 100;
124}
125
126Team PRISONER_TEAM;
127{
128  Relation 1, UNCARING;
129  /*Relation 17, FRIEND;
130  Relation 18, FRIEND;*/
131  KillEvilness = 100;
132}
133
134Team TERRA_TEAM;
135{
136  Relation 1, UNCARING;
137  Relation 2, HOSTILE;
138  Relation 7, FRIEND;
139  KillEvilness = 150;
140}
141
142Team ASLONA_TEAM;
143{
144  Relation 0, UNCARING;
145  Relation 18, HOSTILE;
146  KillEvilness = 50;
147}
148
149Team REBEL_TEAM;
150{
151  Relation 17, HOSTILE;
152  KillEvilness = 50;
153}
154
155/* Dungeons to be included in the game */
156
157Include "dungeons/";
158