Subversion-Projekte sthq.argas

Revision

Revision 43 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
 
2
/*
3
defaults and explanations of fields:
4
	aggression			3		How likely they are to attack (from 1 (least) to 5 (most))
5
	aim				3		How good their aim is (from 1 (worst) to 5 (best))
6
	earshot				1024		How far in map units they can hear, in map units
7
	evasion				3		How likely they are to take cover or defensive maneuvers (from 1 (least) to 5 (most))
8
	hfov				45		Horizontal field of view, in angles
9
	intelligence			3		How smart they are, in general (from 1 (least) to 5 (most))
10
	move				3		How complex their moves are when evading or in combat  (from 1 (least) to 5 (most))
11
	reactions			3		How quickly they react  (from 1 (worst) to 5 (best))
12
	shootDistance			0		Overrides current weapon's max range
13
	vfov				34		Vertical field of view, in angles
14
	vigilance			0.1		How likely they are to notice something (from 0 (never) to 1 (always))
15
	visrange			2048		How far away they can see something, in map units
16
	race				none		human, borg, parasite, klingon, malon, hirogen, stasis, species8472, dreadnought, harvester, reaver, avatar, vulcan
17
	playerTeam			none		starfleet, borg, parasite, scavengers, klingon ,malon, hirogen, imperial ,stasis ,species8472 ,dreadnought, forge
18
	enemyTeam			none		starfleet, borg, parasite, scavengers, klingon ,malon, hirogen, imperial ,stasis ,species8472 ,dreadnought, forge
19
 
20
	moveType			"runjump"	Which movetype they can be (other choices are "static", "walk" and "flyswim"
21
	yawSpeed			50		How quickly they can turn
22
	walkSpeed			150		How fast they walk
23
	runSpeed			300		How fast they run
24
	acceleration			15		Acceleration (accel x 20fps = speed up per second, so accel of 15 means they can go from 0 to 300 in one second)
25
								Accel of 0 means don't accel/decel - just start/stop (good if you're a slow mover anyway and/or robotic - like a Borg)
26
 
27
	scaleX				100		X (horiz) scale, 100 is normal 100% scale
28
	scaleY				100		Y (horiz) scale, 100 is normal 100% scale
29
	scaleZ				100		Z (vert) scale, 100 is normal 100% scale
30
	scale				100		Sets all above 3 to what you specify
31
	headModel			"hazard"	model directory/skin name
32
	torsoModel			"hazard"	model directory/skin name
33
	legsModel			"hazard"	model directory/skin name
34
	headYawRangeLeft		70		How far left you can turn your head (angles)
35
	headYawRangeRight		70		How far right you can turn your head (angles)
36
	headPitchRangeUp		60		How far up you can tilt your head (angles)
37
	headPitchRangeDown		60		How far down you can tilt your head (angles)
38
	torsoYawRangeLeft		60		How far left you can turn your torso (angles)
39
	torsoYawRangeRight		60		How far right you can turn your torso (angles)
40
	torsoPitchRangeUp		30		How far up you can tilt your torso (angles)
41
	torsoPitchRangeDown		70		How far down you can tilt your torso (angles)
42
 
43
	snd				"munro"		subdirectory of sound/player from which to get custom sounds (pain, death, jump, etc.)
44
*/
45
 
46
Headbot
47
{
48
	headmodel	none
49
	torsomodel	none
50
	legsmodel	headbot
51
	walkSpeed	60
52
	runSpeed	100
53
	playerTeam	dreadnought
54
	enemyTeam	starfleet
55
	race		dreadnought
56
	height		32
57
	width		8
58
	moveType	"flyswim"
59
	yawspeed	90
60
	snd		bot
61
}
62
 
63
scoutbot
64
{
65
	headmodel	none
66
	torsomodel	scoutbot
67
	legsmodel	scoutbot
68
	width		20
69
	height		40
70
	crouchheight	32
71
	walkSpeed	60
72
	runSpeed	100
73
	headYawRangeLeft		0
74
	headYawRangeRight		0
75
	headPitchRangeUp		90
76
	headPitchRangeDown		90
77
	torsoYawRangeLeft		0
78
	torsoYawRangeRight		0
79
	torsoPitchRangeUp		0
80
	torsoPitchRangeDown		0
81
	playerTeam	dreadnought
82
	enemyTeam	starfleet
83
	race		dreadnought
84
	snd		scoutbot
85
	hFOV	120
86
}
87
 
88
hunterseeker
89
{
90
	headmodel	none
91
	torsomodel	hunterseeker
92
	legsmodel	hunterseeker
93
	walkSpeed	60
94
	runSpeed	100
95
	playerTeam	dreadnought
96
	enemyTeam	starfleet
97
	race		dreadnought
98
	width		20
99
	height	21
100
	moveType	"flyswim"
101
	yawspeed	120
102
	snd		hunter
103
	hFOV		120
104
}
105
 
106
warriorbot
107
{
108
	headmodel	warbot
109
	torsomodel	warbot
110
	legsmodel	warbot
111
	width		20
112
	height		82
113
	crouchheight	64
114
	walkSpeed	52
115
	runSpeed	200
116
	playerTeam	dreadnought
117
	enemyTeam	starfleet
118
	race		dreadnought
119
	yawspeed	120
120
	snd		warbot
121
	hFOV		120
122
}
123
 
124
warriorbot_boss
125
{
126
	headmodel	warbot_boss
127
	torsomodel	warbot_boss
128
	legsmodel	warbot_boss
129
	width		20
130
	height		82
131
	crouchheight	64
132
	walkSpeed	52
133
	runSpeed	200
134
	playerTeam	dreadnought
135
	enemyTeam	starfleet
136
	race		dreadnought
137
	yawspeed	120
138
	snd		warbot
139
	hFOV		120
140
}
141
 
142
avatar
143
{
144
	headmodel	avatar
145
	torsomodel	avatar
146
	legsmodel	avatar
147
	walkSpeed	100
148
	runSpeed	200
149
	playerTeam	forge
150
	enemyTeam	starfleet
151
	race		avatar
152
	yawspeed	120
153
	height	68
154
	headYawRangeLeft	20
155
	headYawRangeRight	20
156
	snd		avatar
157
	hFOV		120
158
}
159
 
160
//USS Enterprise Crew
161
//this munro entry bugs me. i wish we could get rid of it.
162
 
163
munro
164
{
165
	rank		captain
166
	fullName	"Kirk, James T."
21 lars 167
	headmodel	kirk
1 lars 168
	torsomodel	Hazard/tosgold_capt
169
	legsmodel	Hazard/tos
170
	reactions	3
171
	aim		3
172
	move		3
173
	aggression	3
174
	evasion		3
175
	intelligence	3
176
	scale		104
177
	playerTeam	starfleet
178
	enemyTeam	klingon
179
	race		human
180
	snd		kirk
181
	sndcombat	kirk
182
}
183
 
184
//SENIOR STAFF
185
kirk
186
{
187
	rank		captain
188
	fullName	"Kirk, James T."
189
	headmodel	kirk
190
	torsomodel	Hazard/tosgold_capt
191
	legsmodel	Hazard/tos
192
	reactions	3
193
	aim		3
194
	move		3
195
	aggression	3
196
	evasion		3
197
	intelligence	3
198
	scale		104
199
	playerTeam	starfleet
200
	enemyTeam	klingon
201
	race		human
202
	snd		kirk
203
	sndextra	kirk
204
}
205
 
2 lars 206
kirk_s1
207
{
208
	rank		captain
209
	fullName	"Kirk, James T."
210
	headmodel	kirk
211
	torsomodel	Hazard/tosgreen_capt
212
	legsmodel	Hazard/tos
213
	reactions	3
214
	aim		3
215
	move		3
216
	aggression	3
217
	evasion		3
218
	intelligence	3
219
	scale		104
220
	playerTeam	starfleet
221
	enemyTeam	klingon
222
	race		human
223
	snd		kirk
224
	sndextra	kirk
225
}
226
 
1 lars 227
kirk_swim
228
{
229
	rank		captain
230
	fullName	"Kirk, James T."
21 lars 231
	headmodel	kirk_swim
1 lars 232
	torsomodel	kirk_swim/default
233
	legsmodel	kirk_swim/default
234
	reactions	3
235
	aim		3
236
	move		3
237
	aggression	3
238
	evasion		3
239
	intelligence	3
21 lars 240
	scaley		98
241
	scalex		98
242
	scalez		101
1 lars 243
	playerTeam	starfleet
244
	enemyTeam	klingon
245
	race		human
246
	snd		kirk
247
	sndextra	kirk
248
}
249
 
250
spock
251
{
252
	rank		commander
253
	fullName	"Spock"
254
	position	"Science Officer"
43 Andorian 255
	position_dt	"Wissenschaftsoffizier"
1 lars 256
	headmodel	spock/default
257
	torsomodel	Hazard/tosbluecom
258
	legsmodel	Hazard/tos
259
	reactions	3
260
	aim		3
261
	move		3
262
	aggression	3
263
	evasion		3
264
	intelligence	3
265
	scaley		98
266
	scalex		98
267
	scalez		105
268
	playerTeam	starfleet
269
	enemyTeam	klingon
270
	race		vulcan
271
	snd		spock
272
	sndextra	spock
273
}
274
 
275
mccoy
276
{
277
	rank		ltcomm
278
	fullName	"McCoy, Leonard, H."
279
	position	"Chief Medical Officer"
43 Andorian 280
	position_dt	"Chefarzt"
1 lars 281
	headmodel	mccoy
282
	torsomodel	Hazard/tosblueltcom
283
	legsmodel	Hazard/tos
284
	reactions	3
285
	aim		1
286
	move		3
287
	aggression	1
288
	evasion		3
289
	intelligence	3
290
	scaley		100
291
	scalex		100
292
	scalez		105
293
	playerTeam	starfleet
294
	enemyTeam	klingon
295
	race		human
21 lars 296
	snd		mccoy
297
	sndextra	mccoy
1 lars 298
}
299
 
300
mccoymedic
301
{
302
	rank		ltcomm
303
	fullName	"McCoy, Leonard, H."
304
	position	"Chief Medical Officer"
43 Andorian 305
	position_dt	"Chefarzt"
1 lars 306
	headmodel	mccoy_medic
307
	torsomodel	tosoveralls/medic
308
	legsmodel	tosoveralls/tos
309
	reactions	3
310
	aim		1
311
	move		3
312
	aggression	1
313
	evasion		3
314
	intelligence	3
315
	scaley		100
316
	scalex		100
317
	scalez		105
318
	playerTeam	starfleet
319
	enemyTeam	klingon
320
	race		human
21 lars 321
	snd		mccoy
322
	sndextra	mccoy
1 lars 323
}
324
 
325
sulu
326
{
327
	rank		lt
328
	fullName	"Sulu, Hikaru"
329
	position	"Helmsman"
43 Andorian 330
	position_dt	"Steuermann"
1 lars 331
	headmodel	sulu
332
	torsomodel	Hazard/tosgoldlt
333
	legsmodel	Hazard/tos
334
	reactions	3
335
	aim		1
336
	move		3
337
	aggression	1
338
	evasion		3
339
	intelligence	3
340
	scaley		100
341
	scalex		100
342
	scalez		105
343
	playerTeam	starfleet
344
	enemyTeam	klingon
345
	race		human
346
	snd		sulu
347
	sndextra	sulu
348
}
349
 
