-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLocExport.csv
We can't make this file beautiful and searchable because it's too large.
6949 lines (6949 loc) · 789 KB
/
LocExport.csv
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
Line Name, Code, English
ExperimentResponses|partner.talk.experiment.behavior.newObservation.1:1, @0EE74D67, "{@guide} Nice one!"
ExperimentResponses|partner.talk.experiment.behavior.newObservation.2:1, @8E4FE416, "{@guide} Good catch."
ExperimentResponses|partner.talk.experiment.behavior.idle.nothingLeft.1:0, @B71C8E10, "{@guide} I think we've learned all that we can from this experiment."
ExperimentResponses|partner.talk.experiment.behavior.idle.nothingLeft.2:0, @58AC69B5, "{@guide} You've been pretty thorough here! I doubt we'll learn anything more from this experiment."
ExperimentResponses|partner.talk.experiment.behavior.idle.nothingLeft.missedSome.1:0, @B232474D, "{@guide} Well, we might have missed something... we should finish up and restart this experiment."
ExperimentResponses|partner.talk.experiment.behavior.idle.nothingLeft.missedSome.2:0, @10A26BA8, "{@guide} I feel like we missed something... we should finish this up and restart the experiment."
ExperimentResponses|partner.talk.experiment.behavior.idle.somethingLeft.noCircles.1:0, @102DCC07, "{@guide} Let's be patient, I think there might be something here to observe."
ExperimentResponses|partner.talk.experiment.behavior.idle.somethingLeft.noCircles.2:0, @B351A6D6, "{@guide} I'm pretty sure there's something new here to observe..."
ExperimentResponses|partner.talk.experiment.behavior.idle.somethingLeft.1:0, @774E0111, "{@guide} Let's wait for another opportunity to observe a behavior."
ExperimentResponses|partner.talk.experiment.behavior.idle.somethingLeft.2:0, @55E5FE5C, "{@guide} We've already seen something - maybe there's something else to observe?"
ExperimentResponses|partner.talk.experiment.generic.observation-tank.intro:0, @25D86D23, "{@guide}\tThis is your {h}{nameof ObservationTank}{/h}."
ExperimentResponses|partner.talk.experiment.generic.observation-tank.intro:1, @24D86B90, "Click {h}Add Water{/h} to fill the tank."
ExperimentResponses|partner.talk.experiment.generic.observation-tank.intro:2, @27D87049, "Select an {h}Environment{/h} and choose which organisms to include."
ExperimentResponses|partner.talk.experiment.generic.observation-tank.intro:3, @26D86EB6, "Then click {h}Run Experiment{/h} and record how the different life forms interact!"
ExperimentResponses|partner.talk.experiment.generic.stress-tank.intro:0, @8EAE9D05, "{@guide}\tThis is the {h}{nameof StressTank}{/h}."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.intro:1, @8DAE9B72, "Once you start an experiment, there will be sliders on the bottom."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.intro:2, @8CAE99DF, "Moving the sliders affects the tank conditions."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.intro:3, @8BAE984C, "They will auto adjust to make sure the organisms don't get hurt."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:0, @CFB0ABBC, "{@guide}\tAdequate work, O!"
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:1, @D0B0AD4F, "{@player}\tHmm. Can you remind me what this all means, {nameof @guide}?"
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:2, @D1B0AEE2, "{@guide}\tCertainly, O."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:3, @D2B0B075, "For each environment variable, the bars show values from low to high."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:4, @CBB0A570, "{@guide}\tThe grayed parts show the range where the organism is stressed."
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:5, @CCB0A703, "{@player} \tGot it. So basically... we're getting the ranges of conditions that stress the organism?"
ExperimentResponses|partner.talk.experiment.generic.stress-tank.outro:6, @CDB0A896, "{@guide}\tExactly."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:0, @3BCB554D, "{@guide}\tThis is the {h}{nameof MeasurementTank}{/h}."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:1, @3ACB53BA, "We can use it to gather numerical facts that we'll need to run simulations in the Modeling Lab."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:2, @39CB5227, "First you will select an {h}Environment{/h}."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:3, @38CB5094, "Some environments will stress organisms, others will not. Don't be afraid to select ecosystems outside of your current job!"
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:4, @37CB4F01, "Then you will select the {h}Organisms{/h} you are trying to measure something about."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:5, @36CB4D6E, "After that, you can set the {nameof WaterStabilizer} or the {nameof AutoFeeder} if you have them."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.intro:6, @35CB4BDB, "Click the {h}Add Water{/h} button to get started!"
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:0, @0274A24D, "{@guide}\tThis is your {h}{nameof MeasurementTank}{/h}."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:1, @0174A0BA, "Use it to gather measurements that you'll need for Modeling Lab simulations!"
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:2, @00749F27, "First, select an {h}Environment{/h}."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:3, @FF749D94, "Some environments will stress organisms. Others will not."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:4, @FE749C01, "Don't be afraid to select ecosystems outside of your current job."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:5, @FD749A6E, "Next, select your {h}Organisms{/h}."
ExperimentResponses|partner.talk.experiment.generic.measurement-tank.request-intro:6, @FC7498DB, "Then set the {nameof WaterStabilizer} or the {nameof AutoFeeder}, if you have them."
ExperimentResponses|partner.talk.experiment.generic.features.intro:0, @4083C475, "{@guide}\tHere is where you can modify tank features to measure different types of facts."
ExperimentResponses|partner.talk.experiment.generic.features.intro:1, @3F83C2E2, "Deactivate the {h}{nameof WaterStabilizer}{/h} if you want to see how an organism affects its environment,"
ExperimentResponses|partner.talk.experiment.generic.features.intro:2, @3E83C14F, "or turn off the {nameof AutoFeeder} if you want to measure eating rates."
ExperimentResponses|partner.talk.experiment.generic.features.intro:-163, @269EA666, "Leaving both active will allow you to measure reproduction rates."
script|job.above-n-below.start:0, @02886E41, "{@profArctic} Thank you, Ollie!"
script|job.above-n-below.start:1, @01886CAE, "I noticed from the probe data that some other species live in the {m}Ephemeral Impasse{/m}."
script|job.above-n-below.start:2, @00886B1B, "I'm so curious to find out whether they interact with the Ribbon Seals!"
script|job.above-n-below.start:3, @FF886988, "Wish I could figure it out myself... it seems like there's never enough time."
script|job.above-n-below.start:4, @0688748D, "{@player} Well, you are running an entire science station in extreme conditions, in what a lot of people would call the middle of nowhere."
script|job.above-n-below.start:5, @058872FA, "{@profArctic} Ha. Well, it may be the middle of nowhere, but it's our middle of nowhere."
script|job.above-n-below.start:6, @04887167, "And it's not a bad view, either."
script|job.above-n-below.start:7, @03886FD4, "Anyhow, what do you say, Ollie? Can you make a {h}Visual Model{/h} of how all the species interact?"
script|job.above-n-below.start:8, @FA8861A9, "{@player} I'd love to. I'll let you know what I find out!"
script|job.above-n-below.speciesScanned:0, @FD0FFEA9, "{@guide} Now that we have these species scanned and counted, let's drop them in the observation tank."
script|job.above-n-below.experimentsCompleted:0, @1318FC1A, "{@guide} Time to head to the modeling lab to show how seals and other species interact."
script|job.above-n-below.modelCompleted:0, @C2206449, "{@guide} Looks good! {nameof @profArctic} is waiting."
script|job.above-n-below.catchScanNew:0, @9ACC9FBF, "{@guide} Head to {nameof RS-4Y} and scan the species there."
script|job.above-n-below.catchCountNew:0, @02DF10A5, "{@guide} Count the species in the {nameof RS-4Y}."
script|job.above-n-below.catchExperimentInteractions:0, @5DC7C824, "{@guide} Place seals in the observation tank with other species they could interact with from {nameof RS-4Y}."
script|job.above-n-below.catchCreateModel:0, @001E9B3B, "{@guide} Take what you learned from experimentation and create a Visual Model out of it."
script|job.above-n-below.catchReportBack:0, @61C94F23, "{@guide} Report back to {nameof @profArctic}."
script|job.above-n-below.argue.intro:1, @82980B7C, "{@profArctic} Do the seals and bottom-dwelling species interact?"
script|job.above-n-below.argue.intro:2, @85981035, "Yes"
script|job.above-n-below.argue.intro:3, @84980EA2, "No"
script|job.above-n-below.argue.intro:4, @7F9806C3, "Let me get back to you."
script|job.above-n-below.argue.showClaimYes:0, @187C927D, "{@profArctic} Can I see your model?"
script|job.above-n-below.argue.showClaimYes:2, @167C8F57, "Present facts from AQOS"
script|job.above-n-below.argue.showClaimYes:5, @137C8A9E, "Let me get back to you."
script|job.above-n-below.argue.unrelatedYes:1, @EE94A651, "{@profArctic} Huh. That's interesting, Ollie, but it's not really relevant."
script|job.above-n-below.argue.retryYes:1, @89294605, "{@profArctic} Hmm, I'm not sure I see how based on your model."
script|job.above-n-below.argue.retryYes:2, @8629414C, "Want to try again?"
script|job.above-n-below.argue.showClaimNo:0, @1DFEE4A1, "{@profArctic} Can I see your model?"
script|job.above-n-below.argue.showClaimNo:2, @1BFEE17B, "Present facts from AQOS"
script|job.above-n-below.argue.showClaimNo:5, @20FEE95A, "Let me get back to you."
script|job.above-n-below.argue.unrelatedNo:1, @95762877, "{@profArctic} Huh. That's interesting, Ollie, but it's not really relevant."
script|job.above-n-below.argue.giveUp:0, @520BD5DF, "{@profArctic} No problem, Ollie. Just let me know when you're ready."
script|job.above-n-below.argue.giveUpNoClaim:0, @BDF90824, "{@profArctic} No problem, Ollie. Just let me know when you're ready."
script|job.above-n-below.argue.completeNo:1, @1D8F3DDC, "{@profArctic} Oh, this is fascinating!"
script|job.above-n-below.argue.completeNo:2, @208F4295, "So it seems the Ribbon Seals and the other species don't really interact..."
script|job.above-n-below.argue.completeNo:3, @1F8F4102, "Except through detritus, I guess."
script|job.above-n-below.argue.completeNo:4, @1A8F3923, "Thank you, Ollie. I've been wondering about that place for years!"
script|job.arctic-cause-of-death.start:0, @9BF05BE4, "{@arcticSci} Ah! Looking to do more detective work?"
script|job.arctic-cause-of-death.start:1, @9CF05D77, "{@player} I guess so. I've been wondering about what could've happened to Linda."
script|job.arctic-cause-of-death.start:2, @9DF05F0A, "How did she die? What happened to her?"
script|job.arctic-cause-of-death.start:3, @9EF0609D, "{@arcticSci} I've been wondering the same, Ollie."
script|job.arctic-cause-of-death.start:4, @97F05598, "I have two theories: poor water conditions, or a lack of food."
script|job.arctic-cause-of-death.start:5, @98F0572B, "You'll need to check into each theory and decide which is most plausible."
script|job.arctic-cause-of-death.start:9, @94F050DF, "{@arcticSci} We already know that {pluralnameof BowheadWhale} eat both diatoms and ice algae."
script|job.arctic-cause-of-death.start:10, @5562D6C5, "This data should be useful to you here."
script|job.arctic-cause-of-death.start:16, @4F62CD53, "{@arcticSci} In my work, I've already obtained the water conditions that cause stress to Bowhead Whales."
script|job.arctic-cause-of-death.start:17, @4E62CBC0, "You'll be able to compare this to the conditions at {h}Site W{/h}."
script|job.arctic-cause-of-death.switchToJob:1, @677A506B, "{@arcticSci} Glad to see you returning to this job, Ollie!"
script|job.arctic-cause-of-death.switchToJob:2, @687A51FE, "{@player} Of course. We need to find out what happened to Linda."
script|job.arctic-cause-of-death.switchToJob:3, @697A5391, "Though I have no idea what these whales eat, so I'm not sure how helpful I'll be."
script|job.arctic-cause-of-death.switchToJob:4, @6A7A5524, "{@arcticSci} Oh dear. I'm sorry, Ollie. I meant to tell you last time!"
script|job.arctic-cause-of-death.switchToJob:5, @6B7A56B7, "In the course of my work, I've learned that these whales eat both diatoms and ice algae."
script|job.arctic-cause-of-death.switchToJob:6, @6C7A584A, "{@player} Oh, that's great! Thanks, Professor."
script|job.arctic-cause-of-death.switchToJob:12, @3E8C7C1B, "{@arcticSci} It looks like you've obtained the water conditions at {h}Site W{/h}."
script|job.arctic-cause-of-death.switchToJob:13, @3D8C7A88, "You can compare those with the water conditions that stress the Bowhead Whales. See if it matches up."
script|job.arctic-cause-of-death.helpLost:0, @FF57E04D, "{@player} Hey {nameof @guide}... I'm a little lost."
script|job.arctic-cause-of-death.helpLost:1, @FE57DEBA, "{@guide} Don't worry, O. Our map and compass are fully operational."
script|job.arctic-cause-of-death.helpLost:2, @FD57DD27, "{@player} No. I mean... what are we supposed to do here?"
script|job.arctic-cause-of-death.helpLost:3, @FC57DB94, "{@guide} Ah. You have been tasked with investigating each of {nameof @arcticSci}'s theories about Linda's death: water conditions, or lack of food."
script|job.arctic-cause-of-death.helpLost:4, @FB57DA01, "You will still need more information in order to investigate either theory."
script|job.arctic-cause-of-death.helpLost:5, @FA57D86E, "Check your {h}AQOS{/h} to see where to go next."
script|job.arctic-cause-of-death.helpScanProbE:0, @B7C05DE4, "{@player} What should we do now, {nameof @guide}?"
script|job.arctic-cause-of-death.helpScanProbE:1, @B8C05F77, "{@guide} You need to investigate whether the water conditions proved deadly for Linda."
script|job.arctic-cause-of-death.helpScanProbE:2, @B9C0610A, "Try scanning the {h}water chemistry probe{/h} for more data."
script|job.arctic-cause-of-death.helpScanProbP:0, @7C3012CF, "{@player} Okay, {nameof @guide}. What's our next step?"
script|job.arctic-cause-of-death.helpScanProbP:1, @7B30113C, "{@guide} You need to determine if Linda died of starvation."
script|job.arctic-cause-of-death.helpScanProbP:2, @7E3015F5, "That means you'll need to find out if her food population declined."
script|job.arctic-cause-of-death.helpScanProbP:3, @7D301462, "There's no live whale here to help us obtain data on what Bowhead Whales eat..."
script|job.arctic-cause-of-death.helpScanProbP:4, @78300C83, "So I would suggest gathering data on everything."
script|job.arctic-cause-of-death.helpScanProbP:5, @77300AF0, "{@player} Got it. Thanks, {nameof @guide}."
script|job.arctic-cause-of-death.helpReport:0, @69773DED, "{@player} Okay, V. What now?"
script|job.arctic-cause-of-death.helpReport:1, @68773C5A, "{@guide} It's time to report back to {nameof @arcticSci}!"
script|job.arctic-cause-of-death.helpReport:2, @67773AC7, "Be sure to review your data and the hypotheses of {nameof @arcticSci} before presenting your findings."
script|job.arctic-cause-of-death.giveWhaleEat:0, @519C2308, "{@guide} Adequate work, O!"
script|job.arctic-cause-of-death.giveWhaleEat:1, @529C249B, "Incidentally, I've received a transmission from {nameof @arcticSci}."
script|job.arctic-cause-of-death.giveWhaleEat:2, @539C262E, "According to his data, Bowhead Whales eat both diatoms and ice algae."
script|job.arctic-cause-of-death.giveWhaleEat:3, @549C27C1, "This should help in your investigation!"
script|job.arctic-cause-of-death.giveWhaleEat:4, @559C2954, "{@player} ....{nameof @guide}..."
script|job.arctic-cause-of-death.giveWhaleEat:5, @569C2AE7, "{@guide} Yes, O?"
script|job.arctic-cause-of-death.giveWhaleEat:6, @579C2C7A, "{@player} Did you wait to tell me this information so that I would have to gather all that extra data from the probe?"
script|job.arctic-cause-of-death.giveWhaleEat:7, @589C2E0D, "{@guide} Processing... processing..."
script|job.arctic-cause-of-death.giveWhaleEat:8, @499C1670, "{@player} Oh, never mind, V. I get it. Data is pretty awesome."
script|job.arctic-cause-of-death.giveWhaleStress:0, @68B041EE, "{@guide} Satisfactory work, O!"
script|job.arctic-cause-of-death.giveWhaleStress:1, @69B04381, "{@player} Thanks, V."
script|job.arctic-cause-of-death.giveWhaleStress:2, @66B03EC8, "So what should we do next?"
script|job.arctic-cause-of-death.giveWhaleStress:3, @67B0405B, "{@guide} {nameof @arcticSci} has sent over data on the water conditions that stress the whale."
script|job.arctic-cause-of-death.giveWhaleStress:4, @6CB0483A, "You will need to compare his data to the water conditions here."
script|job.arctic-cause-of-death.reflectionTime:0, @4E9E6C9C, "{@guide} It seems you now have gathered enough data to make an educated decision about whether Linda died due to lack of food or poor water conditions."
script|job.arctic-cause-of-death.reflectionTime:1, @4F9E6E2F, "When you think you know which hypothesis is correct, report back to {nameof @arcticSci}."
script|job.arctic-cause-of-death.catchGetEnvironmentData:0, @F7EF165E, "{@guide} Collect water chemistry data from a probe at Site W."
script|job.arctic-cause-of-death.catchGetHistPopulationData:0, @F85920C2, "{@guide} Collect population history data from a probe at Site W."
script|job.arctic-cause-of-death.catchGetCurrPopulationData:0, @CB54C9E2, "{@guide} We need to collect the current populations of all organisms at the {h}whalefall site{/h}."
script|job.arctic-cause-of-death.catchReportBack:0, @46C9A4C2, "{@player} What now, {nameof @guide}?"
script|job.arctic-cause-of-death.catchReportBack:1, @47C9A655, "{@guide} You need to return to the station and talk to {nameof @arcticSci}!"
script|job.arctic-cause-of-death.argue.intro:1, @8791B77D, "{@arcticSci} Let's see. We've determined that a change in Linda's food supply is what caused her death."
script|job.arctic-cause-of-death.argue.intro:2, @8491B2C4, "What did you determine about the Diatom and Ice Algae populations?"
script|job.arctic-cause-of-death.argue.intro:5, @8391B131, "{@arcticSci} Well, Ollie. Let's see what you discovered."
script|job.arctic-cause-of-death.argue.intro:6, @8091AC78, "Which hypothesis is most likely?"
script|job.arctic-cause-of-death.argue.intro:8, @7E91A952, "There was a problem with Linda's food supply."
script|job.arctic-cause-of-death.argue.intro:11, @B6638CA4, "There was a problem with Linda's water conditions."
script|job.arctic-cause-of-death.argue.intro:13, @B8638FCA, "Let me check my notes and get back to you."
script|job.arctic-cause-of-death.argue.foodClaim:0, @F9F1E620, "{@arcticSci} Hmmm. Okay, let's take it step by step."
script|job.arctic-cause-of-death.argue.foodClaim:1, @FAF1E7B3, "What do {pluralnameof BowheadWhale} eat at {nameof RS-4W}?"
script|job.arctic-cause-of-death.argue.stressClaim:0, @A1014E64, "{@arcticSci} Really? How did Linda's environment compare to the stress ranges I gave you?"
script|job.arctic-cause-of-death.argue.showClaim:1, @0863D6C4, "Present facts from AQOS"
script|job.arctic-cause-of-death.argue.showClaim:4, @0563D20B, "Let me get back to you."
script|job.arctic-cause-of-death.argue.showClaim2:1, @535FF114, "Present facts from AQOS"
script|job.arctic-cause-of-death.argue.showClaim2:4, @505FEC5B, "Let me get back to you."
script|job.arctic-cause-of-death.argue.showClaim3:1, @5D81A24B, "Present facts from AQOS"
script|job.arctic-cause-of-death.argue.showClaim3:4, @6081A704, "Let me get back to you."
script|job.arctic-cause-of-death.argue.howKnow:2, @82FD97D3, "{@arcticSci} Exactly right, Ollie."
script|job.arctic-cause-of-death.argue.howKnow:3, @81FD9640, "And what did you determine about the populations for Diatoms and Ice Algae?"
script|job.arctic-cause-of-death.argue.transition:3, @D5E07932, "{@arcticSci} These ranges seem compatible, Ollie."
script|job.arctic-cause-of-death.argue.transition:4, @D0E07153, "There's nothing here that would've caused Linda's death."
script|job.arctic-cause-of-death.argue.transition:5, @CFE06FC0, "{@player} Oh... you're right!"
script|job.arctic-cause-of-death.argue.transition:6, @D2E07479, "It must've been her food supply."
script|job.arctic-cause-of-death.argue.unrelated:1, @C4A8ADA5, "{@arcticSci} Well... that's certainly interesting. But it's not what I asked for."
script|job.arctic-cause-of-death.argue.unrelated:2, @C1A8A8EC, "Can you share any facts related to Linda's {h}food supply{/h}?"
script|job.arctic-cause-of-death.argue.unrelated2:1, @A0541B77, "{@arcticSci} I'm afraid that's not quite what we need here, Ollie."
script|job.arctic-cause-of-death.argue.unrelated2:2, @A1541D0A, "Do you have any facts about {h}stressors{/h} in Linda's environment?"
script|job.arctic-cause-of-death.argue.unrelated3:1, @760B2870, "{@arcticSci} That's not relevant at the moment... though I'd love to chat more about it later!"
script|job.arctic-cause-of-death.argue.unrelated3:2, @790B2D29, "For now, what can you tell me about the populations of Linda's food sources?"
script|job.arctic-cause-of-death.argue.giveUp:0, @3F303218, "{@arcticSci} Of course, Ollie. Let me know when you're ready."
script|job.arctic-cause-of-death.argue.complete:1, @AD1944CC, "{@arcticSci} Oh no. Poor, dear Linda."
script|job.arctic-cause-of-death.argue.complete:2, @B0194985, "{@player} What is it, Professor?"
script|job.arctic-cause-of-death.argue.complete:3, @AF1947F2, "{@arcticSci} She must've been lured in by the ice algae. When the ice melts, the algae can become abundant..."
script|job.arctic-cause-of-death.argue.complete:4, @AA194013, "But it disappears when the seasons change."
script|job.arctic-cause-of-death.argue.complete:5, @A9193E80, "My guess would be that Linda got trapped when the ice refroze and couldn't get back to her pod."
script|job.arctic-cause-of-death.argue.complete:6, @AC194339, "{@player} Oh no... and without the algae, she must've starved!"
script|job.arctic-cause-of-death.argue.complete:7, @AB1941A6, "{@arcticSci} I think we can reasonably assume that we've found Linda's cause of death."
script|job.arctic-cause-of-death.argue.complete:8, @B61952F7, "{@player} Ugh. How heartbreaking. I wonder if there's any way to stop this from happening again."
script|job.arctic-cause-of-death.argue.complete:9, @B5195164, "{@arcticSci} You really are quite like your sister, Ollie."
script|job.arctic-cause-of-death.argue.complete:10, @7AC798B4, "{@player} Oh... no, I'm not. She was brilliant!"
script|job.arctic-cause-of-death.argue.complete:11, @7BC79A47, "{@arcticSci} Well, all I can say is you've helped me greatly today. And I think Meredith would've done the same."
script|job.arctic-disappearing-act.start:3, @40B8A7FF, "{@arcticSci} Oh, this is so exciting. Whalefalls are exceedingly rare finds!"
script|job.arctic-disappearing-act.start:4, @3DB8A346, "{@player} Huh. I thought you'd be sadder about this, Professor."
script|job.arctic-disappearing-act.start:5, @3EB8A4D9, "I mean, Linda's body is dead and decaying and being... you know. Slowly devoured."
script|job.arctic-disappearing-act.start:6, @3BB8A020, "{@arcticSci} I know! Wonderful, isn't it?"
script|job.arctic-disappearing-act.start:7, @3CB8A1B3, "This is our chance to learn more about how it all works!"
script|job.arctic-disappearing-act.start:8, @49B8B62A, "{@player} Okay, then. Where do we start?"
script|job.arctic-disappearing-act.start:9, @4AB8B7BD, "{@arcticSci} If we're going to investigate properly, you'll need to learn more about all the species at {h}Site W{/h}."
script|job.arctic-disappearing-act.start:10, @1DB5520F, "Let me know what you find out!"
script|job.arctic-disappearing-act.gotAllInfo:0, @BA2BC983, "{@player} Wow. {nameof @arcticSci} was right about this place, {nameof @guide}."
script|job.arctic-disappearing-act.gotAllInfo:1, @B92BC7F0, "I mean, snow crabs? Zombie worms??"
script|job.arctic-disappearing-act.gotAllInfo:2, @BC2BCCA9, "I never even dreamed these things existed!"
script|job.arctic-disappearing-act.gotAllInfo:3, @BB2BCB16, "{@guide} Yes. So much delicious new data, all in one place!"
script|job.arctic-disappearing-act.gotAllInfo:4, @BE2BCFCF, "{@player} We better head back to the AquaLab and keep working. I want to know how all this works!"
script|job.arctic-disappearing-act.helpScan:0, @6BC8D9F4, "{@player} What now, {nameof @guide}?"
script|job.arctic-disappearing-act.helpScan:1, @6CC8DB87, "{@guide} It appears you have more organisms to scan!"
script|job.arctic-disappearing-act.helpObserve:0, @3C4C3D43, "{@player} Can I have a little help, {nameof @guide}?"
script|job.arctic-disappearing-act.helpObserve:1, @3B4C3BB0, "{@guide} Certainly, O!"
script|job.arctic-disappearing-act.helpObserve:2, @3E4C4069, "First you'll need to use your {h}Observation Tank{/h} to understand how the different organisms from {h}Site W{/h} interact."
script|job.arctic-disappearing-act.helpObserve:3, @3D4C3ED6, "Then head to your {nameof Modeling} and use what you found out to create a visual model!"
script|job.arctic-disappearing-act.reportBack:0, @FC879717, "{@player} What now, {nameof @guide}?"
script|job.arctic-disappearing-act.reportBack:1, @FB879584, "{@guide} You've created your model. It's time to report back to {nameof @arcticSci}!"
script|job.arctic-disappearing-act.catchScanCritters:0, @17C545FC, "{@player} What should I do now?"
script|job.arctic-disappearing-act.catchScanCritters:1, @18C5478F, "{@guide} Your current task is to scan all of the species at Site W!"
script|job.arctic-disappearing-act.catchModelInteractions:0, @EF17577B, "{@player} Okay, {nameof @guide}. What now?"
script|job.arctic-disappearing-act.catchModelInteractions:1, @EE1755E8, "{@guide} You need to observe the species' interactions, and then create a Visual Model!"
script|job.arctic-disappearing-act.catchReportBack:0, @E83A7828, "{@player} What do we need to do now?"
script|job.arctic-disappearing-act.catchReportBack:1, @E93A79BB, "{@guide} It's time to report back to {nameof @arcticSci}."
script|job.arctic-disappearing-act.argue.intro:4, @2950C614, "{@arcticSci} Excellent! Let's see what you discovered."
script|job.arctic-disappearing-act.argue.intro:5, @2A50C7A7, "May I have a look at your visual model of Site W?"
script|job.arctic-disappearing-act.argue.showClaim:1, @2890C516, "Present facts from AQOS"
script|job.arctic-disappearing-act.argue.showClaim:4, @2D90CCF5, "Let me get back to you."
script|job.arctic-disappearing-act.argue.unrelated:1, @55C147E7, "{@arcticSci} Ah. Forgive me, Ollie but I don't think that's what you were looking for."
script|job.arctic-disappearing-act.argue.giveUp:0, @060DCFD6, "{@arcticSci} Perfectly understandable. These things take time."
script|job.arctic-disappearing-act.argue.giveUp:1, @070DD169, "Just let me know when you're ready."
script|job.arctic-disappearing-act.argue.complete:1, @59358912, "{@arcticSci} Ollie, this is fascinating! What a beautiful, intricate web of organisms."
script|job.arctic-disappearing-act.argue.complete:2, @5835877F, "And all of them thriving where there was no life, no ecosystem... until now."
script|job.arctic-disappearing-act.argue.complete:3, @573585EC, "{@player} But Linda's body already looks so decayed. How much longer do you think the ecosystem will last?"
script|job.arctic-disappearing-act.argue.complete:4, @56358459, "{@arcticSci} Well, that depends on when she died, and what state of decomposition she's in..."
script|job.arctic-disappearing-act.argue.complete:5, @553582C6, "But I've already rambled on for too long!"
script|job.arctic-disappearing-act.argue.complete:6, @54358133, "Thank you again, Ollie. Until next time!"
script|job.arctic-endangered-seals.start:0, @810FA8AE, "{@arcticSci} I did a bit of digging and found these experimental results. They should help with your model."
script|job.arctic-endangered-seals.start:9, @7A0F9DA9, "{@arcticSci} In addition, we deployed a population history probe after you discovered {fullnameof RS-4Y}."
script|job.arctic-endangered-seals.start:10, @2FA94FE3, "The data is limited because it's only been out a short while, but every bit counts."
script|job.arctic-endangered-seals.afterModelSync:0, @A80A8BD2, "{@guide} Now that we've established a baseline of what has happened, let's project our findings into the future with a Predict Model."
script|job.arctic-endangered-seals.afterModelPredict:0, @F9A17072, "{@guide} All right, back to {nameof @arcticSci}!"
script|job.arctic-endangered-seals.modelSuggestions:2, @37944C26, "{@guide} You're done with this portion! Head to the {h}Describe{/h} tab next."
script|job.arctic-endangered-seals.modelSuggestions:4, @39944F4C, "{@guide} Once you import your facts and save the Visual model, we should be good to make our Describe model!"
script|job.arctic-endangered-seals.modelSuggestions:8, @3D945598, "{@guide} Time to try out your model in the {h}Describe{/h} tab."
script|job.arctic-endangered-seals.modelSuggestions:10, @8E717E99, "{@guide} Seems like we don't have enough information to complete our model accurately."
script|job.arctic-endangered-seals.modelSuggestions:11, @8D717D06, "Look for {h}question marks{/h} in the Visual model interface, those point to where we may need more data."
script|job.arctic-endangered-seals.modelSuggestions:13, @8B7179E0, "{@guide} Maybe look into what {pluralnameof RibbonSeal} eat?"
script|job.arctic-endangered-seals.modelSuggestions:27, @8F73BEC3, "{@guide} Maybe look into what an {nameof ArcticCopepod} eats?"
script|job.arctic-endangered-seals.modelSuggestions:29, @9D73D4CD, "{@guide} Maybe look into what a {nameof GlacialAmphipod} eats?"
script|job.arctic-endangered-seals.suggestReproduce:0, @ABB45BB3, "{@guide} Did you get all the reproduction rates?"
script|job.arctic-endangered-seals.suggestMeasure:0, @C2F04664, "{@guide} Using the {h}Measurement Tank{/h} to find the rates of unmeasured behaviors may help us here."
script|job.arctic-endangered-seals.suggestArcticCodEat:0, @E199F618, "{@guide} Maybe look into what {nameof ArcticCod} eats?"
script|job.arctic-endangered-seals.catchScanProbe:0, @53796AE2, "{@guide} There's a probe at {fullnameof RS-4Y}. We need to scan it."
script|job.arctic-endangered-seals.catchModelSync:0, @5BAD5EED, "{@guide} Create a Describe Model of the {nameof RS-4Y} in the Modeling Lab."
script|job.arctic-endangered-seals.catchModelPredict:0, @1A494B3B, "{@guide} Create a Predict Model of the {nameof RS-4Y} in the Modeling Lab."
script|job.arctic-endangered-seals.catchReportBack:0, @CACD3AF4, "{@guide} Head back to the station to let {nameof @arcticSci} what you discovered!"
script|job.arctic-endangered-seals.argue.initialClaim:0, @3E4DC25E, "{@arcticSci} How are the {nameof RibbonSeal} futures looking?"
script|job.arctic-endangered-seals.argue.initialClaim:1, @3F4DC3F1, "Seals are in danger"
script|job.arctic-endangered-seals.argue.initialClaim:2, @3C4DBF38, "Seals will be fine"
script|job.arctic-endangered-seals.argue.initialClaim:3, @3D4DC0CB, "Let me get back to you."
script|job.arctic-endangered-seals.argue.danger:0, @B8C747A5, "{@arcticSci} How do you know that?"
script|job.arctic-endangered-seals.argue.fine:0, @F0A1D87E, "{@arcticSci} How do you know the seal populations will be fine?"
script|job.arctic-endangered-seals.argue.fine:1, @F1A1DA11, "Their populations will go up."
script|job.arctic-endangered-seals.argue.fine:2, @EEA1D558, "Their populations will be stable."
script|job.arctic-endangered-seals.argue.fine:3, @EFA1D6EB, "On second thought, I need a little more time."
script|job.arctic-endangered-seals.argue.increase:0, @1CBE1CEE, "{@arcticSci} Does your model show that the populations will increase?"
script|job.arctic-endangered-seals.argue.stable:0, @24E339AD, "{@arcticSci} Does your model show that the populations will remain stable?"
script|job.arctic-endangered-seals.argue.showClaimDanger:1, @1C7A8C31, "Present facts from AQOS"
script|job.arctic-endangered-seals.argue.showClaimDanger:4, @1F7A90EA, "Let me get back to you."
script|job.arctic-endangered-seals.argue.unrelatedDanger:1, @EFD251E0, "{@arcticSci} That doesn't support your data. Do you have a Prediction Model?"
script|job.arctic-endangered-seals.argue.completeDanger:0, @6D858632, "{@arcticSci} Hmm. I'm not seeing anything in this model that poses a threat to the seals."
script|job.arctic-endangered-seals.argue.completeDanger:1, @6E8587C5, "Want to revisit your claim?"
script|job.arctic-endangered-seals.argue.showClaimStable:1, @12125CDD, "Present facts from AQOS"
script|job.arctic-endangered-seals.argue.showClaimStable:4, @0D1254FE, "Let me get back to you."
script|job.arctic-endangered-seals.argue.unrelatedStable:1, @C4057634, "{@arcticSci} I need to see the future model, not what's already happened."
script|job.arctic-endangered-seals.argue.unrelatedStable:2, @C7057AED, "Do you have a Prediction Model?"
script|job.arctic-endangered-seals.argue.unrelatedStable:6, @C30574A1, "{@arcticSci} That doesn't support your data. Do you have a Prediction Model?"
script|job.arctic-endangered-seals.argue.completeStable:0, @47120416, "{@arcticSci} Hmm. It looks like your model isn't agreeing with you."
script|job.arctic-endangered-seals.argue.showClaimIncrease:1, @8E6B6B52, "Present facts from AQOS"
script|job.arctic-endangered-seals.argue.showClaimIncrease:4, @8B6B6699, "Let me get back to you."
script|job.arctic-endangered-seals.argue.unrelatedIncrease:1, @045CB82B, "{@arcticSci} I need to see the future model, not what's already happened."
script|job.arctic-endangered-seals.argue.unrelatedIncrease:2, @055CB9BE, "Do you have a Prediction Model?"
script|job.arctic-endangered-seals.argue.unrelatedIncrease:6, @095CC00A, "{@arcticSci} That doesn't support your data. Do you have a Prediction Model?"
script|job.arctic-endangered-seals.argue.giveUp:0, @31F22A2A, "{@arcticSci} Perfectly understandable. These things take time."
script|job.arctic-endangered-seals.argue.giveUp:1, @32F22BBD, "Just let me know when you're ready."
script|job.arctic-endangered-seals.argue.completeIncrease:1, @570E058E, "{@arcticSci} Brilliant! They are just having a party in that ice!"
script|job.arctic-in-Ice.start:2, @8A738837, "{@profArctic} It's been the weirdest thing."
script|job.arctic-in-Ice.start:3, @897386A4, "I've noticed cod out there, just sort of hanging around the ice shelf."
script|job.arctic-in-Ice.start:4, @88738511, "{@player} So... what's weird about that?"
script|job.arctic-in-Ice.start:5, @8773837E, "{@profArctic} There are never cod by the ice shelf."
script|job.arctic-in-Ice.start:6, @867381EB, "I know every inch of this place. Something must've changed."
script|job.arctic-in-Ice.start:7, @85738058, "I need you to figure out what the cod are up to out there."
script|job.arctic-in-Ice.start:8, @84737EC5, "{@player} Sure. Any idea where I should start?"
script|job.arctic-in-Ice.start:10, @80E2348E, "{@profArctic} I'd suggest heading out to the ice shelf and seeing what you can find."
script|job.arctic-in-Ice.start:11, @81E23621, "Maybe something's luring the cod in."
script|job.arctic-in-Ice.start:13, @7FE232FB, "{@profArctic} Hmm... you'll probably need to collect a population sample of {nameof ArcticCod} at the {m}Frosted Sea{/m}."
script|job.arctic-in-Ice.start:15, @85E23C6D, "{@profArctic} I'd suggest checking your AQOS for all the {{h}species near the ice shelf{/h}."
script|job.arctic-in-Ice.start:16, @82E237B4, "{@profArctic} You've already collected a lot of data. Maybe you'll find a clue there."
script|job.arctic-in-Ice.start:18, @78E227F6, "{@player}Got it. Thanks, {nameof @profArctic}."
script|job.arctic-in-Ice.tryScanAlgaeNewY:0, @1136DCDE, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeY:0, @C2C3420A, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeNewMicroscopeY:0, @8456E292, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.tryScanAlgaeMicroscopeY:0, @33F4B3EE, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.tryScanAlgaeNewX:0, @F7C45965, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeX:0, @AA8DF311, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeNewMicroscopeX:0, @6AE45F19, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.tryScanAlgaeMicroscopeX:0, @1A823075, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.tryScanAlgaeNewZ:0, @4CD59B2F, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeZ:0, @FF9F34DB, "{@guide} You will need a microscope in order to fully investigate this organism."
script|job.arctic-in-Ice.tryScanAlgaeNewMicroscopeZ:0, @C132D563, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.tryScanAlgaeMicroscopeZ:0, @70D0A6BF, "{@guide} Use your microscope to scan this organism."
script|job.arctic-in-Ice.scannedAlgae:0, @C4E3D2F3, "{@player} I think we've got something here, {nameof @guide}!"
script|job.arctic-in-Ice.scannedAlgae:1, @C3E3D160, "{@guide} Yes. Ice algae... a new species!"
script|job.arctic-in-Ice.scannedAlgae:2, @C6E3D619, "I would suggest counting them before you proceed with experimentation."
script|job.arctic-in-Ice.countedAlgae:0, @CC809569, "{@player} Wow. There's a ton of {nameof IceAlgae} out here, {nameof @guide}."
script|job.arctic-in-Ice.countedAlgae:1, @CB8093D6, "Maybe the algae drew the cod in toward the ice shelf!"
script|job.arctic-in-Ice.countedAlgae:2, @CA809243, "{@guide} Ah! So cod are known to eat {nameof IceAlgae}?"
script|job.arctic-in-Ice.countedAlgae:3, @C98090B0, "{@player} I... have no idea. Guess we better head to the Observation Tank."
script|job.arctic-in-Ice.observedEatRules:0, @BEFB801E, "{@player} {nameof @guide}, I think this explains what the cod are doing out there!"
script|job.arctic-in-Ice.observedEatRules:1, @BFFB81B1, "{@guide} Yes. Time to report back to {nameof @profArctic}!"
script|job.arctic-in-Ice.helpScanWithoutMicroscope:0, @86985627, "{@player} What now, {nameof @guide}?"
script|job.arctic-in-Ice.helpScanWithoutMicroscope:1, @85985494, "{@guide} You will need to obtain a microscope before you can make any progress here."
script|job.arctic-in-Ice.helpScanWithMicroscope:0, @D607B9F1, "{@player} What should I do next, {nameof @guide}?"
script|job.arctic-in-Ice.helpScanWithMicroscope:1, @D507B85E, "{@guide} Now that you have a microscope, you should take another look at that organism you couldn't scan."
script|job.arctic-in-Ice.catchScanAlgae:0, @E8DD7B81, "{@player} What should I be doing, {nameof @guide}?"
script|job.arctic-in-Ice.catchScanAlgae:1, @E7DD79EE, "{@guide} We must see if you can find what is attracting the {nameof ArcticCod} to the ice shelf"
script|job.arctic-in-Ice.catchCountAlgae:0, @4486CE23, "{@player} What should we do now, {nameof @guide}?"
script|job.arctic-in-Ice.catchCountAlgae:1, @4386CC90, "{@guide}\t You still need to count the Ice Algae. Make sure to use your microscope!"
script|job.arctic-in-Ice.catchObserveEat:0, @7EDD6F50, "{@player} Okay, {nameof @guide}. What's our next step?"
script|job.arctic-in-Ice.catchObserveEat:1, @7FDD70E3, "{@guide} Head to your Observation Tank. You'll need to observe how the Arctic Cod and Ice Algae interact."
script|job.arctic-in-Ice.catchReportBack:0, @8E87B4EF, "{@player} Where should we go now, {nameof @guide}?"
script|job.arctic-in-Ice.catchReportBack:1, @8D87B35C, "{@guide} It's time to report back and tell {nameof @profArctic} what you discovered!"
script|job.arctic-in-Ice.argue.intro:8, @62143B6B, "{@profArctic} I'm dying to know! Did you figure out why those cod are hanging out near the ice shelf?"
script|job.arctic-in-Ice.argue.chooseFactsEat:0, @D0219781, "Present facts from AQOS"
script|job.arctic-in-Ice.argue.chooseFactsEat:3, @CD2192C8, "Let me get back to you."
script|job.arctic-in-Ice.argue.unrelatedEat:0, @202B313F, "{@profArctic} I'm not seeing how that relates."
script|job.arctic-in-Ice.argue.notSure:0, @C6131505, "{@profArctic} Okay, Ollie. Let me know when you're ready."
script|job.arctic-in-Ice.argue.correctEat:0, @D5FDFA5B, "{@profArctic} Interesting."
script|job.arctic-in-Ice.argue.alreadyDiscussed:0, @109D4404, "{@profArctic} Last time, you said the cod might've been drawn in by the Ice Algae."
script|job.arctic-in-Ice.argue.popQuery:0, @4DB7D60E, "{@profArctic} Is there a lot of ice algae in the shelf? How much did you count?"
script|job.arctic-in-Ice.argue.chooseFactsPop:1, @E72AA453, "Present facts from AQOS"
script|job.arctic-in-Ice.argue.chooseFactsPop:4, @EA2AA90C, "Let me get back to you."
script|job.arctic-in-Ice.argue.unrelatedPop:0, @89359132, "{@profArctic} Um... sorry, Ollie, I'm not seeing how that's relevant."
script|job.arctic-in-Ice.argue.correctPop:1, @EE493F89, "{@profArctic} Nice work, Ollie."
script|job.arctic-in-Ice.argue.correctPop:2, @EB493AD0, "That's definitely enough algae to draw them in."
script|job.arctic-in-Ice.argue.correctPop:3, @EC493C63, "Hmmm. I wonder if the Salmon interact with the Cod, too..."
script|job.arctic-in-Ice.argue.correctPop:4, @F1494442, "This could really help with that salmon summering model I've been stuck on."
script|job.arctic-in-Ice.argue.correctPop:5, @F24945D5, "{@player} Ooh, sounds intriguing. Can I help?"
script|job.arctic-in-Ice.argue.correctPop:6, @EF49411C, "{@profArctic} Well... I usually like to work on the summering model myself."
script|job.arctic-in-Ice.argue.correctPop:7, @F04942AF, "But I trust you, Ollie."
script|job.arctic-in-Ice.argue.correctPop:8, @F5494A8E, "Just make sure to be meticulous."
script|job.arctic-in-Ice.argue.correctPop:9, @F6494C21, "The facts affecting the salmon are so complex——we can't afford to miss anything."
script|job.arctic-in-Ice.argue.correctPop:10, @D64F503B, "Check the job board soon. I'll make sure it's updated."
script|job.arctic-isolated-instnace.start:0, @CBDA55B7, "{@player} Okay, I'm ready to figure out what's going on with those mysterious Glass Sponges!"
script|job.arctic-isolated-instnace.start:1, @CADA5424, "They seemed so happy at Site X, but there are none here at Site Z."
script|job.arctic-isolated-instnace.start:2, @CDDA58DD, "{@profArctic} Yeah, that's definitely odd."
script|job.arctic-isolated-instnace.start:3, @CCDA574A, "Apart from the light conditions, Site X and Site Z are similar... and sponges don't react poorly to light."
script|job.arctic-isolated-instnace.start:4, @C7DA4F6B, "{@player} What do you think is happening to them?"
script|job.arctic-isolated-instnace.start:5, @C6DA4DD8, "{@profArctic}\tUsually organisms are missing if they're too stressed to stick around, or if something eats all of them."
script|job.arctic-isolated-instnace.start:6, @C9DA5291, "You'll need to figure out if either of these are true for the sponges."
script|job.arctic-isolated-instnace.start:8, @C3DA491F, "{@guide}\tBut first, make sure to scan the Glass Sponge at Site X."
script|job.arctic-isolated-instnace.start:10, @69B25B7C, "{@player} Got it. Thanks!"
script|job.arctic-isolated-instnace.scanSpongeComplete:0, @2958D41D, "{@guide} Adequate work, O! You've scanned the Glass Sponge."
script|job.arctic-isolated-instnace.scanSpongeComplete:1, @2858D28A, "Now you'll need to scan any new species out in the Frosted Sea, here at Site Z."
script|job.arctic-isolated-instnace.scansComplete:0, @67093C86, "{@player} Okay, I think that's all the species!"
script|job.arctic-isolated-instnace.scansComplete:1, @68093E19, "Now I need to find out if any of the predators from Site Z eat the Glass Sponges."
script|job.arctic-isolated-instnace.scansComplete:2, @65093960, "Time to head back to the AquaLab."
script|job.arctic-isolated-instnace.experimentCompleteZ:0, @7623E579, "{@player} Huh. No lo entiendo."
script|job.arctic-isolated-instnace.experimentCompleteZ:1, @7523E3E6, "None of these predators seem to eat Glass Sponges... but I feel like I've seen some half-eaten Glass Sponges lying around."
script|job.arctic-isolated-instnace.experimentCompleteZ:2, @7423E253, "{@guide} Yes. It is, as humans might say, perplexing."
script|job.arctic-isolated-instnace.experimentCompleteZ:3, @7323E0C0, "{@player} Something else must be eating them."
script|job.arctic-isolated-instnace.experimentCompleteZ:5, @7923EA32, "{@guide} According to my data, {nameof @profArctic} had one other theory."
script|job.arctic-isolated-instnace.experimentCompleteZ:6, @7823E89F, "{@player} Oh yeah... we still need to figure out if Site Z is stressing the sponges!"
script|job.arctic-isolated-instnace.experimentCompleteZ:7, @7723E70C, "Maybe the Stress Tank will help us solve this."
script|job.arctic-isolated-instnace.experimentCompleteZ:9, @7D23F07E, "{@player} What should I do now, {nameof @guide}?"
script|job.arctic-isolated-instnace.experimentCompleteZ:10, @3D7FA9E2, "{@guide} I'd recommend checking in with {nameof @profArctic}. Maybe she'll have a new idea."
script|job.arctic-isolated-instnace.predatorFound:0, @194FE836, "{@player} Yes! We found a new predator!"
script|job.arctic-isolated-instnace.predatorFound:1, @1A4FE9C9, "Kinda cute, aren't they?"
script|job.arctic-isolated-instnace.predatorFound:2, @174FE510, "Now we just need to find out if Cushion Stars like snacking on Glass Sponges."
script|job.arctic-isolated-instnace.experimentCompleteAll:0, @708DA21C, "{@player} Finally! We've found a species that eats Glass Sponges!"
script|job.arctic-isolated-instnace.experimentCompleteAll:2, @728DA542, "{@guide}\tAnd you've already counted the population of Cushion Stars at Site Y."
script|job.arctic-isolated-instnace.experimentCompleteAll:5, @6D8D9D63, "{@guide} Yes, this looks quite promising, O!"
script|job.arctic-isolated-instnace.experimentCompleteAll:6, @6E8D9EF6, "{@player} But... we still don't have proof the Cushion Stars live at Site Y."
script|job.arctic-isolated-instnace.experimentCompleteAll:7, @6F8DA089, "{@guide} Affirmative. You will need to return to Site Y and count the Cushion Star population."
script|job.arctic-isolated-instnace.experimentCompleteAll:8, @788DAEB4, "{@player} Got it. Thanks, {nameof @guide}."
script|job.arctic-isolated-instnace.populationComplete:0, @F0221DC5, "{@player} Okay, {nameof @guide}. I think we've solved it!"
script|job.arctic-isolated-instnace.populationComplete:1, @EF221C32, "The {pluralnameof GlassSponge} at Site X would need to pass through Site Y in order to reach Site Z."
script|job.arctic-isolated-instnace.populationComplete:2, @EE221A9F, "But when the sponges get to Site Y, the {pluralnameof PterasterObscurus} eat them all."
script|job.arctic-isolated-instnace.populationComplete:3, @ED22190C, "That would explain why they're missing from Site Z!"
script|job.arctic-isolated-instnace.predatorComplete:1, @234EBE8A, "{@guide} According to my data, {nameof @profArctic} had one other theory."
script|job.arctic-isolated-instnace.predatorComplete:2, @224EBCF7, "{@player} Oh yeah... we still need to figure out if Site Z is stressing the sponges!"
script|job.arctic-isolated-instnace.predatorComplete:3, @214EBB64, "Maybe the Stress Tank will help us solve this."
script|job.arctic-isolated-instnace.predatorComplete:5, @1F4EB83E, "{@guide}\tSounds like it's time to show {nameof @profArctic} what you've found!"
script|job.arctic-isolated-instnace.stressDeterminedFinal:0, @F3D1CEBA, "{@player} Okay. We've got the stress ranges for the Glass Sponges!"
script|job.arctic-isolated-instnace.stressDeterminedFinal:1, @F4D1D04D, "I'll just need to compare them with the conditions at Site Z, to see if they're relevant."
script|job.arctic-isolated-instnace.stressDeterminedFinal:2, @F1D1CB94, "What now, {nameof @guide}?"
script|job.arctic-isolated-instnace.stressDeterminedFinal:3, @F2D1CD27, "{@guide} You have investigated both of {nameof @profArctic}'s theories."
script|job.arctic-isolated-instnace.stressDeterminedFinal:4, @EFD1C86E, "I think you're ready to report back!"
script|job.arctic-isolated-instnace.stressDeterminedFirst:0, @ED5EBD0C, "{@guide} Adequate work, O! You'll just need to compare those results with the conditions at Site Z to see if they are relevant."
script|job.arctic-isolated-instnace.stressDeterminedFirst:1, @EE5EBE9F, "According to my data, {nameof @profArctic} had another theory about why the Glass Sponges are missing."
script|job.arctic-isolated-instnace.stressDeterminedFirst:2, @EF5EC032, "{@player} Oh yeah... something might be eating them!"
script|job.arctic-isolated-instnace.stressDeterminedFirst:3, @F05EC1C5, "Let's look into that next."
script|job.arctic-isolated-instnace.catchScanAll:0, @E9AD99A0, "{@player} What should we do next?"
script|job.arctic-isolated-instnace.catchScanAll:1, @EAAD9B33, "{@guide}\tGo to Site Z and scan any new species."
script|job.arctic-isolated-instnace.catchCheckCrab:0, @12EF088E, "{@player} What now, {nameof @guide}?"
script|job.arctic-isolated-instnace.catchCheckCrab:1, @13EF0A21, "{@guide} You need to find out if any predators from Site Z eat Glass Sponges."
script|job.arctic-isolated-instnace.catchCheckCrab:2, @10EF0568, "I would suggest placing them together in your {h}Observation Tank{/h}."
script|job.arctic-isolated-instnace.catchCheckShark:0, @E412C0BD, "{@guide}\tUse your Observation Tank to find out if any predators from {h}Site Z{/h} eat Glass Sponges."
script|job.arctic-isolated-instnace.catchCheckShark:1, @E312BF2A, "I believe you have more species to observe."
script|job.arctic-isolated-instnace.catchChecksBeforeTaskUpdate:0, @B24C588A, "{@guide}\tIt appears you've gathered all the information you need, O! Time to end the experiment."
script|job.arctic-isolated-instnace.catchDiscussFindings:0, @E843921C, "{@player} What should we do now, {nameof @guide}?"
script|job.arctic-isolated-instnace.catchDiscussFindings:1, @E94393AF, "{@guide} Return to the research station and report your findings to {nameof @profArctic}!"
script|job.arctic-isolated-instnace.catchFindPredator:0, @EE9211D0, "{@guide}\tScan Sites X and Y for potential predators of Glass Sponges."
script|job.arctic-isolated-instnace.catchExperimentPredatorAll:0, @87303B63, "{@guide}\tUse the Observation tank to see if the {nameof PterasterObscurus} eats Glass Sponges."
script|job.arctic-isolated-instnace.catchCountPopulations:0, @D6FA2F55, "{@guide}\tHead back to Site Y and count how many {pluralnameof PterasterObscurus} there are."
script|job.arctic-isolated-instnace.catchDetermineStress:0, @AE8A7019, "{@guide}\tFind the Glass Sponge's stress levels using the Stress Tank."
script|job.arctic-isolated-instnace.catchReportFinal:0, @1384AF22, "{@player} What should I do next, {nameof @guide}?"
script|job.arctic-isolated-instnace.catchReportFinal:1, @1484B0B5, "{@guide}\tReturn to the station and talk to {nameof @profArctic}!"
script|job.arctic-isolated-instnace.argue.groundwork.intro:0, @B85043EB, "{@profArctic} How'd it go out there, Ollie?"
script|job.arctic-isolated-instnace.argue.groundwork.main-question:0, @60D8B391, "{@profArctic}\tWhat can you tell us about our two main theories regarding why there are no {pluralnameof GlassSponge} in the {m}Frosted Sea{/m}?"
script|job.arctic-isolated-instnace.argue.groundwork.main-question:1, @5FD8B1FE, "Theory 1: The Sponges are stressed by the light levels."
script|job.arctic-isolated-instnace.argue.groundwork.main-question:2, @5ED8B06B, "Theory 2: A predator is eating the Sponges in the {nameof RS-4Z}."
script|job.arctic-isolated-instnace.argue.groundwork.main-question:4, @64D8B9DD, "<i>New Theory:</i> A predator is eating the sponges, but not in the {nameof RS-4Z}."
script|job.arctic-isolated-instnace.argue.groundwork.main-question:6, @62D8B6B7, "Let me get back to you."
script|job.arctic-isolated-instnace.argue.groundwork.lightClaim:1, @AED1C108, "{@profArctic} Oh... I thought we'd already covered this, Ollie."
script|job.arctic-isolated-instnace.argue.groundwork.lightClaim:2, @B1D1C5C1, "The light levels seem fine. Something else must be going on."
script|job.arctic-isolated-instnace.argue.groundwork.lightClaim:5, @B2D1C754, "{@profArctic}\tWhat information do you have related to the current light levels at Site Z?"
script|job.arctic-isolated-instnace.argue.groundwork.chooseLightFacts:0, @8AC99609, "Present facts from AQOS"
script|job.arctic-isolated-instnace.argue.groundwork.chooseLightFacts:3, @87C99150, "Let me get back to you."
script|job.arctic-isolated-instnace.argue.groundwork.lightComplete:1, @C7BACC41, "{@profArctic}\tFrom what you've shown me, these light levels seem fine. So something else must be going on."
script|job.arctic-isolated-instnace.argue.groundwork.unrelated:1, @25EED1C4, "{@profArctic} I don't think that's the answer we need, Ollie. Got anything else?"
script|job.arctic-isolated-instnace.argue.groundwork.predatorClaim:1, @1EEA1F5F, "{@profArctic} I thought we already talked about this, Ollie. There are no predators that eat Glass Sponges in Site Z."
script|job.arctic-isolated-instnace.argue.groundwork.predatorClaim:4, @19EA1780, "{@profArctic}\tWhat have you observed regarding this?"
script|job.arctic-isolated-instnace.argue.groundwork.predatorClaim:8, @25EA2A64, "None of the Site Z predators ate the sponges."
script|job.arctic-isolated-instnace.argue.groundwork.predatorClaim:9, @26EA2BF7, "Let me get back to you."
script|job.arctic-isolated-instnace.argue.groundwork.predatorClaim:11, @188F7A2A, "Still working on it!"
script|job.arctic-isolated-instnace.argue.groundwork.predatorComplete:1, @67FA3DC0, "{@profArctic} Oh, that's interesting! Then there must be something else going on."
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:2, @3C98A7E9, "{@profArctic}\tHmmm. I can see you've done your research, but we still don't have an answer."
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:4, @3E98AB0F, "{@player}\t Ugh. I don't get it. ¡Esto es imposible! How do you stay so patient?"
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:5, @3D98A97C, "{@profArctic} Trust me, it takes practice."
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:6, @4098AE35, "Let's dig a little deeper. We know there are plenty of Glass Sponges at Site X, and none of them at Site Z."
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:7, @3F98ACA2, "Could something be happening to them on the way?"
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:8, @4298B15B, "{@player} \tYou mean... at Site Y?"
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:9, @4198AFC8, "{@profArctic} Exactly. A predator at Site Y may be eating all the Glass Sponges before they can go any farther."
script|job.arctic-isolated-instnace.argue.groundwork.bothComplete:10, @AB489900, "That may be a good place to check out next."
script|job.arctic-isolated-instnace.argue.final.shortcut:0, @07885DE9, "{@profArctic}\tOh? What have you found out?"
script|job.arctic-isolated-instnace.argue.final.main-question:0, @7E2D3A41, "{@profArctic}\tHave you found any predators between {h}Site X{/h} and {h}Site Z{/h} that could be stopping the Glass Sponges from reaching the Frosted Sea?"
script|job.arctic-isolated-instnace.argue.final.load-argue:6, @3E6F22BE, "Present facts from AQOS"
script|job.arctic-isolated-instnace.argue.final.load-argue:9, @396F1ADF, "Let me get back to you."
script|job.arctic-isolated-instnace.argue.final.unrelated:2, @2F04E78D, "{@profArctic}\tUm... did you mean to show me this?"
script|job.arctic-isolated-instnace.argue.final.unrelated:3, @2E04E5FA, "We need a predator of Glass Sponges, and a population count of the predator to prove they live at Site Y."
script|job.arctic-isolated-instnace.argue.giveUp:0, @EA5CBD2D, "{@profArctic} Okay, Ollie. No worries. I'm sure you'll figure it out!"
script|job.arctic-isolated-instnace.argue.giveUpArgument:0, @241E0BF6, "{@profArctic} No worries, Ollie. Just let me know when you're ready!"
script|job.arctic-isolated-instnace.argue.final.complete:1, @98B9B733, "{@profArctic} So the Cushion Stars eat all the Glass Sponges at Site Y, before they can make it here to Site Z."
script|job.arctic-isolated-instnace.argue.final.complete:2, @99B9B8C6, "This was a tricky one! I'm impressed by your persistence."
script|job.arctic-isolated-instnace.argue.final.complete:3, @9AB9BA59, "{@player}\t Ha. My mom would call it stubbornness."
script|job.arctic-isolated-instnace.argue.final.complete:4, @9BB9BBEC, "{@profArctic} Well, whatever you want to call it, your sister was the same way."
script|job.arctic-isolated-instnace.argue.final.complete:5, @9CB9BD7F, "I'll pass on what we learned to my colleagues in Norway——they're studying Cushion Stars, too."
script|job.arctic-isolated-instnace.argue.final.complete:6, @9DB9BF12, "{@player} Wow... you have colleagues in Norway?"
script|job.arctic-isolated-instnace.argue.final.complete:7, @9EB9C0A5, "{@profArctic} I talk to people all over, Ollie. Our whole network of scientists is connected."
script|job.arctic-isolated-instnace.argue.final.complete:8, @9FB9C238, "{@profArctic} Thanks again for your help. If you ever want another job, just let me know!"
script|job.arctic-missing-whale.start:0, @08B5BFD4, "{@arcticSci} Oh, thank you, Ollie. I've been worried sick about poor Linda."
script|job.arctic-missing-whale.start:1, @09B5C167, "{@player} Linda?"
script|job.arctic-missing-whale.start:2, @0AB5C2FA, "{@arcticSci} Our missing whale. One of the matriarchs of her pod."
script|job.arctic-missing-whale.start:3, @0BB5C48D, "My team has been tracking the pod for some time now."
script|job.arctic-missing-whale.start:4, @04B5B988, "Every year, they migrate through here before returning south."
script|job.arctic-missing-whale.start:5, @05B5BB1B, "This year, however, one was missing."
script|job.arctic-missing-whale.start:6, @06B5BCAE, "We checked Linda's tracking device, but it seems to have stopped transmitting."
script|job.arctic-missing-whale.start:7, @07B5BE41, "{@player} Aw, no te preocupes, Professor. I'm sure you'll see Linda again."
script|job.arctic-missing-whale.start:8, @00B5B33C, "I mean, how hard can it be to find a whale? They're not exactly small."
script|job.arctic-missing-whale.start:9, @01B5B4CF, "{@player} I'll get out there and start searching."
script|job.arctic-missing-whale.start:10, @A01F5BF5, "{@arcticSci} Thank you, Ollie."
script|job.arctic-missing-whale.start:11, @9F1F5A62, "Linda's last known location was somewhere near {fullnameof RS-4W}."
script|job.arctic-missing-whale.start:12, @9E1F58CF, "Finding either her or her tracker would be most helpful."
script|job.arctic-missing-whale.start:13, @9D1F573C, "Do let me know what you find."
script|job.arctic-missing-whale.start:18, @A81F688D, "{@guide} Hmmm. It seems you've already completed all of your job tasks!"
script|job.arctic-missing-whale.start:19, @A71F66FA, "{@player} Oh yeah... I guess you're right."
script|job.arctic-missing-whale.start:20, @A621A3FE, "{@guide} You seem hesitant to report your findings."
script|job.arctic-missing-whale.start:21, @A721A591, "{@player} I just... I wish it was better news."
script|job.arctic-missing-whale.start:22, @A421A0D8, "Guess it's time to tell {nameof @arcticSci} what we discovered."
script|job.arctic-missing-whale.switchToJob:1, @59FE60DB, "{@player} What now, {nameof @guide}?"
script|job.arctic-missing-whale.switchToJob:2, @5AFE626E, "{@guide} Hmmm. It appears you've finished all of your tasks, Ollie!"
script|job.arctic-missing-whale.switchToJob:3, @5BFE6401, "All that's left is to report back to {nameof @arcticSci}."
script|job.arctic-missing-whale.helpFindWhale:0, @85FC17A9, "{@player} \tWhat should we do next, {nameof @guide}?"
script|job.arctic-missing-whale.helpFindWhale:2, @83FC1483, "{@guide}\tYou will need to investigate Linda's remains."
script|job.arctic-missing-whale.helpFindWhale:3, @82FC12F0, "But first, you'll need a stronger engine."
script|job.arctic-missing-whale.helpFindWhale:4, @89FC1DF5, "Otherwise that undersea current will keep sweeping you past the skeleton."
script|job.arctic-missing-whale.helpFindWhale:5, @88FC1C62, "{@player} Hmm. A stronger engine? I think I saw something in the shop like that."
script|job.arctic-missing-whale.helpFindWhale:7, @86FC193C, "{@guide}\tYou need to track down Linda, the missing whale."
script|job.arctic-missing-whale.helpFindWhale:8, @8DFC2441, "Check your AQOS to see her last known location."
script|job.arctic-missing-whale.enterScene:0, @A9141F9A, "{@player} Okay. Let's do this. Can you scan for Linda's tracker, {nameof @guide}?"
script|job.arctic-missing-whale.enterScene:1, @AA14212D, "{@guide} Processing,... processing..."
script|job.arctic-missing-whale.enterScene:2, @A7141C74, "Yes! It appears we're picking up a faint signal."
script|job.arctic-missing-whale.enterScene:3, @A8141E07, "{@player} Oh, that's amazing! Linda must be nearby!"
script|job.arctic-missing-whale.enterScene:4, @A514194E, "I told Professor Whalen we'd find her. He'll be so happy."
script|job.arctic-missing-whale.LookAround:0, @5EB931D6, "{@player} What should I be doing, {nameof @guide}?"
script|job.arctic-missing-whale.LookAround:2, @5CB92EB0, "{@guide} Start by seeing if you can find Linda's tracker."
script|job.arctic-missing-whale.LookAround:4, @62B93822, "{@guide} You will need a stronger engine to investigate further."
script|job.arctic-missing-whale.LookAround:5, @63B939B5, "According to my data, the shop should have one in stock!"
script|job.arctic-missing-whale.LookAround:7, @61B9368F, "{@guide} See if you can find any evidence of Linda herself."
script|job.arctic-missing-whale.LookAround:9, @67B94001, "{@guide}\tYou will need to scan more of the detritus, O."
script|job.arctic-missing-whale.gotDetritus:0, @274AEDEE, "{@player} Okay, {nameof @guide}. What now?"
script|job.arctic-missing-whale.gotDetritus:1, @284AEF81, "{@guide}\tYou'll need to count the detritus in order to complete your task."
script|job.arctic-missing-whale.gotScans:0, @C02CE4EC, "{@player} Looks like we've got all we need."
script|job.arctic-missing-whale.gotScans:1, @C12CE67F, "{@guide} Yes! A windfall of data."
script|job.arctic-missing-whale.gotScans:2, @C22CE812, "{@player} And some bad news for {nameof @arcticSci}."
script|job.arctic-missing-whale.gotScans:3, @C32CE9A5, "I guess we better go tell him. At least now he'll know where she is."
script|job.arctic-missing-whale.helpBackToShip:0, @1339F2AB, "{@player} \tCan you remind me where to go, {nameof @guide}?"
script|job.arctic-missing-whale.helpBackToShip:1, @1239F118, "{@guide}\tMy sensors indicate that you are stalling, O."
script|job.arctic-missing-whale.helpBackToShip:2, @1539F5D1, "{@player} What? Of course I'm not stalling!"
script|job.arctic-missing-whale.helpBackToShip:3, @1439F43E, "{@guide} Ah. I must have misinterpreted the data."
script|job.arctic-missing-whale.helpBackToShip:4, @1739F8F7, "You need to report back to {nameof @arcticSci} and tell them that Linda has been found."
script|job.arctic-missing-whale.catchFindTracker:0, @AA2B2084, "{@player} Where should we start, {nameof @guide}?"
script|job.arctic-missing-whale.catchFindTracker:1, @AB2B2217, "{@guide} You need to search Site W for Linda's tracking device."
script|job.arctic-missing-whale.catchFindWhale:0, @69F3C399, "{@player} Okay, {nameof @guide}. We've got the tracker. What now?"
script|job.arctic-missing-whale.catchFindWhale:1, @68F3C206, "{@guide} You need to search the area for any proof that Linda is here."
script|job.arctic-missing-whale.catchFindWhale:2, @67F3C073, "{@player} I'm sure she's close. I can feel it!"
script|job.arctic-missing-whale.catchFindWhale:3, @66F3BEE0, "Let's keep searching."
script|job.arctic-missing-whale.catchFoundDetritus:0, @4ABAA275, "{@player} Wow. Poor Linda."
script|job.arctic-missing-whale.catchFoundDetritus:1, @49BAA0E2, "I guess it really is her."
script|job.arctic-missing-whale.catchFoundDetritus:2, @48BA9F4F, "What should we do now, {nameof @guide}?"
script|job.arctic-missing-whale.catchFoundDetritus:3, @47BA9DBC, "{@guide} You need to count all of the detritus."
script|job.arctic-missing-whale.catchFoundDetritus:4, @46BA9C29, "A whale-sized amount will prove to {nameof @arcticSci} that Linda is here."
script|job.arctic-missing-whale.catchReportBack:0, @2D92E692, "{@guide}\tReturn to the station to talk to {nameof @arcticSci}."
script|job.arctic-missing-whale.argue.intro:5, @76B3B9E1, "{@arcticSci} Have you found Linda?"
script|job.arctic-missing-whale.argue.intro:6, @73B3B528, "Yes... but I'm sorry. It's not good news."
script|job.arctic-missing-whale.argue.intro:8, @71B3B202, "No idea -- I keep getting swept away!"
script|job.arctic-missing-whale.argue.intro:10, @45F76DA7, "No, sorry. No sign of her yet."
script|job.arctic-missing-whale.argue.showClaim:1, @720B4074, "Present facts from AQOS"
script|job.arctic-missing-whale.argue.showClaim:5, @6E0B3A28, "Let me get back to you."
script|job.arctic-missing-whale.argue.detritus:3, @D8E869D1, "{@arcticSci} Oh dear. That's certainly enough detritus to be a whale's remains."
script|job.arctic-missing-whale.argue.detritus:4, @D9E86B64, "It might be Linda... but there are many Bowhead Whales that pass through here."
script|job.arctic-missing-whale.argue.detritus:5, @DAE86CF7, "Did you find anything to confirm that it's her?"
script|job.arctic-missing-whale.argue.whaleTracker:3, @F7FA3DCA, "{@arcticSci} Oh dear... Linda's tracker. This explains why we lost the signal."
script|job.arctic-missing-whale.argue.whaleTracker:4, @F2FA35EB, "But that means she could be anywhere."
script|job.arctic-missing-whale.argue.whaleTracker:5, @F1FA3458, "Unless you found more evidence of her whereabouts...?"
script|job.arctic-missing-whale.argue.unrelated:1, @3061AC35, "{@arcticSci} That is undoubtedly fascinating, Ollie. But I'm not sure it's helpful here."
script|job.arctic-missing-whale.argue.giveUp:0, @571B3848, "{@arcticSci} Okay, Ollie. Please let me know if you find anything."
script|job.arctic-missing-whale.argue.cantFind:0, @FF7BA221, "{@arcticSci} Alas. I had a feeling this would happen."
script|job.arctic-missing-whale.argue.cantFind:1, @FE7BA08E, "We may never track her down. I hope nothing bad has happened to her..."
script|job.arctic-missing-whale.argue.sweptAway:0, @24BD847F, "{@arcticSci} Ah, yes. Perhaps we should have warned you about the currents in some places."
script|job.arctic-missing-whale.argue.sweptAway:2, @26BD87A5, "{@arcticSci} But it seems you've acquired a stronger {h}Engine{/h}! You shouldn't be swept away any more."
script|job.arctic-missing-whale.argue.sweptAway:3, @25BD8612, "Good luck out there."
script|job.arctic-missing-whale.argue.sweptAway:5, @1FBD7CA0, "{@arcticSci} Until you have a stronger {h}Engine{/h}, it may be wise to switch to a new job for now."
script|job.arctic-missing-whale.argue.sweptAway:6, @22BD8159, "You can always come back to this job later!"
script|job.arctic-missing-whale.argue.complete:1, @B057A55C, "{@arcticSci} Oh. Well, then."
script|job.arctic-missing-whale.argue.complete:2, @B357AA15, "Well. That's unfortunate."
script|job.arctic-missing-whale.argue.complete:3, @B257A882, "{@player} I'm so sorry, Professor. I know you've been studying Linda for a long time."
script|job.arctic-missing-whale.argue.complete:4, @AD57A0A3, "{@arcticSci} Oh, don't be sorry, Ollie. I'm grateful to you. Now we know where she is."
script|job.arctic-missing-whale.argue.complete:5, @AC579F10, "Though I do wonder how she died."
script|job.arctic-missing-whale.argue.complete:6, @AF57A3C9, "If you ever want to help out again, perhaps we could get to the bottom of this together."
script|job.arctic-missing-whale.argue.complete:7, @AE57A236, "{@player} Of course."
script|job.arctic-missing-whale.argue.complete:8, @B957B387, "{@arcticSci} Thank you, Ollie. You're incredibly like your sister, you know."
script|job.arctic-missing-whale.argue.complete:9, @B857B1F4, "Come back anytime."
script|job.arctic-picky-eaters.start:0, @AA9B8759, "{@profArctic} I'm excited to see you taking another job, Ollie!"
script|job.arctic-picky-eaters.start:1, @A99B85C6, "{@profArctic} I've been trying to feed the Cod equal amounts of Algae and Diatoms..."
script|job.arctic-picky-eaters.start:2, @A89B8433, "But it seems like they're mostly going for the Diatoms."
script|job.arctic-picky-eaters.start:4, @AE9B8DA5, "{@profArctic} I'll send you the data we have collected so far."
script|job.arctic-picky-eaters.start:6, @AC9B8A7F, "{@profArctic} I'll send you the data we have collected so far."
script|job.arctic-picky-eaters.start:13, @F4D3E0AF, "{@profArctic} Our mechanic has been annoyed at all the Algae clogging up people's engines."
script|job.arctic-picky-eaters.start:14, @F1D3DBF6, "{@player} Weird. Why do you think the Cod aren't eating the algae?"
script|job.arctic-picky-eaters.start:15, @F2D3DD89, "{@profArctic} That's what I need you to solve."
script|job.arctic-picky-eaters.start:16, @EFD3D8D0, "{@player} Okay. Muy fácil. I'll just head back to the AquaLab and use the Measurement Tank."
script|job.arctic-picky-eaters.start:17, @F0D3DA63, "{@profArctic} Great. Let me know what you find!"
script|job.arctic-picky-eaters.measureAlgaeOnly:0, @A23C45C1, "{@guide} One down, one to go!"
script|job.arctic-picky-eaters.measureDiatomsOnly:0, @77B71346, "{@guide} One down, one to go!"
script|job.arctic-picky-eaters.measureBoth:0, @B67CE0BA, "{@guide} Adequate work, Ollie! You've gathered all the data you need."
script|job.arctic-picky-eaters.measureBoth:1, @B77CE24D, "{@player} Yeah... but what does it mean?"
script|job.arctic-picky-eaters.measureBoth:2, @B47CDD94, "{@guide} Processing.. processing..."
script|job.arctic-picky-eaters.measureBoth:3, @B57CDF27, "My data is inconclusive, O. I suggest reporting back to {nameof @profArctic}."
script|job.arctic-picky-eaters.catchObtainRateAlgae:0, @1D7040C3, "{@player} What should I do now, {nameof @guide}?"
script|job.arctic-picky-eaters.catchObtainRateAlgae:1, @1C703F30, "{@guide} Place the Cod in the Measurement Tank with something it eats!"
script|job.arctic-picky-eaters.catchObtainRateDiatoms:0, @F5892FA8, "{@player} Okay, {nameof @guide}. What now?"
script|job.arctic-picky-eaters.catchObtainRateDiatoms:1, @F689313B, "{@guide}\t Place the Cod in the Measurement Tank with something it eats!"
script|job.arctic-picky-eaters.catchReportBack:0, @EC44E4AB, "{@guide}\t Compare the rates you just obtained. Then report your findings to {nameof @profArctic}!"
script|job.arctic-picky-eaters.argue.intro:1, @5F4D58B4, "{@profArctic} How'd it go out there, Ollie?"
script|job.arctic-picky-eaters.argue.intro:2, @624D5D6D, "{@player} So... I got the rates we needed. But I'm not totally sure what they mean."
script|job.arctic-picky-eaters.argue.intro:3, @614D5BDA, "{@profArctic} Well, feeding rates can tell us a lot about how much energy a species needs."
script|job.arctic-picky-eaters.argue.firstQuery:0, @CCF5C569, "{@profArctic} If a species eats larger amounts of one species, it usually means that species is low on nutrition."
script|job.arctic-picky-eaters.argue.firstQuery:1, @CBF5C3D6, "{@player} Oh... like how I need to eat about a million of Mom's kelp rolls in order to feel full."
script|job.arctic-picky-eaters.argue.firstQuery:2, @CAF5C243, "Um... not that I'd recommend that."
script|job.arctic-picky-eaters.argue.firstQuery:3, @C9F5C0B0, "{@profArctic} Exactly. So according to your data, which species is more nutritious for the Cod?"
script|job.arctic-picky-eaters.argue.chooseClaim:2, @EE6B42F4, "Diatoms"
script|job.arctic-picky-eaters.argue.chooseClaim:3, @EF6B4487, "Ice Algae"
script|job.arctic-picky-eaters.argue.chooseClaim:4, @EC6B3FCE, "Not sure yet"
script|job.arctic-picky-eaters.argue.diatomQuery:0, @0134919F, "{@profArctic} Okay, let's verify that. How do the rates compare?"
script|job.arctic-picky-eaters.argue.chooseFactsDiatoms:0, @61A7FDC0, "Present facts from AQOS"
script|job.arctic-picky-eaters.argue.chooseFactsDiatoms:3, @64A80279, "Let me get back to you."
script|job.arctic-picky-eaters.argue.revise:1, @A69C07C4, "{@profArctic} Oh... actually, Ollie, these rates show the opposite."
script|job.arctic-picky-eaters.argue.revise:2, @A99C0C7D, "High nutrition means lower rates, because the Cod won't need to eat as much of it."
script|job.arctic-picky-eaters.argue.revise:3, @A89C0AEA, "Low nutrition means higher rates, because the Cod need to eat a lot to fill up."
script|job.arctic-picky-eaters.argue.revise:4, @A39C030B, "Want to take another guess?"
script|job.arctic-picky-eaters.argue.revise:9, @9E9BFB2C, "{@profArctic} Looks like you're missing the rates for at least one of these facts."
script|job.arctic-picky-eaters.argue.revise:10, @3BA0851C, "You'll need to head back to your Measurement Tank and find the rates we need."
script|job.arctic-picky-eaters.argue.unrelatedDiatoms:0, @9BC2E28E, "{@profArctic} Um... did you mean to show me this, Ollie? We need to look at the Cod's eating rates."
script|job.arctic-picky-eaters.argue.algaeQuery:0, @E67112D7, "{@profArctic} Okay, let's double check. How do the rates compare?"
script|job.arctic-picky-eaters.argue.chooseFactsAlgae:0, @8472061B, "Present facts from AQOS"
script|job.arctic-picky-eaters.argue.chooseFactsAlgae:3, @857207AE, "Let me get back to you."
script|job.arctic-picky-eaters.argue.unrelatedAlgae:0, @336522F5, "{@profArctic} I'm not following how this relates to Cod eating rates."
script|job.arctic-picky-eaters.argue.notSure:0, @7F1B0709, "{@profArctic} That's okay, there's no rush here. Let me know when you're ready."
script|job.arctic-picky-eaters.argue.complete:2, @60BC84B2, "{@profArctic} Amazing job, Ollie! Looks like the Cod aren't eating much Ice Algae because small amounts provide a lot of nutrition."
script|job.arctic-picky-eaters.argue.complete:3, @61BC8645, "{@player} Wow. The Ice Algae must be, like, an Arctic Cod protein shake."
script|job.arctic-picky-eaters.argue.complete:4, @5ABC7B40, "{@profArctic} I wonder if this has anything to do with what happened to that missing whale..."
script|job.arctic-picky-eaters.argue.complete:5, @5BBC7CD3, "Anyway, thanks for your help, Ollie. I owe you one."
script|job.arctic-picky-eaters.argue.complete:8, @66BC8E24, "{@profArctic} Looks like you're missing the rates for at least one of these facts."
script|job.arctic-picky-eaters.argue.complete:9, @67BC8FB7, "You'll need to head back to your Measurement Tank and find the rates we need."
script|job.arctic-salmon-competition.start:0, @4D0C8AB8, "{@profArctic} Awesome! I've been super stuck on this model."
script|job.arctic-salmon-competition.start:1, @4E0C8C4B, "First, here's some data my team has already gathered about Salmon."
script|job.arctic-salmon-competition.start:8, @450C7E20, "{@player} So where are you stuck?"
script|job.arctic-salmon-competition.start:9, @460C7FB3, "{@profArctic} I'm not happy with how the model is looking."
script|job.arctic-salmon-competition.start:10, @58C125A1, "I wonder if the Arctic Cod are the missing piece."
script|job.arctic-salmon-competition.start:11, @57C1240E, "Can you figure out what the Cod eat and add them to our model?"
script|job.arctic-salmon-competition.start:12, @56C1227B, "{@player} I'd love to!"
script|job.arctic-salmon-competition.start:13, @55C120E8, "{@profArctic} ...."
script|job.arctic-salmon-competition.start:14, @5CC12BED, "{@profArctic} Are you being snarky with me, Ollie?"
script|job.arctic-salmon-competition.start:15, @5BC12A5A, "{@player} What? Of course not, I just love figuring out stuff like this--"
script|job.arctic-salmon-competition.start:16, @5AC128C7, "{@profArctic} Okay, okay. I'm just not used to people geeking out about this work as much as I do."
script|job.arctic-salmon-competition.allSet:0, @1980ED05, "{@guide} Adequate work, O! You've obtained the data you needed here."
script|job.arctic-salmon-competition.allSet:1, @1880EB72, "Time to head to the Modeling Lab!"
script|job.arctic-salmon-competition.modelsComplete:0, @686A4001, "{@player} Yes!! This model is looking a lot better."
script|job.arctic-salmon-competition.modelsComplete:1, @676A3E6E, "Can't wait to show {nameof @profArctic}!"
script|job.arctic-salmon-competition.modelSuggestions:2, @5CCEDA10, "{@guide} You're done with this portion! Head to the {h}Describe{/h} tab next."
script|job.arctic-salmon-competition.modelSuggestions:4, @62CEE382, "{@guide} Once you import your facts and save the Visual model, we should be good to make our Describe model!"
script|job.arctic-salmon-competition.modelSuggestions:8, @66CEE9CE, "{@guide} Time to try out your model in the {h}Describe{/h} tab."
script|job.arctic-salmon-competition.modelSuggestions:10, @CBA901FB, "{@guide} Seems like we don't have enough information to complete our model accurately."
script|job.arctic-salmon-competition.modelSuggestions:11, @CAA90068, "Look for {h}question marks{/h} in the Visual model interface, those point to where we may need more data."
script|job.arctic-salmon-competition.suggestReproduce:0, @C659FE99, "{@guide} Did you get all the reproduction rates?"
script|job.arctic-salmon-competition.suggestMeasure:0, @E62FB16A, "{@guide} Using the {h}Measurement Tank{/h} to find the rates of unmeasured behaviors may help us here."
script|job.arctic-salmon-competition.suggestArcticCodEat:0, @E9E37A26, "{@guide} Maybe look into what {nameof ArcticCod} eats?"
script|job.arctic-salmon-competition.suggestChinookSalmonEat:0, @B16C63AF, "{@guide} Maybe look into what {nameof ChinookSalmon} eats?"
script|job.arctic-salmon-competition.catchObserveCod:0, @E30EE6C5, "{@player} What now, {nameof @guide}?"
script|job.arctic-salmon-competition.catchObserveCod:1, @E20EE532, "{@guide} You will need to observe the {nameof ArcticCod} to find out what they eat!"
script|job.arctic-salmon-competition.catchObserveCod:2, @E10EE39F, "We shall need comprehensive scan-data on any organism they might eat."
script|job.arctic-salmon-competition.catchModelFish:0, @471E76EE, "{@player} Okay, V. What's next?"
script|job.arctic-salmon-competition.catchModelFish:2, @451E73C8, "{@guide} I would suggest heading to the {m}Modeling Lab{/m}."
script|job.arctic-salmon-competition.catchModelFish:4, @4B1E7D3A, "{@guide} We need to construct a {h}Visual Model{/h} and a {h}Sync Model{/h}!"
script|job.arctic-salmon-competition.catchReportBack:0, @2B552B46, "{@player} What should I be doing now, {nameof @guide}?"
script|job.arctic-salmon-competition.catchReportBack:1, @2C552CD9, "{@guide} Head back to the station to report what you found!"
script|job.arctic-salmon-competition.argue.intro:4, @BAB81D52, "{@profArctic} Okay, Ollie, hope you've got an answer for me, because this model is driving me up the wall."
script|job.arctic-salmon-competition.argue.mainQuestion:0, @9589707D, "{@profArctic} Did anything you discover improve our model?"
script|job.arctic-salmon-competition.argue.chooseClaim:0, @824670CF, "Adding {nameof ArcticCod} improves the model about {nameof ChinookSalmon}"
script|job.arctic-salmon-competition.argue.chooseClaim:1, @81466F3C, "Adding {nameof ArcticCod} does not improve the model about {nameof ChinookSalmon}"
script|job.arctic-salmon-competition.argue.chooseClaim:2, @844673F5, "Let me get back to you"
script|job.arctic-salmon-competition.argue.notReady:0, @0FB3C8F4, "{@profArctic} No worries, Ollie. Let me know when you're ready."
script|job.arctic-salmon-competition.argue.notImprove:4, @5D8148FB, "{@profArctic} Hmm, interesting. Can you show me your newest model?"
script|job.arctic-salmon-competition.argue.notImprove:5, @5C814768, "Present facts from AQOS"
script|job.arctic-salmon-competition.argue.notImprove:8, @598142AF, "Let me get back to you."
script|job.arctic-salmon-competition.argue.correctModelNotImprove:0, @F48F8460, "{@profArctic} This is actually much more in line with our measurements of {nameof ChinookSalmon} than our previous model."
script|job.arctic-salmon-competition.argue.correctModelNotImprove:1, @F58F85F3, "I think you may need to revisit your claim."
script|job.arctic-salmon-competition.argue.unrelatedNotImprove:0, @8F49E1A9, "{@profArctic} Sorry, Ollie, but this isn't exactly helpful."
script|job.arctic-salmon-competition.argue.improve:1, @E72F6553, "{@profArctic} You already explained to me why adding {nameof ArcticCod} makes a difference in the ecosystem."
script|job.arctic-salmon-competition.argue.improveQuery:0, @335A667C, "{@profArctic} Why does adding cod matter? Do they share resources?"
script|job.arctic-salmon-competition.argue.improveQuery:1, @345A680F, "Present facts from AQOS"
script|job.arctic-salmon-competition.argue.improveQuery:4, @2F5A6030, "Let me get back to you."
script|job.arctic-salmon-competition.argue.unrelatedEats:0, @BF9BE79D, "{@profArctic} That doesn't look right, Ollie."
script|job.arctic-salmon-competition.argue.unrelatedEats:1, @BE9BE60A, "I need to see whether there is overlap between {nameof ArcticCod}'s and {nameof ChinookSalmon}'s food sources."
script|job.arctic-salmon-competition.argue.correctEats:0, @F5DA4E29, "{@profArctic} Ah. So there is definitely overlap there."
script|job.arctic-salmon-competition.argue.modelQuery:0, @99DF5837, "{@profArctic} Can you show me the impact on the model?"
script|job.arctic-salmon-competition.argue.chooseFactsModel:0, @A848DA55, "Present facts from AQOS"
script|job.arctic-salmon-competition.argue.chooseFactsModel:3, @A548D59C, "Let me get back to you."
script|job.arctic-salmon-competition.argue.correctModel:1, @D4F5CC3C, "{@profArctic} Oh, that is definitely looking better!"
script|job.arctic-salmon-competition.argue.correctModel:2, @D7F5D0F5, "We'll need to keep working. But this data is the breakthrough we needed."
script|job.arctic-salmon-competition.argue.correctModel:3, @D6F5CF62, "Thanks, Ollie! Don't know what I would do without you."
script|job.arctic-salmon-competition.argue.unrelatedModel:0, @47A7F003, "{@profArctic} That's not it, Ollie. I need to see an updated Numerical Model about {nameof ChinookSalmon} and {nameof ArcticCod}."
script|job.arctic-salmon-competition.argue.unrelatedModel:2, @49A7F329, "{@profArctic} Did your information about the {nameof ArcticCod} improve our model?"
script|job.arctic-salmon-competition.argue.notSure:-264, @BF8BF7C5, "{@profArctic} No worries, Ollie. Let me know when you're ready."
script|job.arctic-salmon-monitoring.start:0, @2AD80343, "{@profArctic} Thank you, Ollie! No one ever offers to help with the salmon estimates."
script|job.arctic-salmon-monitoring.start:1, @29D801B0, "{@player} But... I don't get it."
script|job.arctic-salmon-monitoring.start:2, @2CD80669, "It looks like you already counted the current salmon populations."
script|job.arctic-salmon-monitoring.start:3, @2BD804D6, "{@profArctic} Sure, once. That means it's time to count again."
script|job.arctic-salmon-monitoring.start:4, @2ED8098F, "{@player} ¿En serio? You count them twice, every time?"
script|job.arctic-salmon-monitoring.start:5, @2DD807FC, "{@profArctic}\tYep. My work requires detailed, long-term monitoring of the salmon. It's fascinating!"
script|job.arctic-salmon-monitoring.start:6, @30D80CB5, "The counts don't have to be exactly the same, but we want to verify our data is reasonably accurate."
script|job.arctic-salmon-monitoring.start:7, @2FD80B22, "I'll take care of it, if you're too busy--I'm used to handling things myself."
script|job.arctic-salmon-monitoring.start:8, @32D80FDB, "{@player}\tNah, I've got this."
script|job.arctic-salmon-monitoring.start:9, @31D80E48, "We do counts like this all the time back at my mom's station. I'm basically an expert."
script|job.arctic-salmon-monitoring.start:10, @5F0A5C80, "{@profArctic} Oh, that's perfect! Let me know what you find!"
script|job.arctic-salmon-monitoring.countsComplete:0, @C1281FCA, "{@player} I can't believe {nameof @profArctic} does this by herself every time."
script|job.arctic-salmon-monitoring.countsComplete:1, @C228215D, "She must really care about the salmon!"
script|job.arctic-salmon-monitoring.countsComplete:2, @BF281CA4, "What should we do next, {nameof @guide}?"
script|job.arctic-salmon-monitoring.countsComplete:3, @C0281E37, "{@guide} You need to add your estimates to the researchers' records at the station!"
script|job.arctic-salmon-monitoring.catchCountSalmon:0, @9B49EAA5, "{@player} What's next, {nameof @guide}?"
script|job.arctic-salmon-monitoring.catchCountSalmon:1, @9A49E912, "{@guide} You need to count the {nameof ChinookSalmon} populations!"
script|job.arctic-salmon-monitoring.catchCountSalmon:2, @9949E77F, "Turn on your {h}Population Count Mode{/h} when you're close to the salmon in the {m}Frosted Sea{/m}."
script|job.arctic-salmon-monitoring.catchReportBack:0, @E0587DF5, "{@player} What should we do now, {nameof @guide}?"
script|job.arctic-salmon-monitoring.catchReportBack:1, @DF587C62, "{@guide} It's time to report back to {nameof @profArctic}!"
script|job.arctic-salmon-monitoring.argue.mainQuestion:0, @4864BAA4, "{@profArctic} Beautiful out there, isn't it?"
script|job.arctic-salmon-monitoring.argue.mainQuestion:1, @4964BC37, "Did you finish counting the salmon? What did you find?"
script|job.arctic-salmon-monitoring.argue.presentFacts:0, @B9B0688F, "Present facts from AQOS"
script|job.arctic-salmon-monitoring.argue.presentFacts:3, @BAB06A22, "Let me get back to you"
script|job.arctic-salmon-monitoring.argue.correctFacts:1, @E5A56D1B, "{@profArctic} Oh, this is great! Looks like the estimates are accurate."
script|job.arctic-salmon-monitoring.argue.correctFacts:2, @E6A56EAE, "I like to keep a close eye on our salmon populations here."
script|job.arctic-salmon-monitoring.argue.correctFacts:3, @E7A57041, "{@player} I totally get it. My mom is the same way with the Kelp and Otters back home."
script|job.arctic-salmon-monitoring.argue.correctFacts:4, @E8A571D4, "Do you need any more help?"
script|job.arctic-salmon-monitoring.argue.correctFacts:5, @E9A57367, "{@profArctic} Well... yes. Always."
script|job.arctic-salmon-monitoring.argue.correctFacts:6, @EAA574FA, "But outsiders usually leave this place as fast as possible."
script|job.arctic-salmon-monitoring.argue.correctFacts:7, @EBA5768D, "I mean, it is remote and extreme. And super cold."
script|job.arctic-salmon-monitoring.argue.correctFacts:8, @DCA55EF0, "{@player}\t\tThat's true. But I think I kind of love it."
script|job.arctic-salmon-monitoring.argue.correctFacts:9, @DDA56083, "{@profArctic} Well, if you're gonna be helping out around here, I'll need to send you some preliminary data."
script|job.arctic-salmon-monitoring.argue.correctFacts:10, @AE6ADAB1, "Here you go. Look for it in your AQOS!"
script|job.arctic-salmon-monitoring.argue.incorrectFacts:0, @D8C6EE43, "{@profArctic}\tUm. This doesn't look like a salmon population count. Am I missing something?"
script|job.arctic-salmon-monitoring.argue.giveUp:0, @6CBD0691, "{@profArctic}\tNo problem, Ollie. Just let me know when you're ready."
script|job.arctic-seal-habbits.start:0, @60B7D0D3, "{@profArctic} Oh, this is great, Ollie! I've been curious about the Ribbon Seals for so long."
script|job.arctic-seal-habbits.start:1, @5FB7CF40, "Though I can't promise you'll see one. They're a pretty rare find."
script|job.arctic-seal-habbits.start:2, @62B7D3F9, "{@arcticSci} It's true. Your sister called them loners... like a lot of us here."
script|job.arctic-seal-habbits.start:3, @61B7D266, "I've never seen one, but Juno here has stumbled upon them once or twice--"
script|job.arctic-seal-habbits.start:4, @64B7D71F, "{@player} Wait. My sister told you about them??"
script|job.arctic-seal-habbits.start:5, @63B7D58C, "{@arcticSci} Of course. Legend says she was the first to spot a Ribbon Seal around here."
script|job.arctic-seal-habbits.start:6, @66B7DA45, "{@player} Wow, that's amazing!"
script|job.arctic-seal-habbits.start:7, @65B7D8B2, "How can I help?"
script|job.arctic-seal-habbits.start:8, @68B7DD6B, "{@profArctic} To start with, you'll need to venture below the ice and track down a Ribbon Seal."
script|job.arctic-seal-habbits.start:9, @67B7DBD8, "You may need to use your {nameof Icebreaker} to reach all parts of the {m}Ephemeral Impasse{/m}."
script|job.arctic-seal-habbits.wrongPlace:0, @F514F935, "{@guide} This is definitely the kind of seal we're looking for, but there don't seem to be many here."
script|job.arctic-seal-habbits.wrongPlace:1, @F414F7A2, "We need to keep looking for their main habitat."
script|job.arctic-seal-habbits.rightPlace:0, @CE36CD9C, "{@guide} I'm detecting many seals in the area, which indicates that this is the seals' main habitat."
script|job.arctic-seal-habbits.rightPlace:2, @D036D0C2, "{@guide} Make sure to scan a seal while you're here!"
script|job.arctic-seal-habbits.microLeft:0, @6FAB1CD6, "{@guide} {nameof @profArctic} will also want to know about microscopic creatures here, so be sure to scan those too."
script|job.arctic-seal-habbits.microCount:0, @1E6FD582, "{@guide} I think that's all of them. Next let's count all the populations, just to be thorough."
script|job.arctic-seal-habbits.reportBack:0, @B04D4AE0, "{@guide} That's everything! Let's report back to {nameof @profArctic}!"
script|job.arctic-seal-habbits.helpStart:0, @6DD712A6, "{@guide} We should check the ice crevice for {pluralnameof RibbonSeal}."
script|job.arctic-seal-habbits.helpWrongPlace:0, @33AC5636, "{@guide} We saw a seal in {nameof RS-4Z}, but that was an outlier. We need to find their home base."
script|job.arctic-seal-habbits.helpWrongPlace:1, @34AC57C9, "Keep looking in different sites."
script|job.arctic-seal-habbits.helpMicro:0, @6D22A6F6, "{@guide} Look around for microscopic critters in {nameof RS-4Y}."
script|job.arctic-seal-habbits.helpCount:0, @04DA250D, "{@guide} Count all the species we found."
script|job.arctic-seal-habbits.helpReportBack:0, @8B59D6BB, "{@guide} We have everything we need. Let's talk to {nameof @profArctic}."
script|job.arctic-seal-habbits.catchFindHabitat:0, @F8E412E6, "{@guide} Head to the {m}Ephemeral Impasse{/m} and find where {pluralnameof RibbonSeal} live."
script|job.arctic-seal-habbits.catchFindRibbon:0, @35C6FFFF, "{@guide} Scan a {nameof RibbonSeal} where it lives."
script|job.arctic-seal-habbits.catchCountSeal:0, @91C32BC2, "{@guide} Count the {nameof RibbonSeal} population at {nameof RS-4Y}."
script|job.arctic-seal-habbits.catchFindMicro:0, @6AB6BA75, "{@guide} Look around for microscopic species in {nameof RS-4Y} using your {nameof Microscope}."
script|job.arctic-seal-habbits.catchCountMicro:0, @93F39771, "{@guide} Count the population of the microscopic species in {nameof RS-4Y} using your {nameof Microscope}."
script|job.arctic-seal-habbits.catchReport:0, @CDE4E946, "{@player} What now, {nameof @guide}?"
script|job.arctic-seal-habbits.catchReport:1, @CEE4EAD9, "{@guide} You need to return to the station and talk to {nameof @profArctic}!"
script|job.arctic-seal-habbits.argue.intro:1, @7CE76F66, "{@profArctic} We've already talked about the seal habitat conditions at {nameof RS-4Y}."
script|job.arctic-seal-habbits.argue.intro:10, @F6544462, "{@profArctic} The seals are pretty cool, right?"
script|job.arctic-seal-habbits.argue.showClaimSite:0, @B364065F, "{@profArctic} What did you learn about the {h}light{/h}, {h}pH{/h}, and {h}temperature{/h} conditions in the {pluralnameof RibbonSeal}' habitat?"
script|job.arctic-seal-habbits.argue.showClaimSite:2, @B5640985, "Present facts from AQOS"
script|job.arctic-seal-habbits.argue.showClaimSite:5, @AE63FE80, "Let me get back to you."
script|job.arctic-seal-habbits.argue.unrelatedSite:1, @80ED4ADD, "{@profArctic} Hmm. That's interesting, but not really helpful here."
script|job.arctic-seal-habbits.argue.beforeSpeciesClaim:0, @1F9C8460, "{@profArctic} I can see why seals might like to cozy up in there."
script|job.arctic-seal-habbits.argue.showClaimSpecies:0, @AE841D7E, "{@profArctic} What about microscopic species? Did you find any?"
script|job.arctic-seal-habbits.argue.showClaimSpecies:2, @AC841A58, "Present facts from AQOS"
script|job.arctic-seal-habbits.argue.showClaimSpecies:5, @B384255D, "Let me get back to you."
script|job.arctic-seal-habbits.argue.unrelatedSpecies:1, @FDC216E2, "{@profArctic} Hmm. That's interesting, but not really helpful here."
script|job.arctic-seal-habbits.argue.giveUp:0, @486E29A1, "{@profArctic} No problem, Ollie. Just let me know when you're ready."
script|job.arctic-seal-habbits.argue.completeSpecies:1, @B0CB632B, "{@profArctic} Wow, so many microorganisms! Nice job, Ollie."
script|job.arctic-seal-habbits.argue.completeSpecies:2, @B1CB64BE, "And I can't believe you saw a Ribbon Seal! I've been here 6 years and I've seen one maybe twice."
script|job.arctic-seal-habbits.argue.completeSpecies:3, @B2CB6651, "Gorgeous down there, isn't it?"
script|job.arctic-seal-habbits.argue.completeSpecies:4, @B3CB67E4, "{@player} Yeah. A little eerie, too."
script|job.arctic-seal-habbits.argue.completeSpecies:5, @B4CB6977, "{@profArctic} Really? I find it comforting. All that ice and quiet."
script|job.arctic-seal-habbits.argue.completeSpecies:6, @B5CB6B0A, "But if ice crevices aren't your thing, no biggie. I'm sure I can find someone else for the next job--"
script|job.arctic-seal-habbits.argue.completeSpecies:8, @A7CB5500, "{@player} Oh, there's another job down there?? What is it? When do I leave?"
script|job.arctic-seal-habbits.argue.completeSpecies:9, @A8CB5693, "{@arcticSci} Well, now you really sound like your sister."
script|job.arctic-seal-habbits.argue.completeSpecies:10, @6B2D0381, "{@profArctic} It's all yours if you want it, Ollie. Just check the Job Board when you're ready."
script|job.arctic-stationary-survival.start:0, @F3ECD477, "{@profArctic} Oh, I'm glad you're looking into the life under the ice!"
script|job.arctic-stationary-survival.start:1, @F2ECD2E4, "The whole station's talking about it."
script|job.arctic-stationary-survival.start:2, @F5ECD79D, "{@arcticSci} We've got people taking bets on how the critters are surviving..."
script|job.arctic-stationary-survival.start:3, @F4ECD60A, "And a colleague down south in Antarctica who thinks we're making the whole thing up."
script|job.arctic-stationary-survival.start:4, @EFECCE2B, "{@player} Whoa... how many people know about this??"
script|job.arctic-stationary-survival.start:5, @EEECCC98, "This place always seems so empty."
script|job.arctic-stationary-survival.start:6, @F1ECD151, "{@arcticSci} We're a tight-knit community, Ollie. People talk."
script|job.arctic-stationary-survival.start:7, @F0ECCFBE, "{@player} Phew. Okay. No pressure."
script|job.arctic-stationary-survival.start:8, @EBECC7DF, "So how can I figure out what's keeping these creatures alive?"
script|job.arctic-stationary-survival.start:9, @EAECC64C, "{@profArctic} You'll need to observe the relationships between the species you discovered at {h}site X{/h}."
script|job.arctic-stationary-survival.start:10, @3ECFE3BC, "Then create a {h}Visual Model{/h} and see what it reveals."
script|job.arctic-stationary-survival.start:11, @3FCFE54F, "Good luck, Ollie!"
script|job.arctic-stationary-survival.weDidIt:0, @2C462723, "{@guide} Sufficient work, O! Your model is full of wonderful data!"
script|job.arctic-stationary-survival.weDidIt:1, @2B462590, "{@player} Wow... I think we solved it!"
script|job.arctic-stationary-survival.weDidIt:2, @2E462A49, "Let's report back to {nameof @profArctic}."
script|job.arctic-stationary-survival.helpMe:0, @6543C148, "{@player} What should I do first, {nameof @guide}?"
script|job.arctic-stationary-survival.helpMe:1, @6643C2DB, "{@guide} In order to create your {h}model{/h}, you'll need to first understand how the species interact with each other."
script|job.arctic-stationary-survival.helpMe:2, @6743C46E, "{@player} Oh... so I need to start with the {h}Observation Tank{/h}."
script|job.arctic-stationary-survival.helpMe:3, @6843C601, "{@guide} Affirmative, O."
script|job.arctic-stationary-survival.helpMe:4, @6943C794, "Once you're done there, head to the {nameof Modeling} to construct the appropriate model."
script|job.arctic-stationary-survival.catchVisualModel:0, @E6CDC9B1, "{@player} What now, {nameof @guide}?"
script|job.arctic-stationary-survival.catchVisualModel:1, @E5CDC81E, "{@guide} Make a Visual Model of organism interactions at Site X!"
script|job.arctic-stationary-survival.catchReport:0, @B075C3CA, "{@player} What's next, {nameof @guide}?"
script|job.arctic-stationary-survival.catchReport:1, @B175C55D, "{@guide} Return to the station and talk to {nameof @profArctic}!"
script|job.arctic-stationary-survival.argue.intro:0, @3B94F7F5, "{@profArctic} Ollie! How'd it go out there?"
script|job.arctic-stationary-survival.argue.intro:1, @3A94F662, "Did you figure out how the creatures under the ice are surviving?"
script|job.arctic-stationary-survival.argue.showClaim:1, @3DD5F90B, "Present facts from AQOS"
script|job.arctic-stationary-survival.argue.showClaim:4, @40D5FDC4, "Let me get back to you."
script|job.arctic-stationary-survival.argue.unrelated:1, @7D574722, "{@profArctic} Um... did you mean to show me this?"
script|job.arctic-stationary-survival.argue.unrelated:2, @7C57458F, "We were talking about the life under the ice. Do you have a model that demonstrates how these creatures survive?"
script|job.arctic-stationary-survival.argue.giveUp:0, @7044E86D, "{@profArctic} No worries, Ollie. I'm sure you'll figure it out!"
script|job.arctic-stationary-survival.argue.complete:1, @049E0C65, "{@profArctic} Detritus... of course!"
script|job.arctic-stationary-survival.argue.complete:2, @019E07AC, "Without sunlight, no plants can survive down there to feed the species."
script|job.arctic-stationary-survival.argue.complete:3, @029E093F, "So instead, they're eating the Detritus that's being pulled in by the current!"
script|job.arctic-stationary-survival.argue.complete:4, @FF9E0486, "{@arcticSci} Oh my. What a surprise."
script|job.arctic-stationary-survival.argue.complete:5, @009E0619, "It seems Linda's death is giving energy to a whole ecosystem!"
script|job.arctic-stationary-survival.argue.complete:6, @FD9E0160, "I suppose you've solved this one, Ollie."
script|job.arctic-stationary-survival.argue.complete:7, @FE9E02F3, "{@player} Actually... I did notice something strange."
script|job.arctic-stationary-survival.argue.complete:8, @0B9E176A, "There's an amazing species called Glass Sponges at Site X. I think I've spotted them at Site Y, too."
script|job.arctic-stationary-survival.argue.complete:9, @0C9E18FD, "But there are none here at Site Z."
script|job.arctic-stationary-survival.argue.complete:10, @99CD69CF, "{@profArctic} Hmm. That is unusual. I wonder why the sponges are missing here?"
script|job.arctic-stationary-survival.argue.complete:11, @98CD683C, "I'll put that job up on the job board. Let me know when you're ready to check it out."
script|job.arctic-time-of-death.start:0, @E0BAF246, "{@arcticSci} Thank you, Ollie. I'll be glad to finally determine Linda's time of death."
script|job.arctic-time-of-death.start:1, @E1BAF3D9, "{@player} Claro que sí. I'm happy to help."
script|job.arctic-time-of-death.start:2, @DEBAEF20, "But Professor... how is it possible to solve this?"
script|job.arctic-time-of-death.start:3, @DFBAF0B3, "All we have to look at are detritus and old bones."
script|job.arctic-time-of-death.start:4, @E4BAF892, "{@arcticSci} Those are all the clues we'll need."
script|job.arctic-time-of-death.start:5, @E5BAFA25, "Scientists have studied other whalefalls and determined what they look like in different stages."
script|job.arctic-time-of-death.start:6, @E2BAF56C, "My team has created a descriptive model. Here, take a look:"
script|job.arctic-time-of-death.start:8, @E8BAFEDE, "{@arcticSci} You can view the model under {h}Site W{/h} in that fancy tablet of yours."
script|job.arctic-time-of-death.start:9, @E9BB0071, "You'll need to collect population data for all the species at {h}site W{/h}."
script|job.arctic-time-of-death.start:10, @424DF7CB, "And then see where the numbers fit within the model."
script|job.arctic-time-of-death.start:11, @414DF638, "{@player} Oh, that makes sense!"
script|job.arctic-time-of-death.start:12, @444DFAF1, "Don't worry, Professor. I'll figure this out--you won't have to wait long."
script|job.arctic-time-of-death.catchGetPops:0, @B72A3BBF, "{@player} Hey {nameof @guide}, what should we be doing now?"
script|job.arctic-time-of-death.catchGetPops:1, @B62A3A2C, "{@guide} You'll need to collect all the population data for the species at {h}Site W{/h}."
script|job.arctic-time-of-death.catchGetPops:2, @B92A3EE5, "Then compare the data with {nameof @arcticSci}'s model, which you can find under {h}Site W{/h} in your AQOS!"
script|job.arctic-time-of-death.catchReportBack:0, @B803A73C, "{@player} What now, {nameof @guide}?"
script|job.arctic-time-of-death.catchReportBack:3, @BB03ABF5, "{@guide}\tYou will need to return to the station and talk to {nameof @arcticSci}."
script|job.arctic-time-of-death.catchReportBack:5, @B503A283, "{@guide} You will need to compare the data with {nameof @arcticSci}'s model, which you can find under {h}Site W{/h} in your AQOS!"
script|job.arctic-time-of-death.catchReportBack:6, @B603A416, "Then, you will need to report back to {nameof @arcticSci}"
script|job.arctic-time-of-death.argue.intro:1, @CA42B067, "{@arcticSci} Okay, Ollie, let's see if we can work out an estimate of Linda's time of death."
script|job.arctic-time-of-death.argue.intro:2, @CB42B1FA, "At what stage of decomposition would you place the whalefall?"
script|job.arctic-time-of-death.argue.intro:3, @CC42B38D, "Stage 1"
script|job.arctic-time-of-death.argue.intro:4, @C542A888, "Stage 2"
script|job.arctic-time-of-death.argue.intro:5, @C642AA1B, "Stage 3"
script|job.arctic-time-of-death.argue.intro:6, @C742ABAE, "I'll get back to you"
script|job.arctic-time-of-death.argue.stage1:4, @1051CF2F, "{@arcticSci} Hmmm. What did you observe to indicate Stage 1?"
script|job.arctic-time-of-death.argue.stage1:5, @0F51CD9C, "Include the whalefall stages model and any relevant data you found."
script|job.arctic-time-of-death.argue.stage2:5, @CC75D159, "{@arcticSci} Hmmm. What did you observe to indicate Stage 2?"
script|job.arctic-time-of-death.argue.stage2:6, @C975CCA0, "Include the whalefall stages model and any relevant data you found."
script|job.arctic-time-of-death.argue.stage3:4, @BA0358E5, "{@arcticSci} Hmmm. What did you observe to indicate Stage 3?"
script|job.arctic-time-of-death.argue.stage3:5, @B9035752, "Include the whalefall stages model and any relevant data you found."
script|job.arctic-time-of-death.argue.showZombieWormsWrong:1, @19C096F3, "Present facts from AQOS"
script|job.arctic-time-of-death.argue.showZombieWormsWrong:4, @1CC09BAC, "Let me get back to you."
script|job.arctic-time-of-death.argue.unrelated:5, @1C873CAF, "{@arcticSci} Well, this data looks accurate... but where does it fit within the model?"
script|job.arctic-time-of-death.argue.unrelated:9, @208742FB, "{@arcticSci} Did you happen to see any zombie worms at the whalefall?"
script|job.arctic-time-of-death.argue.unrelated:10, @EFDA84A9, "The worms seem to be a good indication of the whalefall's stage of decay."
script|job.arctic-time-of-death.argue.unrelatedDetritus:1, @BB05C647, "{@arcticSci} Yes, the whalefall does create a lot of detritius... but I'm not sure how much that will help us."
script|job.arctic-time-of-death.argue.unrelatedDetritus:2, @BC05C7DA, "You might have better luck by looking at other species."
script|job.arctic-time-of-death.argue.unrelatedDetritus:3, @BD05C96D, "How do the species' populations compare with the model I gave you?"
script|job.arctic-time-of-death.argue.zombieWormsEarly:1, @6F6595C8, "{@arcticSci} This is fascinating data, Ollie. But it seems like the zombie worms might have occurred earlier."
script|job.arctic-time-of-death.argue.zombieWormsEarly:2, @72659A81, "Can you check the species populations against the model I gave you?"
script|job.arctic-time-of-death.argue.showZombieWorms:1, @C7697D80, "Present facts from AQOS"
script|job.arctic-time-of-death.argue.showZombieWorms:4, @CC69855F, "Let me get back to you."
script|job.arctic-time-of-death.argue.giveUp:0, @E3D83892, "{@arcticSci} Very well, Ollie. Let me know when you're ready."
script|job.arctic-time-of-death.argue.unrelated2:9, @65AFEBED, "{@arcticSci} This data seems plausible... but can you connect your evidence with the model I gave you?"
script|job.arctic-time-of-death.argue.unrelated2:18, @E8DCB897, "{@arcticSci} And scavengers? Did you notice any of them at the whalefall site?"
script|job.arctic-time-of-death.argue.unrelated2:19, @E7DCB704, "{pluralnameof ZombieWorm} by themselves would point to stage 3."
script|job.arctic-time-of-death.argue.unrelated2:22, @70D53FEA, "{@arcticSci} Did you notice any zombie worms at the whalefall site?"
script|job.arctic-time-of-death.argue.unrelated2:23, @71D5417D, "The worms seem to be a good indication of the whalefall's stage of decay."
script|job.arctic-time-of-death.argue.unrelated2:26, @6CD5399E, "{@arcticSci} Could you show me the stages model I gave you so we can compare?"
script|job.arctic-time-of-death.argue.unrelatedDetritus2:1, @4EC42591, "{@arcticSci} Yes, the whalefall does create a lot of detritus... but I'm not sure how much that will help us."
script|job.arctic-time-of-death.argue.unrelatedDetritus2:2, @4BC420D8, "You might have better luck by looking at other species."
script|job.arctic-time-of-death.argue.unrelatedDetritus2:3, @4CC4226B, "How do the species' populations compare with the model I gave you?"
script|job.arctic-time-of-death.argue.complete:1, @752C6A9E, "{@arcticSci} Ah, yes! Zombie worms can only live on the whale detritus after its bones are exposed. And there are plenty of scavengers."
script|job.arctic-time-of-death.argue.complete:2, @742C690B, "Thank you, Ollie."
script|job.arctic-time-of-death.argue.complete:3, @732C6778, "{@player} Of course. I'm glad you'll finally be able to move on."
script|job.arctic-time-of-death.argue.complete:4, @7A2C727D, "{@arcticSci} Move on?? Oh dear, no. Not with this beautiful new ecosystem right below us!"
script|job.arctic-time-of-death.argue.complete:5, @792C70EA, "{@player} But... Linda is gone."
script|job.arctic-time-of-death.argue.complete:6, @782C6F57, "{@arcticSci} Well, yes. After a fashion. But there's still so much to learn from her."
script|job.arctic-time-of-death.argue.complete:7, @772C6DC4, "In fact, I'd better get back to work."
script|job.arctic-time-of-death.argue.complete:8, @6E2C5F99, "Thank you again for your help!"
script|job.arctic-underneath.start:0, @FC1A631A, "{@profArctic} So. Let's start at the beginning."
script|job.arctic-underneath.start:1, @FD1A64AD, "What's this rumor about you seeing something under the ice?"
script|job.arctic-underneath.start:2, @FA1A5FF4, "{@player} It's not a rumor. There's a whole ecosystem down there!"
script|job.arctic-underneath.start:3, @FB1A6187, "{@profArctic} That's highly implausible."
script|job.arctic-underneath.start:4, @F81A5CCE, "How has no one noticed it before? How could life survive under such extreme conditions?"
script|job.arctic-underneath.start:5, @F91A5E61, "{@player} I... I'm not sure."
script|job.arctic-underneath.start:6, @F61A59A8, "But I know what I saw. You have to believe me."
script|job.arctic-underneath.start:7, @F71A5B3B, "{@profArctic} I do believe you, Ollie. That's why I'm sending you to check it out."
script|job.arctic-underneath.start:9, @F51A5815, "{@profArctic} Sounds like the current swept you through, so you'll need an upgraded engine."
script|job.arctic-underneath.start:10, @0D8C6327, "{@profArctic} And Ollie... be careful. It's not unusual for newcomers to get a little overwhelmed out here."
script|job.arctic-underneath.start:12, @0F8C664D, "{@profArctic} There are some strong currents down there, so make sure to be careful down there."
script|job.arctic-underneath.start:13, @0E8C64BA, "{@profArctic} It's not unusual for newcomers to get a little overwhelmed out here."
script|job.arctic-underneath.start:16, @0B8C6001, "{@player} Got it. Thanks, {nameof @profArctic}."
script|job.arctic-underneath.getTheEngine:0, @9A3A1EBF, "{@player} What should I do first, {nameof @guide}?"
script|job.arctic-underneath.getTheEngine:1, @993A1D2C, "{@guide}\tYou'll need a more powerful {h}engine{/h} in order to fight the ocean currents."
script|job.arctic-underneath.getTheEngine:2, @9C3A21E5, "I'd suggest asking {nameof @arcticMechanic} if he has something that can help us."
script|job.arctic-underneath.toSiteX:0, @652A6AC8, "{@player} Okay, {nameof @guide}. What now?"
script|job.arctic-underneath.toSiteX:1, @662A6C5B, "{@guide} You need to return {h}beneath the ice{/h}!"
script|job.arctic-underneath.toSiteX:2, @672A6DEE, "Last time you reached that mysterious ecosystem through {h}Site W{/h}."
script|job.arctic-underneath.toSiteX:3, @682A6F81, "You can check your AQOS for more site information."
script|job.arctic-underneath.useFlashlight:0, @2ED4DB43, "{@player} Wow. It's so dark down here."
script|job.arctic-underneath.useFlashlight:2, @30D4DE69, "{@guide} Yes. I predict that you have an 8.2% chance of getting lost and never returning. Much like Linda."
script|job.arctic-underneath.useFlashlight:3, @2FD4DCD6, "{@player} Yeah.... I really didn't need those odds, {nameof @guide}."
script|job.arctic-underneath.useFlashlight:4, @32D4E18F, "{@guide} Forunately you have your {nameof Flashlight} activated. Otherwise those odds would be much higher."
script|job.arctic-underneath.useFlashlight:6, @34D4E4B5, "{@guide} Yes. I predict that you have a 23.5% chance of getting lost and never returning. Much like Linda."
script|job.arctic-underneath.useFlashlight:7, @33D4E322, "{@player} Yeah.... I really didn't need those odds, {nameof @guide}."
script|job.arctic-underneath.useFlashlight:8, @36D4E7DB, "How about something helpful?"
script|job.arctic-underneath.useFlashlight:9, @35D4E648, "{@guide} Processing.... ah! You can decrease your odds of dying to only 8.2% by using your {nameof Flashlight} tool!"
script|job.arctic-underneath.useFlashlight:10, @A6126480, "The {nameof Flashlight} will help you scan the species more effectively, too."
script|job.arctic-underneath.useFlashlight:11, @A7126613, "As a shortcut, you may activate your {nameof Flashlight} with the [4] button on your keyboard."
script|job.arctic-underneath.report:0, @77DF60D4, "{@player} Wow. {nameof @guide}, this is amazing!"
script|job.arctic-underneath.report:1, @78DF6267, "A whole ecosystem that no one even knew was here."
script|job.arctic-underneath.report:2, @79DF63FA, "We have so much new data to bring to {nameof @profArctic}!"
script|job.arctic-underneath.report:3, @7ADF658D, "{@guide} Yes. And you didn't get lost and die, which is also a positive outcome!"
script|job.arctic-underneath.report:4, @73DF5A88, "{@player} That's the spirit, V."
script|job.arctic-underneath.report:5, @74DF5C1B, "Let's head back to the station."
script|job.arctic-underneath.LookAround:0, @CF38E4D8, "{@player} I wonder what kind of creatures might be living here"
script|job.arctic-underneath.LookAround:1, @D038E66B, "{@guide} Yes. You'll need to make sure to scan all that you can find."
script|job.arctic-underneath.LookAround:2, @D138E7FE, "Be sure to check your {h}AQOS{/h} to see what you're missing!"
script|job.arctic-underneath.reportBack:0, @1C9E7A8F, "{@guide}\tLooks like you've obtained an adequate sample of the life under the ice."
script|job.arctic-underneath.reportBack:1, @1B9E78FC, "It's time to report back to {nameof @profArctic}!"
script|job.arctic-underneath.catchExplore:0, @507510F4, "{@player} What should we do now, {nameof @guide}?"
script|job.arctic-underneath.catchExplore:1, @51751287, "{@guide} You need to count the species populations under the ice, at Site X."
script|job.arctic-underneath.catchReportBack:0, @EDE8E860, "{@player} Okay, {nameof @guide}. What now?"
script|job.arctic-underneath.catchReportBack:1, @EEE8E9F3, "{@guide}\tYou need to report your findings to {nameof @profArctic}!"
script|job.arctic-underneath.argue.intro:0, @CA456A10, "{@profArctic} Ollie! Nice work. I wasn't sure you'd finish this one."
script|job.arctic-underneath.argue.intro:1, @CB456BA3, "A lot of people wouldn't have the guts to go down there alone."
script|job.arctic-underneath.argue.intro:2, @CC456D36, "So? Let's hear it! What living species did you count beneath the ice at Site X?"
script|job.arctic-underneath.argue.showClaim:1, @EC80653E, "Present facts from AQOS"
script|job.arctic-underneath.argue.showClaim:4, @F1806D1D, "Let me get back to you."
script|job.arctic-underneath.argue.unrelated:0, @056B11EC, "{@profArctic} Hmm. Not sure how that's relevant, Ollie."
script|job.arctic-underneath.argue.unrelated:2, @076B1512, "{@profArctic} I don't need to know about the detritus. That stuff isn't alive."
script|job.arctic-underneath.argue.giveUp:0, @D411954E, "{@profArctic} Okay, Ollie. Make sure you get a complete picture of all the populations down there!"
script|job.arctic-underneath.argue.giveUp:1, @D51196E1, "I can't wait to hear about it."
script|job.arctic-underneath.argue.complete:1, @02ACFF4A, "{@profArctic} Well, it looks like you're living up to your sister's name."
script|job.arctic-underneath.argue.complete:2, @01ACFDB7, "Amazing work, Ollie."
script|job.arctic-underneath.argue.complete:3, @00ACFC24, "{@player} Wait... that's it? We have so much more to learn!"
script|job.arctic-underneath.argue.complete:4, @FFACFA91, "How are all those critters surviving without sunlight to power a food supply? What do they eat? Is there light?"
script|job.arctic-underneath.argue.complete:5, @FEACF8FE, "{@profArctic} That's up to you to find out. This is your project."
script|job.arctic-underneath.argue.complete:6, @FDACF76B, "{@player} Whoa. Really?"
script|job.arctic-underneath.argue.complete:7, @FCACF5D8, "{@profArctic} Sure. I'll update the job board."
script|job.arctic-underneath.argue.complete:8, @FBACF445, "Let me know when you're ready to dive in."
script|job.arctic-underneath.argue.complete:9, @FAACF2B2, "{@player} Don't you want to see it, too? You could come with me."
script|job.arctic-underneath.argue.complete:10, @B0562D0E, "{@profArctic} Thanks, Ollie, but I'll take my sub down later."
script|job.arctic-underneath.argue.complete:11, @B1562EA1, "I prefer to do things on my own."
script|job.alt-energy.start:0, @749F909F, "{@profBayou} We need to learn more about the ecosystem down at {h}Site N{/h}."
script|job.alt-energy.start:1, @739F8F0C, "No sunlight reaches there. Something else must be keeping the organisms alive."
script|job.alt-energy.start:2, @769F93C5, "Ollie, I'd like you to create a visual model to show how energy flows through the ecosystem."
script|job.alt-energy.start:7, @719F8BE6, "{@profBayou} Using the data you've already gathered data from Site N, so you can head straight to your {h}Modeling Lab{/h}."
script|job.alt-energy.start:10, @402E7B74, "{@guide} First, you'll need to do some experiments to see how these organisms relate to one another."
script|job.alt-energy.start:14, @3C2E7528, "{@guide} You'll need to finish scanning all the organisms at {h}Site N{/h} to create a comprehensive model."
script|job.alt-energy.modelCompleted:0, @A5E529CF, "{@player} Wow. This is amazing, {nameof @guide}!"
script|job.alt-energy.modelCompleted:1, @A4E5283C, "{@player} It looks like this ecosystem has more than one source of energy."
script|job.alt-energy.modelCompleted:2, @A7E52CF5, "{@guide} Yes. And so much wonderful data!"
script|job.alt-energy.modelCompleted:3, @A6E52B62, "{@player} I never would've guessed there could be so much energy in all that darkness."
script|job.alt-energy.modelCompleted:4, @A1E52383, "Can't wait to tell {nameof @profBayou}!"
script|job.alt-energy.catchGoScan:1, @43DE8978, "{@player} What now, {nameof @guide}?"
script|job.alt-energy.catchGoScan:2, @46DE8E31, "{@guide} You are still missing some organisms. Make sure you're using your {item}Flashlight{/item}!"
script|job.alt-energy.catchGoScan:4, @48DE9157, "{@player} What now, {nameof @guide}?"
script|job.alt-energy.catchGoScan:5, @47DE8FC4, "{@guide} You still need to scan some organisms at {h}Site N{/h}."
script|job.alt-energy.catchGoScan:6, @4ADE947D, "You'll need to head down there, from the deepest part of {h}Site O{/h}."
script|job.alt-energy.catchGoObservation:0, @E910B520, "{@player} What should I do next, {nameof @guide}?"
script|job.alt-energy.catchGoObservation:1, @EA10B6B3, "{@guide} Use your {h}Observation Tank{/h} to determine the relationships between the organisms from Site N."
script|job.alt-energy.helpwExp:0, @AE122D86, "{@player} Hmmm, any advice {nameof @guide}?"
script|job.alt-energy.helpwExp:1, @AF122F19, "{@guide} Our objective is to find the {h}producers{/h} for this ecosystem."
script|job.alt-energy.helpwExp:2, @AC122A60, "That means we want to discover what what organisms are {h}eaten by nothing else{/h}"
script|job.alt-energy.catchAtSiteNScan:0, @3C8799B1, "{@player} What should I do now?"
script|job.alt-energy.catchAtSiteNScan:1, @3B87981E, "{@guide} You need to use the facts you've gathered to create a {h}visual model{/h}!"
script|job.alt-energy.helpwMod:0, @02169DC5, "{@player} {nameof @guide},| I think I'm stuck."
script|job.alt-energy.helpwMod:1, @01169C32, "{@guide} If you've already imported your data, we may need to return to the {m}Experiment Lab{/m} in order to collect more data for {!}missing behaviors{/!}"
script|job.alt-energy.helpwMod:2, @00169A9F, "If you are {!}missing organisms{/!} we may need to return to the {h}dive site{/h} in order to find all missing organisms for our model"
script|job.alt-energy.catchReportBack:0, @583D52E1, "{@player} What now, {nameof @guide}?"
script|job.alt-energy.catchReportBack:1, @573D514E, "{@guide} You have uncovered the energy sources for the Site N ecosystem."
script|job.alt-energy.catchReportBack:2, @563D4FBB, "Return to the station and share your findings with {nameof @profBayou}!"
script|job.alt-energy.argue.intro:0, @AA1FAAFD, "{@profBayou} {nameof @player}! Are you here to solve the mystery for us?"
script|job.alt-energy.argue.intro:1, @A91FA96A, "{@bayouSci} I gotta admit, I'm dyin' to hear this one, too."
script|job.alt-energy.argue.intro:2, @A81FA7D7, "Where is all that energy at {h}Site N{/h} even coming from?"
script|job.alt-energy.argue.selectClaim:1, @AD8E1C7C, "It's the {h}Hydrogen{/h} from the vents."
script|job.alt-energy.argue.selectClaim:2, @B08E2135, "It's the falling {h}Detritus{/h}."
script|job.alt-energy.argue.selectClaim:3, @AF8E1FA2, "It's the {h}Hydrogen{/h} AND {h}Detritus{/h}: it depends on the species."
script|job.alt-energy.argue.selectClaim:4, @AA8E17C3, "It's the heat from the vents."
script|job.alt-energy.argue.selectClaim:7, @AB8E1956, "It's the {h}Hydrogen{/h} from the vents."
script|job.alt-energy.argue.selectClaim:8, @B68E2AA7, "It's the falling {h}Detritus{/h}."
script|job.alt-energy.argue.selectClaim:9, @B58E2914, "Both: it depends on the species."
script|job.alt-energy.argue.1_Methane:1, @E4F5428C, "{@profBayou} Wow... that's amazing! Can you show me your Visual Model, Ollie?"
script|job.alt-energy.argue.1_Methane:2, @E7F54745, "I'd like to see what species at Site N consume {h}Hydrogen{/h}."
script|job.alt-energy.argue.1_Methane_ChooseFacts:4, @DD28F2D8, "Present facts from AQOS"
script|job.alt-energy.argue.1_Methane_ChooseFacts:7, @E028F791, "Let me get back to you."
script|job.alt-energy.argue.1_Methane_Unrelated:0, @BB420BD2, "{@profBayou} That's not the right model, Ms. Ramirez."
script|job.alt-energy.argue.1_Methane_BranchEnd:0, @7B46B411, "{@profBayou} Hmmm. Based on this model, it looks {h}Hydrogen{/h} isn't the only energy source."
script|job.alt-energy.argue.1_Methane_BranchEnd:1, @7A46B27E, "Your model indicates two sources of energy. Both {h}Detritus{/h} and {h}Hydrogen{/h} are fueling the ecosystem."
script|job.alt-energy.argue.2_Detritus:1, @296E43F5, "{@profBayou} Wow... that's fascinating, Ollie!"
script|job.alt-energy.argue.2_Detritus:2, @266E3F3C, "Can you show me your Visual Model? I'd like to see what eats the {h}Detritus{/h}."
script|job.alt-energy.argue.2_Detritus_ChooseFacts:4, @1EC257B9, "Present facts from AQOS"
script|job.alt-energy.argue.2_Detritus_ChooseFacts:7, @1BC25300, "Let me get back to you."
script|job.alt-energy.argue.2_Detritus_Unrelated:0, @9C6E064F, "{@profBayou} That's not the right model, Ollie."
script|job.alt-energy.argue.2_Detritus_BranchEnd:0, @83A37AA0, "{@profBayou} Hmmm. Based on this model, it looks like {h}Detritus{/h} isn't the only energy source."
script|job.alt-energy.argue.2_Detritus_BranchEnd:1, @84A37C33, "Your model indicates two sources of energy. Both {h}Detritus{/h} and {h}Hydrogen{/h} are fueling the ecosystem."
script|job.alt-energy.argue.3_Heat:0, @C0C81E69, "{@profBayou} Hmm. What evidence did you use to reach that conclusion?"
script|job.alt-energy.argue.3_Heat_ChooseFacts:4, @4A4E2492, "Present facts from AQOS"
script|job.alt-energy.argue.3_Heat_ChooseFacts:7, @494E22FF, "Let me get back to you."
script|job.alt-energy.argue.3_Heat_Unrelated:0, @020C7880, "{@profBayou} That doesn't tell me how much heat is at {h}Site N{/h}."
script|job.alt-energy.argue.3_Heat_BranchEnd:0, @687357EB, "{@profBayou} Site N does seem to be hotter than expected... and heat does help organisms stay alive and unstressed."
script|job.alt-energy.argue.3_Heat_BranchEnd:1, @67735658, "But heat doesn't directly support life."
script|job.alt-energy.argue.3_Heat_BranchEnd:2, @6A735B11, "Do you have another hypothesis, Ollie?"
script|job.alt-energy.argue.4_Both:1, @B02B3EC4, "{@profBayou} Wow... that's amazing! Can you show me your Visual Model, Ollie?"
script|job.alt-energy.argue.4_Both:2, @B32B437D, "I'd like to see what species at Site N consume {h}Hydrogen{/h} and {h}Detritus{/h}."
script|job.alt-energy.argue.4_Both_ChooseFacts:4, @45A87CB0, "Present facts from AQOS"
script|job.alt-energy.argue.4_Both_ChooseFacts:7, @48A88169, "Let me get back to you."
script|job.alt-energy.argue.4_Both_Unrelated:0, @607332DA, "{@profBayou} That's not the right model, Ms. Ramirez."
script|job.alt-energy.argue.4_Both_BranchEnd:0, @5FDF0869, "{@profBayou} You appear to be spot-on."
script|job.alt-energy.argue.giveUp:0, @0CFA1D65, "{@profBayou} Okay, Ollie. Please report back when you're ready."
script|job.alt-energy.argue.done:2, @9DC55077, "{@profBayou} Oh, this is fascinating! Both {h}Hydrogen{/h} and {h}Detritus{/h} are primary sources of energy!"
script|job.alt-energy.argue.done:3, @9CC54EE4, "{@bayouSci} I gotta admit, that's a pretty cool finding, kid. Maybe even groundbreaking."
script|job.alt-energy.argue.done:4, @9BC54D51, "I'll keep lookin' into it after the professor moves on outta here. You can help me, if you like."
script|job.alt-energy.argue.done:5, @9AC54BBE, "{@player} That would be amazing! Thanks, Silias."
script|job.alt-energy.argue.done:6, @99C54A2B, "{@profBayou} Actually... I might end up sticking around the Bayou, too. This new ecosystem merits further study."
script|job.alt-energy.argue.done:7, @98C54898, "{@bayouSci} Ah.... that's, um... that's somethin', Professor. Can't wait to keep workin' with you."
script|job.bayou-blue-waters.start:0, @151B84CD, "{@bayouSci} Have you noticed how green the {nameof RS-3P} is, O?"
script|job.bayou-blue-waters.start:1, @141B833A, "{@player} Yeah, it's pretty overwhelming. I'm glad I don't have to leave my sub to study it."
script|job.bayou-blue-waters.start:2, @131B81A7, "{@bayouSci} Well, that water used to be blue."
script|job.bayou-blue-waters.start:3, @121B8014, "{@player} Really?"
script|job.bayou-blue-waters.start:4, @111B7E81, "{@bayouSci} Really. Well, blue-er. I'd like you to get to the bottom of why it has shifted so drastically."
script|job.bayou-blue-waters.start:5, @101B7CEE, "We might be able to reverse the effects."
script|job.bayou-blue-waters.cyanoScanned:0, @8BAB400B, "{@guide} This is a green thing! It could be the reason the water is no longer blue... somehow."
script|job.bayou-blue-waters.cyanoScanned:1, @8AAB3E78, "Let's count these creatures, then find out everything we can about them in experiments."
script|job.bayou-blue-waters.experimentsCompleted:0, @9D49E176, "{@guide} We've learned quite a bit about {nameof Cyanobacteria}. Let's show {nameof @bayouSci} how they're impacting the water."
script|job.bayou-blue-waters.catchFindGreen:0, @25EF0E0C, "{@guide} We're looking for what could be making the water in {fullnameof RS-3P} look green."
script|job.bayou-blue-waters.catchFindGreen:1, @26EF0F9F, "I'm sure some combination of your tools will reveal something."
script|job.bayou-blue-waters.catchCountGreen:1, @93B7C89B, "{@guide} Count how many {nameof Cyanobacteria} there are here."
script|job.bayou-blue-waters.catchCountGreen:3, @95B7CBC1, "{@guide} We still need to count how many {nameof Cyanobacteria} there are in the {nameof RS-3P}."
script|job.bayou-blue-waters.catchStressCB:0, @557AA4DB, "{@guide} Stick {nameof Cyanobacteria} in the {nameof StressTank} and record the stress ranges."
script|job.bayou-blue-waters.catchMeasureEffect:0, @CD0E88FF, "{@guide} The {nameof MeasurementTank} will help us understand {nameof Cyanobacteria} better."
script|job.bayou-blue-waters.catchMeasureEffect:2, @CF0E8C25, "{@guide} I recommend measuring {nameof Cyanobacteria}'s effect on its environment with water that does not stress it."
script|job.bayou-blue-waters.catchMeasureEffect:6, @CB0E85D9, "{@guide} Might I suggest measuring {nameof Cyanobacteria}'s effect on its environment with water that stresses it?"
script|job.bayou-blue-waters.catchMeasureEffect:7, @CA0E8446, "One of the arctic sites could do the trick -- they have some pretty extreme conditions."
script|job.bayou-blue-waters.catchMeasureEffect:9, @D40E9404, "{@guide} Might I suggest measuring {nameof Cyanobacteria}'s effect on its environment with water that stresses it?"
script|job.bayou-blue-waters.catchMeasureEffect:10, @96DF15D4, "One of the arctic sites could do the trick -- they have some pretty extreme conditions."
script|job.bayou-blue-waters.catchMeasureEffect:12, @98DF18FA, "{@guide} We'll need to measure {nameof Cyanobacteria} in an environment with water that stresses it."
script|job.bayou-blue-waters.catchMeasureEffect:13, @99DF1A8D, "...Though scanning through AQOS, I don't believe we've identified any sites with conditions that would stress them."
script|job.bayou-blue-waters.catchMeasureEffect:14, @92DF0F88, "We may need to come back to this job once we've seen more extreme biomes."
script|job.bayou-blue-waters.catchMeasureReproduce:0, @F6FFA08D, "{@guide} The {nameof MeasurementTank} will help us understand {nameof Cyanobacteria} better."