author | unc0rr |
Sat, 06 Mar 2010 10:59:20 +0000 | |
changeset 2948 | 3f21a9dc93d0 |
parent 2657 | fce353f8b75a |
child 3236 | 4ab3917d7d44 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
184 | 3 |
* Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com> |
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef PREDEFTEAMS_H |
|
20 |
#define PREDEFTEAMS_H |
|
21 |
||
22 |
#include <QtGlobal> |
|
23 |
||
24 |
#define PREDEFTEAMS_COUNT 3 |
|
2657
fce353f8b75a
Add language to each ts file, rerun disabling of teams.
nemo
parents:
2656
diff
changeset
|
25 |
/* |
184 | 26 |
struct PredefinedTeam |
27 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
28 |
const char * TeamName; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
29 |
const char * hh0name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
30 |
const char * hh1name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
31 |
const char * hh2name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
32 |
const char * hh3name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
33 |
const char * hh4name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
34 |
const char * hh5name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
35 |
const char * hh6name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
36 |
const char * hh7name; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
37 |
const char * hh0hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
38 |
const char * hh1hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
39 |
const char * hh2hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
40 |
const char * hh3hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
41 |
const char * hh4hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
42 |
const char * hh5hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
43 |
const char * hh6hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
44 |
const char * hh7hat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
45 |
QString Grave; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
46 |
QString Fort; |
184 | 47 |
}; |
48 |
||
49 |
||
50 |
const PredefinedTeam pteams[PREDEFTEAMS_COUNT] = |
|
51 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
52 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
53 |
QT_TRANSLATE_NOOP("teams", "Hedgehogs"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
54 |
QT_TRANSLATE_NOOP("teams", "hedgehog 1"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
55 |
QT_TRANSLATE_NOOP("teams", "hedgehog 2"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
56 |
QT_TRANSLATE_NOOP("teams", "hedgehog 3"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
57 |
QT_TRANSLATE_NOOP("teams", "hedgehog 4"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
58 |
QT_TRANSLATE_NOOP("teams", "hedgehog 5"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
59 |
QT_TRANSLATE_NOOP("teams", "hedgehog 6"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
60 |
QT_TRANSLATE_NOOP("teams", "hedgehog 7"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
61 |
QT_TRANSLATE_NOOP("teams", "hedgehog 8"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
62 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
63 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
64 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
65 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
66 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
67 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
68 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
69 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
70 |
"Simple", "Island" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
71 |
}, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
72 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
73 |
QT_TRANSLATE_NOOP("teams", "Goddess"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
74 |
QT_TRANSLATE_NOOP("teams", "Isis"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
75 |
QT_TRANSLATE_NOOP("teams", "Astarte"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
76 |
QT_TRANSLATE_NOOP("teams", "Diana"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
77 |
QT_TRANSLATE_NOOP("teams", "Aphrodite"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
78 |
QT_TRANSLATE_NOOP("teams", "Hecate"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
79 |
QT_TRANSLATE_NOOP("teams", "Demeter"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
80 |
QT_TRANSLATE_NOOP("teams", "Kali"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
81 |
QT_TRANSLATE_NOOP("teams", "Inanna"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
82 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
83 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
84 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
85 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
86 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
87 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
88 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
89 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
90 |
"Bone", "Island" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
91 |
}, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
92 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
93 |
QT_TRANSLATE_NOOP("teams", "Fruits"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
94 |
QT_TRANSLATE_NOOP("teams", "Banana"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
95 |
QT_TRANSLATE_NOOP("teams", "Apple"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
96 |
QT_TRANSLATE_NOOP("teams", "Orange"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
97 |
QT_TRANSLATE_NOOP("teams", "Lemon"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
98 |
QT_TRANSLATE_NOOP("teams", "Pineapple"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
99 |
QT_TRANSLATE_NOOP("teams", "Mango"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
100 |
QT_TRANSLATE_NOOP("teams", "Peach"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
101 |
QT_TRANSLATE_NOOP("teams", "Plum"), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
102 |
"banana", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
103 |
"apple", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
104 |
"orange", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
105 |
"lemon", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
106 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
107 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
108 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
109 |
"NoHat", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
110 |
"coffin", "Barrelhouse" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2657
diff
changeset
|
111 |
} |
184 | 112 |
}; |
2657
fce353f8b75a
Add language to each ts file, rerun disabling of teams.
nemo
parents:
2656
diff
changeset
|
113 |
*/ |
184 | 114 |
#endif // PREDEFTEAMS_H |