File: mission29

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 (116 lines) | stat: -rw-r--r-- 1,695 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
Mission {

	missionName = Biomech Tower Courtyard;

	bsp = data/bsp/biomechTower2.bsp;
	
	music = music/Warlord Theme.s3m;
	
	fogColor = 0.0 0.0 0.0;
	fogMin = 1000;
	fogMax = 5500;
	fogDensity = 1.0;
	
	skySphere = textures/game/starsky2.png;
	skySphereSize = 10;
	
	enemyLevel = 5;
	
	itemLimit = 50;
	
	exitToMission = AUTO;
	
	supplyCrateList = WEP_UZI|WEP_SHOTGUN|WEP_PLASMA_PISTOL|WEP_PLASMA_RIFLE;
};

Objective {

	id = 1;
	priority = OBJ_PRIORITY_PRIMARY;
	description = Defeat main courtyard forces;
	status = OBJ_INCOMPLETE;
	targetValue = 500;
	active = 1;
	completionTrigger = Deactivate Shield;

};

Objective {

	id = 2;
	priority = OBJ_PRIORITY_PRIMARY;
	description = Gain access to tower;
	status = OBJ_INCOMPLETE;
	active = 1;

};

// ============= Defeating Enemies =============

Trigger {

	active = 1;

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

};

// ========================= Completion Trigger ================


Trigger {

	active = 1;

	type = TRIGGER_TYPE_NONE;
	
	action = TRIGGER_ACTION_USE_CAMERA;
	name = Deactivate Shield;
	targetName = entranceShield;

};

Trigger {

	active = 1;

	type = TRIGGER_TYPE_NONE;
	
	action = TRIGGER_ACTION_TOGGLE_STRUCTURE;
	name = entranceShield;
	targetName = entranceShield;

};

Trigger {

	active = 1;

	type = TRIGGER_TYPE_NONE;
	
	action = TRIGGER_ACTION_ENABLE_FEATURE;
	name = entranceShield;
	targetName = entranceShield;

};

// ========================= Tower Entrance ================


Trigger {

	active = 1;

	type = TRIGGER_TYPE_LOCATION;
	
	action = TRIGGER_ACTION_UPDATE_OBJECTIVE;
	name = towerEntrance;
	objectiveId = 2;

};

@END@