350
chekov
351
{
352
	rank		ensign
353
	fullName	"Chekov, Pavel"
43 Andorian 354
	position	"Navigator"
355
	position_dt	"Navigator"
1 lars 356
	headmodel	chekov
357
	torsomodel	Hazard/tosgold
358
	legsmodel	Hazard/tos
359
	reactions	3
360
	aim		3
361
	move		3
362
	aggression	3
363
	evasion		3
364
	intelligence	3
365
	scaley		99
366
	scalex		99
367
	scalez		105
368
	playerTeam	starfleet
369
	enemyTeam	klingon
370
	race		human
371
	snd		chekov
372
	sndextra	chekov
373
	walkSpeed	55
374
	runSpeed	200
375
}
376
 
377
 
378
scotty
379
{
380
	rank		ltcomm
381
	position	"Chief Engineer"
43 Andorian 382
	position_dt	"Chefingenieur"
1 lars 383
	fullName	"Scott, Montgomery"
384
	headmodel	scotty
385
	torsomodel	Hazard/tosredltcom
386
	legsmodel	Hazard/tos
387
	reactions	3
388
	aim		1
389
	move		3
390
	aggression	1
391
	evasion		3
392
	intelligence	3
393
	scaley		100
394
	scalex		100
395
	scalez		105
396
	playerTeam	starfleet
397
	enemyTeam	klingon
398
	race		human
399
	snd		scotty
400
	sndextra	scotty
401
}
402
 
403
uhura
404
{
405
	rank		lt
406
	fullname	"Uhura, Nyota"
43 Andorian 407
	position	"Communications Officer"
408
	position_dt	"Kommunikationsoffizier"
1 lars 409
	headmodel	uhura
410
	torsomodel	TOSfem/redlt_blk
411
	legsmodel	TOSfem/red
412
	reactions	3
413
	aim		3
414
	move		3
415
	aggression	3
416
	evasion		3
417
	intelligence	3
418
	scale		102
419
	playerTeam	starfleet
420
	enemyTeam	klingon
421
	race		human
422
	snd		gencrewf
423
	sndextra	gencrewf
424
	walkSpeed	55
425
	runSpeed	200
426
}
427
 
428
rand
429
{
430
	rank		crewman
431
	fullName	"Rand, Janice"
432
	position	"Captain's Yeoman"
43 Andorian 433
	position_dt	"Bootsmann"
1 lars 434
	headmodel	rand
435
	torsomodel	tosfem/rand
436
	legsmodel	tosfem/rand
437
	reactions	5
438
	aim		5
439
	move		5
440
	aggression	3
441
	evasion		5
442
	intelligence	5
443
	scale           95
444
	playerTeam	starfleet
445
	enemyTeam	klingon
446
	race		human
447
	snd		gencrewf
448
	sndextra	gencrewf
449
}
450
 
451
chapel
452
{
453
	rank		ensign
454
	fullName	"Chapel, Christine"
455
	position	"Head Nurse"
43 Andorian 456
	position_dt	"Oberschwester"
1 lars 457
	headmodel	chapel
21 lars 458
	torsomodel	TOSNurse
459
	legsmodel	TOSNurse
1 lars 460
	reactions	5
461
	aim		5
462
	move		5
463
	aggression	3
464
	evasion		5
465
	intelligence	5
466
	scaley		105
467
	scalex		105
468
	scalez		103
469
	playerTeam	starfleet
470
	enemyTeam	klingon
471
	race		human
472
	snd		gencrewf
473
	sndextra	gencrewf
474
}
475
 
476
 
477
 
478
//Science and Medical
479
 
21 lars 480
campeas
481
{
482
	rank		ensign
483
	fullName	"Campeas, Pepe"
484
	position	"Life Sciences"
43 Andorian 485
	position_dt	"Wissenschaftler"
21 lars 486
	headmodel	campeas
487
	torsomodel	Hazard/tosblue
488
	legsmodel	Hazard/tos
489
	reactions	3
490
	aim		3
491
	move		3
492
	aggression	3
493
	evasion		3
494
	intelligence	3
495
	scale		103
496
	playerTeam	starfleet
497
	enemyTeam	klingon
498
	race		human
499
	snd		gencrew3
500
	sndextra	gencrew3
501
	sndscav	genimp1
502
	walkSpeed	55
503
	runSpeed	200
504
}
505
 
1 lars 506
duval
507
{
508
	rank		lt
509
	fullName	"Duval, Pierre"
510
	position	"Astrobiologist"
43 Andorian 511
	position_dt	"Astrobiologe"
1 lars 512
	headmodel	duval
513
	torsomodel	TOSoveralls/blueoverall
514
	legsmodel	TOSoveralls/blueoverall
515
	reactions	3
516
	aim		3
517
	move		3
518
	aggression	3
519
	evasion		3
520
	intelligence	3
521
	scale		104
522
	playerTeam	starfleet
523
	enemyTeam	klingon
524
	race		human
525
	snd		gencrew3
526
	sndextra	gencrew3
527
	sndscav	genimp1
528
	walkSpeed	55
529
	runSpeed	200
530
}
531
 
532
frazer
533
{
534
	rank		lt
535
	fullName	"Frazer, Steven"
536
	position	"Xenobiologist"
43 Andorian 537
	position_dt	"Xenobiologe"
1 lars 538
	headmodel	frazer
539
	torsomodel	Hazard/tosbluelt
540
	legsmodel	Hazard/tos
541
	reactions	3
542
	aim		3
543
	move		3
544
	aggression	3
545
	evasion		3
546
	intelligence	3
547
	scaley		99
548
	scalex		99
549
	scalez		102
550
	playerTeam	starfleet
551
	enemyTeam	klingon
552
	race		human
553
	snd		chang
554
	sndcombat	chang
555
	sndextra	chang
556
	walkSpeed	55
557
	runSpeed	200
558
}
559
 
560
ghilardi
561
{
562
	rank		ensign
563
	headmodel	ghilardi
564
	fullName	"Ghilardi, Matteo"
565
	position	"Geologist"
43 Andorian 566
	position_dt	"Geologe"
25 lars 567
	torsomodel	Hazard/tosblue
1 lars 568
	legsmodel	Hazard/tos
569
	reactions	3
570
	aim		3
571
	move		3
572
	aggression	3
573
	evasion		3
574
	intelligence	3
575
	scaley		100
576
	scalex		100
577
	scalez		103
578
	playerTeam	starfleet
579
	enemyTeam	klingon
580
	race		human
581
	snd		gencrew1
582
	sndextra	gencrew1
583
	walkSpeed	55
584
	runSpeed	200
585
}
586
 
587
kaplan
588
{
589
	rank		ensign
590
	fullName	"Berganza, Yogonda"
591
	position	"Biophysics Officer"
43 Andorian 592
	position_dt	"Biophysikerin"
1 lars 593
	headmodel	kaplan
594
	torsomodel	TOSfem/blue
595
	legsmodel	TOSfem/blue
596
	reactions	3
597
	aim		3
598
	move		3
599
	aggression	3
600
	evasion		3
601
	intelligence	3
602
	scale		103
603
	playerTeam	starfleet
604
	enemyTeam	klingon
605
	race		human
606
	snd		gencrewf
607
	sndextra	gencrewf
608
	walkSpeed	55
609
	runSpeed	200
610
}
611
 
612
lang1
613
{
614
	rank		ensign
615
	fullName	"Lang, Lawrence"
616
	position	"Meteorologist"
43 Andorian 617
	position_dt	"Meteorologe"
1 lars 618
	headmodel	lang1
619
	torsomodel	Hazard/tosblue
620
	legsmodel	Hazard/tos
621
	reactions	3
622
	aim		3
623
	move		3
624
	aggression	3
625
	evasion		3
626
	intelligence	3
627
	scale		105
628
	playerTeam	starfleet
629
	enemyTeam	klingon
630
	race		human
631
	snd		gencrew3
632
	sndextra	gencrew3
633
	sndscav	genimp1
634
	walkSpeed	55
635
	runSpeed	200
636
}
637
 
638
masada
639
{
640
	rank		lt
641
	fullName	"Masada, Judith"
642
	position	"Astrochemist"
43 Andorian 643
	position_dt	"Astrochemikerin"
1 lars 644
	headmodel	masada
645
	torsomodel	tosfem/bluelt
646
	legsmodel	tosfem/blue
647
	reactions	3
648
	aim		3
649
	move		3
650
	aggression	3
651
	evasion		3
652
	intelligence	3
653
	scale		100
654
	playerTeam	starfleet
655
	enemyTeam	klingon
656
	race		human
657
	snd		gencrewf
658
	sndextra	gencrewf
659
	walkSpeed	55
660
	runSpeed	200
661
}
662
 
663
masters
664
{
665
	rank		lt
666
	fullname	"Masters, Charlene"
667
	position	"Auxiliary"
43 Andorian 668
	position_dt	"Hilfsingenieurin"
1 lars 669
	headmodel	masters
670
	torsomodel	TOSfem/bluelt_blk
671
	legsmodel	TOSfem/blue
672
	reactions	3
673
	aim		3
674
	move		3
675
	aggression	3
676
	evasion		3
677
	intelligence	3
678
	scale		103
679
	playerTeam	starfleet
680
	enemyTeam	klingon
681
	race		human
682
	snd		gencrewf
683
	sndextra	gencrewf
684
	walkSpeed	55
685
	runSpeed	200
686
}
687
 
14 Chief_Arms 688
mbenga
689
{
690
	rank		ltcomm
691
	fullName	"Mbenga, Sinzwei"
692
	position	"Surgeon"
43 Andorian 693
	position_dt	"Chirurg"
14 Chief_Arms 694
	headmodel	ejiofor
695
	torsomodel	tosoveralls/medic_blk
696
	legsmodel	tosoveralls/tos
697
	reactions	3
698
	aim		1
699
	move		3
700
	aggression	1
701
	evasion		3
702
	intelligence	3
703
	scaley		102
704
	scalex		102
705
	scalez		105
706
	playerTeam	starfleet
707
	enemyTeam	klingon
708
	race		human
709
	snd		gencrew1
710
	sndextra	gencrew1
711
}
712
 
1 lars 713
moreau
714
{
715
	rank		lt
716
	fullName	"Moreau, Marlena"
717
	position	"Chief Chemist"
43 Andorian 718
	position_dt	"Chefchemikerin"
1 lars 719
	headmodel	moreau
720
	torsomodel	TOSfem/bluelt
721
	legsmodel	TOSfem/blue
722
	reactions	3
723
	aim		3
724
	move		3
725
	aggression	3
726
	evasion		3
727
	intelligence	3
728
	scale		100
729
	playerTeam	starfleet
730
	enemyTeam	klingon
731
	race		human
732
	snd		gencrewf
733
	sndextra	gencrewf
734
	walkSpeed	55
735
	runSpeed	200
736
}
737
 
738
noel
739
{
740
	rank		ensign
741
	fullName	"Noel, Helen"
742
	position	"Psychotherapist"
43 Andorian 743
	position_dt	"Psychologin"
1 lars 744
	headmodel	noel
745
	torsomodel	TOSfem/blue
746
	legsmodel	TOSfem/blue
747
	reactions	3
748
	aim		3
749
	move		3
750
	aggression	3
751
	evasion		3
752
	intelligence	3
753
	scale		100
754
	playerTeam	starfleet
755
	enemyTeam	klingon
756
	race		human
757
	snd		gencrewf
758
	sndextra	gencrewf
759
	walkSpeed	55
760
	runSpeed	200
761
}
762
 
763
robson
764
{
25 lars 765
	rank		lt
1 lars 766
	fullName	"Robson, Sarah"
767
	position	"Head of Astronomical Mapping"
43 Andorian 768
	position_dt	"Chefkartographistin"
1 lars 769
	headmodel	robson
25 lars 770
	torsomodel	TOSfem/bluelt
1 lars 771
	legsmodel	TOSfem_alt/blue
772
	reactions	3
773
	aim		3
774
	move		3
775
	aggression	3
776
	evasion		3
777
	intelligence	3
778
	scale		103
779
	playerTeam	starfleet
780
	enemyTeam	klingon
781
	race		human
782
	snd		gencrewf
783
	sndextra	gencrewf
784
	walkSpeed	55
785
	runSpeed	200
786
}
787
 
