Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
vampire.qc
Go to the documentation of this file.
1#include "vampire.qh"
2
3#ifdef MENUQC
5
6METHOD(MutatorVampire, describe, string(MutatorVampire this))
7{
8 TC(MutatorVampire, this);
10 PAR(_("The %s mutator gives all players a permanent version of the %s buff. "
11 "However, unlike the normal %s buff, when this mutator is enabled players' health can go way above the usual limit of 200."), COLORED_NAME(this), COLORED_NAME(BUFF_VAMPIRE), COLORED_NAME(BUFF_VAMPIRE));
12 PAR(_("Additionally the amount of health players get is equal to the damage they deal, which isn't normally the case with the %s buff."), COLORED_NAME(BUFF_VAMPIRE));
13 return PAGE_TEXT;
14}
15#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