File: mission23

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-- 861 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 {

	bsp = data/bsp/ambush.bsp;
	
	music = music/A Bear Called Otso.xm;
	
	supplyCrateList = WEP_UZI|WEP_SHOTGUN|WEP_PLASMA_PISTOL;
	
	fogColor = 0.25 0.25 0.25;
	fogMin = 0;
	fogMax = 7500;
	fogDensity = 0.25;
	
	enemyLevel = 4;
	
	skySphere = textures/game/dawn.jpg;
	skySphereSize = 1;
	
	exitToMission = AUTO;
	
	startCutscene = data/cutscenes/scripts/ambushStart;
	endCutscene = data/cutscenes/scripts/ambushEnd;
	
	bossDefFile = data/gameDefs/cryptBoss;
};

// =================== Objectives =================

Objective {

	id = 1;
	priority = OBJ_PRIORITY_PRIMARY;
	description = Fight Galdov;
	status = OBJ_INCOMPLETE;
	active = 1;

};

// =================== Triggers =======================

Trigger {

	active = 1;

	type = TRIGGER_TYPE_ENTITY_KILLED;
	
	action = TRIGGER_ACTION_UPDATE_OBJECTIVE;
	name = Galdov;
	objectiveId = 1;

};

@END@