9 lars 788
rajanih
789
{
790
	rank		crewman
791
	fullName	"Rajanih, Gurpreet"
792
	position	"Dentist"
43 Andorian 793
	position_dt	"Zahnarzt"
9 lars 794
	headmodel	rajanih
795
	torsomodel	TOSOveralls/blueoverall_blk
796
	legsmodel	TOSOveralls/blueoverall
797
	reactions	3
798
	aim		3
799
	move		3
800
	aggression	3
801
	evasion		3
802
	intelligence	3
803
	scaley		98
804
	scalex		98
805
	scalez		102
806
	playerTeam	starfleet
807
	enemyTeam	klingon
808
	race		human
809
	snd		gencrew1
810
	sndcombat	gencrew1
811
	sndextra	gencrew1
812
	sndscav	genimp1
813
	walkSpeed	55
814
	runSpeed	200
815
}
816
 
1 lars 817
ross
818
{
819
	rank		crewman
820
	fullName	"Ross, Kevin"
821
	position	"Lab Technician"
43 Andorian 822
	position_dt	"Labortechniker"
1 lars 823
	headmodel	ross
824
	torsomodel	TOSOveralls/blueoverall
825
	legsmodel	TOSOveralls/blueoverall
826
	reactions	3
827
	aim		3
828
	move		3
829
	aggression	3
830
	evasion		3
831
	intelligence	3
832
	scale		104
833
	playerTeam	starfleet
834
	enemyTeam	klingon
835
	race		human
836
	snd		genimp1
837
	sndcombat	genimp1
838
	sndextra	genimp1
839
	sndscav	genimp1
840
	walkSpeed	55
841
	runSpeed	200
842
}
843
 
844
santiago
845
{
846
	rank		ensign
847
	fullName	"Santiago, Pilar"
848
	position	"Sociologist"
43 Andorian 849
	position_dt	"Soziologe"
1 lars 850
	headmodel	santiago
851
	torsomodel	tosfem/blue
852
	legsmodel	tosfem/blue
853
	reactions	3
854
	aim		3
855
	move		3
856
	aggression	3
857
	evasion		3
858
	intelligence	3
859
	scale		98
860
	playerTeam	starfleet
861
	enemyTeam	klingon
862
	race		human
863
	snd		gencrew2
864
	sndextra	gencrew2
865
	walkSpeed	55
866
	runSpeed	200
867
}
868
 
2 lars 869
saurian
870
{
871
	rank		lt
872
	fullName	"Larexx"
873
	position	"Xenobiologist"
43 Andorian 874
	position_dt	"Xenobiologe"
2 lars 875
	headmodel	saurian
876
	torsomodel	Hazard_saurian/tosbluelt_saur
877
	legsmodel	Hazard/tos
878
	reactions	3
879
	aim		3
880
	move		3
881
	aggression	3
882
	evasion		3
883
	intelligence	3
884
	scaley		97
885
	scalex		97
886
	scalez		102
887
	playerTeam	starfleet
888
	enemyTeam	klingon
889
	race		saurian
890
	snd		chang
891
	sndcombat	chang
892
	sndextra	chang
893
	walkSpeed	55
894
	runSpeed	200
895
}
21 lars 896
 
1 lars 897
standen
898
{
899
	rank		lt
900
	fullName	"Standen, Clive"
901
	position	"Neuro Surgeon"
43 Andorian 902
	position_dt	"Neurochirurg"
1 lars 903
	headmodel	standen
904
	torsomodel	Hazard/tosbluelt
905
	legsmodel	Hazard/tos
906
	reactions	3
907
	aim		3
908
	move		3
909
	aggression	3
910
	evasion		3
911
	intelligence	3
912
	scaley		99
913
	scalex		99
914
	scalez		102
915
	playerTeam	starfleet
916
	enemyTeam	klingon
917
	race		human
918
	snd		chang
919
	sndcombat	chang
920
	sndextra	chang
921
	walkSpeed	55
922
	runSpeed	200
923
}
924
 
925
takimoto
926
{
9 lars 927
	rank		ensign
1 lars 928
	fullName	"Takimoto, Hira"
929
	position	"Geological Technician "
43 Andorian 930
	position_dt	"Geologietechniker"
1 lars 931
	headmodel	takimoto
932
	torsomodel	Hazard/tosbluelt
933
	legsmodel	Hazard/tos
934
	reactions	3
935
	aim		3
936
	move		3
937
	aggression	3
938
	evasion		3
939
	intelligence	3
940
	scaley		99
941
	scalex		99
942
	scalez		102
943
	playerTeam	starfleet
944
	enemyTeam	klingon
945
	race		human
946
	snd		chang
947
	sndcombat	chang
948
	sndextra	chang
949
	walkSpeed	55
950
	runSpeed	200
951
}
952
 
953
theela
954
{
955
	rank		ensign
956
	fullName	"Theela"
957
	position	"Biomathematics"
43 Andorian 958
	position_dt	"Biomathematikerin"
1 lars 959
	headmodel	theela
960
	torsomodel	TOSfem/bluelt_and
961
	legsmodel	TOSfem_alt/blue
962
	reactions	3
963
	aim		3
964
	move		3
965
	aggression	3
966
	evasion		3
967
	intelligence	3
968
	scale		100
969
	playerTeam	starfleet
970
	enemyTeam	klingon
9 lars 971
	race		andorian
1 lars 972
	snd		gencrewf
973
	sndextra	gencrewf
974
	walkSpeed	55
975
	runSpeed	200
976
}
977
//Command
978
 
979
byrne
980
{
981
	rank		lt
982
	fullName	"Bryne, Richard"
983
	position	"Helmsmen"
43 Andorian 984
	position_dt	"Steuermann"
1 lars 985
	headmodel	byrne
986
	torsomodel	Hazard/tosgoldlt
987
	legsmodel	Hazard/tos
988
	reactions	3
989
	aim		3
990
	move		3
991
	aggression	3
992
	evasion		3
993
	intelligence	3
994
	scale		105
995
	playerTeam	starfleet
996
	enemyTeam	klingon
997
	race		human
998
	snd		nelson
999
	sndcombat	nelson
1000
	sndextra	nelson
1001
	sndscav	genimp1
1002
	walkSpeed	55
1003
	runSpeed	200
1004
}
1005
 
1006
calhoun
1007
{
1008
	rank		lt
1009
	fullName	"Calhoun, Michael"
1010
	position	"Navigator"
43 Andorian 1011
	position_dt	"Navigator"
1 lars 1012
	headmodel	calhoun
1013
	torsomodel	Hazard/tosgoldlt
1014
	legsmodel	Hazard/tos
1015
	reactions	3
1016
	aim		3
1017
	move		3
1018
	aggression	3
1019
	evasion		3
1020
	intelligence	3
1021
	scale		105
1022
	playerTeam	starfleet
1023
	enemyTeam	klingon
1024
	race		human
1025
	snd		nelson
1026
	sndcombat	nelson
1027
	sndextra	nelson
1028
	sndscav	genimp1
1029
	walkSpeed	55
1030
	runSpeed	200
1031
}
1032
 
1033
freeman
1034
{
1035
	rank		lt
1036
	fullName	"Freeman, Alec"
1037
	position	"Phaser Specialist"
43 Andorian 1038
	position_dt	"Phaserspezialist"
1 lars 1039
	headmodel	freeman
1040
	torsomodel	Hazard/tosgoldlt
1041
	legsmodel	Hazard/tos
1042
	reactions	3
1043
	aim		3
1044
	move		3
1045
	aggression	3
1046
	evasion		3
1047
	intelligence	3
1048
	scale		105
1049
	playerTeam	starfleet
1050
	enemyTeam	klingon
1051
	race		human
1052
	snd		gencrew2
1053
	sndextra	gencrew2
1054
	sndscav	genimp1
1055
	walkSpeed	55
1056
	runSpeed	200
1057
}
1058
 
21 lars 1059
garibaldi
1060
{
1061
	rank		lt
1062
	fullName	"Garibaldi, Mona"
1063
	position	"Navigator"
43 Andorian 1064
	position_dt	"Navigator"
21 lars 1065
	headmodel	garibaldi
1066
	torsomodel	tosfem/goldlt
1067
	legsmodel	tosfem_alt
1068
	reactions	3
1069
	aim		3
1070
	move		3
1071
	aggression	3
1072
	evasion		3
1073
	intelligence	3
1074
	scale		98
1075
	playerTeam	starfleet
1076
	enemyTeam	klingon
1077
	race		human
1078
	snd		gencrewf
1079
	sndextra	gencrewf
1080
	walkSpeed	55
1081
	runSpeed	200
1082
}
1083
 
14 Chief_Arms 1084
intaph
1085
{
1086
	rank		lt
1087
	fullname	"Intaph"
1088
	headmodel	intaph
1089
	position	"Navigator"
43 Andorian 1090
	position_dt	"Navigator"
14 Chief_Arms 1091
	torsomodel	Hazard/tosgold_and
1092
	legsmodel	Hazard/tos
1093
	reactions	3
1094
	aim		3
1095
	move		3
1096
	aggression	3
1097
	evasion		3
1098
	intelligence	3
1099
	scaley		98
1100
	scalex		98
1101
	scalez		104
1102
	playerTeam	starfleet
1103
	enemyTeam	klingon
1104
	race		andorian
1105
	snd		gencrew2
1106
	sndextra	gencrew2
1107
	sndscav	genimp1
1108
	walkSpeed	55
1109
	runSpeed	200
1110
	race		andorian
1111
}
1112
 
1 lars 1113
klein1
1114
{
1115
	rank		ensign
1116
	fullName	"Klein, Gert"
1117
	position	"Phaser Specialist"
43 Andorian 1118
	position_dt	"Phaserspezialist"
1 lars 1119
	headmodel	klein1
1120
	torsomodel	TOSoveralls/gym
1121
	legsmodel	TOSoveralls/gym
1122
	reactions	3
1123
	aim		3
1124
	move		3
1125
	aggression	3
1126
	evasion		3
1127
	intelligence	3
1128
	scale		105
1129
	playerTeam	starfleet
1130
	enemyTeam	klingon
1131
	race		human
1132
	snd		gencrew2
1133
	sndextra	gencrew2
1134
	sndscav	genimp1
1135
	walkSpeed	55
1136
	runSpeed	200
1137
}
1138
 
1139
montalvo
1140
{
1141
	rank		lt
1142
	fullName	"Montalvo, Donna"
1143
	position	"Helmsman"
43 Andorian 1144
	position_dt	"Steuermann"
1 lars 1145
	headmodel	montalvo
1146
	torsomodel	tosfem/goldlt
1147
	legsmodel	tosfem_alt
1148
	reactions	3
1149
	aim		3
1150
	move		3
1151
	aggression	3
1152
	evasion		3
1153
	intelligence	3
1154
	scale		99
1155
	playerTeam	starfleet
1156
	enemyTeam	klingon
1157
	race		human
1158
	snd		gencrewf
1159
	sndextra	gencrewf
1160
	walkSpeed	55
1161
	runSpeed	200
1162
}
1163
 
1164
lopez
1165
{
1166
	rank		lt
1167
	fullName	"Lopez, Sonya"
1168
	position	"Helmsman"
43 Andorian 1169
	position_dt	"Steuermann"
1 lars 1170
	headmodel	lopez
1171
	torsomodel	tosfem/goldlt
1172
	legsmodel	tosfem_alt
1173
	reactions	3
1174
	aim		3
1175
	move		3
1176
	aggression	3
1177
	evasion		3
1178
	intelligence	3
1179
	scale		99
1180
	playerTeam	starfleet
1181
	enemyTeam	klingon
1182
	race		human
1183
	snd		gencrewf
1184
	sndextra	gencrewf
1185
	walkSpeed	55
1186
	runSpeed	200
1187
}
1188
 
