-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLineData.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
6952 lines (6952 loc) · 764 KB
/
LineData.csv
File metadata and controls
6952 lines (6952 loc) · 764 KB
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
char.drKelp.name, , , "Mom, The Kelp Researcher"
char.drKelp.name.short, , , "Mom"
char.profCoral.name, , , "Professor Cempaka, The Coral Researcher"
char.profCoral.name.short, , , "Prof. Cempaka"
char.profBayou.name, , , "Dr. Harper, The Bayou Researcher"
char.profBayou.name.short, , , "Dr. Harper"
char.profArctic.name, , , "Director Juno, The Arctic Researcher"
char.profArctic.name.short, , , "Dir. Juno"
char.kelpMechanic.name, , , "Tío, The Kelp Mechanic"
char.kelpMechanic.name.short, , , "Tío"
char.coralMechanic.name, , , "Sofia, The Coral Mechanic"
char.coralMechanic.name.short, , , "Sofia"
char.bayouMechanic.name, , , "Alex, The Bayou Mechanic"
char.bayouMechanic.name.short, , , "Alex"
char.arcticMechanic.name, , , "Reiner, The Arctic Mechanic"
char.arcticMechanic.name.short, , , "Reiner"
char.arcticSci.name, , , "Professor Jacques Whalen"
char.arcticSci.name.short, , , "Prof. Whalen"
char.bayouSci.name, , , "Silias, The Shrimp Specialist"
char.bayouSci.name.short, , , "Silias"
char.fisher.name, , , "Fisher"
char.v1ctor.name, , , "V1ct0r"
char.guide.name, , , "V1ct0r"
char.guide.name.short, , , "V1ct0r"
char.sam.name, , , "Sam"
char.sam.name.short, , , "Sam"
char.mer.name, , , "Mer"
char.ex.name, , , "Ex"
char.ex.name.short, , , "Ex"
char.mack.name, , , "Mack"
char.mack.name.short, , , "Mack"
char.drKelp.name.formal, , , "Dr. Ramírez"
critters.arcticCod.commonName, , , "Arctic Cod"
critters.astarteBorealis.commonName, , , "Boreal Mollusc"
critters.bowheadWhale.commonName, , , "Bowhead Whale"
critters.blueheadWrasse.commonName, , , "Bluehead Wrasse"
critters.blueTang.commonName, , , "Blue Tang"
critters.blueTang.commonName.plural, , , "Blue Tangs"
critters.bristleWorm.commonName, , , "Bristle Worm"
critters.bullKelp.commonName, , , "Bull Kelp"
critters.chinookSalmon.commonName, , , "Chinook Salmon"
critters.copepod.commonName, , , "Copepod"
critters.copepod.commonName.plural, , , "Copepods"
critters.decomposingBacteria.commonName, , , "Decomposing Bacteria"
critters.detritus.commonName, , , "Detritus"
critters.diatoms.commonName, , , "Diatoms"
critters.fishers.commonName, , , "Human Fisher"
critters.giantKelp.commonName, , , "Giant Kelp"
critters.hagfish.commonName, , , "Hagfish"
critters.iceAlgae.commonName, , , "Ice Algae"
critters.loggerheadTurtle.commonName, , , "Loggerhead Turtle"
critters.loggerheadTurtle.commonName.plural, , , "Loggerhead Turtles"
critters.mussel.commonName, , , "Mussel"
critters.mussel.commonName.plural, , , "Mussels"
critters.northAtlanticOctopus.commonName, , , "North Atlantic Octopus"
critters.queenConch.commonName, , , "Queen Conch"
critters.queenConch.commonName.plural, , , "Queen Conches"
critters.redGrouper.commonName, , , "Red Grouper"
critters.ribbonSeal.commonName, , , "Ribbon Seal"
critters.salmonShark.commonName, , , "Salmon Shark"
critters.sargassum.commonName, , , "Sargassum"
critters.seaAnemone.commonName, , , "Sea Anemone"
critters.seaOtter.commonName, , , "Sea Otter"
critters.seaStar.commonName, , , "Starfish"
critters.smelt.commonName, , , "Smelt"
critters.snowCrab.commonName, , , "Snow Crab"
critters.seaOtter.commonName.plural, , , "Sea Otters"
critters.staghornCoral.commonName, , , "Staghorn Coral"
critters.turtleGrass.commonName, , , "Turtle Grass"
critters.urchin.commonName, , , "Urchin"
critters.urchin.commonName.plural, , , "Urchins"
critters.whiteShrimp.commonName, , , "White Shrimp"
critters.zombieWorm.commonName, , , "Zombie Worm"
critters.cyanobacteria.commonName, , , "Cyanobacteria"
critters.ick.commonName, , , "Ick"
critters.turfAlgae.commonName, , , "Turf Algae"
critters.pterasterObscurus.commonName, , , "Cushion Star"
critters.urchin.description, , , "Plated globe-like animal. Its long spikes help ward off predators."
critters.turtleGrass.description, , , "Turtles must really like this stuff."
critters.turfAlgae.description, , , "Red macroalgae."
critters.staghornCoral.description, , , "This coral formation has millions of tiny polyps and symbiotic zooxanthelle... but no antlers."
critters.seaStar.description, , , "Most sea stars have five arms, hundreds of tube feet, and zero orbiting planets."
critters.seaOtter.description, , , "These fuzzy critters are known to float on their backs to sleep. Scientists refer to this as ""adorable."""
critters.sargassum.description, , , "Floaty, bloaty, smells like bologna."
critters.redGrouper.description, , , "These fish clear detritus from around their dens, opening space for other critters - truly the janitors of the sea!"
critters.mussel.description, , , "These molluscs may not be muscular, but their ability to filter water is a superpower."
critters.loggerheadTurtle.description, , , "These vulnerable sea turtles have probably never even seen a log."
critters.queenConch.description, , , "Listen to the ocean in their shells. Well, after they move out of course."
critters.whiteShrimp.description, , , "10 walking legs, 10 swimming legs, and antennae 3 times longer than their body"
critters.giantKelp.description, , , "The biggest and best of the kelp! Make wonderful cookies, according to exactly one person."
critters.fishers.description, , , "Humans, specifically those that catch fish."
critters.detritus.description, , , "That's just dead organic matter. Analysis says it's 78% icky."
critters.copepod.description, , , "Super swimmers who can travel 295 ft/hr. Good thing they can't participate in the olympics."
critters.bullKelp.descripion, , , "These plant-like growths are actually composed of protists, and are unrelated to cows."
critters.blueTang.description, , , "The great lawn mowers of the coral reef. Unpaid that is."
critters.blueheadWrasse.description, , , "Larger predators will allow these ""cleaner fish"" to eat algae and parasites off their skin without any ha-wrasse-ment."
critters.fishers.commonName.plural, , , "Human Fishers"
critters.methane.commonname, , , "Methane Hydrate Crystals"
critters.methanogen.commonname, , , "Methane Fire Archaea"
critters.RedGorgonian.commonname, , , "Red Gorgonian"
critters.seapearl.commonname, , , "Sea Pearl"
critters.angelFish.commonname, , , "Angelfish"
critters.brooksi.commonName, , , "Brooksi Mussel"
critters.deepSeaSkate.commonName, , , "Deep Sea Skate"
critters.elkhornCoral.commonName, , , "Elkhorn Coral"
critters.moonJelly.commonName, , , "Moon Jelly"
critters.siphonophore.commonName, , , "Sea Dandelion"
critters.tubeworms.commonNames, , , "Tube Worms"
critters.ventstar.commonName, , , "Vent Star"
critters.plastic.commonName, , , "Plastic Bag"
critters.angelFish.description, , , "These holy fish are actually ambush hunters - not so angelic after all."
critters.angelFish.pluralname, , , "Angelfish"
critters.angelFish.commonname.plural, , , "Angelfish"
critters.moonJelly.commonName.plural, , , "Moon Jellies"
critters.moonJelly.description, , , "Opportunistic critters can wait 25 years in their polyp stage before maturing. Also thrive in waters otherwise uninhabitable. Makes a tasty chip."
critters.seapearl.commonname.plural, , , "Sea Pearls"
critters.seapearl.description, , , "These ""pearls"" are actually made of algae, but they're still treasures to me."
critters.elkhornCoral.commonName.plural, , , "Elkhorn Coral"
critters.elkhornCoral.description, , , "They are similar to their Staghorn cousins, but these coral grows in horizontal shelves."
critters.lionfish.commonName, , , "Lionfish"
critters.artificialReef.commonName, , , "Artificial Reef"
critters.spearedLionfish.commonName, , , "Speared Lionfish"
critters.whaleTracker.commonName, , , "Whale Tracker"
critters.glassSponge.commonName, , , "Glass Sponge"
critters.glassSponge.commonName.plural, , , "Glass Sponges"
critters.northernSeaNettle.commonName, , , "Northern Sea Nettle"
critters.northernSeaNettle.commonName.plural, , , "Northern Sea Nettles"
critters.glacialamphipod.commonName, , , "Glacial Amphipod"
critters.glacialamphipod.commonName.plural, , , "Glacial Amphipods"
critters.clione.commonName, , , "Clione"
critters.clione.commonName.plural, , , "Clione"
critters.arcticCopepod.commonName, , , "Arctic Copepod"
critters.arcticCopepod.commonName.plural, , , "Arctic Copepods"
critters.arcticCopepod.description, , , "How would you cope with being a tiny arctic crustacean?"
critters.plastic.commonName.plural, , , "Plastic Bags"
critters.pterasterObscurus.commonName.plural, , , "Cushion Stars"
critters.hydrogen.name, , , "Hydrogen"
critters.hydrogen.description, , , "The most basic of elements. Yes, it's also found in lattes."
critters.SeaSkate.commonName, , , "Deep Sea Skate"
critters.SeaSkate.pluralCommonName, , , "Deep Sea Skates"
critters.SeaSkate.description, , , "You won't find any sun rays this deep, but you can find these rays."
critters.redGorgonian.commonName, , , "Red Gorgonian"
critters.oceanDandelion.commonName, , , "Ocean Dandelion"
critters.diatoms.description, , , "These silica-shelled algae are responsible for over 20% of Earth's oxygen, and much of its kitty litter."
critters.cyanobacteria.description, , , "These tiny photosynthesizers are responsible for your oxygen. Remember to thank them."
critters.decomposingBacteria.description, , , "Microscopic recyclers. Does this count as eating?"
critters.salmonShark.description, , , "Don't let their name fool you: they're not a type of salmon, but one of their most voracious predators!"
critters.lionfish.description, , , "This creature actually does have quite a beautiful mane... but it's made of deadly spines."
critters.iceAlgae.description, , , "It's like ice cream, but it's green, and gooey, and algae."
critters.clione.description, , , "The flapping ""wings"" of these sea angels actually evolved from their foot."
critters.glacialamphipod.description, , , "These flea-like amphipods spend most of their life clinging to the bottom of sea ice, eating algae. Hey, it's a living."
critters.ribbonSeal.description, , , "Their buoyancy sacs may be unique among seals, but their adorableness isn't."
critters.arcticCod.description, , , "Maybe these polar fish were so cold they forgot the L."
critters.snowCrab.description, , , "Molting season turns these hard-shelled crabs into squishy blobs until they harden again. It's all about growth."
critters.astarteBorealis.description, , , "This bivalve has teeth! Three to be precise."
critters.pterasterObscurus.description, , , "The older they get, the more they look like a blob. No wonder they're obscure."
critters.seaAnemone.description, , , "Top of the food chain at the top of the world. Mainly because the North Pole isn't the most hospitable ecosystem."
critters.smelt.description, , , "Shimmer like a rainbow, smell like a cucumber."
critters.chinookSalmon.description, , , "These salmon change color when they return to freshwater to mate - It's basically their prom."
critters.bowheadWhale.description, , , "Unusually thick skulls bash through ice to let them breathe, missing dorsal fins mean they don't catch it on the ice. Priorities."
critters.northernSeaNettle.description, , , "Stinging and irritating - just like land nettle."
critters.glassSponge.description, , , "Sea sponges may look like weird plants, but they're actually some of the first animals to evolve."
critters.bristleWorm.description, , , "Centipedes of the ocean."
critters.hagfish.description, , , "These eel-shaped fish release copious amounts of slime and can tie themselves in knots. ""Hag"" sounds about right."
critters.zombieWorm.description, , , "These worms don't eat brains, but they do bore into bones to eat the marrow."
critters.northAtlanticOctopus.description, , , "Also known as the spoonarm octopus. Maybe they have a fondness for cereal."
critters.redGorgonian.description, , , "These sea fans extend feathery tentacles to capture plankton. Maybe they could also be used to cool yourself?"
critters.brooksi.description, , , "These deep-sea mussels have endosymbiotic methanogens. They must be desperate to team up with someone so stinky."
critters.tubeworms.description, , , "These alien-looking worms get much of their biomass from symbiotic sulfur-eating bacteria."
critters.methanogen.description, , , "Instead of oxygen, these bacteria breathe in hydrogen gas and exhale methane. Talk about bad breath."
critters.methane.description, , , "Energy rich compound. Most commonly associated with cow farts."
critters.oceanDandelion.description, , , "Definitely not a plant. More likely to suck you in than be blown apart."
critters.ventstar.description, , , "The name is rather fitting, because these echinoderms sure look like they're from outer space."
critters.ribbonSeal.commonName.plural, , , "Ribbon Seals"
critters.lionfish.commonName.plural, , , "Lionfish"
critters.oceanDandelion.commonName.plural, , , "Ocean Dandelions"
critters.anglerFish.commonname, , , "Angler Fish"
critters.anglerFish.description, , , "What's going on with this fish? It's kinda scary..."
critters.bloodJelly.commonname, , , "Blood Jelly"
critters.bloodJelly.description, , , "No idea what this is..."
critters.dinnerJelly.commonname, , , "Dinner Plate Jellyfish"
critters.dinnerJelly.description, , , "No idea what this is..."
critters.flapjackOcto.commonname, , , "Flapjack Octopus"
critters.flapjackOcto.description, , , "No idea what this is..."
critters.gossamerWorm.commonname, , , "Gossamer Worm"
critters.gossamerWorm.description, , , "No idea what this is..."
critters.mysidShrimp.commonname, , , "Mysid Shrimp"
critters.mysidShrimp.description, , , "No idea what this is..."
critters.viperFish.commonname, , , "Viperfish"
critters.viperFish.description, , , "No idea what this is..."
critters.colossalSquid.commonname, , , "Colossal Squid"
critters.colossalSquid.description, , , "No idea what this is..."
critters.encoded.1, , , "O, can you hear me? It's Sam. {un}We found{/un} the Challenger Deep. Dinn says it has a long-range comms link with your ship! {un}Don't know how{/un} it works or if you're getting this. Probe's still in one piece. Data's slowly coming in. But O... there's {un}something{/un} else down here. Call me as soon as you get this."
critters.encoded.2, , , "O, please tell me you're getting this. Trying to send you our data, but it's {un}taking forever{/un} to upload. I think we're in over our heads here. {un}Station's{/un} being attacked. This thing is massive. Can't see it, but it keeps coming at us. Hope it'll get {un}bored{/un} and leave us {un}alone{/un}."
critters.encoded.3, , , "O, do you copy? We {un}need{/un} help. Creature's still attacking. Systems going haywire. Had to {un}shut down{/un} the probe, so the creature wouldn't destroy it. Ex's gonna take the sub out and go for help. {un}Wish{/un} us luck. Call when you get this."
critters.encoded.4, , , "O, the thing attacking us is {un}some sort{/un} of squid. Beautiful. Terrifying. About the size of a bus. It took out our sub in {un}four seconds{/un}. Lucky Ex managed to make it back to the station. We're {un}stuck{/un} here. Systems glitching. Lights flashing like crazy. Dinn managed to fix the oxygen scrubber, but it won't {un}last{/un}. Please hurry."
critters.encoded.5, , , "Nautilus to O. Got {un}another{/un} species to send your way. Hope you're getting all the data we've been sending you. Our lab is {un}totally wrecked{/un}, but you've got the {un}AquaLab{/un}. Maybe you can figure out if this thing has a weakness. If there's some way we can get out of here alive."
critters.encoded.6, , , "Hey, O. I don't know why I keep sending these. I guess it's just nice to pretend you're {un}listening{/un}. I really wished you could've come on this mission with me. But now I'm glad you didn't. For the record, I'm {un}sorry{/un} about the whole crashed sub thing. I {un}shouldn't have{/un} pressured you to take the sub out at night. If you get this message, send help."
critters.encoded.7, , , "O, it's Sam. Got more data for you. I really, really {un}hope this{/un} goes through, because I don't know how much longer we can hold on. There are {un}cracks{/un} in the outer glass. Our oxygen is dwindling. {un}Almost{/un} out of time."
critters.encoded.8, , , "Nautilus to O. This is it. {un}The last{/un} of our data. Maybe it'll be enough to {un}find a way out{/un} of this mess. We've got a few days of oxygen left. Or {un}maybe just a few{/un} seconds, if the squid breaks the glass. O, {un}if you can hear me{/un}... I'm sending out the job to any job board {un}within range{/un}. I hope it finds you. I know you can solve this."
critters.zombieWorm.pluralName, , , "Zombie Worms"
critters.zombieWorm.plural, , , "Zombie Worms"
critters.bowheadWhale.plural, , , "Bowhead Whales"
critters.ick.description, , , "Microscopic parasite that lives on the Tang"
ecosystems.a_CoolKelpForest.commonName, , , "Rodeo Cove"
ecosystems.b_UrchinBarren.commonName, , , "Cliffside Oasis"
ecosystems.c_WarmKelpForest.commonName, , , "Forested Lagoon"
ecosystems.d_MixedKelpForest.commonName, , , "Mer's Horizon"
ecosystems.n_ThermalVent.commonName, , , "Ignis Collis Deeps"
ecosystems.o_OilRig.commonName, , , "ERC Industries Rig"
ecosystems.p_DeadZone.commonName, , , "Trawling Bay"
ecosystems.r_SargassumCoveredReef.commonName, , , "Briny Beach"
ecosystems.s_Lionfish.commonName, , , "Restoration Reef"
ecosystems.v_ReefEdge.commonName, , , "Serenity Meadow"
ecosystems.w_WhaleFall.commonName, , , "White Point"
ecosystems.x_UnderTheIce.commonName, , , "Río Hielo"
ecosystems.y_IceCrevice.commonName, , , "Ephemeral Impasse"
ecosystems.z_OpenOcean.commonName, , , "Frosted Sea"
ecosystems.DeepSea.commonName, , , "The Lower Depths"
ecosystems.a_CoolKelpForest.description, , , "A kelp forest in cooler ocean waters."
ecosystems.b_UrchinBarren.description, , , "A desolate undersea plain that was once abundant with kelp."
ecosystems.c_WarmKelpForest.description, , , "A kelp forest located in warm ocean waters. Kelp forests form the backbone of many ocean ecosystems."
ecosystems.d_MixedKelpForest.description, , , "A blended refuge, intended to harbor multiple species of kelp simultaneously."
ecosystems.r_SargassumCoveredReef.description, , , "A coral reef blanketed in sargassum."
ecosystems.v_ReefEdge.description, , , "The edge of a coral reef habitat."
ecosystems.s_Lionfish.description, , , "Formerly thriving reef ecosystem experiencing collapse. Diverse species presence throughout the space. An eerie presence lingers."
ecosystems.n_ThermalVent.description, , , "Deeper, darker, yet somehow warm. The base of the drilling station surrounded by thermal vents. A hot tub under the research site?"
ecosystems.o_OilRig.description, , , "Former oil rig drilling platform that has been abandoned by the company. Now home to a highly debated, displaced reef and a band of research scientists."
ecosystems.p_DeadZone.description, , , "Economically essential shrimp habitat. The just deep enough waters should be perfect for shrimp to enjoy. Local reports of changing conditions are troubling."
ecosystems.w_WhaleFall.description, , , "Semi-open ocean area between several ice outcroppings. This area freezes over in winter. Organisms typically migrate away during seasonal shifts."
ecosystems.x_UnderTheIce.description, , , "Newly discovered region! Position unknown. Appears to experience currents moving from one side of the ice to the other."
ecosystems.y_IceCrevice.description, , , "Small crevice similar to a harbor in the ice. Calmer waters compared to the open ocean. Preferred habitat of the Ribbon Seal."
ecosystems.z_OpenOcean.description, , , "Salmon range during summer seasonal shifts. Coldest region still considered open ocean."
ecosystems.DeepSea.description, , , "The darkest, deepest area of the ocean near the trenches that spread to create new ocean floor. Relatively unexplored by human presence."
experiment.backToShip.tooltip, , , "Return to Helm Exterior"
experiment.env.none, , , "<color=yellow>No Environment Set</color>"
experiment.env.button.tooltip, , , "Select Environment"
experiment.critter.button.tooltip, , , "Select Organism"
experiment.critter.button.multi.tooltip, , , "Select Organisms"
experiment.run.button.tooltip, , , "Run Experiment"
experiment.waterStabilizer.button.tooltip, , , "Water Stabilizer"
experiment.autoFeeder.button.tooltip, , , "Auto-Feeder"
experiment.button.addOrganism, , , "Add Organisms"
experiment.button.run, , , "Run Experiment"
experiment.button.addWater, , , "Add Water"
experiment.button.features, , , "Select Features"
experiment.button.endExperiment, , , "End Experiment"
experiment.button.addOrganisms, , , "Add Organisms"
experiment.summary.noNewFacts, , , "You're more likely to discover new facts if you try different combinations of organisms and tank settings."
experiment.summary.noFacts, , , "It doesn't look like there was a relationship between these species. Keep trying with other species."
experiment.summary.missedFacts, , , "If you're not careful, an organism will exhaust its food supply before you have a chance to observe it eating."
experiment.summary.deadOrganisms, , , "Some organisms died as a result of the water settings. Make sure your organisms can survive before running your experiment."
experiment.summary.singleOrganism, , , "New observations are more likely to occur if you place more than one type of organism into the tank."
experiment.summary.deadMatter, , , "Non-living matter cannot be tested in isolation."
experiment.summary.deadMatterPair, , , "Eating interactions can only occur if one of the organisms in the tank is living."
experiment.summary.eatNeedsObserveFirst, , , "Eating interactions must be observed in the {nameof ObservationTank} before they can be measured."
experiment.summary.hadRemainingObservations, , , "New observations are more likely to occur if you're patient and wait for organisms to interact."
experiment.summary.parasiteNeedsObserveFirst, , , "Parasitic interactions must be observed in the {nameof ObservationTank} before they can be measured."
experiment.summary.noteHeader, , , "<b>Note:</b><margin-left=1.5em>\n{0}"
experiment.summary.noInteractionHeader, , , "<b>No Interactions Discovered</b>\n\n<b>Note:</b><margin-left=1.5em>\n{0}"
experiment.summary.alreadyObserved, , , "<b>No New Interactions Discovered</b>\n\n<b>Note:</b><margin-left=1.5em>\n{0}"
experiment.summary.header, , , "Experiment Results"
experiment.summary.single.header, , , "Experiment Results\n<size=80%>{critter-name}{0}{/critter-name}"
experiment.summary.header.fail, , , "Experiment Inconclusive"
experiment.summary.header.redundant, , , "Experiment Unnecessary"
experiment.summary.measure.repro, , , "Reproduction Rate Instructions\n- Turn on {nameof AutoFeeder}\n- Turn on {nameof WaterStabilizer}\n- Add one Organism Type"
experiment.summary.measure.water, , , "Water Chemistry Instructions\n- Turn on {nameof AutoFeeder}\n- Turn off {nameof WaterStabilizer}\n- Add one Organism Type"
experiment.summary.measure.eat, , , "Eating Rate Instructions\n- Turn off {nameof AutoFeeder}\n- Turn on {nameof WaterStabilizer}\n- Add two Organism Types"
experiment.button.measure, , , "Analyze Data"
experiment.button.addEcosystem.activeJob, , , "Active Job"
experiment.button.addOrganism.inEcosystem, , , "In Ecosystem"
experiment.tank.observation, , , "Observation Tank"
experiment.tank.stress, , , "Stress Tank"
experiment.tank.measurement, , , "Measurement Tank"
experiment.button.enable, , , "OFF"
experiment.button.enabled, , , "ON"
experiment.observation.newBehavior.header, , , "New Behavior Discovered!"
experiment.measure.stabilizer.desc, , , "When ON, the tank keeps the same water chemistry and light conditions. Turn this OFF only if you want to see an organism's effect on its environment."
experiment.measure.stabilizer.name, , , "Tank Stabilizer"
experiment.measure.feeder.name, , , "Auto-Feeder"
experiment.measure.feeder.desc, , , "When ON, all organisms get enough food without eating each other. Leave it ON to see how an organism reproduces. Turn this OFF only if you want to see the rate at which one species eats another."
experiment.measure.analyzing, , , "Analyzing tank configuration..."
experiment.measure.unknownVar, , , "ERROR: Unable to isolate variable"
experiment.measure.reproVar, , , "Isolated: Reproduction rates"
experiment.measure.chemVar, , , "Isolated: Environmental interactions"
experiment.measure.eatVar, , , "Isolated: Eating/interaction rates"
words.eat, , , "eats"
words.isEatenBy, , , "is eaten by"
words.catch, , , "catches"
words.catch.disabled, , , "does not catch"
words.isCaughtBy, , , "is caught by"
words.isCaughtBy.disabled, , , "is not caught by"
words.stresses, , , "stresses"
words.isStressedBy, , , "is stressed by"
words.produce, , , "produces"
words.consume, , , "consumes"
words.reduce, , , "reduces"
words.reproduce, , , "reproduces by"
words.reproduce.disabled, , , "stops reproducing"
words.death, , , "dies"
words.grow, , , "grows by"
words.whenStressed, , , "when stressed"
words.flatGraph.label, , , "Stable"
words.flatGraph.lower, , , "been stable"
words.increaseGraph.label, , , "Increasing"
words.increaseGraph.lower, , , "been increasing"
words.decreaseGraph.label, , , "Decreasing"
words.decreaseGraph.lower, , , "been decreasing"
words.cycleGraph.label, , , "Cycling"
words.cycleGraph.lower, , , "been cycling"
words.stressed, , , "Stressed"
words.masculineNoun, , , "The"
words.feminineNoun, , , "The"
words.masculineNoun.plural, , , "The"
words.feminineNoun.plural, , , "The"
words.articles.of, , , "of"
words.articles.by, , , "by"
words.articles.por, , , "by"
fact.whenStressed.label, , , "When Stressed"
fact.behavior.header, , , "Behavior Report"
fact.state.header, , , "Environmental Tolerance Report"
fact.population.header, , , "Population Report"
fact.populationHistory.header, , , "Historical Population Report"
fact.waterChem.header, , , "Water Chemistry Report"
fact.waterChemHistory.header, , , "Historical Water Chemistry Report"
fact.visualModel.header, , , "Visual Model Report"
fact.descriptiveModel.header, , , "Descriptive Model Report"
fact.predictionModel.header, , , "Predictive Model Report"
fact.interveneModel.header, , , "Intervention Model Report"
fact.encrypted.header, , , "Encrypted Data\n<alpha=#AA>{0}"
fact.encrypted.description, , , "This information requires a {h}private key{/h} to decode.\n<margin-left=1.5em><alpha=#AA>{0}"
factFormat.eat, , , "{critter-name}{0}{/critter-name} eats {critter-name}{1}{/critter-name}."
factFormat.eat.rate, , , "{critter-name}{0}{/critter-name} eats {1} {critter-name}{2}{/critter-name}."
factFormat.eat.stressed, , , "{critter-name}{0}{/critter-name} eats {critter-name}{1}{/critter-name} when stressed."
factFormat.eat.stressed.rate, , , "{critter-name}{0}{/critter-name} eats {1} {critter-name}{2}{/critter-name} when stressed."
factFormat.catch, , , "{critter-name}{0}{/critter-name} catches {1} {critter-name}{2}{/critter-name}."
factFormat.catch.disabled, , , "{critter-name}{0}{/critter-name} does not catch {critter-name}{1}{/critter-name}."
factFormat.stresses, , , "{critter-name}{0}{/critter-name} stresses {critter-name}{1}{critter-name}."
factFormat.stresses.rate, , , "{critter-name}{0}{/critter-name} stresses {1} {critter-name}{2}{critter-name}."
factFormat.produce, , , "{critter-name}{0}{/critter-name} produces {1} {property-name}{2}{/property-name}."
factFormat.produce.stressed, , , "{critter-name}{0}{/critter-name} produces {1} {property-name}{2}{/property-name} when stressed."
factFormat.consume, , , "{critter-name}{0}{/critter-name} consumes {1} {property-name}{2}{/property-name}."
factFormat.consume.stressed, , , "{critter-name}{0}{/critter-name} consumes {1} {property-name}{2}{/property-name} when stressed."
factFormat.reduce, , , "{critter-name}{0}{/critter-name} reduces {property-name}{2}{/property-name} by {1}."
factFormat.reduce.stressed, , , "{critter-name}{0}{/critter-name} reduces {property-name}{2}{/property-name} by {1} when stressed."
factFormat.reproduce, , , "{critter-name}{0}{/critter-name} reproduces by {1}."
factFormat.reproduce.disabled, , , "{critter-name}{0}{/critter-name} does not reproduce."
factFormat.reproduce.stressed, , , "{critter-name}{0}{/critter-name} reproduces by {1} when stressed."
factFormat.reproduce.stressed.disabled, , , "{critter-name}{0}{/critter-name} does not reproduce when stressed."
factFormat.grow, , , "{critter-name}{0}{/critter-name} grows by {1}."
factFormat.grow.stressed, , , "{critter-name}{0}{/critter-name} grows by {1} when stressed."
factFormat.population, , , "There are approximately {0} {critter-name}{1}{/critter-name} at {env-name}{2}{/env-name}."
factFormat.population.herd, , , "There are approximately {0} {critter-name}{1}{/critter-name} at {env-name}{2}{/env-name}."
factFormat.populationHistory, , , "The {critter-name}{0}{/critter-name} population at {env-name}{1}{/env-name} has {2} over the past {3} years."
inv.cash.name, , , "Credit"
inv.cash.name.plural, , , "Credits"
inv.cash.description, , , "Common currency. Most merchants will accept this."
inv.exp.name, , , "Science Point"
inv.exp.name.plural, , , "Science Points"
inv.exp.description, , , "Measurement of progress in the wider scientific community."
inv.stressTank.name, , , "Stress Tank"
inv.stressTank.description, , , "Experimentation tank. Allows you to learn the ideal ranges for an organism's survival."
inv.measurementTank.name, , , "Measurement Tank"
inv.measurementTank.description, , , "Experimentation tank. Allows you to learn the rates at which organisms interact with their environment and each other."
inv.measurementTankStabilizerToggle.name, , , "Stabilizer Controls"
inv.measurementTankStabilizerToggle.description, , , "Stabilizer controls for the Measurement Tank. Allows you to toggle the water stabilizer on the Measurement Tank."
inv.scanner.name, , , "Scan Mode"
inv.scanner.description, , , "Submarine tool. Allows you to scan your environment to identify organisms and obtain information."
inv.tagger.name, , , "Population Count Mode"
inv.tagger.description, , , "Submarine tool. Allows you to count up individual organisms to learn their current population levels."
inv.microscope.name, , , "Microscope"
inv.microscope.description, , , "Submarine tool. Allows you to view microscopic entities while in a dive site."
inv.probeHacker.name, , , "Probe Decryptor"
inv.probeHacker.description, , , "Tool upgrade. Allows you to scan probes to obtain historical information about dive sites."
inv.waterChemistry.name, , , "Water Chemistry Decoder"
inv.waterChemistry.description, , , "Tool upgrade. Allows you to view water chemistry data in modeling."
inv.hull.name, , , "Pressure Hull"
inv.hull.description, , , "Submarine upgrade. Thick armor that protects the submarine from the depths."
inv.engine.name, , , "Boost Engine"
inv.engine.description, , , "Submarine upgrade. A more powerful engine that allows the submarine to travel through difficult currents."
inv.iceBreaker.name, , , "Ice Breaker"
inv.iceBreaker.description, , , "Submarine tool. Generates strong localized electrical fields to shatter ice."
inv.propGuard.name, , , "Propeller Guard"
inv.propGuard.description, , , "Submarine upgrade. A metal shell that prevents damage to the propeller."
inv.flashlight.name, , , "Flashlight"
inv.flashlight.description, , , "Submarine tool. Illuminates your surroundings."
inv.autoFeeder.name, , , "Auto Feeder"
inv.autoFeeder.description, , , "Auto Feeder controls for the Measurement Tank. Allows you to toggle automatic feeding of organisms."
inv.observationTank.name, , , "Observation Tank"
inv.observationTank.description, , , "Experimentation tank. Allows you to learn how various organisms interact with each other."
inv.visualModel.name, , , "Visual Modeling"
inv.visualModel.description, , , "Modeling tool. Create a visual representation of how various organisms interact with each other in their ecosystem."
inv.predictionModel.name, , , "Numerical Modeling"
inv.predictionModel.description, , , "Modeling tool. Allows you to model the historical state of an ecosystem, as well as predict the future state of an ecosystem based on its current trends."
inv.interveneModel.name, , , "Intervention Modeling"
inv.interveneModel.description, , , "Modeling tool. Predict an ecosystem's future success if certain changes are made to it."
shop.soldOut.tag, , , "Purchased"
shop.category.exploration, , , "Exploration"
shop.category.science, , , "Science"
shop.subcategory.observation, , , "Observation"
shop.subcategory.navigation, , , "Navigation"
shop.locked, , , "Locked"
shop.purchased, , , "Purchased"
shop.subcategory.experimentation, , , "Experimentation"
shop.subcategory.modeling, , , "Modeling"
map.ship.name, , , "{player-name}'s Ship"
map.experimentation.name, , , "Experiment Lab"
map.modeling.name, , , "Modeling Lab"
map.kelpStation.name, , , "Great Channel Kelp Forest"
map.kelpStation.name.short, , , "Kelp Forest"
map.kelpStation.name.header, , , "Station 1"
map.coralStation.name, , , "Coral Reef Research Station"
map.coralStation.name.short, , , "Coral Reef"
map.coralStation.name.header, , , "Station 2"
map.arcticStation.name, , , "Arctic Research Station"
map.arcticStation.name.short, , , "Arctic"
map.arcticStation.name.header, , , "Station 4"
map.bayouStation.name, , , "Bayou Research Station"
map.bayouStation.name.short, , , "Bayou"
map.bayouStation.name.header, , , "Station 3"
map.finalStation.name, , , "The Lower Depths"
map.rs-1a.name, , , "Site A: Rodeo Cove"
map.rs-1b.name, , , "Site B: Cliffside Oasis"
map.rs-1c.name, , , "Site C: Forested Lagoon"
map.rs-1d.name, , , "Site D: Mer's Horizon"
map.rs-2r.name, , , "Site R: Briny Beach"
map.rs-2v.name, , , "Site V: Serenity Meadow"
map.rs-2t.name, , , "Site T: Unknown"
map.rs-2s.name, , , "Site S: Restoration Reef"
map.rs-3n.name, , , "Site N: Ignis Collis Deeps"
map.rs-3o.name, , , "Site O: ERC Industries Rig"
map.rs-3p.name, , , "Site P: Trawling Bay"
map.rs-4w.name, , , "Site W: White Point"
map.rs-4x.name, , , "Site X: Río Hielo"
map.rs-4y.name, , , "Site Y: Ephemeral Impasse"
map.rs-4z.name, , , "Site Z: Frosted Sea"
map.ship.name.short, , , "Ship"
map.rs-1a.shortName, , , "Site A"
map.rs-1b.shortName, , , "Site B"
map.rs-1c.shortName, , , "Site C"
map.rs-1d.shortName, , , "Site D"
map.rs-2r.shortName, , , "Site R"
map.rs-2s.shortName, , , "Site S"
map.rs-2t.shortName, , , "Site T"
map.rs-2v.shortName, , , "Site V"
map.rs-3n.shortName, , , "Site N"
map.rs-3o.shortName, , , "Site O"
map.rs-3p.shortName, , , "Site P"
map.rs-4w.shortName, , , "Site W"
map.rs-4x.shortName, , , "Site X"
map.rs-4y.shortName, , , "Site Y"
map.rs-4z.shortName, , , "Site Z"
map.rs-0.name, , , "Site <sprite name=chl>: The Lower Depths"
map.rs-0.shortName, , , "Site <sprite name=chl>"
map.finalStation.name.short, , , "Lower Depths"
map.finalStation.name.header, , , "Station <sprite name=chl>"
map.rs-coral-interi.name, , , "Coral Research Station"
map.rs-kelp.name, , , "Kelp Research Station"
map.rs-bayou.name, , , "Bayou Research Station"
map.rs-arctic.name, , , "Arctic Research Station"
map.rs-1c-interior.name, , , "Kelp Station Interior"
map.rs-1c-interior.shortName, , , "Kelp Station Interior"
map.rs-1c-tut.name, , , "Dive Site C - Tutorial"
map.rs-1c-tut.shortName, , , "Site C (Tutorial)"
map.cabin.name.short, , , "Cabin"
map.cabin.name, , , "{player-name}'s Cabin"
map.kelpStation.desc, , , "The Great Channel Kelp Forest is a diverse area of many species of vegetation, and home to your family of kelp researchers."
map.coralStation.desc, , , "The rainbow reefs of coral, home to many diverse species including some troublesome invaders that have recently begun to compete for resources..."
map.bayouStation.desc, , , "The marshy bayou has adapted atop of massive oil rigs that rise from the depths of the thermal vents in the area."
map.arcticStation.desc, , , "The frigid arctic, where researchers explore the movements of bowhead whales and the resilient creatures of the frozen depths."
map.rs-1a.properName, , , "Rodeo Cove"
map.rs-1b.properName, , , "Cliffside Oasis"
map.rs-1c.properName, , , "Forested Lagoon"
map.rs-1d.properName, , , "Mer's Horizon"
map.rs-2r.properName, , , "Briny Beach"
map.rs-2s.properName, , , "Restoration Reef"
map.rs-2v.properName, , , "Serenity Meadow"
map.rs-3n.properName, , , "Ignis Collis Deeps"
map.rs-3o.properName, , , "ERC Industries Rig"
map.rs-3p.properName, , , "Trawling Bay"
map.rs-4w.properName, , , "White Point"
map.rs-4x.properName, , , "Río Hielo"
map.rs-4y.properName, , , "Ephemeral Impasse"
map.rs-4z.properName, , , "Frosted Sea"
map.rs-0.properName, , , "The Lower Depths"
map.unlock.shipRoom.header, , , "New Ship Room Unlocked!"
map.unlock.shipFeature.header, , , "New Ship Feature Unlocked!"
map.unlock.worldMap.desc, , , "You can now visit the World Map from the helm!"
map.unlock.stations.header, , , "New Stations Unlocked!"
map.unlock.stations.desc, , , "You can now visit new stations from your World Map!"
map.unlock.finalStation.header, , , "New Station Unlocked!"
map.unlock.finalStation.desc, , , "You can now visit {nameof FinalStation} from your World Map!"
world.rs-3o.cannotDive, , , "<size=80%>High Pressure Area"
modeling.tab.ecosystem, , , "Ecosystem"
modeling.tab.concept, , , "Visualize"
modeling.tab.sync, , , "Describe"
modeling.tab.predict, , , "Predict"
modeling.tab.intervene, , , "Intervene"
modeling.importing.organisms, , , "Importing Organisms..."
modeling.importing.facts, , , "Importing Behaviors..."
modeling.importing.historical, , , "Importing Environmental Data..."
modeling.importing.completed, , , "Import Completed."
modeling.importing.tolerances, , , "Importing Tolerances..."
modeling.importing.starting, , , "Processing Import..."
modeling.syncRegion.label, , , "Last {0} Years"
modeling.predictRegion.label, , , "Next {0} Years"
modeling.accuracy.label, , , "Model Accuracy"
modeling.newConceptualModel.header, , , "New Visualization Model"
modeling.newSyncModel.header, , , "New Descriptive Model"
modeling.newPredictModel.header, , , "New Predictive Model"
modeling.newInterveneModel.header, , , "New Intervention Model"
modeling.simulateButton, , , "Simulate"
modeling.predictButton, , , "Run Prediction"
modeling.interveneResetButton, , , "Reset"
modeling.interveneButton, , , "Run Intervention"
modeling.interveneAddButton, , , "Introduce New Organism"
modeling.missing.default, , , "Missing Data"
modeling.missing.organisms, , , "Missing Organisms"
modeling.missing.behaviors, , , "Missing Behaviors"
modeling.missing.historicalPopulations, , , "Missing Historical Populations"
modeling.missing.historicalWaterChem, , , "Missing Historical Environmental Data"
modeling.missing.historicalPopulationsAndWaterChem, , , "Missing Historical Populations and Water Chemistry"
modeling.missing.reproduction, , , "Reproduction Rate is Missing"
modeling.missing.reproduction.stressed, , , "Stressed Reproduction Rate is Missing"
modeling.missing.eat, , , "Eating Relationship is Missing"
modeling.missing.eat.stressed, , , "Stressed Eating Relationship is Missing"
modeling.missing.chem, , , "Environmental Interaction is Missing"
modeling.missing.chem.stressed, , , "Stressed Environmental Interaction is Missing"
modeling.missing.parasite, , , "Parasitic Relationship Missing"
modeling.missing.populationHistory, , , "Historical Population Missing"
modeling.missing.waterChemHistory, , , "Historical Environment Data Missing"
modeling.missing.stressRange, , , "Environmental Tolerances Missing"
modeling.noSyncPopup.header, , , "Low Accuracy"
modeling.noSyncPopup.description, , , "Your model cannot accurately describe the historical data. You may be missing:\n* Behaviors\n* Reproduction rate measurements\n* Environmental tolerances\n* Rate measurements when organisms are under stress"
modeling.noIntervenePopup.header, , , "Intervention Target not reached"
modeling.noIntervenePopup.description, , , "The projected population for this species is not within the target zone. Try:\n\n* Adjusting the population of introduced species\n* Adjusting the population of predators\n* Adjusting the population of food sources"
modeling.jobMode.label, , , "Active Job at Ecosystem"
modeling.wrongJobMode.label, , , "Ecosystem Unrelated to Active Job"
modeling.noJobMode.label, , , "No Active Job"
modeling.saveToAQOSButton, , , "Save Model to AQOS"
modeling.importFactsButton, , , "Import New Facts"
modeling.status.readyForImport, , , "New Facts Available to Import"
modeling.status.readyForExport, , , "Model Ready to Save to AQOS"
modeling.filter.header, , , "Filters"
modeling.filter.behavior, , , "Behaviors:"
modeling.filter.eats, , , "Eats"
modeling.filter.repro, , , "Reproduces"
modeling.filter.parasite, , , "Stresses"
modeling.filter.waterChem, , , "Water Chemistry:"
modeling.filter.o2co2, , , "O2/CO2"
modeling.intervene.target, , , "Intervention Target"
modeling.syncView.simulate, , , "Simulation"
modeling.syncView.evaluate, , , "Evaluation"
modeling.divergence.missingRepro, , , "Reproduction"
modeling.divergence.missingPredatorStress, , , "Stress rules on predators"
modeling.divergence.header, , , "Population Deviation Detected"
modeling.divergence.lower, , , "A <u>lower</u> population value means we are missing one or more of the following behaviors:"
modeling.divergence.higher, , , "A <u>higher</u> population value means we are missing one or more of the following behaviors:"
modeling.divergence.missingStress, , , "Stress behaviors"
modeling.divergence.missingPredatorRepro, , , "Predator Reproduction behaviors"
modeling.divergence.notEnoughPredators, , , "Not Enough Predators"
models.kelpStation.coolKelpForest.name, , , "Rodeo Cove Prediction"
models.kelpStation.coolKelpForest.description, , , "{critter-name}Bull Kelp{/critter-name} can still survive in {env-name}Site A{/env-name}."
models.kelpStation.urchinBarrenOtters.name, , , "Cliffside Oasis with Otters Model"
models.kelpStation.urchinBarrenOtters.description, , , "{env-name}Cliffside Oasis{/env-name} can be revived by adding {critter-name}Sea Otters{/critter-name}, who will eat the {critter-name}Urchins{/critter-name}."
models.kelpStation.urchinBarren.name, , , "Cliffside Oasis Prediction"
models.kelpStation.urchinBarren.description, , , "The {env-name}Cliffside Oasis{/env-name} Kelp population will remain low."
models.coralStation.sargLightPrediction.name, , , "Sargassum Covered Reef Light Predition"
models.coralStation.sargLightPrediction.description, , , "{critter-name}Sargassum{/critter-name} has been lowering the light levels in {env-name}Site R{/env-name}, causing {critter-name}Staghorn Coral{/critter-name} to become stressed."
models.coralStation.grouperFishingRate.name, , , "Red Grouper population prediction from number of Fishers."
models.coralStation.grouperFishingRate.description, , , "The {nameof RedGrouper} population can be safely sustained by significantly reducing the number of fishers."
models.bayouStation.deadZoneOxygen.name, , , "Oxygen Tracking Model in the Trawling Bay"
models.bayouStation.deadZoneOxygen.description, , , "{h}Cyanobacteria{/h} produces oxygen; {h}Decomposing Bacteria{/h} and {h}White Shrimp{/h} consume oxygen"
models.arcticStation.whaleFallStages.name, , , "Whale Fall Stages"
models.arcticStation.whaleFallStages.description, , , "Stage 1: Only free moving scavengers consume the whale's tissue\nStage 2: Zombie Worms and scavengers are present\nStage 3: Only {critter-name}Zombie Worms{/critter-name} are present"
models.arcticStation.whaleFallStages.sentence, , , "This model correlates the stages of whale fall to the presence of certain creatures."
models.kelpStation.energy.description, , , "{pluralnameof SeaOtter} eat {pluralnameof Urchin}, and {pluralnameof Urchin} eat {pluralnameof GiantKelp}."
models.coralStation.urchinFoePrediction.description, , , "Urchins will take over the reef and leave no Turf Grass for the other species."
models.coralStation.urchinFoePredication.name, , , "Urchin Takeover"
models.kelpStation.warmKelpForest.description, , , "{pluralnameof SeaOtter} eat {pluralnameof Urchin}, and {pluralnameof Urchin} eat {pluralnameof GiantKelp}."
models.urchinbarrensync.description, , , "The Giant Kelp here was overrun with Urchin."
models.kelpStation.urchinbarrensync.description, , , "The Giant Kelp here was all eaten by the urchins."
models.kelpforest.urchinbarrensync.description, , , "The Giant Kelp here was all eaten by the urchins."
models.coralStation.reefEdge.turtleVisual, , , "{pluralnameof LoggerheadTurtle} eat {pluralnameof QueenConch}, {pluralnameof Copepod}, and {pluralnameof WhiteShrimp}"
models.kelpStation.urchinBarren.sync, , , "{nameof Urchin} eating rates for {pluralnameof GiantKelp} line up with the historical data for Site B."
models.coralStation.grouperConcept, , , "{pluralnameof Fishers} are harvesting {pluralnameof RedGrouper}."
models.coralStation.grouperReproduction, , , "{pluralnameof Fishers} are harvesting {pluralnameof RedGrouper} too quickly for the groupers to reproduce."
models.coralStation.sargLightConcept, , , "{nameof Sargassum} consumes light in the {nameof SargassumCoveredReef}."
models.coralStation.SiteRPred, , , "The {nameof SargassumCoveredReef} will continue to lose {nameof StaghornCoral} as long as {nameof Sargassum} population continues to grow."
models.kelpforest.urchinbarrenvisual.description, , , "The Cliffside Oasis food web has only two species commonly found in a kelp forest: giant kelp and urchins."
models.kelpForest.mixedKelpForest.RefugeConcept.sentenceid, , , "Both kelp species rely on light, but they don't seem to directly interact."
models.kelpStation.mixedkelpconcept.description, , , "It looks like the Bull Kelp and Giant Kelp don't directly interact with each other."
models.kelpStation.mixedKelpFail.description, , , "The light levels were decreasing and began to stress the Bull Kelp, which caused them to reproduce more slowly"
models.kelpStation.mixedKelpFail.header, , , "Mer's Horizon Descriptive Model"
models.kelpStation.mixedKelpFailPredict.header, , , "Mer's Horizon Refuge Predictive Model"
models.kelpStation.mixedKelpFailPredict.description, , , "It looks like the kelp will still struggle for a while."
models.kelpStation.mixedKelpFailViz.header, , , "Mer's Horizon Interactions Visual Model"
models.bayouStation.tDHighAccuracyDescribedesc, , , "The ERC Industries Rig Reef is pretty connected to the turtles. This is the most accurate descriptive model so far."
models.kelpstation.tDHighAccuracyDescribeHeader, , , "Super Accurate ERC Industries Rig Model"
models.bayouStation.tDHighAccuracyViz, , , "Super Accurate Visual Model"
models.bayouStation.tDHighAccuracyVizDesc, , , "This seems to represent all of the possible behaviors in the system."
models.bayouStation.turtleNoReefIntervene, , , "Modelling Reef Removal"
models.bayouStation.turtleNoReefInterveneDesc, , , "The turtle populations do not change when the reef species that depend on the rig are removed."
models.O_OilRig.turtleDanger.header, , , "Descriptive Validated Model of the species found at Site O"
models.O_OilRig.turtleDanger.description, , , "The populations for species at Site O are stable, with a slight increase over time"
models.O_OilRig.turtleDanger.visual.header, , , "Loggerhead Turtle Food Web at Site O"
models.O_OilRig.turtleDanger.visual.description, , , "The turtles eat several species, but don't have any predators."
models.X_UnderTheIce.Model.StationaryViz.Head, , , "Site X Visual Model"
models.X_UnderTheIce.Model.StationaryViz.Desc, , , "The species here all rely on detritus for energy."
models.X_UnderTheIce.Model.StationaryViz.Sent, , , "Site X must be getting detritus from somewhere. These species all survive off it."
models.arctic.whalefall.description, , , "The relationships between organisms at the whale fall."
models.arcticStation.whaleFall.description, , , "The relationships between organisms at the whale fall."
models.arcticStation.whaleFall.name, , , "Yummy Whale Fall"
models.coralStation.muchAlgaeDescriptive, , , "The Tang aren't eating enough algae to make the model align with the historical populations"
models.coralStation.muchAlgaeVisual, , , "The only species eating {nameof TurfAlgae} is the {nameof BlueTang}"
models.bayouStation.turtleNoReefPredict, , , "Modelling Reef Prediction"
models.bayouStation.turtleNoReefPredictDesc, , , "The turtle populations stay within a normal range based on their current food web"
models.O_OilRig.turtleDangerJellies.predict.header, , , "Prediction Model of Loggerhead and Moon Jellies"
models.O_OilRig.turtleDangerJellies.predict.desc, , , "Loggerhead populations will remain steady due to their ability to eat Moon Jellies"
models.O_OilRig.turtleDangerJellies.visual.header, , , "Site O Food Web with Moon Jellies"
models.O_OilRig.turtleDangerJellies.visual.desc, , , "Loggerhead Turtles also eat Moon Jellies"
models.O_OilRig.turtleDangerJellies.describe.header, , , "Descriptive Model of Site O with Moon Jellies"
models.O_OilRig.turtleDangerJellies.describe.desc, , , "A model of how Loggerhead Turtles respond to the presence of the reef"
models.O_OilRig.displacedReef.visual.header, , , "Displaced Reef"
models.O_OilRig.displacedReef.visual.description, , , "The many creatures of the Displaced Reef"
models.coralStation.reefEdge.plasticsVisual, , , "{pluralnameof LoggerheadTurtle} eat {pluralnameof QueenConch}, {pluralnameof Copepod}, {pluralnameof WhiteShrimp}, and {pluralnameof PlasticBag}"
models.n_thermalVent.altEnergy.description, , , "Energy in the {h}Site N{/h} ecosystem seems to come from both {h}Hydrogen{h} and {h}Detritus{/h}"
models.n_thermalVent.name, , , "Ignis Collis Deeps Species Interactions"
models.arcticStation.SalmonCompetition.Viz, , , "Site Z Visual Model"
models.arcticStation.SalmonCompetition.VizDesc, , , "A Visual Model of {nameof ChinookSalmon} and {nameof ArcticCod} resource competition"
models.arcticStation.SalmonCompetition.Sync, , , "Site Z Numerical Model"
models.arcticStation.SalmonCompetition.SyncDesc, , , "A Numerical Model of {nameof ChinookSalmon} and {nameof ArcticCod} resource competition"
models.whalefallStages.header, , , "Whalefall Stages"
models.arcticStation.above-n-below.visual.header, , , "Visual Model of Ribbon Seal Interactions at {fullnameof RS-4Y}"
models.arcticStation.above-n-below.visual.desc, , , "Ribbon Seals interact with {nameof ArcticCod}"
models.arcticStation.endangered-seals.header, , , "[Endangered Seals Header]"
models.arcticStation.endangered-seals.desc, , , "[Endangered Seals Description]"
models.arcticStation.endangered-seals.describe.header, , , "Numerical Model of {fullnameof RS-4Y}"
models.arcticStation.endangered-seals.describe.desc, , , "{nameof RibbonSeal} populations have slightly increased over a short time frame"
models.arcticStation.endangered-seals.predict.header, , , "Prediction Model of {fullnameof RS-4Y}"
models.arcticStation.endangered-seals.visual.header, , , "Visual Model at {fullnameof RS-4Y}"
models.arcticStation.endangered-seals.visual.desc, , , "All interactions at {fullnameof RS-4Y}"
models.coralStation.huntingLionsVisual.header, , , "Visual Model at {nameof RS-2S}"
models.coralStation.huntingLionsVisual.desc, , , "Numerous species interact at {nameof RS-2S}"
models.coralStation.huntingLionsPredict.header, , , "Prediction Model of {nameof RS-2S}"
models.coralStation.huntingLionsPredict.desc, , , "{nameof StaghornCoral} populations will continue to struggle under current conditions"
models.coralStation.huntingLionsIntervene.desc, , , "Increasing the number of fishers should improve coral populations"
models.coralStation.huntingLionsIntervene.header, , , "Intervention Model of {nameof RS-2S}"
models.coralStation.huntingLionsDescriptive.header, , , "Numerical Model of {nameof RS-2S}"
models.coralStation.huntingLionsDescriptive.desc, , , "{nameof Lionfish} have disrupted the ecosystem at {nameof RS-2S}. Various populations have been affected, including the {nameof StaghornCoral}"
models.arcticStation.endangered-seals.predict.desc, , , "{nameof RibbonSeal} populations are projected to increase in the future"
models.coralStation.ickStressVisual.desc, , , "{nameof Ick} affects species at {nameof RS-2S}, including {nameof BlueTang}"
models.coralStation.ickStressVisual.header, , , "Visual Model of {nameof RS-2S} including Ick"
models.coralStation.ickStressDescribe.header, , , "Numerical Model of {nameof RS-2S} including Ick"
models.coralStation.ickStressDescribe.desc, , , "{nameof Ick} has caused {nameof BlueTang} populations to struggle"
models.bayouStation.shrimptastrophe.sync.description, , , "A chain of events that starts with a spike in {h}Cyanobacteria{/h} and ends with high populations of {h}Decomposing Bacteria{/h} and low populations of {h}White Shrimp{/h}"
models.bayouStation.shrimptastrophe.visual.description, , , "A view of the {nameof RS-3P} food ecosystem"
models.finalStation.final.header, , , "Visual model of {nameof RS-0}"
models.finalStation.final.description, , , "The attacker consumes organisms with white light and avoids red light organisms"
models.coralStation.muchAlgaeVisual.head, , , "Site S Visual Model"
models.coralStation.muchAlgaeDescriptive.header, , , "Numerical Model of {nameof RS-2S}"
models.coralStation.muchAlgaeDescriptive.desc, , , "{nameof BlueTang} are consuming less {nameof TurfAlgae} than expected"
jobs.kelp-welcome.name, , , "Welcome to the {nameof RS-1C}"
jobs.kelp-welcome.desc, , , "Identify the species in {fullnameof RS-1C} and use your onboard lab to learn more about the food web there."
jobs.kelp-welcome.task.gotoSiteC, , , "Take the sub out into the {nameof RS-1C}"
jobs.kelp-welcome.task.scanGiantKelp, , , "Scan Giant Kelp"
jobs.kelp-welcome.task.scanUrchin, , , "Scan an Urchin"
jobs.kelp-welcome.task.scanOtter, , , "Scan a Sea Otter"
jobs.kelp-welcome.task.collectWarmKelpForrest, , , "Collect Data from the Probe"
jobs.kelp-welcome.task.returnToShip, , , "Take the sub to the surface to board the {m}helm{/m} of your ship"
jobs.kelp-welcome.task.runExperiment, , , "Use the {nameof Experimentation} to find interactions between species"
jobs.kelp-welcome.task.reportBack, , , "Report Back to {nameof @drKelp} at the {nameof RS-Kelp}"
jobs.kelp-welcome.argue.claimLabel, , , "What is the food web between Kelp, Urchins, and Otters at {h}Site C{/h}?"
jobs.kelp-bull-kelp-forest.name, , , "Exploring a new Kelp Forest at {fullnameof RS-1A}"
jobs.kelp-bull-kelp-forest.desc, , , "Now that you know the basics of scanning for species and observing their behaviors, I need you to explore the ecosystem at {fullnameof RS-1A}"
jobs.kelp-bull-kelp-forest.task.siteA, , , "Scan the {h}Bull kelp{/h} at {nameof RS-1A}"
jobs.kelp-bull-kelp-forest.task.foodweb, , , "Use the {nameof Experimentation} to determine the {nameof RS-1A} food web"
jobs.kelp-bull-kelp-forest.task.reportBack, , , "Report back to {nameof @drKelp} at the {nameof RS-Kelp}"
jobs.kelp-bull-kelp-forest.argue.claimLabel, , , "What eats Bull Kelp?"
jobs.kelp-urchin-barren.name, , , "Predicting the Future of Site B"
jobs.kelp-urchin-barren.desc, , , "The urchins are taking over {h}Cliffside Oasis{/h} at {h}Site B{/h}, turning it into what we call an Urchin Barren. I need you to use the modeling tool to determine the likely fate of the ecosystem there."
jobs.kelp-urchin-barren.task.gotoSiteB, , , "Travel to {h}Site B{/h}"
jobs.kelp-urchin-barren.task.getTagged, , , "Collect population data from the {h}Site B{/h} Organisms"
jobs.kelp-urchin-barren.task.getProbeData, , , "Collect data from the {h}Site B{/h} Research Probe"
jobs.kelp-urchin-barren.task.predictSiteB, , , "Build a Model to Predict the future for {h}Site B{/h}"
jobs.kelp-urchin-barren.task.reportBack, , , "Report back with your prediction"
jobs.kelp-urchin-barren.argue.claimLabel, , , "What is causing the population of Giant Kelp at {h}Site B{/h} to decrease?"
jobs.kelp-save-urchin-barren.name, , , "Saving Cliffside Oasis"
jobs.kelp-save-urchin-barren.desc, , , "Let's use everything you have learned so far to save Cliffside Oasis. Use the model you made to try out potential interventions and simulate the long term outcomes. Tell me if you find any potential solutions for restoring {h}Site B{/h}."
jobs.kelp-save-urchin-barren.task.makeAPlan, , , "Build a Model to restore the kelp forest at {h}Site B{/h}"
jobs.kelp-save-urchin-barren.task.return, , , "Go to the {nameof RS-Kelp} and tell {nameof @drKelp} what you discovered"
jobs.kelp-save-urchin-barren.argue.claimHopeless, , , "There is no way to save Cliffside Oasis"
jobs.kelp-save-urchin-barren.argue.claimOtters, , , "Site B can be fixed by adding {pluralnameof SeaOtter}!"
jobs.coral-stressed.name, , , "Stressed Coral"
jobs.coral-stressed.desc, , , "Site R is in trouble. We need you to figure out why the Coral are stressed."
jobs.coral-stressed.task.SiteR, , , "Visit {h}Site R{/h} and observe the Coral"
jobs.coral-stressed.task.stressCoral, , , "Use a Stress Tank to determine what's affecting the Staghorn Coral"
jobs.coral-stressed.task.coralLight, , , "Collect historical light data from {h}Site R{/h}"
jobs.coral-stressed.task.reportBack, , , "Tell {nameof @profCoral} what's up with the Staghorn Coral"
jobs.coral-stressed.argue.coralNeedsLightClaim, , , "The coral needs more light."
jobs.coral-stressed.argue.waterIsAcidicClaim, , , "The water is too acidic for the coral."
jobs.coral-stressed.argue.waterIsHotClaim, , , "The temperature is too warm for the coral."
jobs.coral-stressed.argue.sargassumTakesLightClaim, , , "The sargassum is blocking the light."
jobs.coral-casting-shade.name, , , "Casting Shade"
jobs.coral-casting-shade.desc, , , "We need your help figuring out exactly how the Sargassum is hurting the coral at {h}Site R{/h}. You will need to do measurement experiments, then synthesize what you learn into a descriptive model."
jobs.coral-casting-shade.task.popProbe, , , "Acquire Historic Population Data from Probe at {h}Site R{/h}"
jobs.coral-casting-shade.task.sargLight, , , "Measure the environmental impact of the {nameof Sargassum}"
jobs.coral-casting-shade.task.sargModel, , , "Model the impact of the {nameof Sargassum} on the {nameof StaghornCoral}"
jobs.coral-casting-shade.task.sargArgue, , , "Report back to {nameof @profCoral}"
jobs.coral-casting-shade.argue.claimEvidence, , , "Evidence that Sargassum negatively affects Coral:"
jobs.eat-seaweed.name, , , "Eat the Seaweed"
jobs.eat-seaweed.desc, , , "We don't know how Sargassum fits into the food web at {h}Site R{/h}. Find out if anything might eat it up and get it out of here.\nShould the Sargassum be cleared out from the environment?"
jobs.eat-seaweed.task.getScans, , , "Scan organisms at {h}Site R{/h}"
jobs.eat-seaweed.task.urchinSarg, , , "Find an organism that eats Sargassum"
jobs.eat-seaweed.task.urchinSargArgue, , , "Present your findings"
jobs.coral-casting-shade.argue.claimNoRemoval, , , "The Sargassum can stay."
jobs.coral-casting-shade.argue.claimRemoveSarg, , , "We need to remove the Sargassum."
jobs.eat-seaweed.argue.claimLabel, , , "Urchins can clear the Sargassum."
jobs.coral-urchin-friends.name, , , "Will Urchins Fix the Problem?"
jobs.coral-urchin-friends.desc, , , "We heard about how you used modeling and simulation to propose a solution for Cliffside Oasis. What would happen if we introduced Urchins at {h}Site R{/h}?\nAre the Urchins friends or foes?"
jobs.coral-urchin-friends.task.coralUrchinModel, , , "Assess Model of Urchins in {h}Site R{/h}"
jobs.coral-urchin-friends.task.urchinStressed, , , "Find out whether urchins would be stressed in the reef"
jobs.coral-urchin-friends.task.siteRModel, , , "Build a Model to Predict the Future of {h}Site R{/h}"
jobs.coral-urchin-friends.task.present, , , "Present your findings"
jobs.coral-urchin-friends.argue.claimLabelWrong, , , "Urchins should not be added to {h}Site R{/h}"
jobs.coral-urchin-friends.argue.claimLabel, , , "It's fine to add Urchins to {h}Site R{/h}"
jobs.coral-fishy-bizz.name, , , "Fishy Business"
jobs.coral-fishy-bizz.desc, , , "{h}Site V{/h} is a very popular fishing spot for Grouper. We need to set some guidelines for how much Red Grouper can be fished without harming the Grouper. How many fishermen can we allow to fish there at one time?"
jobs.coral-fishy-bizz.task.getScans, , , "Scan Fishers and Grouper at {h}Site V{/h}"
jobs.coral-fishy-bizz.task.getModel, , , "Build a model to determine how many boats can be licensed to fish at one time."
jobs.coral-fishy-bizz.task.reportBack, , , "Report back with your prediction"
jobs.coral-fishy-bizz.argue.claimLabel, , , "We need to significantly reduce the number of Fishers in this area."
jobs.coral-turtle-population.name, , , "Turtle Population"
jobs.coral-turtle-population.desc, , , "We need help monitoring the populations of turtles here at {fullnameof RS-2V}. Can you help us get the current population?"
jobs.coral-turtle-population.task.SiteV, , , "Travel outside to Serenity Meadow at {h}Site V{/h}"
jobs.coral-turtle-population.task.scanTurtle, , , "Find and scan a Loggerhead Turtle"
jobs.coral-turtle-population.task.turtleModel, , , "Count the Turtle population at {h}Site V{/h}: Serenity Meadow"
jobs.coral-turtle-population.task.reportBack, , , "Report back with your findings"
jobs.coral-turtle-population.argue.turtlePopulationClaim, , , "What is the Loggerhead Turtle population at Serenity Meadow?"
jobs.coral-turtle-stability.name, , , "Turtle Stability"
jobs.coral-turtle-stability.task.SiteV, , , "Scan the species at {nameof RS-2V}"
jobs.coral-turtle-stability.task.turtleModel, , , "Make a visual model of the Turtle food web using the {m}Modeling Lab{/m}"
jobs.coral-turtle-stability.task.scanTurtle, , , "Conduct experiments to determine everything that the turtles eat"
jobs.coral-turtle-stability.task.reportBack, , , "Report Back with a Visual Model of the Turtle Food Web"
jobs.coral-turtle-stability.argue.claimLabel, , , "There are multiple food sources for the turtles."
jobs.kelp-energy.name, , , "Energy in the Forested Lagoon System"
jobs.kelp-energy.desc, , , "We want to build a visual model of food energy in the Forested Lagoon."
jobs.kelp-energy.task.model, , , "Use the Modeling Lab to Visualize the food web for the {nameof WarmKelpForest}."
jobs.kelp-energy.argue.claimLabel, , , "Giant Kelp provides the energy in this system."
jobs.kelp-start-refuge.name, , , "Start a Refuge"
jobs.kelp-start-refuge.desc, , , "We need to figure out what conditions would make a good kelp {h}refuge{/h} (a refuge is a rescue area).\nPotential sites for our refuge:\n\n{h}Site 1{/h} - Temp 02°C | Light 60%\n{h}Site 2{/h} - Temp 20°C | Light 100%\n{h}Site 3{/h} - Temp 13°C | Light 100%\n\nWe want to be able to create a stress-free environment where all kinds of kelp can thrive and reproduce."
jobs.kelp-start-refuge.argue.claimLabel, , , "Potential Site 3 is the most suitable location for a Kelp refuge."
jobs.kelp-refuge-failure.name, , , "Refuge Failure"
jobs.kelp-refuge-failure.desc, , , "Our refuge didn't turn out as planned. It seems the Bull Kelp stopped growing. We think it may have something to do with the rate each species reproduces, but need you to figure it out and provide a model."
jobs.kelp-refuge-failure.argue.claimLabelSlow, , , "The Bull Kelp population is reproducing at a slower rate than expected."
jobs.kelp-refuge-failure.argue.claimLabelModel, , , "The Bull Kelp population is reproducing at a slower rate than expected."
jobs.kelp-mussel-fest.name, , , "Mussel Fest"
jobs.kelp-mussel-fest.desc, , , "People think the mussels are funny shaped. What is happening to them?"
jobs.kelp-mussel-fest.argue.claimLabelReasonStress, , , "Provide information about the mussel stress ranges"
jobs.kelp-mussel-fest.argue.claimLabelReasonChemistry, , , "Provide information about the temperature, PH, and light levels at the site"
jobs.kelp-mussel-fest.task.report, , , "Talk with {nameof @drKelp} to figure out what is happening with the mussels"
jobs.kelp-start-refuge.task.getBullKelpStress, , , "Determine stress ranges for bull kelp."
jobs.kelp-start-refuge.task.getGiantKelpStress, , , "Determine stress ranges for giant kelp."
jobs.kelp-start-refuge.task.argueSite, , , "Argue for which site we should use as the refuge."
jobs.kelp-refuge-failure.task.visitSite, , , "Visit the Kelp Refuge at Site D"
jobs.kelp-refuge-failure.task.histPop, , , "Collect Historical Kelp Population Data from Refuge Site"
jobs.kelp-refuge-failure.task.growthRates, , , "Measure the normal and stressed reproduction rates of Giant Kelp"
jobs.kelp-refuge-failure.task.growthRatesBull, , , "Measure the normal and stressed reproduction rates of Bull Kelp"
jobs.kelp-refuge-failure.task.newModel, , , "Model Bull Kelp and Giant Kelp at the Refuge Site"
jobs.kelp-mussel-fest.task.scanMussels, , , "Scan mussels in {h}Site C{/h}"
jobs.kelp-mussel-fest.task.waterData, , , "Get historic water data from {h}Site C{/h}"
jobs.kelp-mussel-fest.task.stressParam, , , "Experiment to determine if something is stressing the mussels"
jobs.coral-turtle-stability.task.goToSite, , , "Travel outside to {h}Site V{/h}: Serenity Meadow"
jobs.coral-casting-shade.task.scanSarg, , , "Scan the {nameof Sargassum} at {h}Site R{/h}"
jobs.coral-casting-shade.task.chemHistory, , , "Acquire Historic Water Chemistry and Light Data from Probe at {h}Site R{/h}"
jobs.coral-casting-shade.task.sargGrowthRate, , , "Measure the reproduction rate of the {nameof Sargassum}"
jobs.coral-casting-shade.task.sargUsesLight, , , "Perform a Measurement Experiment to Determine how Sargassum Blocks Light"
jobs.coral-casting-shade.task.coralGrowthRate, , , "Measure the reproduction rate of the {nameof StaghornCoral}"
jobs.coral-casting-shade.task.coralGrowthStressed, , , "Measure the reproduction rate of the {nameof StaghornCoral} when stressed."
jobs.coral-fishy-bizz.task.rhistoricalPopulations, , , "Collect historical populations from the probe at {h}Site V{/h}"
jobs.kelp-urchin-farm.name, , , "Urchin Farm"
jobs.kelp-urchin-farm.desc, , , "We want to farm urchin. Yes, on purpose. They'll be in cages. Don't worry. I need to know which kelp to feed them. Which do they eat the least of?"
jobs.kelp-urchin-farm.task.urchinEatBull, , , "Measure how quickly Urchins eat Bull Kelp"
jobs.kelp-urchin-farm.task.urchinEatGiant, , , "Measure how quickly Urchins eat Giant Kelp"
jobs.kelp-urchin-farm.task.reportBack, , , "Report your findings in the {nameof RS-Kelp}"
jobs.kelp-urchin-farm.argue.claimEitherWorkLabel, , , "Defend your claim about how quickly Urchins eat different types of Kelp."
jobs.coral-ocean-plastics.name, , , "Ocean Plastics"
jobs.coral-ocean-plastics.desc, , , "You scanned plastic in the Reef! This can't do. What will happen if it makes its way to Serenity Meadow?"
jobs.coral-ocean-plastics.task.whatTurtlesEat, , , "Use the Observation tank to discover everything turtles eat in the reef."
jobs.coral-ocean-plastic.argue.claimLabel1, , , "A critter here at {h}Site V{/h} will be impacted if plastic enters the reef"
jobs.coral-ocean-plastic.argue.claimLabel2, , , "The Staghorn coral will be impacted is plastic enters the reef"
jobs.coral-ocean-plastic.argue.claimLabel3, , , "The Queen conch will be impacted is plastic enters the reef"
jobs.coral-ocean-plastic.argue.claimLabel4, , , "Everything will be impacted is plastic enters the reef"
jobs.coral-ocean-plastics.task.reportBack, , , "Report your findings back to {nameof @profCoral}."
jobs.coral-ocean-plastics.task.copepodReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the Copepod."
jobs.coral-ocean-plastics.task.turtleReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the Loggerhead Turtle."
jobs.coral-ocean-plastics.task.grassReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the Turtle Grass."
jobs.coral-ocean-plastics.task.queenReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the Queen Conch."
jobs.coral-ocean-plastics.task.shrimpReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the White Shrimp."
jobs.kelp-refuge-failure.task.getPaid, , , "Report back to {nameof @drKelp}"
jobs.coral-turtle-stability.desc, , , "We need to know why the turtles are so successful here by creating a food web model of everything they eat."
jobs.kelp-urchin-barren-viz.name, , , "A Cliffside Oasis Visualization"
jobs.kelp-urchin-barren-predict.name, , , "Predicting the Future of Cliffside Oasis"
jobs.kelp-urchin-barren-viz.desc, , , "{fullnameof RS-1B} looks like a doomed ecosystem. If the kelp population goes to zero, nothing will be able to survive there. Is there some new species there that's eating up all the kelp? I need a visual model of the ecosystem to understand it."
jobs.kelp-urchin-barren-predict.desc, , , "The urchins are taking over {h}Cliffside Oasis{/h} at {h}Site B{/h}, turning it into what we call an Urchin Barren. I need you to use the modeling tool to determine the likely fate of the ecosystem there."
jobs.kelp-urchin-barren-viz.task.predictSiteB, , , "Build a visual model of {h}Site B{/h}"
jobs.kelp-urchin-barren-viz.task.reportBack, , , "Report back with your visual model"
jobs.kelp-urchin-barren-viz.task.getProbeData, , , "Scan historical population data from the research probe at {h}Site B{/h}"
jobs.kelp-urchin-barren-viz.task.getTagged, , , "Count all the current populations at {h}Site B{/h}"
jobs.kelp-urchin-barren-viz.task.gotoSiteB, , , "Travel to {h}Site B{/h}"
jobs.kelp-urchin-barren-viz.task.visualSiteB, , , "Build a {h}Visual Model{/h} of Site B"
jobs.kelp-urchin-barren-viz.argue.claimLabel, , , "Present your visual model of {h}Site B{/h}"
jobs.kelp-refuge-failure-simulation.desc, , , "We need to know the extent of the problem so we can decide how much time and resources we want to devote to solving it. What would happen if we let the refuge continue as-is?"
jobs.kelp-refuge-failure-simulation.name, , , "Refuge Failure Simulation"
jobs.kelp-refuge-failure-simulation.task.createModel, , , "Create a Predictive Model of Giant Kelp and Bull Kelp that shows the light decreasing"
jobs.kelp-refuge-failure-simulation.task.shareModel, , , "Share your model containing what would happen if the refuge is left as-is"
jobs.kelp-refuge-failure-simulation.argue.claimLabelStruggle, , , "The Bull Kelp population will gradually decrease."
jobs.kelp-refuge-failure-simulation.argue.claimLabelIncrease, , , "The Bull Kelp population will gradually increase."
jobs.kelp-urchin-barren-predict.task.reportBack, , , "Report back with your prediction"
jobs.kelp-urchin-barren-predict.task.predictSiteB, , , "Build a Model to Predict the future for {h}Site B{/h}"
jobs.kelp-urchin-barren-predict.argue.claimLabel, , , "Share your prediction for the future of {h}Site B{/h}"
jobs.bayou-displaced-reef.name, , , "Displaced Reef"
jobs.bayou-displaced-reef.desc, , , "It started small, but the reef keeps growing here at {fullnameof RS-3O}. How is a reef developing on top of an oil rig!? Can you report back on this?"
jobs.bayou-displaced-reef.task.getScans, , , "Scan the species of {h}Site O{/h}"
jobs.bayou-displaced-reef.task.visitSiteO, , , "Head outside and explore {h}Site O{/h}."
jobs.bayou-displaced-reef.task.getCounts, , , "Count the populations at {h}Site O{/h}"
jobs.bayou-displaced-reef.task.reportBack, , , "Report back to {nameof @profBayou} with your findings"
jobs.bayou-displaced-reef.argue.claimLabel1, , , "Share your population estimates of native species at {h}Site O{/h}"
jobs.bayou-displaced-reef.argue.claimLabel2, , , "Share your population estimates of species that rely on the rig at {h}Site O{/h}"
jobs.bayou-displaced-reef.argue.claimLabel3, , , "Share your population estimates of invasive species at {h}Site O{/h}"
jobs.coral-ocean-plastics.task.speciesReefEdge, , , "Use the Observation tank to discover everything turtles eat."
jobs.coral-ocean-plastics.task.scanReefEdge, , , "Travel to Serenity Meadow at {h}Site V{/h} and scan the organisms there"
jobs.bayou-turtle-danger.name, , , "Turtle Danger"
jobs.bayou-turtle-danger.desc, , , "Is the reef dangerous to the Loggerhead turtles? Are there any new predators?"
jobs.bayou-turtle-danger.task.modelSiteO, , , "Observe which {h}Site O{/h} species Loggerhead Turtles eat"
jobs.bayou-turtle-danger.task.reportBack, , , "Report your findings back to {nameof @profBayou}"
jobs.bayou-turtle-danger.argue.claimLabel1, , , "The turtle populations are safe."
jobs.bayou-turtle-danger.argue.claimLabel2, , , "The turtle populations are not safe."
jobs.bayou-turtle-danger2.name, , , "Turtle Danger (Part 2)"
jobs.bayou-turtle-danger2.desc, , , "How are loggerhead populations responding to the presence of the reef? ""My colleague pointed out that predators aren't the only danger -- competition could also endanger the turtle population."""
jobs.bayou-turtle-danger2.task.reportBack, , , "Bring your validated model back to {nameof @profBayou}"
jobs.bayou-turtle-danger2.task.historicalData, , , "Get historical population data for the species at {h}Site O{/h}"
jobs.bayou-turtle-danger2.task.measureSiteO, , , "Use your measurement tank to collect data for a Sync model of {h}Site O{/h}"
jobs.bayou-turtle-danger2.task.syncModel, , , "Use Experiments and the Modeling Tool to create a model that matches {h}Site O{/h}'s population data"
jobs.bayou-turtle-danger.task.visualModelO, , , "Create a visual model of the food web at {h}Site O{/h}"
jobs.bayou-turtle-danger2.argue.claimLabel, , , "Turtle populations are stable."
jobs.bayou-reef-decision.name, , , "Reef Decision"
jobs.bayou-reef-decision.desc, , , "We would like to see what would happen to turtle populations if the reef were removed."
jobs.bayou-reef-decision.task.reportBack, , , "Report your findings back to {nameof @profBayou}"
jobs.bayou-reef-decision.task.intervene, , , "Create an intervention model you can use to argue whether or not we should remove the rig from the reef."
jobs.bayou-reef-decision.argue.claimLabel1, , , "The rig should be removed from the reef."
jobs.bayou-reef-decision.argue.claimLabel2, , , "The rig should be left to remain in the reef."
jobs.bayou-hide-n-seek.task.reportBack, , , "Report back to {nameof @profBayou} with your findings"
jobs.bayou-hide-n-seek.task.jellyScan, , , "Head back out to {h}Site O{/h} and scan around to find the elusive jellyfish."
jobs.bayou-hide-n-seek.task.jellyObservation, , , "Observe whether Loggerhead Turtles interact with Moon Jellies."
jobs.bayou-hide-n-seek.task.jellyRates, , , "Use your {item}measurement tank{/item} to find the rates at which {pluralnameof LoggerheadTurtle} eat {pluralnameof MoonJelly}"
jobs.bayou-hide-n-seek.task.jellyPredict, , , "Create a prediction model of your findings for the jellyfish."
jobs.bayou-hide-n-seek.name, , , "Hide 'n Seek"
jobs.bayou-hide-n-seek.desc, , , "We want to see what might happen in the future for the turtles, and we need to make sure we're not missing anything."
jobs.bayou-hide-n-seek.argue.claimLabel1, , , "The turtle population will remain stable"
jobs.bayou-hide-n-seek.argue.claimLabel2, , , "The turtle population will start increasing"
jobs.bayou-hide-n-seek.argue.claimLabel3, , , "The turtle population will begin to decrease"
jobs.coral-lionfish-conspiracy.name, , , "Lionfish Conspiracy"
jobs.coral-lionfish-conspiracy.desc, , , "Why is no one talking about the lionfish? There's a reason they prefer the reef ecosystem. They must be interacting with the coral. What do they do?!"
jobs.lionfish-conspiracy.task.scanNew, , , "Scan any new organisms at {h}Site S{/h}"
jobs.lionfish-conspiracy.task.observeInteractions, , , "Determine the food sources of {nameof Lionfish}"
jobs.lionfish-conspiracy.task.arguePredator, , , "Report findings to {nameof profCoral}"
jobs.coral-lionfish-conspiracy.argue.claimEvidence, , , "Lionfish are predators that eat other fish"
jobs.coral-hunting-lions.name, , , "Hunting Lions"
jobs.coral-hunting-lions.desc, , , "Fisher interest in hunting {nameof Lionfish} is growing. We need to model how hunting might work so we can decide whether to regulate or even advocate for it."
jobs.coral-hunting-lions.task.scanSpear, , , "Identify how hunters hunt Lionfish"
jobs.coral-hunting-lions.task.argueIncentive, , , "Argue for a hunting incentive"
jobs.coral-hunting-lions.task.scanHistory, , , "Scan the historical populations and water chemistry data of {h}Site S{/h}"
jobs.coral-hunting-lions.task.scanCritters, , , "Scan any unscanned organisms at {h}Site S{/h}"
jobs.coral-hunting-lions.task.countPopulation, , , "Count the organism populations at {h}Site S{/h}"
jobs.coral-hunting-lions.task.observeEatRules, , , "Obtain all rules regarding what eats what at {h}Site S{/h}"
jobs.coral-hunting-lions.task.obtainStressRules, , , "Obtain all stress rules for organisms at {h}Site S{/h}"
jobs.coral-hunting-lions.task.measureStressEatRates, , , "Measure the eating rates of all organisms at {h}Site S{/h} when stressed"
jobs.coral-hunting-lions.task.measureStressReproduceRates, , , "Measure the reproduction rates of all organisms at {h}Site S{/h}"
jobs.coral-hunting-lions.task.obtainChemistry, , , "Measure the effects of organisms on their environment"
jobs.coral-hunting-lions.task.predictModel, , , "Model the future of {h}Site S{/h} according to existing trends"
jobs.coral-hunting-lions.task.interveneModel, , , "Model the future of {h}Site S{/h} if hunters are allowed to hunt Lionfish"
jobs.coral-hunting-lions.argue.claimModel, , , "Present an Intervention Model of Lionfish at {nameof RS-2S}"
jobs.coral-hunting-lions.argue.claimCoral, , , "Present an organism that stresses the coral and how it stresses the coral"
jobs.coral-hunting-lions.argue.claimLionfish, , , "Present a chain of facts that explain how Lionfish influence coral populations"
jobs.coral-fake-fix.name, , , "Fake Reef Fix"
jobs.coral-fake-fix.desc, , , "We're trying to determine why this reef has been struggling, so we installed artificial reefs in an effort to fix it. Report back on the reef's status."
jobs.coral-fake-fix.task.findReef, , , "Find the artificial reef at {h}Site S{/h}"
jobs.coral-fake-fix.task.scanProbes, , , "Collect population probe data"
jobs.coral-fake-fix.task.countPopulation, , , "Count current coral and artificial reef populations"
jobs.coral-fake-fix.task.argue, , , "Report to the {nameof RS-Coral} about whether the fake reef helped the coral population"
jobs.coral-fake-fix.argue.claimLabel, , , "The artificial reef has not helped coral populations"
jobs.coral-fake-fix.argue.claimLabelIncorrect, , , "The artificial reef has helped coral populations at {h}Site S{/h}"
jobs.coral-much-algae.name, , , "So Much Algae"
jobs.coral-much-algae.desc, , , "Another researcher reported that the coral is covered in turf algae. Those lionfish scare me, so I avoid that area as much as possible. Can you double check and see if you can figure out why there is so much algae?"
jobs.coral-much-algae.task.scanAll, , , "Scan all species at {h}Site S{/h}"
jobs.coral-much-algae.task.observeEatAlgae, , , "Find what eats {nameof TurfAlgae}"
jobs.coral-much-algae.task.measureEatRate, , , "Measure the rate at which {nameof BlueTang} eats {nameof TurfAlgae}"
jobs.coral-much-algae.task.modelPopulations, , , "{map-name}Model{/map-name} Blue Tang and Turf Algae populations."
jobs.coral-much-algae.task.reportBack, , , "Report on why there is so much {nameof TurfAlgae}"
jobs.coral-much-algae.argue.claimLabel, , , "There are not enough fish to balance the Turf Algae population"
jobs.coral-much-algae.argue.claimLabelIncorrect, , , "The Lionfish are making the Turf Algae reproduce faster"
jobs.kelp-mussel-fest-solution.name, , , "Mussel Fest Solution"
jobs.kelp-mussel-fest-solution.desc, , , "Other than the weird shape, are the Mussels at {h}Site C{/h} being adversely affected? We're particularly interested in how their reproduction rate has changed. The local restaurants want to keep serving mussels!"
jobs.kelp-mussel-fest-solution.task.stressedRate, , , "Measure Mussel reproduction rates when stressed"
jobs.kelp-mussel-fest-solution.task.unstressedRate, , , "Measure Mussel reproduction rates when not stressed"
jobs.kelp-mussel-fest-solution.task.reportChange, , , "Report whether Mussel reproduction rates have changed"
jobs.kelp-mussel-fest-solution.argue.claimLabel, , , "Explain how Mussel reproduction rate is affected by stress in {h}Site C{/h}"
jobs.kelp-refuge-failure.task.lightRatesGiant, , , "Measure the rate at which Giant Kelp consume light"
jobs.kelp-refuge-failure.task.lightRatesBull, , , "Measure the rate at which Bull Kelp consume light"
jobs.arctic-missing-whale.name, , , "Missing Whale!"
jobs.arctic-missing-whale.desc, , , "Some researchers down south counted the pod on arrival and one is missing. They think she got lost up here, potentially near {fullnameof RS-4W}."
jobs.arctic-missing-whale.task.findWhale, , , "Search {h}Site W{/h} for signs of Linda the missing whale"
jobs.arctic-missing-whale.task.reportBack, , , "Report back with your findings"
jobs.arctic-whale-csi.name, , , "***Whale CSI"
jobs.arctic-whale-csi.desc, , , "Find out what happened to the whale. I'll give you some info on whales and a microscope if you accept this."
jobs.arctic-whale-csi.task.scanAndTag, , , "Scan and Count Salmon, Shark, and Cod"
jobs.arctic-whale-csi.task.scanIceAlgae, , , "Search the ice for signs of microscopic life"
jobs.arctic-whale-csi.task.reportBack, , , "Report back with your findings"
jobs.arctic-time-of-death.name, , , "Time Of Death"
jobs.arctic-time-of-death.desc, , , "How long ago did the missing whale die? We can use the decomposition model to determine her time of death."
jobs.arctic-time-of-death.task.getPopulations, , , "Scan and Count all organisms at {h}Site W{/h}"
jobs.arctic-time-of-death.task.reportBack, , , "Report back with your findings"
jobs.arctic-missing-whale.task.findTracker, , , "Search {h}Site W{/h} to find the missing whale tracker"
jobs.arctic-missing-whale.argue.claimLabel, , , "Evidence of Linda"
jobs.arctic-disappearing-act.name, , , "Disappearing Act"
jobs.arctic-disappearing-act.desc, , , "Whale falls are rare! We should use this opportunity to learn more about how organisms interact with them. What is causing the whale's decay?"
jobs.arctic-disappearing-act.task.reportBack, , , "Report your findings back to {nameof @arcticSci}"
jobs.arctic-disappearing-act.task.scanCritters, , , "Scan all organisms feasting on the whale fall in {h}Site W{/h}"
jobs.arctic-missing-whale.task.foundDetritus, , , "Count the amount of detritus found on the whale carcass"
jobs.arctic-disappearing-act.argue.claimLabel, , , "Present your visual model of the species interactions at {h}Site W{/h}"
jobs.arctic-cause-of-death.desc, , , "What killed her? We have two hypotheses. It was either something about the water, or lack of a food source, since whales have no natural predators."
jobs.arctic-cause-of-death.name, , , "Cause of Death"
jobs.arctic-cause-of-death.task.enviornmentData, , , "Collect environmental data at {h}Site W{/h}"
jobs.arctic-cause-of-death.task.currPopData, , , "Count the current populations of organisms whales eat at {h}Site W{/h}"
jobs.arctic-cause-of-death.task.histPopData, , , "Collect the historic population data at {h}Site W{/h}"
jobs.arctic-cause-of-death.task.report, , , "Report your findings back to {nameof @arcticSci}"
jobs.arctic-time-of-death.task.report, , , "Report your findings back to {nameof @arcticSci} when you're ready."
jobs.arctic-time-of-death.task.getPops, , , "Report your findings back to {nameof @profArctic}"
jobs.arctic-time-of-death.task.popData, , , "Collect the current and historic population data at {h}Site W{/h}"
jobs.arctic-time-of-death.argue.claimLabel1, , , "The whale fall is in stage 1"
jobs.arctic-time-of-death.argue.claimLabel2, , , "The whale fall is in stage 2"
jobs.arctic-time-of-death.argue.claimLabel3, , , "The whale fall is in stage 3"
jobs.arctic-cause-of-death.argue.claimLabel1, , , "There was a problem in the food supply."
jobs.arctic-cause-of-death.argue.claimLabel2, , , "Something in Linda's environment harmed her."
jobs.arctic-underneath.name, , , "Under the Ice?"
jobs.arctic-underneath.desc, , , "It seems you found a new site when you were carried beneath the ice. What sorts of creatures live in {h}Site X{/h}?"
jobs.arctic-underneath.task.report, , , "Report your findings back to {nameof @profArctic}"
jobs.arctic-underneath.task.explore, , , "Count the populations of all species under the ice"
jobs.arctic-underneath.argue.claimLabel, , , "What sorts of creatures live beneath the ice?"
jobs.arctic-stationary-survival.name, , , "Stationary Survival"
jobs.arctic-stationary-survival.desc, , , "We didn't think an ecosystem would be able to survive with such a low amount of light under the ice. Yet, some species are thriving! How is this possible? Where is the energy coming from if not the sun?"
jobs.arctic-stationary-survival.task.report, , , "Report back with your findings"
jobs.arctic-stationary-survival.task.visualModel, , , "Construct a {h}visual model{/h} of how the species at {h}Site X{/h} survive."
jobs.arctic-stationary-survival.argue.claimLabel, , , "How do the creatures of {h}Site X{/h} survive beneath the ice?"
jobs.arctic-isolated-instance.name, , , "Isolated Instance"
jobs.arctic-isolated-instance.desc, , , "We're seeing a lot of Glass Sponges at {h}Site X{/h}, but none at {h}Site Z{/h}. Is {h}Site X{/h} the only place these sponges can live? What is preventing them from living at {h}Site Z{/h}?"
jobs.arctic-isolated-instance.argue.claimLabelStress, , , "The Sponges are stressed by the light levels."
jobs.arctic-isolated-instance.argue.claimLabelPredator, , , "A predator is eating the Sponges."
jobs.arctic-isolated-instance.argue.claimLabelFinal, , , "Present evidence explaining why {pluralnameof GlassSponge} are not found in the {nameof RS-4Z}."
jobs.arctic-isolated-instance.task.scanAll, , , "Scan all species at {h}Site Z{/h}"
jobs.arctic-isolated-instance.task.experimentPredatorAll, , , "See if predators from Site Y eat Glass Sponges"
jobs.arctic-isolated-instance.task.experimentPredatorZ, , , "Observe which organisms {h}Site Z{/h} predators eat"
jobs.arctic-isolated-instance.task.discussFindings, , , "Discuss your findings with {nameof @profArctic}"
jobs.arctic-isolated-instance.task.determineStress, , , "Determine Glass Sponge stress levels"
jobs.arctic-isolated-instance.task.findPredator, , , "Search {h}Site Y{/h} for predators of {nameof GlassSponge}"
jobs.arctic-isolated-instance.task.scanSponge, , , "Scan a Glass Sponge"
jobs.arctic-isolated-instance.task.countPopulations, , , "Count the Cushion Star population at {h}Site Y{/h}"
jobs.arctic-disappearing-act.task.modelInteractions, , , "Model all species interactions"
jobs.kelp-refuge-failure.task.histChem, , , "Collect Historical Water Chemistry Data from Refuge Site"
jobs.bayou-turtle-danger.task.scanCyano, , , "Scan the {nameof Cyanobacteria} at {h}Site O{/h} using the {item}Microscope{/item}"
jobs.bayou-turtle-danger.task.countCyano, , , "Count the {nameof Cyanobacteria} population at {h}Site O{/h}"
jobs.arctic-cause-of-death.task.environmentData, , , "Collect environmental data history at {h}Site W{/h}"
jobs.kelp-shop-welcome.name, , , "Ready for Send Off"
jobs.kelp-shop-welcome.desc, , , "Prepare for send off by upgrading your ship."
jobs.kelp-shop-welcome.task.gotoShop, , , "Visit the {map-name}Shop{/map-name}"
jobs.kelp-shop-welcome.task.getTagger, , , "Purchase the {nameof ROVTagger}"
jobs.kelp-shop-welcome.task.geVisualModel, , , "Purchase {nameof VisualModel}"
jobs.coral-much-algae.task.histPop, , , "Gather historical population data from the probe at Site S"
jobs.coral-check-up.name, , , "Tang Check-Up"
jobs.coral-check-up.desc, , , "I've been considering that model you made, and it seems the accuracy of this model is too low for us to draw real conclusions. We need to collect more data about the {nameof BlueTang} at {h}Site S{/h}"
jobs.coral-check-up.task.findStress, , , "Find {nameof BlueTang} stress ranges"
jobs.coral-check-up.task.findMicro, , , "Identify any microscopic organisms at {h}Site S{/h}"
jobs.coral-check-up.task.observeIck, , , "Observe the effect of {nameof Ick} on {nameof BlueTang} in the {item}Observation Tank{/item}"
jobs.coral-check-up.task.improveDescribe, , , "Improve {h}Site S{/h} {item}Descriptive model{/item} based on new data"
jobs.coral-check-up.task.reviseVisual, , , "Revise Site S {item}models{/item} based on new data"
jobs.coral-check-up.task.report, , , "Report your findings"
jobs.coral-check-up.task.countIck, , , "Count {nameof Ick} populations"
jobs.coral-check-up.argue.claimLabelIckStressing, , , "The Ick are stressing the Blue Tang"
jobs.coral-check-up.argue.claimLabel, , , "Present a model which includes Ick stressing Blue Tang"
jobs.coral-check-up.task.measureIck, , , "Measure Tang's reproduction and eating rates when stressed using the {map-name}Measurement Tank{/map-name}"
jobs.bayou-displaced-reef.task.makeModel, , , "Compile your data into a {h}visual model{/h} to display the creatures found here."
jobs.coral-ocean-plastics.task.makeModel, , , "Create a visual model including plastic."
jobs.arctic-isolated-instance.task.checkCrab, , , "Place {nameof GlassSponge} in the Observation Tank with anything that might eat it."
jobs.arctic-isolated-instance.task.checkShark, , , "Place Glass Sponges in the Observation Tank with Salmon Sharks"
jobs.arctic-isolated-instance.task.checkSeal, , , "Place Glass Sponges in the Observation Tank with Ribbon Seals"
jobs.kelp-start-refuge.desc.short, , , "Which site would make a good kelp refuge:\n{h}Site 1{/h}:[Temp 02°C | Light 60%]; {h}Site 2{/h}:[Temp 20°C | Light 100%]; {h}Site 3{/h}:[Temp 13°C | Light 100%]"
jobs.coral-hunting-lions.task.measureEatRates, , , "Measure the eating rates of all organisms at {h}Site S{/h}"
jobs.arctic-isolated-instance.task.reportFinal, , , "Present your findings to {nameof @profArctic}"
jobs.arctic-isolated-instance.task.scanProbe, , , "Scan the Site Z water chemistry probe."