Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
clanarena.qc
Go to the documentation of this file.
1#include "clanarena.qh"
2
3#ifdef MENUQC
4METHOD(ClanArena, describe, string(ClanArena this))
5{
6 TC(ClanArena, this);
8 PAR(_("%s is a common round-based gametype played with teams, where players spawn with all weapons available, have maximum health and armor, but only have one life per round. "
9 "There are no pickups available on the map in %s, making the gameplay fast-paced and focused on combat."), COLORED_NAME(this), COLORED_NAME(this));
10 PAR(_("Rounds start with a ten second grace period where weapons cannot be fired, so it's a good opportunity to group up with your team."));
11 PAR(_("The match ends once a team reaches a certain number of rounds won, or has a considerable lead over the other team."));
12 PAR(_("Since players only have one life per round, it's important to group up with fellow teammates and pay attention to any callouts from them. "
13 "Team coordination is key!"));
14 return PAGE_TEXT;
15}
16#endif
#define COLORED_NAME(this)
Definition color.qh:195
#define TC(T, sym)
Definition _all.inc:82
#define METHOD(cname, name, prototype)
Definition oo.qh:269
#define PAGE_TEXT
Definition string.qh:643
#define PAR(...)
Adds an individually translatable paragraph to PAGE_TEXT without having to deal with strcat and sprin...
Definition string.qh:649
#define PAGE_TEXT_INIT()
Definition string.qh:642