1189
mariona
1190
{
1191
	rank		lt
1192
	fullname	"Mariona, Yuri"
1193
	position	"Botanist"
43 Andorian 1194
	position_dt	"Botanikerin"
1 lars 1195
	headmodel	mariona
1196
	torsomodel	tosfem/goldlt
1197
	legsmodel	tosfem/gold
1198
	reactions	3
1199
	aim		3
1200
	move		3
1201
	aggression	3
1202
	evasion		3
1203
	intelligence	3
1204
	scale		103
1205
	playerTeam	starfleet
1206
	enemyTeam	klingon
1207
	race		human
1208
	snd		gencrewf
1209
	sndextra	gencrewf
1210
	walkSpeed	55
1211
	runSpeed	200
1212
}
1213
 
1214
 
1215
oliver
1216
{
25 lars 1217
	rank		ensign
1 lars 1218
	fullName	"Oliver, Pete"
1219
	position	"Helmsmen"
43 Andorian 1220
	position_dt	"Steuermann"
1 lars 1221
	headmodel	oliver
1222
	torsomodel	Hazard/tosgoldltcom
1223
	legsmodel	Hazard/tos
1224
	reactions	3
1225
	aim		3
1226
	move		3
1227
	aggression	3
1228
	evasion		3
1229
	intelligence	3
1230
	scale		105
1231
	playerTeam	starfleet
1232
	enemyTeam	klingon
1233
	race		human
1234
	snd		csatlos
1235
	sndcombat	csatlos
1236
	sndextra	csatlos
1237
	sndscav	genimp1
1238
	walkSpeed	55
1239
	runSpeed	200
1240
}
1241
 
1242
 
1243
 
1244
 
1245
//Engineering & Support Services
1246
 
9 lars 1247
anderson
1248
{
1249
	rank		crewman
1250
	fullName	"Anderson, P.T."
1251
	position	"Engineering Technician"
43 Andorian 1252
	position_dt	"Maschinentechniker"
9 lars 1253
	headmodel	stewart/anderson
1254
	torsomodel	TOSoveralls/redoverall
1255
	legsmodel	TOSoveralls/redoverall
1256
	reactions	3
1257
	aim		3
1258
	move		3
1259
	aggression	3
1260
	evasion		3
1261
	intelligence	3
1262
	scale		103
1263
	playerTeam	starfleet
1264
	enemyTeam	klingon
1265
	race		human
1266
	snd		csatlos
1267
	sndcombat	csatlos
1268
	sndextra	csatlos
1269
	walkSpeed	55
1270
	runSpeed	200
1271
}
1272
 
14 Chief_Arms 1273
antonov
1274
{
1275
	rank		ensign
1276
	fullName	"Antonov, Gari"
1277
	position	"Engineer"
43 Andorian 1278
	position_dt	"Ingenieur"
14 Chief_Arms 1279
	headmodel	sivertsen/antonov
1280
	torsomodel	Hazard/tosred
1281
	legsmodel	Hazard/tos
1282
	reactions	3
1283
	aim		3
1284
	move		3
1285
	aggression	3
1286
	evasion		3
1287
	intelligence	3
1288
	scale		105
1289
	playerTeam	starfleet
1290
	enemyTeam	klingon
1291
	race		human
1292
	snd		gencrew3
1293
	sndextra	gencrew3
1294
	sndscav	genimp1
1295
	walkSpeed	55
1296
	runSpeed	200
1297
}
1298
 
21 lars 1299
armstrong
1300
{
1301
	rank		crewman
1302
	fullName	"Armstrong, Ken"
1303
	position	"Chief Technician"
43 Andorian 1304
	position_dt	"Cheftechniker"
21 lars 1305
	headmodel	armstrong
1306
	torsomodel	TOSoveralls/redoverall2
1307
	legsmodel	TOSoveralls/redoverall
1308
	reactions	3
1309
	aim		3
1310
	move		3
1311
	aggression	3
1312
	evasion		3
1313
	intelligence	3
1314
	scale		101
1315
	playerTeam	starfleet
1316
	enemyTeam	klingon
1317
	race		human
1318
	snd		csatlos
1319
	sndcombat	csatlos
1320
	sndextra	csatlos
1321
	walkSpeed	55
1322
	runSpeed	200
1323
}
1324
 
1 lars 1325
barrows
1326
{
1327
	rank		lt
1328
	fullname	"Barrows, Tonia"
1329
	position	"Assistant Historian"
43 Andorian 1330
	position_dt	"Stelv Historikerin"
1 lars 1331
	headmodel	barrows
1332
	torsomodel	TOSfem/redlt
1333
	legsmodel	tosfem/red
1334
	reactions	3
1335
	aim		3
1336
	move		3
1337
	aggression	3
1338
	evasion		3
1339
	intelligence	3
1340
	scale		102
1341
	playerTeam	starfleet
1342
	enemyTeam	klingon
1343
	race		human
1344
	snd		gencrewf
1345
	sndextra	gencrewf
1346
	walkSpeed	55
1347
	runSpeed	200
1348
}
1349
 
1350
bauer
1351
{
1352
	rank		ensign
1353
	fullname	"Bauer, Jennifer"
1354
	position	"Cryptography"
43 Andorian 1355
	position_dt	"Kryptographin"
1 lars 1356
	headmodel	bauer
1357
	torsomodel	TOSfem/red
1358
	legsmodel	TOSfem/red
1359
	reactions	3
1360
	aim		3
1361
	move		3
1362
	aggression	3
1363
	evasion		3
1364
	intelligence	3
1365
	scale		102
1366
	playerTeam	starfleet
1367
	enemyTeam	klingon
1368
	race		human
1369
	snd		gencrewf
1370
	sndextra	gencrewf
1371
	walkSpeed	55
1372
	runSpeed	200
1373
}
1374
 
1375
bernard
1376
{
1377
	rank		ensign
1378
	fullName	"Bernard, Julian"
1379
	position	"Engineer"
43 Andorian 1380
	position_dt	"Ingenieur"
1 lars 1381
	headmodel	bernard
1382
	torsomodel	Hazard/tosred
1383
	legsmodel	Hazard/tos
1384
	reactions	3
1385
	aim		3
1386
	move		3
1387
	aggression	3
1388
	evasion		3
1389
	intelligence	3
1390
	scale		105
1391
	playerTeam	starfleet
1392
	enemyTeam	klingon
1393
	race		human
1394
	snd		gencrew3
1395
	sndextra	gencrew3
1396
	sndscav	genimp1
1397
	walkSpeed	55
1398
	runSpeed	200
1399
}
1400
 
1401
carlisle
1402
{
1403
	rank		ensign
1404
	fullName	"Carlisle, Nancy"
1405
	position	"Communications Officer"
43 Andorian 1406
	position_dt	"Kommunikationsoffizier"
1 lars 1407
	headmodel	carlisle
1408
	torsomodel	TOSfem/red
1409
	legsmodel	TOSfem/red
1410
	reactions	3
1411
	aim		3
1412
	move		3
1413
	aggression	3
1414
	evasion		3
1415
	intelligence	3
1416
	scale		98
1417
	playerTeam	starfleet
1418
	enemyTeam	klingon
1419
	race		human
1420
	snd		gencrewf
1421
	sndextra	gencrewf
1422
	walkSpeed	55
1423
	runSpeed	200
1424
}
1425
 
1426
colt
1427
{
9 lars 1428
	rank		ltcomm
1 lars 1429
	fullname	"Colt, Jane"
1430
	position	"Security Chief"
43 Andorian 1431
	position_dt	"Sicherheitschef"
1 lars 1432
	headmodel	yeoman_colt
1433
	torsomodel	TOSfem/redlt_pale
1434
	legsmodel	tosfem_alt/red
1435
	reactions	3
1436
	aim		3
1437
	move		3
1438
	aggression	3
1439
	evasion		3
1440
	intelligence	3
1441
	scale		102
1442
	playerTeam	starfleet
1443
	enemyTeam	klingon
1444
	race		human
1445
	snd		gencrewf
1446
	sndextra	gencrewf
1447
	walkSpeed	55
1448
	runSpeed	200
1449
}
1450
 
1451
 
1452
ejiofor
1453
{
1454
	rank		ensign
1455
	fullName	"Ejiofor, Chukuma"
1456
	position	"Security Officer"
43 Andorian 1457
	position_dt	"Sicherheitsoffizier"
1 lars 1458
	headmodel	ejiofor
1459
	torsomodel	Hazard/tosred_blk
1460
	legsmodel	Hazard/tos
1461
	reactions	3
1462
	aim		3
1463
	move		3
1464
	aggression	3
1465
	evasion		3
1466
	intelligence	3
1467
	scale		105
1468
	playerTeam	starfleet
1469
	enemyTeam	klingon
1470
	race		human
1471
	snd		gencrew3
1472
	sndextra	gencrew3
1473
	sndextra	genimp1
1474
	sndscav	genimp1
1475
	walkSpeed	55
1476
	runSpeed	200
1477
}
1478
 
1479
 
1480
fischer
1481
{
1482
	rank		lt
1483
	fullname	"Fischer, John"
1484
	position	"Communications Officer"
43 Andorian 1485
	position_dt	"Kommunikationsoffizier"
1 lars 1486
	headmodel	fischer
1487
	torsomodel	Hazard/tosredlt
1488
	legsmodel	Hazard/tos
1489
	reactions	3
1490
	aim		3
1491
	move		3
1492
	aggression	3
1493
	evasion		3
1494
	intelligence	3
1495
	scale		103
1496
	playerTeam	starfleet
1497
	enemyTeam	klingon
1498
	race		human
1499
	snd		fischer
1500
	sndextra	fischer
1501
	walkSpeed	55
1502
	runSpeed	200
1503
}
1504
 
1505
giotto
1506
{
1507
	rank		ltcomm
1508
	fullname	"Giotto, Frank"
1509
	position	"Weapons Quartermaster"
43 Andorian 1510
	position_dt	"Sicherheitschef"
1 lars 1511
	headmodel	giotto
1512
	torsomodel	Hazard/tosredltcom
1513
	legsmodel	Hazard/tos
1514
	reactions	3
1515
	aim		3
1516
	move		3
1517
	aggression	3
1518
	evasion		3
1519
	intelligence	3
1520
	scale		104
1521
	playerTeam	starfleet
1522
	enemyTeam	klingon
1523
	race		human
1524
	snd		gencrew1
1525
	sndextra	gencrew1
1526
	walkSpeed	55
1527
	runSpeed	200
1528
}
1529
 
1530
jackstone
1531
{
1532
	rank		lt
1533
	fullname	"Jackstone, Cleo"
1534
	position	"Security"
43 Andorian 1535
	position_dt	"Wachoffzier"
1 lars 1536
	headmodel	yeoman_colt
1537
	torsomodel	TOSfem/redlt_blk
1538
	legsmodel	tosfem_alt/red
1539
	reactions	3
1540
	aim		3
1541
	move		3
1542
	aggression	3
1543
	evasion		3
1544
	intelligence	3
1545
	scale		103
1546
	playerTeam	starfleet
1547
	enemyTeam	klingon
1548
	race		human
1549
	snd		gencrewf
1550
	sndextra	gencrewf
1551
	walkSpeed	55
1552
	runSpeed	200
1553
}
1554
 
