blob: e026efa07334a1727b2144ee27dd391bcabcde93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-- Apocalyptic --*/
#strict 2
static const MODE_Apocalyptic = APCE;
protected func Activate(int player) { MessageWindow(GetDesc(), player); }
func Initialize()
{
AddEffect("CreateTeraFlints", 0, 20, 90);
AddEffect("ShakeScreen", 0, 20, 50);
AddEffect("Bottom", 0, 20, 2);
AddEffect("SkyAdjust", 0, 20, 1);
}
func ModeName() { return "$ModeName$"; }
func NoSpawnpoints() { return true; }
func NoCorpses() { return true; }
func AmbienceSounds() { return [["ExtremeAmbience.ogg", 75]]; }
|