- add q3a Excessive Plus gametypes (patch by Jason Santos)

git-svn-id: http://svn.code.sf.net/p/xqf/code/trunk@728 d2ac09be-c843-0410-8b1f-f8a84130e0ec
This commit is contained in:
Ludwig Nussel 2005-04-15 19:00:29 +00:00 committed by l-n
parent 593a588bbb
commit 5c26ce1408
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,6 @@
Apr 15, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
- add q3a Excessive Plus gametypes (patch by Jason Santos)
Apr 04, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
- add finish translation by Sami Laitinen

View File

@ -1076,6 +1076,20 @@ static char *q3a_wop_gametypes[MAX_Q3A_WOP_TYPES] = {
"BigBalloon (BB)" // 8
};
#define MAX_Q3A_EXCESSIVEPLUS_TYPES 10
static char *q3a_excessiveplus_gametypes[MAX_Q3A_EXCESSIVEPLUS_TYPES] = {
"FFA", /* 0 = Free for All */
"1v1", /* 1 = Tournament */
NULL, /* 2 = Single Player */
"TDM", /* 3 = Team Deathmatch */
"CTF", /* 4 = Capture the Flag */
"RTF", /* 5 = Return the Flag */
"One Flag CTF", /* 6 = One Flag Capture the Flag */
"Clan Arena", /* 7 = Clan Arena */
"Freeze Tag", /* 8 = Freeze Tag */
"Protect the Leader" /* 9 = Protect the Leader */
};
#define MAX_WOLF_TYPES 9
static char *wolf_gametypes[MAX_WOLF_TYPES] = {
NULL, // 0 - Unknown
@ -1236,6 +1250,11 @@ struct q3a_gametype_s q3a_gametype_map[] =
q3a_wop_gametypes,
MAX_Q3A_WOP_TYPES
},
{
"excessiveplus",
q3a_excessiveplus_gametypes,
MAX_Q3A_EXCESSIVEPLUS_TYPES
},
{
NULL,
NULL,