21 lars 1555
kobarg
1556
{
1557
	rank		ensign
1558
	fullName	"Kobarg, Lars C."
1559
	position	"Engineer"
43 Andorian 1560
	position_dt	"Ingenieur"
21 lars 1561
	headmodel	kobarg
1562
	torsomodel	TOSoveralls/redoverall
1563
	legsmodel	TOSoveralls/redoverall
1564
	reactions	3
1565
	aim		3
1566
	move		3
1567
	aggression	3
1568
	evasion		3
1569
	intelligence	3
1570
	scale		104
1571
	playerTeam	starfleet
1572
	enemyTeam	klingon
1573
	race		human
1574
	snd		gencrew3
1575
	sndextra	gencrew3
1576
	sndscav	genimp1
1577
	walkSpeed	55
1578
	runSpeed	200
1579
}
1 lars 1580
 
21 lars 1581
kyoto
1582
{
1583
	rank		ensign
1584
	fullName	"Kyoto, Kenji"
1585
	position	"Engineer"
43 Andorian 1586
	position_dt	"Ingenieur"
21 lars 1587
	headmodel	kyoto
1588
	torsomodel	TOSoveralls/gym
1589
	legsmodel	TOSoveralls/gym
1590
	reactions	3
1591
	aim		3
1592
	move		3
1593
	aggression	3
1594
	evasion		3
1595
	intelligence	3
1596
	scale		102
1597
	playerTeam	starfleet
1598
	enemyTeam	klingon
1599
	race		human
1600
	snd		gencrew1
1601
	sndextra	gencrew1
1602
	sndscav	genimp1
1603
	walkSpeed	55
1604
	runSpeed	200
1605
}
1606
 
1 lars 1607
larke
1608
{
9 lars 1609
	rank		lt
1 lars 1610
	fullname	"Larke, Jennifer"
1611
	position	"Historian"
43 Andorian 1612
	position_dt	"Historikerin"
1 lars 1613
	headmodel	larke
1614
	torsomodel	TOSfem/red
1615
	legsmodel	TOSfem/red
1616
	reactions	3
1617
	aim		3
1618
	move		3
1619
	aggression	3
1620
	evasion		3
1621
	intelligence	3
1622
	scale		102
1623
	playerTeam	starfleet
1624
	enemyTeam	klingon
1625
	race		human
1626
	snd		gencrewf
1627
	sndextra	gencrewf
1628
	walkSpeed	55
1629
	runSpeed	200
1630
}
1631
 
1632
mchenry
1633
{
1634
	rank		crewman
1635
	fullName	"McHenry, Martin"
1636
	position	"Engineer"
43 Andorian 1637
	position_dt	"Ingenieur"
1 lars 1638
	headmodel	mchenry
1639
	torsomodel	TOSoveralls/redoverall
1640
	legsmodel	TOSoveralls/redoverall
1641
	reactions	3
1642
	aim		3
1643
	move		3
1644
	aggression	3
1645
	evasion		3
1646
	intelligence	3
1647
	scale		102
1648
	playerTeam	starfleet
1649
	enemyTeam	klingon
1650
	race		human
1651
	snd		genimp1
1652
	sndcombat	genimp1
1653
	sndextra	genimp1
1654
	sndscav	genimp1
1655
	walkSpeed	98
1656
	runSpeed	200
1657
}
1658
 
1659
mclynn
1660
{
1661
	rank		lt
1662
	fullname	"McLynn, J.J."
1663
	position	"Security Chief"
43 Andorian 1664
	position_dt	"Sicherheitschef"
1 lars 1665
	headmodel	mclynn
1666
	torsomodel	TOSfem/redlt
1667
	legsmodel	tosfem_alt/red
1668
	reactions	3
1669
	aim		3
1670
	move		3
1671
	aggression	3
1672
	evasion		3
1673
	intelligence	3
1674
	scale		102
1675
	playerTeam	starfleet
1676
	enemyTeam	klingon
1677
	race		human
1678
	snd		gencrewf
1679
	sndextra	gencrewf
1680
	walkSpeed	55
1681
	runSpeed	200
1682
}
1683
 
1684
mress
1685
{
1686
	rank		lt
1687
	fullname	"M'ress"
1688
	position	"Helmsman"
43 Andorian 1689
	position_dt	"Steuermann"
1 lars 1690
	headmodel	mress
1691
	torsomodel	mress
1692
	legsmodel	mress
1693
	reactions	3
1694
	aim		3
1695
	move		3
1696
	aggression	3
1697
	evasion		3
1698
	intelligence	3
1699
	scale		101
1700
	playerTeam	starfleet
1701
	enemyTeam	klingon
2 lars 1702
	race		caitian
1 lars 1703
	snd		gencrewf
1704
	sndextra	gencrewf
1705
	walkSpeed	55
1706
	runSpeed	200
1707
}
1708
 
1709
dead_mress
1710
{
1711
	rank		lt
1712
	fullname	"M'ress"
1713
	position	"Helmsman"
43 Andorian 1714
	position_dt	"Steuermann"
1 lars 1715
	headmodel	dead_mress
1716
	torsomodel	mress
1717
	legsmodel	mress
1718
	reactions	3
1719
	aim		3
1720
	move		3
1721
	aggression	3
1722
	evasion		3
1723
	intelligence	3
1724
	scale		101
1725
	playerTeam	starfleet
1726
	enemyTeam	klingon
2 lars 1727
	race		caitian
1 lars 1728
	snd		gencrewf
1729
	sndextra	gencrewf
1730
	walkSpeed	55
1731
	runSpeed	200
1732
}
1733
 
21 lars 1734
nakamura
1735
{
1736
	rank		crewman
1737
	fullName	"Nakamura, Martin."
1738
	position	"Engineering Technician"
43 Andorian 1739
	position_dt	"Maschinentechniker"
21 lars 1740
	headmodel	kyoto
1741
	torsomodel	TOSoveralls/redoverall
1742
	legsmodel	TOSoveralls/redoverall
1743
	reactions	3
1744
	aim		3
1745
	move		3
1746
	aggression	3
1747
	evasion		3
1748
	intelligence	3
1749
	scale		101
1750
	playerTeam	starfleet
1751
	enemyTeam	klingon
1752
	race		human
1753
	snd		csatlos
1754
	sndcombat	csatlos
1755
	sndextra	csatlos
1756
	walkSpeed	55
1757
	runSpeed	200
1758
}
1759
 
1 lars 1760
omambala
1761
{
1762
	rank		crewman
1763
	fullName	"Omambala, Chiwetel"
1764
	position	"Engineer"
43 Andorian 1765
	position_dt	"Ingenieur"
1 lars 1766
	headmodel	omambala
1767
	torsomodel	TOSoveralls/redoverall_blk
1768
	legsmodel	TOSoveralls/redoverall
1769
	reactions	3
1770
	aim		3
1771
	move		3
1772
	aggression	3
1773
	evasion		3
1774
	intelligence	3
1775
	scale		103
1776
	playerTeam	starfleet
1777
	enemyTeam	klingon
1778
	race		human
1779
	snd		genimp1
1780
	sndcombat	genimp1
1781
	sndextra	genimp1
1782
	sndscav	genimp1
1783
	walkSpeed	98
1784
	runSpeed	200
1785
}
1786
 
1787
parsons
1788
{
25 lars 1789
	rank		lt
1 lars 1790
	fullName	"Parsons, Brenda"
1791
	position	"Phaser Specialist"
43 Andorian 1792
	position_dt	"Phaserspezialistin"
1 lars 1793
	headmodel	parsons
1794
	torsomodel	TOSfem/redlt_blk
1795
	legsmodel	TOSfem/red
1796
	reactions	3
1797
	aim		3
1798
	move		3
1799
	aggression	3
1800
	evasion		3
1801
	intelligence	3
1802
	scale		100
1803
	playerTeam	starfleet
1804
	enemyTeam	klingon
1805
	race		human
1806
	snd		gencrewf
1807
	sndextra	gencrewf
1808
	walkSpeed	55
1809
	runSpeed	200
1810
}
1811
 
14 Chief_Arms 1812
reiter
1813
{
1814
	rank		ensign
1815
	fullname	"Reiter, Stephan"
1816
	position	"Engineer"
43 Andorian 1817
	position_dt	"Ingenieur"
14 Chief_Arms 1818
	headmodel	reiter
1819
	torsomodel	Hazard/tosred
1820
	legsmodel	Hazard/tos
1821
	reactions	3
1822
	aim		3
1823
	move		3
1824
	aggression	3
1825
	evasion		3
1826
	intelligence	3
1827
	scale		104
1828
	playerTeam	starfleet
1829
	enemyTeam	klingon
1830
	race		human
1831
	snd		gencrew3
1832
	sndextra	gencrew3
1833
	walkSpeed	55
1834
	runSpeed	200
1835
}
1836
 
21 lars 1837
singh
1838
{
1839
	rank		lt
1840
	fullName	"Singh, Balvinder"
43 Andorian 1841
	position	"Auxiliary Control Chief"
1842
	position_dt	"Hilfskontrollingenieur"
21 lars 1843
	headmodel	singh
1844
	torsomodel	TOSoveralls/redoverall
1845
	legsmodel	TOSoveralls/redoverall
1846
	reactions	3
1847
	aim		3
1848
	move		3
1849
	aggression	3
1850
	evasion		3
1851
	intelligence	3
1852
	scale		103
1853
	playerTeam	starfleet
1854
	enemyTeam	klingon
1855
	race		human
1856
	snd		csatlos
1857
	sndcombat	csatlos
1858
	sndextra	csatlos
1859
	walkSpeed	55
1860
	runSpeed	200
1861
}
1862
 
1 lars 1863
sivertsen
1864
{
1865
	rank		ensign
1866
	fullname	"Sivertsen, Core"
1867
	position	"Security Officer"
43 Andorian 1868
	position_dt	"Sicherheitsoffizier"
1 lars 1869
	headmodel	sivertsen
1870
	torsomodel	Hazard/tosred
1871
	legsmodel	Hazard/tos
1872
	reactions	3
1873
	aim		3
1874
	move		3
1875
	aggression	3
1876
	evasion		3
1877
	intelligence	3
1878
	scale		104
1879
	playerTeam	starfleet
1880
	enemyTeam	klingon
1881
	race		human
1882
	snd		gencrew3
1883
	sndextra	gencrew3
1884
	walkSpeed	55
1885
	runSpeed	200
1886
}
1887
 
1888
stewart
1889
{
1890
	rank		crewman
1891
	fullName	"Stewart, Gordon"
1892
	position	"Transporter Technician"
43 Andorian 1893
	position_dt	"Transportertechniker"
1 lars 1894
	headmodel	stewart
1895
	torsomodel	TOSoveralls/redoverall
1896
	legsmodel	TOSoveralls/redoverall
1897
	reactions	3
1898
	aim		3
1899
	move		3
1900
	aggression	3
1901
	evasion		3
1902
	intelligence	3
1903
	scale		103
1904
	playerTeam	starfleet
1905
	enemyTeam	klingon
1906
	race		human
1907
	snd		csatlos
1908
	sndcombat	csatlos
1909
	sndextra	csatlos
1910
	walkSpeed	55
1911
	runSpeed	200
1912
}
1913
 
1914
stone
1915
{
1916
	rank		lt
1917
	fullname	"Stone, Jackson"
1918
	position	"Security Chief"
43 Andorian 1919
	position_dt	"Sicherheitschef"
1 lars 1920
	headmodel	stone
1921
	torsomodel	Hazard/tosredlt_blk
1922
	legsmodel	Hazard/tos
1923
	reactions	3
1924
	aim		3
1925
	move		3
1926
	aggression	3
1927
	evasion		3
1928
	intelligence	3
1929
	scale		105
1930
	playerTeam	starfleet
1931
	enemyTeam	klingon
1932
	race		human
1933
	snd		gencrew2
1934
	sndextra	gencrew2
1935
	walkSpeed	55
1936
	runSpeed	200
1937
}
1938
 
