aboutsummaryrefslogtreecommitdiff
path: root/sp/game/ep2/Scenes/outland_12/mag_training2.vcd
blob: d30e26c8ecdae894f20b1f02f2e6555188190fe3 (plain) (blame)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
// Choreo version 1
event section "toteleporter"
{
  time 0.672883 -1.000000
  param "noaction"
}
event section "vort1"
{
  time 29.302753 -1.000000
  param "noaction"
}
actor "magnusson"
{
  channel "Audio"
  {
    event speak "ep_02.mag_tutor_impaling"
    {
      time 7.668156 16.352350
      param "ep_02.mag_tutor_outinfield"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
    event speak "ep_02.mag_tutor_impaling"
    {
      time 0.751763 6.655414
      param "ep_02.mag_tutor_impaling"
      param2 "0.750"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
    event speak "ep_02.mag_tutor_impaling"
    {
      time 25.821888 29.127829
      param "ep_02.mag_tutor_takeoutdevice"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
    event speak "ep_02.mag_tutor_impaling"
    {
      time 29.472527 33.152798
      param "ep_02.mag_tutor_wanttousegravgun"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
  }
  channel "lookAt"
  {
    event lookat "!player"
    {
      time 6.438435 8.947683
      param "!player"
      event_ramp
      {
        0.4940 0.6403
        1.0771 0.9936
        2.0682 0.9964
      }
    }
    event lookat "look at strider ragdoll"
    {
      time 0.087138 2.479338
      param "magnusson_lookat2"
      event_ramp
      {
        0.3575 0.5839
        2.1296 0.5753
      }
    }
    event lookat "!player"
    {
      time 10.185956 15.025116
      param "!player"
      event_ramp
      {
        0.4940 0.9747
        4.3981 0.9964
      }
    }
    event lookat "look at strider ragdoll"
    {
      time 8.552718 10.573800
      param "magnusson_lookat1"
      event_ramp
      {
        0.0657 0.0605
        0.3114 0.4682
        0.5077 0.7219
        0.9714 0.8153
        1.4523 0.7112
        1.5857 0.5701
        1.8743 0.0605
      }
    }
    event lookat "look at magnisson device"
    {
      time 14.753805 16.941555
      param "magnusson_lookat3"
      event_ramp
      {
        0.4820 0.7059
        1.6790 0.7399
      }
    }
    event lookat "Look at !player"
    {
      time 24.617491 33.774239
      param "!player"
      event_ramp
      {
        0.1600 0.0732
        0.7029 0.8121
        1.0481 0.9828 "curve_easein_to_curve_easeout"
        8.0424 1.0000
        8.3886 0.8854
        8.9229 0.0605
      }
    }
    event lookat "look at strider ragdoll"
    {
      time 3.645316 6.735090
      param "magnusson_lookat2"
      event_ramp
      {
        0.1171 0.0732
        0.4820 0.5722
        0.9486 0.7134 "curve_easein_to_curve_easeout"
        2.3829 0.6943 "curve_easein_to_curve_easeout"
        2.7272 0.4978
      }
    }
    event lookat "look at stairs"
    {
      time 2.082188 3.996220
      param "magnusson_stairs"
      event_ramp
      {
        0.0857 0.0446
        0.3829 0.5000
        0.5829 0.6401
        1.4171 0.6210
        1.5457 0.5000
        1.7771 0.0860
      }
    }
    event lookat "look at vort"
    {
      time 16.632439 25.096256
      param "vort"
      event_ramp
      {
        0.4934 0.5021 "curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x"
        0.8514 0.5828
        1.4143 0.6210
        2.0086 0.6369
        3.5029 0.6911
        5.5371 0.6783
        6.8143 0.6847
        7.4686 0.6879
        7.7571 0.6943
        7.8800 0.6943
        7.9800 0.6911
        8.1494 0.5743 "curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x"
      }
    }
  }
  channel "moveTo"
  {
    event moveto "move to teleporter"
    {
      time 0.018989 7.706196
      param "magnusson_moveto4"
      param2 "walk_all_Moderate"
      resumecondition
    }
  }
  channel "faceTo"
  {
    event face "face to moveto 3"
    {
      time 14.687821 17.366594
      param "magnusson_moveto3"
      event_ramp
      {
        1.0886 1.0000 "curve_easein_to_curve_easeout"
        2.6788 1.0000 "curve_easein_to_curve_easeout"
      }
    }
    event face "!player"
    {
      time 26.496328 33.232735
      param "!player"
      event_ramp
      {
        0.5000 0.9724
        6.7364 1.0000
      }
    }
    event face "!player"
    {
      time 6.972132 14.673657
      param "!player"
      event_ramp
      {
        0.1686 0.1178
        0.7429 0.8471
        1.0714 0.9809
        1.4696 1.0000 "curve_easein_to_curve_easeout"
        7.7015 1.0000
      }
    }
    event face "face to moveto 3"
    {
      time 0.021419 6.965173
      param "magnusson_moveto3"
      event_ramp
      {
        0.5115 0.6847
        0.9829 0.9045 "curve_easein_to_curve_easeout"
        6.9438 0.8004
      }
    }
  }
  channel "postures"
  {
  }
  channel "body"
  {
    event gesture "g_handback"
    {
      time 25.832170 34.101715
      param "g_handback"
      event_ramp
      {
        0.4769 0.9703
        7.3363 0.9766
        7.5462 0.8610
        8.0490 0.1016
      }
      absolutetags playback_time
      {
        "apex" 0.048271
        "accent" 0.077977
        "loop" 0.092830
        "end" 0.851239
      }
      absolutetags shifted_time
      {
        "apex" 0.216667
        "accent" 0.350000
        "loop" 0.500000
        "end" 0.666667
      }
      sequenceduration 2.033333
    }
    event gesture "hg_neckdown_L"
    {
      time 14.708333 16.508335
      param "hg_neckdown_L"
      event_ramp
      {
        0.4788 0.9788
        1.3558 0.9873
      }
      absolutetags playback_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      absolutetags shifted_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      sequenceduration 1.800000
    }
    event gesture "hg_twist_R"
    {
      time 8.633333 11.170411
      param "hg_twist_R"
      event_ramp
      {
        0.4981 0.6794
        2.0640 0.7473
      }
      absolutetags playback_time
      {
        "apex" 0.187409
        "extreme" 0.388204
        "loop" 0.463814
        "end" 0.615154
      }
      absolutetags shifted_time
      {
        "apex" 0.264151
        "extreme" 0.547170
        "loop" 0.566038
        "end" 0.584906
      }
      sequenceduration 1.800000
    }
    event gesture "hg_raisechest"
    {
      time 10.347222 13.413889
      param "hg_raisechest"
      event_ramp
      {
        0.3981 0.9915
        2.4308 0.9979
      }
      absolutetags playback_time
      {
        "apex" 0.091304
        "extreme" 0.298538
        "loop" 0.420165
        "end" 0.876087
      }
      absolutetags shifted_time
      {
        "apex" 0.241379
        "extreme" 0.465517
        "loop" 0.655172
        "end" 0.827586
      }
      sequenceduration 1.966667
    }
    event gesture "hg_twist_L"
    {
      time 0.699603 2.499603
      param "hg_twist_L"
      absolutetags playback_time
      {
        "apex" 0.226415
        "extreme" 0.433962
        "loop" 0.584906
        "end" 0.773585
      }
      absolutetags shifted_time
      {
        "apex" 0.226415
        "extreme" 0.433962
        "loop" 0.584906
        "end" 0.773585
      }
      sequenceduration 1.800000
    }
  }
  channel "gestures"
  {
    event gesture "g_hands_catch"
    {
      time 9.806765 15.287125
      param "g_hands_catch"
      event_ramp
      {
        0.5288 0.0000 "curve_easein_to_curve_easeout"
        1.0809 0.9937 "curve_easein_to_curve_easeout"
        1.6029 1.0000 "curve_easein_to_curve_easeout"
        1.8706 0.9336
        2.1294 0.9558 "curve_easein_to_curve_easeout"
        3.2789 0.9979 "curve_easein_to_curve_easeout"
        3.6778 0.9045
        4.9144 0.9873
      }
      absolutetags playback_time
      {
        "apex" 0.077861
        "accent" 0.146589
        "loop" 0.229856
        "end" 0.911280
      }
      absolutetags shifted_time
      {
        "apex" 0.250000
        "accent" 0.458333
        "loop" 0.604167
        "end" 0.625000
      }
      sequenceduration 1.633333
    }
    event gesture "hg_raisechest"
    {
      time 26.430655 28.374594
      param "hg_raisechest"
      event_ramp
      {
        0.4731 0.7941
        0.9885 0.7877
        1.5096 0.7707
      }
      absolutetags playback_time
      {
        "apex" 0.244201
        "extreme" 0.470960
        "loop" 0.662832
        "end" 0.837262
      }
      absolutetags shifted_time
      {
        "apex" 0.241379
        "extreme" 0.465517
        "loop" 0.655172
        "end" 0.827586
      }
      sequenceduration 1.966667
    }
    event gesture "hg_neckdown_R"
    {
      time 28.051867 29.851866
      param "hg_neckdown_R"
      event_ramp
      {
        0.4885 0.9639
        1.3058 0.9597
      }
      absolutetags playback_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      absolutetags shifted_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      sequenceduration 1.800000
    }
    event gesture "hg_raisechest"
    {
      time 30.415503 32.382172
      param "hg_raisechest"
      event_ramp
      {
        0.4692 0.5584
        0.9885 0.3524
        1.4135 0.7431
      }
      absolutetags playback_time
      {
        "apex" 0.241379
        "extreme" 0.465517
        "loop" 0.655172
        "end" 0.827586
      }
      absolutetags shifted_time
      {
        "apex" 0.241379
        "extreme" 0.465517
        "loop" 0.655172
        "end" 0.827586
      }
      sequenceduration 1.966667
    }
    event gesture "hg_neckdown_R"
    {
      time 31.832169 33.632168
      param "hg_neckdown_R"
      event_ramp
      {
        0.4923 0.9851
        1.3635 0.9703
      }
      absolutetags playback_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      absolutetags shifted_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      sequenceduration 1.800000
    }
    event gesture "g_hands_catch"
    {
      time 14.708334 16.341665
      param "g_hands_catch"
      event_ramp
      {
        0.4038 0.5945
        1.0654 0.6730
      }
      absolutetags playback_time
      {
        "apex" 0.250000
        "accent" 0.458333
        "loop" 0.604167
        "end" 0.645833
      }
      absolutetags shifted_time
      {
        "apex" 0.250000
        "accent" 0.458333
        "loop" 0.604167
        "end" 0.625000
      }
      sequenceduration 1.633333
    }
    event gesture "g_hands_catch"
    {
      time 2.583333 5.278758
      param "g_hands_catch"
      event_ramp
      {
        0.4232 0.9915
        0.9125 0.8960
        1.3000 0.6157
        2.1099 0.9851
      }
      absolutetags playback_time
      {
        "apex" 0.151491
        "accent" 0.277734
        "loop" 0.431963
        "end" 0.764120
      }
      absolutetags shifted_time
      {
        "apex" 0.250000
        "accent" 0.458333
        "loop" 0.604167
        "end" 0.625000
      }
      sequenceduration 1.633333
    }
    event gesture "g_handsclasped"
    {
      time 7.527778 11.855556
      param "g_handsclasped"
      event_ramp
      {
        0.5618 0.9936
        3.5236 0.9808
      }
      absolutetags playback_time
      {
        "in" 0.073955
        "loop" 0.196141
        "end" 0.700965
        "out" 0.813505
      }
      absolutetags shifted_time
      {
        "in" 0.250000
        "loop" 0.666667
        "end" 0.687500
        "out" 0.854167
      }
      sequenceduration 1.633333
    }
    event gesture "g_handshigh"
    {
      time 3.651515 5.330302
      param "g_handshigh"
      event_ramp
      {
        0.3109 0.7175
        0.9885 0.7064
        1.3521 0.1432
      }
      absolutetags playback_time
      {
        "apex" 0.180731
        "in" 0.245902
        "accent" 0.381543
        "loop" 0.585822
        "end" 0.766075
        "out" 0.819672
      }
      absolutetags shifted_time
      {
        "apex" 0.157895
        "in" 0.245902
        "accent" 0.328947
        "loop" 0.606557
        "end" 0.622951
        "out" 0.819672
      }
      sequenceduration 2.066667
    }
  }
  channel "head"
  {
    event gesture "hg_neckdown_R"
    {
      time 9.066944 10.735000
      param "hg_neckdown_R"
      event_ramp
      {
        0.4731 0.6667
        1.0808 0.1550
      }
      absolutetags playback_time
      {
        "apex" 0.285046
        "extreme" 0.509010
        "loop" 0.610812
        "end" 0.762453
      }
      absolutetags shifted_time
      {
        "apex" 0.264151
        "extreme" 0.471698
        "loop" 0.566038
        "end" 0.754717
      }
      sequenceduration 1.800000
    }
    event gesture "hg_raisechest"
    {
      time 3.863636 6.928787
      param "hg_raisechest"
      event_ramp
      {
        0.7000 0.4845
        2.2029 0.5022
      }
      absolutetags playback_time
      {
        "apex" 0.108642
        "extreme" 0.298686
        "loop" 0.420373
        "end" 0.758025
      }
      absolutetags shifted_time
      {
        "apex" 0.241379
        "extreme" 0.465517
        "loop" 0.655172
        "end" 0.827586
      }
      sequenceduration 1.966667
    }
    event gesture "hg_liftheadup"
    {
      time 22.722223 24.922222
      param "hg_liftheadup"
      event_ramp
      {
        0.0000 0.8439 "curve_easein_to_curve_easeout"
        2.2000 0.8121 "curve_easein_to_curve_easeout"
      }
      absolutetags playback_time
      {
        "apex" 0.229798
        "extreme" 0.460858
        "loop" 0.691919
        "end" 0.784343
      }
      absolutetags shifted_time
      {
        "apex" 0.166667
        "extreme" 0.416667
        "loop" 0.666667
        "end" 0.766667
      }
      sequenceduration 2.033333
    }
    event gesture "hg_liftheadup"
    {
      time 25.655556 27.688889
      param "hg_liftheadup"
      event_ramp
      {
        0.0000 0.4395
        0.9171 0.4936
        1.3829 0.0191
        2.0276 0.0000
      }
      absolutetags playback_time
      {
        "apex" 0.166667
        "extreme" 0.416667
        "loop" 0.666667
        "end" 0.766667
      }
      absolutetags shifted_time
      {
        "apex" 0.166667
        "extreme" 0.416667
        "loop" 0.666667
        "end" 0.766667
      }
      sequenceduration 2.033333
    }
    event gesture "hg_liftheadup"
    {
      time 26.711113 28.911110
      param "hg_liftheadup"
      event_ramp
      {
        0.0000 0.8439 "curve_easein_to_curve_easeout"
        2.2000 0.8121 "curve_easein_to_curve_easeout"
      }
      absolutetags playback_time
      {
        "apex" 0.229798
        "extreme" 0.460858
        "loop" 0.691919
        "end" 0.784343
      }
      absolutetags shifted_time
      {
        "apex" 0.166667
        "extreme" 0.416667
        "loop" 0.666667
        "end" 0.766667
      }
      sequenceduration 2.033333
    }
  }
  channel "facial"
  {
    event flexanimation "brows"
    {
      time 0.422222 33.766670
      param ""
      flexanimations samples_use_time defaultcurvetype=curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x
      {
        "lid_raiser" combo 
        {
          0.6790 0.0000
          7.2920 0.0000
          7.6260 0.3200
          7.9000 0.0000
          8.4057 0.0000
          8.8834 0.0000
          9.6500 0.0000
          12.7980 0.0000
          13.6120 0.0000
          24.5380 0.0000
          24.6947 0.0000
          24.6947 0.0000
          28.4818 0.0000
        }
        {
          0.6790 0.5000
          7.9000 0.5000
          8.4057 0.5000
          8.8834 0.5000
          9.6500 0.5000
          12.7980 0.5000
          13.6120 0.5000
          24.5380 0.5000
          24.6947 0.5000
          24.6947 0.5000
          28.4818 0.5000
        }
        "lid_tightener" combo 
        {
          0.6790 0.0000
          7.9000 0.0000
          8.4057 0.0000
          8.8834 0.0000
          9.6500 0.0000
          12.7980 0.0000
          13.6120 0.0000
          24.5380 0.0000
          24.6947 0.0000
          24.6947 0.0000
          28.4818 0.0000
        }
        {
          0.6790 0.5000
          7.9000 0.5000
          8.4057 0.5000
          8.8834 0.5000
          9.6500 0.5000
          12.7980 0.5000
          13.6120 0.5000
          24.5380 0.5000
          24.6947 0.5000
          24.6947 0.5000
          28.4818 0.5000
        }
        "lid_closer" combo 
        {
          0.6790 0.0000
          7.2840 0.0600
          7.4760 0.8800
          7.7180 0.8000
          8.0760 0.0000
          8.4057 0.0000
          8.8834 0.0000
          9.6500 0.0000
          9.7180 0.7900
          9.7660 0.8000
          9.8940 0.1000
          12.7980 0.0000
          13.6120 0.0000
          14.5020 0.0800
          14.5760 0.9000
          14.8640 0.9100
          14.9640 0.0700
          16.1120 0.0700
          16.1840 0.9500
          16.2640 0.9400
          16.3640 0.0700
          24.2136 0.0100
          24.2636 0.1500
          24.3773 0.9400
          24.4955 0.9800
          24.6062 0.0000
          24.6947 0.0000
          24.6947 0.0000
          25.5273 0.1000
          25.7227 0.9700
          26.0864 0.9700
          26.3000 0.1700
          28.0136 0.0600
          28.4818 0.0000
          29.1698 0.0200
          29.1909 0.1400
          29.2069 0.3100
          29.2291 0.6600
          29.2402 0.9500
          29.2705 1.0000
          29.3138 0.9000
          29.4345 0.1000
          32.2852 0.0500
          32.2981 0.9300 "curve_easein_to_curve_easeout"
          32.3667 0.7800
          32.4482 0.1100
        }
        {
          0.6790 0.5000
          7.9000 0.5000
          8.4057 0.5000
          8.8834 0.5000
          9.6500 0.5000
          12.7980 0.5000
          13.6120 0.5000
          24.5380 0.5000
          24.6947 0.5000
          24.6947 0.5000
          28.4818 0.5000
        }
        "inner_raiser" combo 
        {
          0.3140 0.0200
          0.4920 0.0800
          0.6790 0.9000
          0.8620 0.6700
          1.5560 0.2000
          1.6380 0.6600
          1.8120 0.8200
          2.0300 0.0700
          2.7300 0.7800
          3.5860 0.5400
          4.1640 0.7100
          7.2820 0.5800
          7.6300 0.8100
          7.9000 0.8800
          8.4057 0.6057
          8.8834 0.6200
          9.6500 0.2600
          10.6900 0.0500
          11.3860 0.5800
          12.7980 0.7098
          13.0540 0.4200
          13.6120 0.4177 "curve_easein_to_curve_easeout"
          14.6280 0.3400 "curve_easein_to_curve_easeout"
          14.8140 0.5800
          15.5580 0.7100
          16.1080 0.7200 "curve_easein_to_curve_easeout"
          16.1720 0.5700
          16.3660 0.7200
          16.5940 0.8500 "curve_easein_to_curve_easeout"
          24.1818 0.6600 "curve_easein_to_curve_easeout"
          24.3727 0.5100
          24.5380 0.6028
          24.8856 0.6983 "curve_easein_to_curve_easeout"
          25.3136 0.7000
          25.5182 0.6900
          25.6410 0.5000
          25.9949 0.9100
          26.1455 0.9500
          26.2308 0.6900
          26.3864 0.8000
          26.5636 0.8200
          26.9091 0.8500
          27.0718 0.8300
          27.2538 0.5700
          27.5500 0.7600
          27.7205 0.8500
          28.4818 0.6376 "curve_easein_to_curve_easeout"
          29.1606 0.5800 "curve_easein_to_curve_easeout"
          29.2310 0.5200
          29.4643 0.5300
          29.7384 0.8300
          30.0569 0.9000
          30.2641 0.9000
          30.4769 0.6900
          30.7718 0.6600
          30.9926 0.9600
          31.2359 0.9000
          31.3204 0.6800
          31.5872 0.5300
          31.7370 0.9100
          31.9128 0.9300
          32.0759 0.4800
        }
        {
          0.6790 0.7500
          7.9000 0.7300
          8.4057 0.6680
          8.8834 0.6100
          9.6500 0.5645
          12.7980 0.5567
          13.6120 0.5560 "curve_easein_to_curve_easeout"
          16.1080 0.5400 "curve_easein_to_curve_easeout"
          16.3320 0.2700 "curve_easein_to_curve_easeout"
          24.4289 0.2643 "curve_easein_to_curve_easeout"
          24.7492 0.5400
          24.7492 0.5400
          26.2864 0.8200
          26.5545 0.6300
          27.1500 0.8100
          27.5591 0.4400
          28.0318 0.8900
          28.4818 0.5967
          28.5909 0.5100 "curve_easein_to_curve_easeout"
        }
        "outer_raiser" combo 
        {
          0.3220 0.0700
          0.4940 0.0400
          0.6790 0.9900
          0.8640 0.7200
          1.5560 0.2900
          1.6540 0.6600
          1.8240 0.7500
          2.0400 0.0700
          2.7180 0.6200
          3.5880 0.4500
          4.1860 0.7300
          7.3020 0.4800
          7.6340 0.9600
          7.9000 0.5800
          8.4057 0.7827
          8.8834 0.9200
          9.6500 0.2300
          10.6660 0.4300
          11.4120 0.8500
          12.7980 0.8434
          13.0600 0.4242
          13.6120 0.4259 "curve_easein_to_curve_easeout"
          14.6340 0.3737 "curve_easein_to_curve_easeout"
          14.8160 0.9596
          14.9660 0.9495
          15.2120 0.3737 "curve_easein_to_curve_easeout"
          16.1100 0.3636
          16.1780 0.3434
          16.3680 0.5960
          16.5940 0.7273 "curve_easein_to_curve_easeout"
          24.1773 0.7576 "curve_easein_to_curve_easeout"
          24.3545 0.4141
          24.5380 0.3253 "curve_easein_to_curve_easeout"
          24.8947 0.3662 "curve_easein_to_curve_easeout"
          26.0974 0.4444
          26.2333 0.1818
          26.4333 0.4242
          27.0308 0.4444
          27.2273 0.4040
          27.5364 0.8889
          27.7359 1.0000
          28.0821 0.8889
          28.2385 0.6667
          28.4818 0.6138
          31.6128 0.4848
        }
        {
          0.6790 0.7100
          7.9000 0.7300
          8.4057 0.6787
          8.8834 0.6300
          9.6500 0.7424
          12.7980 0.7594
          13.6120 0.7584 "curve_easein_to_curve_easeout"
          16.0980 0.7273 "curve_easein_to_curve_easeout"
          16.1860 0.1212
          16.2909 0.0505
          16.6227 0.0303
          24.2744 0.0596 "curve_easein_to_curve_easeout"
          24.7265 0.7273 "curve_easein_to_curve_easeout"
          25.3091 0.6768
          26.4436 0.6162
          27.1273 0.6667
          27.5318 0.7980
          28.0773 0.9091
          28.4818 0.8720 "curve_easein_to_curve_easeout"
          29.1587 0.6970
          29.4939 0.6263
          29.7273 0.9596
          30.0513 0.9596
          30.9963 0.9293
          31.7315 0.9192
          32.0870 0.5657
        }
        "lowerer" combo 
        {
          0.3080 0.0900
          0.6790 0.0000
          7.3060 1.0000
          7.5740 0.0000
          7.9000 0.7900
          8.4057 0.5000
          8.6700 0.0800
          8.8834 0.0000
          9.6500 0.5700
          10.6680 0.5400
          11.4060 0.0100
          12.7980 0.6598
          13.0840 0.8200
          13.6120 0.8118 "curve_easein_to_curve_easeout"
          14.6240 0.8400 "curve_easein_to_curve_easeout"
          14.7940 0.0500
          15.0000 0.2200
          15.2340 0.5000 "curve_easein_to_curve_easeout"
          16.1060 0.5500
          16.1920 0.6000
          16.3700 0.6000
          24.1773 0.6300 "curve_easein_to_curve_easeout"
          24.6000 0.5100
          24.8947 0.4300
          24.8947 0.4300
          25.3500 0.4600
          25.5318 0.7600
          25.8136 0.6800
          26.1318 0.6300
          26.5273 0.8000
          26.7864 0.1600
          27.0615 0.2100
          27.2091 0.5600
          27.3955 0.5800
          27.5500 0.0800
          28.1045 0.1000
          28.2564 0.6400
          28.4818 0.8987 "curve_easein_to_curve_easeout"
          29.1421 0.9300
          29.4939 0.8900
          29.7550 0.1900
          30.0736 0.0500
          31.0204 0.0600
          31.6205 0.1000
          31.7352 0.0200
          31.8462 0.1000
          32.0907 0.5100
        }
        {
          0.6790 0.5000
          7.9000 0.5000
          8.4057 0.5000
          8.8834 0.5000
          9.6500 0.5000
          12.7980 0.5000
          13.6120 0.5000
          24.5380 0.5000
          24.6947 0.5000
          24.6947 0.5000
          28.4818 0.5000
        }
        "cheek_raiser" combo 
        {
          0.6790 0.0000
          7.9000 0.0000
          8.4057 0.5400
          8.6600 0.0900
          8.8834 0.0000
          9.6500 0.0000
          12.7980 0.0000
          13.6120 0.0000
          24.5380 0.0000
          24.6947 0.0000
          24.6947 0.0000
          28.4818 0.0000
        }
        {
          0.6790 0.5000
          7.9000 0.5000
          8.4057 0.5000
          8.8834 0.5000
          9.6500 0.5000
          12.7980 0.5000
          13.6120 0.5000
          24.5380 0.5000
          24.6947 0.5000
          24.6947 0.5000
          28.4818 0.5000
        }
      }
    }
  }
  channel "headflex"
  {
    event flexanimation "loosen"
    {
      time 29.458336 33.812500
      param ""
      flexanimations samples_use_time defaultcurvetype=curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x
      {
        "head_rightleft" range 30.0 -30.0 
        {
          0.1277 0.5000
          1.8850 0.4900
        }
        "head_updown" range 15.0 -15.0 
        {
          0.1277 0.5000
          0.8641 0.3533
          1.4872 0.3967
          1.8850 0.8000
          2.3282 0.9348
          2.7590 0.8207
          3.0949 0.5761
          3.5769 0.4022
        }
        "head_tilt" range 15.0 -15.0 
        {
          0.1277 0.5000
          1.8850 0.6000
        }
      }
    }
    event flexanimation "loosen"
    {
      time 12.520836 16.875000
      param ""
      flexanimations samples_use_time defaultcurvetype=curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x
      {
        "head_rightleft" range 30.0 -30.0 
        {
          0.1277 0.5000
          1.8850 0.4900
        }
        "head_updown" range 15.0 -15.0 
        {
          0.1277 0.5000
          0.8641 0.3533
          1.4872 0.3967
          1.8850 0.8000
          2.3282 0.9348
          2.7590 0.8207
          3.0949 0.5761
          3.5769 0.4022
        }
        "head_tilt" range 15.0 -15.0 
        {
          0.1277 0.5000
          1.8850 0.6000
        }
      }
    }
    event flexanimation "loosen"
    {
      time 8.000002 12.354167
      param ""
      flexanimations samples_use_time defaultcurvetype=curve_catmullrom_normalize_x_to_curve_catmullrom_normalize_x
      {
        "head_rightleft" range 30.0 -30.0 
        {
          0.1277 0.5000
          0.7440 0.4900
        }
        "head_updown" range 15.0 -15.0 
        {
          0.1277 0.5000
          0.7440 0.8000
          1.1872 0.9348
          1.6180 0.8207
          1.9539 0.4537
          2.4308 0.4286
          2.8923 0.8776
          3.5769 0.8818
          3.9538 0.6173
        }
        "head_tilt" range 15.0 -15.0 
        {
          0.1277 0.5000
          0.7440 0.6000
        }
      }
    }
  }
  channel "trigger"
  {
    event firetrigger "wait for player"
    {
      time 7.377534 -1.000000
      param "1"
    }
    event firetrigger "magnusson teleports in"
    {
      time 16.000000 -1.000000
      param "2"
    }
  }
  faceposermodel "U:\DEV\main\game\ep2\models\magnusson.mdl"
}

actor "vort"
{
  channel "Audio"
  {
    event speak "ep_02.vort_tutor_duds"
    {
      time 16.100817 21.135489
      param "ep_02.vort_tutor_deactive01"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
    event speak "ep_02.vort_tutor_duds"
    {
      time 21.196972 25.804977
      param "ep_02.vort_tutor_deactive02"
      fixedlength
      cctype "cc_master"
      cctoken ""
    }
  }
  channel "look at"
  {
    event lookat "look at player"
    {
      time 6.721445 8.889789
      param "!player"
      event_ramp
      {
        0.5114 1.0000
        1.6181 1.0000
      }
    }
    event lookat "magnusson_lookat3"
    {
      time -0.002051 1.626602
      param "magnusson_lookat3"
      event_ramp
      {
        0.0000 0.9828
        0.8570 0.9786
      }
    }
    event lookat "magnusson"
    {
      time 1.250427 7.142628
      param "magnusson"
      event_ramp
      {
        0.4794 1.0000
        5.3436 1.0000
      }
    }
    event lookat "magnusson_faceto_1"
    {
      time 27.648720 31.435385
      param "magnusson_faceto_1"
      event_ramp
      {
        0.4971 1.0000
        3.2143 1.0000
      }
    }
    event lookat "mark_vort_controls_int"
    {
      time 25.195381 27.982050
      param "mark_vort_controls_int"
      event_ramp
      {
        0.4514 1.0000
        2.2771 1.0000
      }
    }
    event lookat "!player"
    {
      time 31.082050 33.822052
      param "!player"
      event_ramp
      {
        0.4943 1.0000
        2.0571 1.0000
      }
    }
    event lookat "look at player"
    {
      time 19.461445 23.176455
      param "!player"
      event_ramp
      {
        0.5114 1.0000
        3.1648 1.0000
      }
    }
    event lookat "magnusson"
    {
      time 8.903204 15.471794
      param "magnusson"
      event_ramp
      {
        0.5000 1.0000
        6.0200 1.0000
      }
    }
    event lookat "magnusson_lookat3"
    {
      time 15.491282 19.430769
      param "magnusson_lookat3"
      event_ramp
      {
        0.4824 1.0000
        3.4176 1.0000
      }
    }
  }
  channel "moveTo"
  {
    event moveto "mark_vort2"
    {
      time 1.514422 3.809295
      param "mark_vort2"
      param2 "Walk"
    }
    event moveto "mark_vort_controls2"
    {
      time 25.736088 30.333281
      param "mark_vort_controls2"
      param2 "Walk"
      resumecondition
    }
  }
  channel "Face to"
  {
    event face "magnusson_moveto4"
    {
      time 0.025641 1.326068
      param "magnusson_moveto4"
      event_ramp
      {
        0.6879 1.0000
      }
    }
    event face "magnusson_lookat0"
    {
      time 1.352778 15.617565
      param "magnusson_lookat0"
      event_ramp
      {
        0.8029 1.0000
        13.3389 1.0000
      }
    }
    event face "!player"
    {
      time 15.626667 24.600002
      param "!player"
      event_ramp
      {
        0.5118 0.9871
        7.6845 0.8841
      }
    }
    event face "magnusson_faceto_1"
    {
      time 26.915382 31.048717
      param "magnusson_faceto_1"
      event_ramp
      {
        1.2814 0.7189
        3.3820 1.0000
      }
    }
    event face "magnusson_faceto_1"
    {
      time 31.075382 33.828716
      param "magnusson_faceto_1"
      event_ramp
      {
        0.4343 1.0000
        2.2667 1.0000
      }
      lockbodyfacing
    }
  }
  channel "posture"
  {
    event gesture "p_step_L"
    {
      time 16.178947 25.053946
      param "p_step_L"
      absolutetags playback_time
      {
        "apex" 0.080040
        "loop" 0.205534
        "end" 0.894739
      }
      absolutetags shifted_time
      {
        "apex" 0.113636
        "loop" 0.409091
        "end" 0.636364
      }
      sequenceduration 2.966667
    }
  }
  channel "gesture"
  {
    event gesture "g_palm_both"
    {
      time 16.684212 19.317545
      param "g_palm_both"
      event_ramp
      {
        0.4229 0.9785
        1.9143 0.9764
      }
      absolutetags playback_time
      {
        "apex" 0.153846
        "accent" 0.346154
        "loop" 0.448718
        "end" 0.769231
      }
      absolutetags shifted_time
      {
        "apex" 0.153846
        "accent" 0.346154
        "loop" 0.448718
        "end" 0.769231
      }
      sequenceduration 2.633333
    }
    event gesture "g_handclasp"
    {
      time 18.202194 21.904970
      param "g_handclasp"
      event_ramp
      {
        0.5114 0.9764
        2.2972 0.9893
        2.8856 0.8702
        3.2343 0.3576
        3.5057 0.0228
      }
      absolutetags playback_time
      {
        "in" 0.153061
        "loop" 0.510204
        "end" 0.612245
        "out" 0.867238
      }
      absolutetags shifted_time
      {
        "in" 0.153061
        "loop" 0.510204
        "end" 0.612245
        "out" 0.816327
      }
      sequenceduration 3.300000
    }
    event gesture "g_present"
    {
      time 21.381540 25.271015
      param "g_present"
      event_ramp
      {
        0.4943 0.9828
        1.5400 0.8948
        2.3981 0.9893
        3.0610 0.9764
      }
      absolutetags playback_time
      {
        "apex" 0.156099
        "accent" 0.286182
        "loop" 0.398919
        "end" 0.799314
      }
      absolutetags shifted_time
      {
        "apex" 0.214286
        "accent" 0.392857
        "loop" 0.547619
        "end" 0.666667
      }
      sequenceduration 2.833333
    }
  }
  channel "body"
  {
  }
  channel "head"
  {
  }
  channel "trigger"
  {
  }
}

scalesettings
{
  "SceneRampTool" "100"
  "RampTool" "70"
  "GestureTool" "100"
  "ExpressionTool" "78"
  "CChoreoView" "32"
}
fps 60
snap off
ignorePhonemes off