summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/System.c4g/Scroll.c
blob: 076c30b823532e90a0a0abd4123d88d0c0a97d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#strict 2

#appendto SCRL

func Initialize()
{
	if (mode == MODE_Festive)
	{
	var spells = [ABLA, MFWV, MICS, MLGT, MGPL];
	SetSpell(spells[Random(GetLength(spells))]);
	}
	else var spells = [ABLA, MBOT, MFRB, MDBT, GVTY, MMTR, MLGT, CFAL, MSSH, MINV, MQKE, MARK, MFWV, MGFL, LAVS, MGPL];
	SetSpell(spells[Random(GetLength(spells))]);
	
	return _inherited();
}