14 Chief_Arms 1939
shea
1940
{
1941
	rank		lt
21 lars 1942
	fullname	"Shea, Andre"
14 Chief_Arms 1943
	position	"Security Officer"
43 Andorian 1944
	position_dt	"Sicherheitsoffizier"
14 Chief_Arms 1945
	headmodel	shea
1946
	torsomodel	Hazard/tosredlt_blk
1947
	legsmodel	Hazard/tos
1948
	reactions	3
1949
	aim		3
1950
	move		3
1951
	aggression	3
1952
	evasion		3
1953
	intelligence	3
1954
	scale		104
1955
	playerTeam	starfleet
1956
	enemyTeam	klingon
1957
	race		human
1958
	snd		gencrew2
1959
	sndextra	gencrew2
1960
	walkSpeed	55
1961
	runSpeed	200
1962
}
1963
 
1 lars 1964
shulev
1965
{
1966
	rank		ensign
1967
	fullname	"Shulev"
1968
	headmodel	shulev
1969
	position	"Security Officer"
43 Andorian 1970
	position_dt	"Sicherheitsoffizier"
1 lars 1971
	torsomodel	Hazard/tosred_and
1972
	legsmodel	Hazard/tos
1973
	reactions	3
1974
	aim		3
1975
	move		3
1976
	aggression	3
1977
	evasion		3
1978
	intelligence	3
2 lars 1979
	scale		105
1 lars 1980
	playerTeam	starfleet
1981
	enemyTeam	klingon
1982
	race		andorian
1983
	snd		gencrew2
1984
	sndextra	gencrew2
1985
	sndscav	genimp1
1986
	walkSpeed	55
1987
	runSpeed	200
1988
	race		andorian
1989
}
1990
 
1991
tork
1992
{
1993
	rank		crewman
1994
	fullName	"Hoff, Ben"
1995
	position	"Structural Engineer"
43 Andorian 1996
	position_dt	"Wartungstechniker"
1 lars 1997
	headmodel	jonsson
1998
	torsomodel	TOSoveralls/gym
1999
	legsmodel	TOSoveralls/gym
2000
	reactions	3
2001
	aim		3
2002
	move		3
2003
	aggression	3
2004
	evasion		3
2005
	intelligence	3
2006
	scale		103
2007
	playerTeam	starfleet
2008
	enemyTeam	klingon
2009
	race		human
2010
	snd		csatlos
2011
	sndcombat	csatlos
2012
	sndextra	csatlos
2013
	walkSpeed	55
2014
	runSpeed	200
2015
}
2016
 
2017
tosmunro
2018
{
2019
	rank		lt
2020
	fullName	"Munro, Geoffrey"
2021
	position	"Security Officer"
43 Andorian 2022
	position_dt	"Sicherheitsoffizier"
1 lars 2023
	headmodel	TOSmunro
2 lars 2024
	torsomodel	kirk_swim/munro
2025
	legsmodel	kirk_swim/default
1 lars 2026
	reactions	4
2027
	aim		5
2028
	move		3
2029
	aggression	5
2030
	evasion		5
2031
	intelligence	5
2032
	scale           105
2033
	playerTeam	starfleet
2034
	enemyTeam	klingon
2035
	race		human
2036
	snd		gencrew1
2037
	sndextra	gencrew1
2038
	walkSpeed	55
2039
	runSpeed	200
2040
}
2041
 
2042
riley
2043
{
2044
	rank		lt
2045
	fullName	"Riley, Kevin Thomas"
2046
	position	"Helmsman"
43 Andorian 2047
	position_dt	"Steuermann"
1 lars 2048
	headmodel	riley
2049
	torsomodel	TOSoveralls/gym
2050
	legsmodel	TOSoveralls/gym
2051
	reactions	3
2052
	aim		3
2053
	move		3
2054
	aggression	3
2055
	evasion		3
2056
	intelligence	3
2057
	scale		102
2058
	playerTeam	starfleet
2059
	enemyTeam	klingon
2060
	race		human
2061
	snd		gencrew2
2062
	sndextra	gencrew2
2063
	sndscav	genimp1
2064
	walkSpeed	55
2065
	runSpeed	200
2066
}
2067
 
21 lars 2068
whiting
1 lars 2069
{
2070
	rank		ensign
21 lars 2071
	fullname	"Whiting, Stephen R."
1 lars 2072
	position	"Engineer"
43 Andorian 2073
	position_dt	"Ingenieur"
21 lars 2074
	headmodel	whiting
2075
	torsomodel	Hazard/tosred
2076
	legsmodel	Hazard/tos
1 lars 2077
	reactions	3
2078
	aim		3
2079
	move		3
2080
	aggression	3
2081
	evasion		3
2082
	intelligence	3
21 lars 2083
	scale		104
1 lars 2084
	playerTeam	starfleet
2085
	enemyTeam	klingon
2086
	race		human
21 lars 2087
	snd		gencrew3
2088
	sndextra	gencrew3
1 lars 2089
	walkSpeed	55
2090
	runSpeed	200
2091
}
2092
 
2093
// DUPLICATES
2094
//Engineering & Support Services
2095
 
2096
Adams
2097
{
2098
	rank		lt
2099
	fullName	"Adams, Guy"
2100
	position	"Cargo Chief"
43 Andorian 2101
	position_dt	"Frachtoffizier"
1 lars 2102
	headmodel	standen
2103
	torsomodel	Hazard/tosredlt
2104
	legsmodel	Hazard/tos
2105
	reactions	3
2106
	aim		3
2107
	move		3
2108
	aggression	3
2109
	evasion		3
2110
	intelligence	3
2111
	scale		105
2112
	playerTeam	starfleet
2113
	enemyTeam	klingon
2114
	race		human
2115
	snd		gencrew3
2116
	sndextra	gencrew3
2117
	sndscav	genimp1
2118
	walkSpeed	55
2119
	runSpeed	200
2120
}
2121
 
14 Chief_Arms 2122
aiello
2123
{
2124
	rank		ensign
21 lars 2125
	fullName	"Aiello, Pat"
14 Chief_Arms 2126
	position	"Nurse"
43 Andorian 2127
	position_dt	"Schwester"
14 Chief_Arms 2128
	headmodel	masada
21 lars 2129
	torsomodel	TOSNurse
2130
	legsmodel	TOSNurse
14 Chief_Arms 2131
	reactions	5
2132
	aim		5
2133
	move		5
2134
	aggression	3
2135
	evasion		5
2136
	intelligence	5
2137
	scaley		104
2138
	scalex		104
2139
	scalez		103
2140
	playerTeam	starfleet
2141
	enemyTeam	klingon
2142
	race		human
2143
	snd		gencrewf
2144
	sndextra	gencrewf
2145
}
2146
 
2147
andres
2148
{
36 lars 2149
	rank		ensign
14 Chief_Arms 2150
	fullname	"Andres, Mathias"
36 lars 2151
	position	"Transporter Technician"
43 Andorian 2152
	position_dt	"Transportertechniker"
14 Chief_Arms 2153
	headmodel	sivertsen
2154
	torsomodel	TOSoveralls/redoverall
2155
	legsmodel	TOSoveralls/redoverall
2156
	reactions	3
2157
	aim		3
2158
	move		3
2159
	aggression	3
2160
	evasion		3
2161
	intelligence	3
2162
	scale		102
2163
	playerTeam	starfleet
2164
	enemyTeam	klingon
2165
	race		human
2166
	snd		csatlos
2167
	sndcombat	csatlos
2168
	sndextra	csatlos
2169
	walkSpeed	55
2170
	runSpeed	200
2171
}
2172
 
2173
castelano
2174
{
2175
	rank		lt
21 lars 2176
	fullName	"Castelano, Lydia"
14 Chief_Arms 2177
	position	"Doctor"
43 Andorian 2178
	position_dt	"Doktor"
14 Chief_Arms 2179
	headmodel	carlisle
2180
	torsomodel	TOSfem/bluelt
2181
	legsmodel	TOSfem_alt/blue
2182
	reactions	5
2183
	aim		5
2184
	move		5
2185
	aggression	3
2186
	evasion		5
2187
	intelligence	5
2188
	scaley		104
2189
	scalex		104
2190
	scalez		103
2191
	playerTeam	starfleet
2192
	enemyTeam	klingon
2193
	race		human
2194
	snd		gencrewf
2195
	sndextra	gencrewf
2196
}
2197
 
2198
drew
2199
{
2200
	rank		ensign
2201
	fullName	"Drew, Mary"
2202
	position	"Nurse"
43 Andorian 2203
	position_dt	"Schwester"
14 Chief_Arms 2204
	headmodel	bauer
21 lars 2205
	torsomodel	TOSNurse
2206
	legsmodel	TOSNurse
14 Chief_Arms 2207
	reactions	5
2208
	aim		5
2209
	move		5
2210
	aggression	3
2211
	evasion		5
2212
	intelligence	5
2213
	scaley		104
2214
	scalex		104
2215
	scalez		103
2216
	playerTeam	starfleet
2217
	enemyTeam	klingon
2218
	race		human
2219
	snd		gencrewf
2220
	sndextra	gencrewf
2221
}
2222
 
1 lars 2223
Jonsson
2224
{
2225
	rank		ensign
2226
	fullName	"Jonsson, Morten"
2227
	position	"Security Officer"
43 Andorian 2228
	position_dt	"Sicherheitsoffizier"
1 lars 2229
	headmodel	jonsson
2230
	torsomodel	Hazard/tosred
2231
	legsmodel	Hazard/tos
2232
	reactions	3
2233
	aim		3
2234
	move		3
2235
	aggression	3
2236
	evasion		3
2237
	intelligence	3
2238
	scale		104
2239
	playerTeam	starfleet
2240
	enemyTeam	klingon
2241
	race		human
2242
	snd		gencrew3
2243
	sndextra	gencrew3
2244
	sndscav	genimp1
2245
	walkSpeed	55
2246
	runSpeed	200
2247
}
2248
 
2 lars 2249
 
1 lars 2250
Brickston
2251
{
2252
	rank		ensign
2253
	fullName	"Brickston, Lee"
2254
	position	"Security Officer"
43 Andorian 2255
	position_dt	"Sicherheitsoffizier"
1 lars 2256
	headmodel	calhoun
2257
	torsomodel	Hazard/tosred
2258
	legsmodel	Hazard/tos
2259
	reactions	3
2260
	aim		3
2261
	move		3
2262
	aggression	3
2263
	evasion		3
2264
	intelligence	3
2265
	scale		105
2266
	playerTeam	starfleet
2267
	enemyTeam	klingon
2268
	race		human
2269
	snd		gencrew3
2270
	sndextra	gencrew3
2271
	sndscav	genimp1
2272
	walkSpeed	55
2273
	runSpeed	200
2274
}
2275
 
2276
Brien
2277
{
2278
	rank		lt
2279
	fullName	"Brien, Bob"
2280
	position	"Engineer"
43 Andorian 2281
	position_dt	"Ingenieur"
1 lars 2282
	headmodel	oliver
2283
	torsomodel	Hazard/tosredlt
2284
	legsmodel	Hazard/tos
2285
	reactions	3
2286
	aim		3
2287
	move		3
2288
	aggression	3
2289
	evasion		3
2290
	intelligence	3
2291
	scale		103
2292
	playerTeam	starfleet
2293
	enemyTeam	klingon
2294
	race		human
2295
	snd		gencrew3
2296
	sndextra	gencrew3
2297
	sndscav	genimp1
2298
	walkSpeed	55
2299
	runSpeed	200
2300
}
2301
 
