File: mission02

package info (click to toggle)
blobandconquer 1.11-dfsg%2B20-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 89,720 kB
  • sloc: cpp: 39,033; ansic: 362; makefile: 143
file content (53 lines) | stat: -rw-r--r-- 902 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Mission {

	missionName = Inner Cave Network #5;

	bsp = data/bsp/caves1.bsp;
	
	music = music/Dragon Cave.xm;
	
	fogColor = 0.0 0.0 0.0;
	
	fogMin = 1000;
	
	fogMax = 1500;
	
	fogDensity = 0.35;
	
	skySphere = textures/game/overcast.png;
	
	supplyCrateList = WEP_UZI|WEP_SHOTGUN;
	
	enemySpawnList = NME_PISTOL_BLOB|NME_PISTOL_DROID|NME_GRENADE_BLOB|NME_MACHINEGUN_DROID;
	spawnSize = 3;
	minSpawnTime = 4000;
	maxSpawnTime = 4500;
	
	ambientEffects = sound/ambience/caves/lava1.ogg|sound/ambience/caves/lava2.ogg|sound/ambience/caves/lava3.ogg|sound/ambience/caves/lava4.ogg;
	
	exitToMission = AUTO;
};

Objective {

	id = 1;
	priority = OBJ_PRIORITY_PRIMARY;
	description = Find a way through the caves;
	status = OBJ_INCOMPLETE;
	active = 1;

};

Trigger {

	active = 1;

	type = TRIGGER_TYPE_LOCATION;
	
	action = TRIGGER_ACTION_UPDATE_OBJECTIVE;
	name = checkpoint;
	objectiveId = 1;

};

@END@