184
+ − 1
/*
+ − 2
* Hedgewars, a worms-like game
+ − 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
+ − 25
+ − 26
struct PredefinedTeam
+ − 27
{
+ − 28
const char * TeamName;
+ − 29
const char * hh0name;
+ − 30
const char * hh1name;
+ − 31
const char * hh2name;
+ − 32
const char * hh3name;
+ − 33
const char * hh4name;
+ − 34
const char * hh5name;
+ − 35
const char * hh6name;
+ − 36
const char * hh7name;
+ − 37
QString Grave;
+ − 38
QString Fort;
+ − 39
};
+ − 40
+ − 41
+ − 42
const PredefinedTeam pteams[PREDEFTEAMS_COUNT] =
+ − 43
{
+ − 44
{
+ − 45
QT_TRANSLATE_NOOP("teams", "Hedgehogs"),
+ − 46
QT_TRANSLATE_NOOP("teams", "hedgehog 1"),
+ − 47
QT_TRANSLATE_NOOP("teams", "hedgehog 2"),
+ − 48
QT_TRANSLATE_NOOP("teams", "hedgehog 3"),
+ − 49
QT_TRANSLATE_NOOP("teams", "hedgehog 4"),
+ − 50
QT_TRANSLATE_NOOP("teams", "hedgehog 5"),
+ − 51
QT_TRANSLATE_NOOP("teams", "hedgehog 6"),
+ − 52
QT_TRANSLATE_NOOP("teams", "hedgehog 7"),
+ − 53
QT_TRANSLATE_NOOP("teams", "hedgehog 8"),
+ − 54
"Simple", "Island"
+ − 55
},
+ − 56
{
+ − 57
QT_TRANSLATE_NOOP("teams", "Goddess"),
+ − 58
QT_TRANSLATE_NOOP("teams", "Isis"),
+ − 59
QT_TRANSLATE_NOOP("teams", "Astarte"),
+ − 60
QT_TRANSLATE_NOOP("teams", "Diana"),
+ − 61
QT_TRANSLATE_NOOP("teams", "Aphrodite"),
+ − 62
QT_TRANSLATE_NOOP("teams", "Hecate"),
+ − 63
QT_TRANSLATE_NOOP("teams", "Demeter"),
+ − 64
QT_TRANSLATE_NOOP("teams", "Kali"),
+ − 65
QT_TRANSLATE_NOOP("teams", "Inanna"),
+ − 66
"Bone", "Island"
+ − 67
},
+ − 68
{
+ − 69
QT_TRANSLATE_NOOP("teams", "Fruits"),
+ − 70
QT_TRANSLATE_NOOP("teams", "Banana"),
+ − 71
QT_TRANSLATE_NOOP("teams", "Apple"),
+ − 72
QT_TRANSLATE_NOOP("teams", "Orange"),
+ − 73
QT_TRANSLATE_NOOP("teams", "Lemon"),
+ − 74
QT_TRANSLATE_NOOP("teams", "Pineapple"),
+ − 75
QT_TRANSLATE_NOOP("teams", "Mango"),
+ − 76
QT_TRANSLATE_NOOP("teams", "Peach"),
+ − 77
QT_TRANSLATE_NOOP("teams", "Plum"),
+ − 78
"coffin", "Barrelhouse"
+ − 79
}
+ − 80
};
+ − 81
+ − 82
#endif // PREDEFTEAMS_H