2302
Bryce
2303
{
2304
	rank		lt
2305
	fullName	"Bryce, Pete"
2306
	position	"Security Officer"
43 Andorian 2307
	position_dt	"Sicherheitsoffizier"
1 lars 2308
	headmodel	bryce
2309
	torsomodel	Hazard/tosredlt
2310
	legsmodel	Hazard/tos
2311
	reactions	3
2312
	aim		3
2313
	move		3
2314
	aggression	3
2315
	evasion		3
2316
	intelligence	3
2317
	scaley		106
2318
	scalex		106
2319
	scalez		106
2320
	playerTeam	starfleet
2321
	enemyTeam	klingon
2322
	race		human
2323
	snd		gencrew3
2324
	sndextra	gencrew3
2325
	sndscav	genimp1
2326
	walkSpeed	55
2327
	runSpeed	200
2328
}
2329
 
2 lars 2330
ellis
2331
{
2332
	rank		ensign
21 lars 2333
	fullname	"Ellis, Mary"
2 lars 2334
	position	"Security"
43 Andorian 2335
	position_dt	"Sicherheitsoffizier"
2 lars 2336
	headmodel	bauer
2337
	torsomodel	TOSfem/red
2338
	legsmodel	TOSfem_alt/red
2339
	reactions	3
2340
	aim		3
2341
	move		3
2342
	aggression	3
2343
	evasion		3
2344
	intelligence	3
2345
	scale		102
2346
	playerTeam	starfleet
2347
	enemyTeam	klingon
2348
	race		human
2349
	snd		gencrewf
2350
	sndextra	gencrewf
2351
	walkSpeed	55
2352
	runSpeed	200
2353
}
2354
 
2355
effinger
2356
{
2357
	rank		crewman
2358
	fullName	"Effigner, Michael"
25 lars 2359
	position	"Bowling Alley Maintenance"
43 Andorian 2360
	position_dt	"Bowlingbahn Verwalter"
2 lars 2361
	headmodel	effinger
2362
	torsomodel	TOSoveralls/redoverall
2363
	legsmodel	TOSoveralls/redoverall
2364
	reactions	3
2365
	aim		3
2366
	move		3
2367
	aggression	3
2368
	evasion		3
2369
	intelligence	3
2370
	scale		103
2371
	playerTeam	starfleet
2372
	enemyTeam	klingon
2373
	race		human
2374
	snd		csatlos
2375
	sndcombat	csatlos
2376
	sndextra	csatlos
2377
	walkSpeed	55
2378
	runSpeed	200
2379
}
2380
 
21 lars 2381
Bear
2382
{
2383
	rank		ensign
2384
	fullName	"Walking Bear, Dawson"
2385
	position	"Engineer"
43 Andorian 2386
	position_dt	"Ingenieur"
21 lars 2387
	headmodel	rajanih
2388
	torsomodel	TOSOveralls/redoverall_blk
2389
	legsmodel	TOSOveralls/redoverall
2390
	reactions	3
2391
	aim		3
2392
	move		3
2393
	aggression	3
2394
	evasion		3
2395
	intelligence	3
2396
	scaley		98
2397
	scalex		98
2398
	scalez		102
2399
	playerTeam	starfleet
2400
	enemyTeam	klingon
2401
	race		human
2402
	snd		gencrew1
2403
	sndcombat	gencrew1
2404
	sndextra	gencrew1
2405
	sndscav	genimp1
2406
	walkSpeed	55
2407
	runSpeed	200
2408
}
2409
 
36 lars 2410
kyle
2411
{
2412
	rank		chief
2413
	fullname	"Kyle, Winston"
2414
	position	"Transporter Chief"
43 Andorian 2415
	position_dt	"Transporterchief"
36 lars 2416
	headmodel	sivertsen
2417
	torsomodel	TOSoveralls/redoverall
2418
	legsmodel	TOSoveralls/redoverall
2419
	reactions	3
2420
	aim		3
2421
	move		3
2422
	aggression	3
2423
	evasion		3
2424
	intelligence	3
2425
	scale		102
2426
	playerTeam	starfleet
2427
	enemyTeam	klingon
2428
	race		human
2429
	snd		csatlos
2430
	sndcombat	csatlos
2431
	sndextra	csatlos
2432
	walkSpeed	55
2433
	runSpeed	200
2434
}
2435
 
2 lars 2436
//TOS ENEMIES
2437
//Argans
2438
 
2439
Argan_fem1
2440
{
2441
	headmodel	arganfem_1
2442
	torsomodel	argan_female
2443
	legsmodel	argan_female
2444
	reactions	3
2445
	aim		3
2446
	move		3
2447
	aggression	3
2448
	evasion		3
2449
	intelligence	3
2450
	scale 		95
2451
	playerTeam	stasis
2452
	enemyTeam	starfleet
2453
	race		argan
2454
	snd		gencrew1
2455
	sndcombat	gencrew1
2456
	sndextra	gencrew1
2457
	walkspeed	55
2458
	runspeed	200
2459
}
2460
 
2461
Argan_hscientist
2462
{
2463
	headmodel	Argan_Hscientist/default
2464
	torsomodel	Hazard/argan_hscientist
2465
	legsmodel	Argan_Male/default
2466
	reactions	3
2467
	aim		3
2468
	move		3
2469
	aggression	3
2470
	evasion		3
2471
	intelligence	3
2472
	scale		99
2473
	playerTeam	stasis
2474
	enemyTeam	starfleet
2475
	race		argan
2476
	snd		tuvok
2477
	sndcombat	tuvok
2478
}
2479
 
2480
Argan_male1
2481
{
2482
	headmodel	arganmale_1/default
2483
	torsomodel	Hazard/argan_male
2484
	legsmodel	Argan_Male/default
2485
	reactions	3
2486
	aim		3
2487
	move		3
2488
	aggression	3
2489
	evasion		3
2490
	intelligence	3
2491
	scale		99
2492
	playerTeam	stasis
2493
	enemyTeam	starfleet
2494
	race		argan
2495
	snd		tuvok
2496
	sndcombat	tuvok
2497
}
2498
 
2499
Argan_male2
2500
{
2501
	headmodel	arganmale_2/default
2502
	torsomodel	Hazard/argan_male
2503
	legsmodel	Argan_Male/default
2504
	reactions	3
2505
	aim		3
2506
	move		3
2507
	aggression	3
2508
	evasion		3
2509
	intelligence	3
2510
	scale		99
2511
	playerTeam	stasis
2512
	enemyTeam	starfleet
2513
	race		argan
2514
	snd		tuvok
2515
	sndcombat	tuvok
2516
}
2517
 
2518
Argan_male3
2519
{
2520
	headmodel	arganmale_3/default
2521
	torsomodel	Hazard/argan_male
2522
	legsmodel	Argan_Male/default
2523
	reactions	3
2524
	aim		3
2525
	move		3
2526
	aggression	3
2527
	evasion		3
2528
	intelligence	3
2529
	scale		100
2530
	playerTeam	stasis
2531
	enemyTeam	starfleet
2532
	race		argan
2533
	snd		tuvok
2534
	sndcombat	tuvok
2535
}
2536
 
2537
Argan_male4
2538
{
2539
	headmodel	arganmale_4/default
2540
	torsomodel	Hazard/argan_male
2541
	legsmodel	Argan_Male/default
2542
	reactions	3
2543
	aim		3
2544
	move		3
2545
	aggression	3
2546
	evasion		3
2547
	intelligence	3
2548
	scale		100
2549
	playerTeam	stasis
2550
	enemyTeam	starfleet
2551
	race		argan
2552
	snd		tuvok
2553
	sndcombat	tuvok
2554
}
2555
 
2556
Argan_trooper
2557
{
2558
	headmodel	argan_trooper/default
2559
	torsomodel	argan_trooper/default
2560
	legsmodel	TOSoveralls/argan_trooper
2561
	reactions	3
2562
	aim		3
2563
	move		3
2564
	aggression	3
2565
	evasion		4
2566
	intelligence	5
2567
	scale		99
2568
	playerTeam	stasis
2569
	enemyTeam	starfleet
2570
	race		argan
2571
	snd		tuvok
2572
	sndcombat	tuvok
2573
}
2574
 
2575
Argan_trooper2
2576
{
2577
	headmodel	argan_trooper2/default
2578
	torsomodel	argan_trooper/default
2579
	legsmodel	TOSoveralls/argan_trooper
2580
	reactions	3
2581
	aim		5
2582
	move		3
2583
	aggression	3
2584
	evasion		3
2585
	intelligence	4
2586
	scale		100
2587
	playerTeam	stasis
2588
	enemyTeam	starfleet
2589
	race		argan
2590
	snd		tuvok
2591
	sndcombat	tuvok
2592
}
2593
 
2594
Argan_trooper3
2595
{
2596
	headmodel	argan_trooper3/default
2597
	torsomodel	argan_trooper/default
2598
	legsmodel	TOSoveralls/argan_trooper
2599
	reactions	3
2600
	aim		5
2601
	move		3
2602
	aggression	5
2603
	evasion		3
2604
	intelligence	3
2605
	scale		102
2606
	playerTeam	stasis
2607
	enemyTeam	starfleet
2608
	race		argan
2609
	snd		tuvok
2610
	sndcombat	tuvok
2611
}
2612
 
2613
remote_trooper
2614
{
2615
	headmodel	argan_trooper/default
2616
	torsomodel	argan_trooper/default
2617
	legsmodel	TOSoveralls/argan_trooper
2618
	interact	"remote"
2619
	reactions	3
2620
	aim		3
2621
	move		3
2622
	aggression	3
2623
	evasion		4
2624
	intelligence	5
2625
	scale		99
2626
	playerTeam	stasis
2627
	enemyTeam	starfleet
2628
	race		argan
2629
	snd		tuvok
2630
	sndcombat	tuvok
2631
}
2632
 
2633
//Klingons
2634
 
2635
Kor
2636
{
2637
 
2638
	rank		captain
2639
	fullname	"Kor"
2640
	position	"Military Governor"
43 Andorian 2641
	position_dt	"Militärgouverneur"
2 lars 2642
	headmodel	TOSklingon1
2643
	torsomodel	TOSklingons/kor
2644
	legsmodel	TOSklingons
2645
	reactions	3
2646
	aim		3
2647
	move		3
2648
	aggression	3
2649
	evasion		3
2650
	intelligence	3
2651
	scale		97
2652
	playerTeam	klingon
2653
	enemyTeam	starfleet
2654
	race		klingon
2655
	snd		genklg1
2656
	sndcombat	genklg1
2657
	sndextra	genimp1
2658
	sndscav	genimp1
2659
	walkSpeed	55
2660
	runSpeed	200
2661
}
2662
 
2663
TOSklingon2
2664
{
2665
 
2666
 
2667
	headmodel	TOSklingon2
2668
	torsomodel	TOSklingons
2669
	legsmodel	TOSklingons
2670
	reactions	3
2671
	aim		3
2672
	move		3
2673
	aggression	3
2674
	evasion		3
2675
	intelligence	3
2676
	scale		99
2677
	playerTeam	klingon
2678
	enemyTeam	starfleet
2679
	race		klingon
2680
	snd		genklg1
2681
	sndcombat	genklg1
2682
	sndextra	genimp1
2683
	sndscav	genimp1
2684
	walkSpeed	55
2685
	runSpeed	200
2686
}
2687
 
2688
TOSklingon3
2689
{
2690
 
2691
 
2692
	headmodel	TOSklingon3
2693
	torsomodel	TOSklingons
2694
	legsmodel	TOSklingons
2695
	reactions	3
2696
	aim		3
2697
	move		3
2698
	aggression	3
2699
	evasion		3
2700
	intelligence	3
2701
	scale		100
2702
	playerTeam	klingon
2703
	enemyTeam	starfleet
2704
	race		klingon
2705
	snd		genklg2
2706
	sndcombat	genklg2
2707
	sndextra	genimp2
2708
	sndscav	genimp1
2709
	walkSpeed	55
2710
	runSpeed	200
2711
}
2712
 
2713
TOSklingon4
2714
{
2715
 
2716
 
2717
	headmodel	TOSklingon4
2718
	torsomodel	TOSklingons
2719
	legsmodel	TOSklingons
2720
	reactions	3
2721
	aim		3
2722
	move		3
2723
	aggression	3
2724
	evasion		3
2725
	intelligence	3
2726
	scale		100
2727
	playerTeam	klingon
2728
	enemyTeam	starfleet
2729
	race		klingon
2730
	snd		genklg1
2731
	sndcombat	genklg1
2732
	sndextra	genimp1
2733
	sndscav	genimp1
2734
	walkSpeed	55
2735
	runSpeed	200
2736
}
2737
 
2738
TOSklingon5
2739
{
2740
 
2741
 
2742
	headmodel	TOSklingon5
2743
	torsomodel	TOSklingons
2744
	legsmodel	TOSklingons
2745
	reactions	3
2746
	aim		3
2747
	move		3
2748
	aggression	3
2749
	evasion		3
2750
	intelligence	3
2751
	scale		100
2752
	playerTeam	klingon
2753
	enemyTeam	starfleet
2754
	race		klingon
2755
	snd		genklg2
2756
	sndcombat	genklg2
2757
	sndextra	genimp2
2758
	sndscav	genimp1
2759
	walkSpeed	55
2760
	runSpeed	200
2761
}
2762
 
2763
TOSklingon6
2764
{
2765
 
2766
 
2767
	headmodel	TOSklingon6
2768
	torsomodel	TOSklingons
2769
	legsmodel	TOSklingons
2770
	reactions	3
2771
	aim		3
2772
	move		3
2773
	aggression	3
2774
	evasion		3
2775
	intelligence	3
2776
	scale		100
2777
	playerTeam	klingon
2778
	enemyTeam	starfleet
2779
	race		klingon
2780
	snd		genklg2
2781
	sndcombat	genklg2
2782
	sndextra	genimp2
2783
	sndscav	genimp1
2784
	walkSpeed	55
2785
	runSpeed	200
2786
}
2787
 
2788
TOSklingon7
2789
{
2790
 
2791
 
2792
	headmodel	TOSklingon7
2793
	torsomodel	TOSklingons
2794
	legsmodel	TOSklingons
2795
	reactions	3
2796
	aim		3
2797
	move		3
2798
	aggression	3
2799
	evasion		3
2800
	intelligence	3
2801
	scale		100
2802
	playerTeam	klingon
2803
	enemyTeam	starfleet
2804
	race		klingon
2805
	snd		genklg1
2806
	sndcombat	genklg1
2807
	sndextra	genimp1
2808
	sndscav	genimp1
2809
	walkSpeed	55
2810
	runSpeed	200
2811
}
2812
 
2813
TOSklingon8
2814
{
2815
 
2816
 
2817
	headmodel	TOSklingon8
2818
	torsomodel	TOSklingons
2819
	legsmodel	TOSklingons
2820
	reactions	3
2821
	aim		3
2822
	move		3
2823
	aggression	3
2824
	evasion		3
2825
	intelligence	3
2826
	scale		100
2827
	playerTeam	klingon
2828
	enemyTeam	starfleet
2829
	race		klingon
2830
	snd		genklg2
2831
	sndcombat	genklg2
2832
	sndextra	genimp2
2833
	sndscav	genimp1
2834
	walkSpeed	55
2835
	runSpeed	200
2836
}
2837
 
2838
TOSklingon9
2839
{
2840
 
2841
 
2842
	headmodel	TOSklingon9
2843
	torsomodel	TOSklingons
2844
	legsmodel	TOSklingons
2845
	reactions	3
2846
	aim		3
2847
	move		3
2848
	aggression	3
2849
	evasion		3
2850
	intelligence	3
2851
	scale		100
2852
	playerTeam	klingon
2853
	enemyTeam	starfleet
2854
	race		klingon
2855
	snd		genklg2
2856
	sndcombat	genklg2
2857
	sndextra	genimp2
2858
	sndscav	genimp1
2859
	walkSpeed	55
2860
	runSpeed	200
2861
}
2862
 
14 Chief_Arms 2863
dead_klingon
2864
{
2865
	headmodel	none
2866
	torsomodel	none
2867
	legsmodel	dead_klingon
2868
	scale		100
2869
	playerTeam	klingon
2870
	enemyTeam	none
2871
	race		klingon
2872
	snd		none
2873
	sndextra	none
2874
}
2875
 
1 lars 2876
blank
2877
{
2878
	rank		lt
2879
	fullName	"Uhura, Nyota"
2880
	headmodel	uhura
2881
	torsomodel	tosfem/redlt_blk
2882
	legsmodel	tosfem/red
2883
	reactions	5
2884
	aim		5
2885
	move		5
2886
	aggression	3
2887
	evasion		5
2888
	intelligence	5
2889
	scale           93
2890
	playerTeam	starfleet
2891
	race		human
2892
	snd		gencrewf
2893
	sndextra	gencrewf
2894
}
2895
 
2 lars 2896
dead_blair
2897
{
9 lars 2898
	rank		ensign
2899
	fullname	"Blair, Winston"
2900
	position	"Navigator"
43 Andorian 2901
	position_dt	"Navigator"
2 lars 2902
	headmodel	none
2903
	torsomodel	none
2904
	legsmodel	dead_blair
2905
	scale		100
2906
	playerTeam	starfleet
2907
	enemyTeam	none
2908
	race		human
2909
	snd		none
2910
	sndextra	none
2911
}
2912
 
2913
dead_bernard
2914
{
2915
	rank		ensign
2916
	fullName	"Bernard, Julian"
2917
	position	"Engineer"
43 Andorian 2918
	position_dt	"Ingenieur"
2 lars 2919
	headmodel	none
2920
	torsomodel	none
2921
	legsmodel	dead_bernard
2922
	scale		100
2923
	playerTeam	starfleet
2924
	enemyTeam	none
2925
	race		human
2926
	snd		none
2927
	sndextra	none
2928
}
2929
 
2930
dead_lang
2931
{
2932
	rank		ensign
2933
	fullName	"Lang, Lawrence"
2934
	position	"Meteorologist"
43 Andorian 2935
	position_dt	"Meteorologe"
2 lars 2936
	headmodel	none
2937
	torsomodel	none
2938
	legsmodel	dead_lang
2939
	scale		100
2940
	playerTeam	starfleet
2941
	enemyTeam	none
2942
	race		human
2943
	snd		none
2944
	sndextra	none
2945
}
2946
 
2947
dead_masters
2948
{
2949
	rank		lt
2950
	fullname	"Masters, Charlene"
2951
	position	"Auxiliary"
43 Andorian 2952
	position_dt	"Hilfingenieur"
2 lars 2953
	headmodel	none
2954
	torsomodel	none
2955
	legsmodel	dead_masters
2956
	scale		100
2957
	playerTeam	starfleet
2958
	enemyTeam	none
2959
	race		human
2960
	snd		none
2961
	sndextra	none
2962
}
2963
 
2964
dead_oliver
2965
{
2966
	rank		ltcomm
2967
	fullName	"Oliver, Pete"
2968
	position	"Helmsmen"
43 Andorian 2969
	position_dt	"Steuermann"
2 lars 2970
	headmodel	none
2971
	torsomodel	none
2972
	legsmodel	dead_oliver
2973
	scale		100
2974
	playerTeam	starfleet
2975
	enemyTeam	none
2976
	race		human
2977
	snd		none
2978
	sndextra	none
2979
}
2980
 
2981
dead_takimoto
2982
{
25 lars 2983
	rank		ensign
2 lars 2984
	fullName	"Takimoto, Hira"
2985
	position	"Geological Technician "
43 Andorian 2986
	position_dt	"Geologietechniker"
2 lars 2987
	headmodel	none
2988
	torsomodel	none
2989
	legsmodel	dead_takimoto
2990
	scale		100
2991
	playerTeam	starfleet
2992
	enemyTeam	none
2993
	race		human
2994
	snd		none
2995
	sndextra	none
2996
}
2997
 
2998
dead_uhura
2999
{
3000
	rank		lt
3001
	fullname	"Uhura, Nyota"
3002
	position	"Communications Officer"
43 Andorian 3003
	position_dt	"Kommunikationsoffizier"
2 lars 3004
	headmodel	none
3005
	torsomodel	none
3006
	legsmodel	dead_uhura
3007
	scale		100
3008
	playerTeam	starfleet
3009
	enemyTeam	none
3010
	race		human
3011
	snd		none
3012
	sndextra	none
3013
}
3014
 
3015
dead_spock
3016
{
3017
	rank		commander
3018
	fullName	"Spock"
3019
	position	"Science Officer"
43 Andorian 3020
	position_dt	"Wissenschaftsoffizier"
2 lars 3021
	headmodel	none
3022
	torsomodel	none
3023
	legsmodel	dead_spock
3024
	scale		100
3025
	playerTeam	starfleet
3026
	enemyTeam	none
3027
	race		vulcan
3028
	snd		none
3029
	sndextra	none
3030
}
3031
 
3032
dead_chekov
3033
{
3034
	rank		ensign
3035
	fullName	"Chekov, Pavel"
3036
	position	"Helmsman"
43 Andorian 3037
	position_dt	"Navigator"
2 lars 3038
	headmodel	none
3039
	torsomodel	none
3040
	legsmodel	dead_chekov
3041
	scale		100
3042
	playerTeam	starfleet
3043
	enemyTeam	none
3044
	race		human
3045
	snd		none
3046
	sndextra	none
3047
}
3048
 
3049
dead_sulu
3050
{
3051
	rank		lt
3052
	fullName	"Sulu, Hikaru"
3053
	position	"Helmsman"
43 Andorian 3054
	position_dt	"Steuermann"
2 lars 3055
	headmodel	none
3056
	torsomodel	none
3057
	legsmodel	dead_sulu
3058
	scale		100
3059
	playerTeam	starfleet
3060
	enemyTeam	none
3061
	race		human
3062
	snd		none
3063
	sndextra	none
3064
}
3065
 
3066
dead_larke
3067
{
9 lars 3068
	rank		lt
2 lars 3069
	fullname	"Larke, Jennifer"
3070
	position	"Historian"
43 Andorian 3071
	position_dt	"Historikerin"
2 lars 3072
	headmodel	none
3073
	torsomodel	none
3074
	legsmodel	dead_larke
3075
	scale		100
3076
	playerTeam	starfleet
3077
	enemyTeam	none
3078
	race		human
3079
	snd		none
3080
	sndextra	none
3081
}
3082
 
3083
dead_standen
3084
{
3085
	rank		lt
3086
	fullName	"Standen, Clive"
3087
	position	"Neuro Surgeon"
43 Andorian 3088
	position_dt	"Neurochirurg"
2 lars 3089
	headmodel	none
3090
	torsomodel	none
3091
	legsmodel	dead_standen
3092
	scale		100
3093
	playerTeam	starfleet
3094
	enemyTeam	none
3095
	race		human
3096
	snd		none
3097
	sndextra	none
3098
}
3099
 
3100
blank
3101
{
3102
	rank		blank
3103
	fullname	"blank"
3104
	position	"blank"
3105
	headmodel	none
3106
	torsomodel	none
3107
	legsmodel	blank
3108
	scale		100
3109
	playerTeam	starfleet
3110
	enemyTeam	none
3111
	race		human
3112
	snd		none
3113
	sndextra	none
3114
}