-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventStatus.linq
838 lines (762 loc) · 21.9 KB
/
EventStatus.linq
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
<Query Kind="Program">
<Namespace>static System.DateTime</Namespace>
<Namespace>static System.Drawing.ColorTranslator</Namespace>
<Namespace>static System.TimeZoneInfo</Namespace>
<Namespace>System.Collections.ObjectModel</Namespace>
</Query>
// Ongoing Arknights Global event status tracker.
#nullable enable
#load "./lib/Context.linq"
#load "./lib/Extensions.linq"
#load "./lib/Images.linq"
#load "./lib/Parsable.linq"
#load "./lib/WikiHyperlinq.linq"
#define DUMP_MISSING_IMAGES
/*
#define DUMP_CONFIG
#define CONFIG_INTERPOLATE_COLORS
//*/
void Main()
{
// TODO: Arknights events can be found at https://arknights.wiki.gg/wiki/Event
var config = new
{
Title = new WikiHyperlinq("Event#Ongoing", "Arknights Event Sanity Status"),
// TODO: Specify your level max sanity.
SanityPerPrime = 135,
// TODO: Specify event's in-game date and time end.
EventEndDate = new DateOnly(Year.Now, Month.Dec, Day.OfMonth(1)),
EventEndTime = new TimeOnly(Hour.OfDay(3), Minute.OfHour(59)),
// TODO: Specify in-game UTC offset.
UtcOffset = FromHours(-7),
// TODO: Copy and paste current event data from EventData.Value below. Remove item(s) when done.
Event = new Event
{
[new("Lone_Trail/Rerun#Special_Case_Contact,_C.U.D.O.D.", "Lone Trail Rerun", "Flight_Data_Recorder_Chip")] = new("""
// Lone Trail Rerun
250 Silence the Paradigmatic's Token
300 Silence the Paradigmatic's Token
350 Silence the Paradigmatic's Token
400 Silence the Paradigmatic's Token
450 Silence the Paradigmatic's Token
150 3 Headhunting Permit
100 Bipolar Nanoflake
40 3 Oriron Block
35 3 Cutting Fluid Solution
30 3 White Horse Kohl
60 'Collection'
60 'Indications'
80 'Implantation'
100 'Fowlbeast Accommodations'
100 'Treeshade Lineations'
150 'Elevations'
200 'Nostalgic Habitations'
10 5 Crystalline Component
10 5 Orirock Cluster
15 15 Integrated Device
7 20 LMD
5 5 Strategic Battle Record
3 10 Tactical Battle Record
1 20 Frontline Battle Record
4 10 Skill Summary - 3
2 20 Skill Summary - 2
3 8 Sugar
3 8 Polyester
3 25 Polyketon
6 5 Supporter Chip
""")
}
};
var eventEndTimeLocal = ConvertTime(
config.EventEndDate.ToDateTime(config.EventEndTime),
CreateCustomTimeZone("Arknights", config.UtcOffset, null, null),
Local);
#if DUMP_MISSING_IMAGES
{
HashSet<string> existingImagesKeys = new(ImageData.Value.Keys);
var missingImages = EventData.Value.Keys
.SelectMany(static v => EventData.Value[v])
.Concat(config.Event.Items)
.WhereNot(static v => string.IsNullOrWhiteSpace(v.Name))
.Where(v => existingImagesKeys.Add(v.Name))
.OrderBy(static v => v.Name)
.ToArray();
if(missingImages.Any())
{
missingImages.Dump("Config - Images Missing");
}
}
#endif
Context = new();
var timeLeft = eventEndTimeLocal - Now;
var currentEvent = config.Event;
var eventHyperlinq = currentEvent.WikiHyperlinq;
var title = eventHyperlinq.Text;
var uri = eventHyperlinq.Uri;
var (baseUri, stockName) = SplitUri(uri);
var resourceUri = eventHyperlinq.ProcessMetadata(metadata => $"{baseUri.Replace("/Rerun", Empty)}#{metadata}") ?? uri;
stockName = (stockName ?? title).SpaceUnderscores();
using var _ = new DisposableAction(() => title.AsHyperlink(baseUri));
if(NoTimeLeft(timeLeft))
{
HorizontalRun(false, new WikiHyperlinq("Event"), " is completed.").Dump(title);
return;
}
var price = currentEvent.Items.Sum(static v => v.Total);
if(price <= 0)
{
HorizontalRun(false, "No more ", new Hyperlinq(resourceUri, "sanity"), " to ", new Hyperlinq(uri, "spend"), ".").Dump(title);
return;
}
var totalPrice = EventData.Value[eventHyperlinq].Sum(static v => v.Total);
var timeRequired = FromDays(CalcPrimesToRecover(price));
var timeToRecover = (timeRequired - timeLeft).FloorSeconds();
var primesToRecover = Ceiling(CalcPrimesToRecover(Abs(timeToRecover.TotalDays), config.SanityPerPrime)).ToString(DumpContext.CultureInfo);
var noRecoverNeeded = NoTimeLeft(timeToRecover);
var timeRequiredFormatted = Format(timeRequired);
var timeLeftFormatted = Format(timeLeft);
var timeToRecoverFormatted = Format(timeToRecover);
var dateStyle = new[]
{
timeRequiredFormatted,
timeLeftFormatted,
timeToRecoverFormatted
}
.Select(static v => v.Length)
.Distinct()
.Count() == 1
? Empty
: DumpContext.Document.Styles.FloatRight;
var sanity = new Sanity(resourceUri, price, totalPrice - price, config.SanityPerPrime, ColorData.Value, $"Event ends {ToDump(eventEndTimeLocal)}");
var okColor = ColorData.Value.First();
var warningColor = ColorData.Value.Last();
var report = new
{
SanityLeft = sanity,
TimeRequired = Format(timeRequiredFormatted, styles: dateStyle),
TimeLeft = Format(timeLeftFormatted, noRecoverNeeded ? okColor : warningColor, dateStyle),
TimeSaved = Format(timeToRecoverFormatted, okColor, dateStyle),
PrimesSaved = Format(primesToRecover, okColor),
TimeToRecover = Format(timeToRecoverFormatted, warningColor, dateStyle),
PrimesToRecover = Format(primesToRecover, warningColor),
SanityPerPrime = Format(config.SanityPerPrime.ToString(DumpContext.CultureInfo))
};
HorizontalRun(false,
VerticalRun(
#if DUMP_CONFIG
Merge(
config,
new
{
EventEndTimeLocal = eventEndTimeLocal,
EventData = EventData.Value,
ImageUriMapData = ImageUriMapData.Value,
ImageData = ImageData.Value,
ColorData = ColorData.Value
}
),
#endif
Merge(
new
{
report.SanityLeft,
report.TimeRequired,
report.TimeLeft
},
noRecoverNeeded
? new
{
report.TimeSaved,
report.PrimesSaved
}
: new
{
report.TimeToRecover,
report.PrimesToRecover
}
),
new
{
Stock = new Hyperlinq(uri, stockName),
Left = currentEvent.Items
}
),
Context.Containers.Image
).Dump(title);
new DumpContainer(){ Style = $"height: {DumpContext.Document.MarginBottom}" }.Dump();
}
static double CalcPrimesToRecover(double value, double sanityPerPrime = default)
{
const double DailySanity = 240;
return sanityPerPrime == default
? value / DailySanity
: value * DailySanity / sanityPerPrime;
}
static bool NoTimeLeft(TimeSpan timeSpan) =>
timeSpan.Ticks <= 0;
static string Format(TimeSpan timeSpan, bool withSeconds = true) =>
timeSpan.ToString((timeSpan.Days != 0 ? "d'd '" : Empty) + "hh':'mm" + (withSeconds ? "':'ss" : Empty), DumpContext.CultureInfo);
static object Format(object value, Color color = default, params string[] styles) =>
WithStyle(
value,
Join(";", styles.Append($"color:{(color == default ? "inherit" : ToHtml(color))}")));
static (string Uri, string? Fragment) SplitUri(string uri)
{
var anchorIndex = uri.IndexOf("#");
return
(
uri[..(anchorIndex > 0 ? anchorIndex : uri.Length)],
anchorIndex > 0 ? (uri[(anchorIndex + 1)..uri.Length]) : null
);
}
static object ToDump(object input) =>
input switch
{
DateOnly dateOnly =>
dateOnly.ToString("D", DumpContext.CultureInfo),
TimeOnly timeOnly =>
timeOnly.ToString("t", DumpContext.CultureInfo),
DateTime dateTime =>
dateTime.ToString("f", DumpContext.CultureInfo),
Color color =>
WithStyle($"{DumpContext.Glyphs.Circle} {ToHtml(color):x}", $"color:{ToHtml(color)}"),
Sanity sanity =>
HorizontalRun(false,
new SanityHyperlink(sanity),
new DumpContainer($" {DumpContext.Glyphs.Circle} ") { Style = $"color: {ToHtml(sanity.Color)}" },
new Span($"{sanity.PercentLeft.ToString(DumpContext.CultureInfo)}%").SetTitle(sanity.Title)),
KeyValuePair<string, LazyImage> itemImage =>
new
{
Key = new WikiHyperlinq(itemImage.Key.UnderscoreSpaces(), itemImage.Key),
itemImage.Value
},
Item item =>
new
{
item.Price,
item.Count,
Name = IsNullOrEmpty(item.Name) ? (object)Empty : ItemImage.GetHyperlink(item.Name),
item.Total,
Required = Format(Format(FromDays(CalcPrimesToRecover(item.Total)), false), styles: DumpContext.Document.Styles.FloatRight)
},
_ => input
};
abstract class TimePart<T> where T : TimePart<T>
{
private readonly int _value;
protected TimePart(string name, int value, int minValue, int maxValue) =>
_value = value >= minValue && value <= maxValue
? value
: throw new($"{name} should be between {minValue} and {maxValue}. Got {value}");
public static implicit operator int(TimePart<T> timePart) =>
timePart._value;
}
class Year : TimePart<Year>
{
public const int Now = 2024;
private Year(int year)
: base(nameof(Year), year, Now, Now+1)
{
}
public static Year Of(int year) =>
new(year);
}
class Month : TimePart<Month>
{
private const int First = 1;
private const int Last = First+11;
private Month(int month)
: base(nameof(Month), month, First, Last)
{
}
public static readonly Month Jan = new(First);
public static readonly Month Feb = new(First+1);
public static readonly Month Mar = new(First+2);
public static readonly Month Apr = new(First+3);
public static readonly Month May = new(First+4);
public static readonly Month Jun = new(First+5);
public static readonly Month Jul = new(First+6);
public static readonly Month Aug = new(First+7);
public static readonly Month Sep = new(First+8);
public static readonly Month Oct = new(First+9);
public static readonly Month Nov = new(First+10);
public static readonly Month Dec = new(Last);
}
class Day : TimePart<Day>
{
private Day(int day)
: base(nameof(Day), day, 1, 31)
{
}
public static Day OfMonth(int day) =>
new(day);
}
class Hour : TimePart<Hour>
{
private Hour(int hour)
: base(nameof(Hour), hour, 0, 23)
{
}
public static Hour OfDay(int hour) =>
new(hour);
}
class Minute : TimePart<Minute>
{
private Minute(int minute)
: base(nameof(Minute), minute, 0, 59)
{
}
public static Minute OfHour(int minute) =>
new(minute);
}
record Sanity(string Uri, int Left, int Spent, int SanityPerPrime, IReadOnlyCollection<Color> Colors, string Title)
{
public int PercentLeft
{
get
{
if(Left > Total)
{
throw new($"Data inconsistency detected: sanity left is greater than total sanity. Original event can be found in the {nameof(EventData)} below.");
}
var percent = Floor(100.0 * Left / Total);
return percent == 0 ? 1 : (int)percent;
}
}
public int Total { get; } = Left + Spent;
public int PercentSpent =>
100 - PercentLeft;
public Color Color =>
Colors.Last().InterpolateTo(PercentLeft / 100, Colors.First());
}
record Item(int Price, int Count, string Name)
{
public int Total { get; } = Price * Count;
}
class Items : Parsable<Item>
{
private const string Price = nameof(Price);
private const string Count = nameof(Count);
private const string Name = nameof(Name);
protected override string Regex { get; } = $@"^(?<{Price}>[+-]?\d+)(\s+(?<{Count}>[+]?\d+))?(\s+(?<{Name}>.+))?$";
protected override string ErrorMessage { get; } = $"Expected: '[+-]price [[+]count] [name]'";
public Items(string items) :
base(items)
{
var duplicates = this
.GroupBy()
.Where( static g => g.Count() > 1)
.Select( static g => (Item: g.Key, Times: g.Count()))
.WhereNot(static v => IsNullOrEmpty(v.Item.Name))
.ToArray();
if(duplicates.Any())
{
throw new($"Duplicates found: {Join(", ", duplicates.Select(static d => $"{d.Times} for {d.Item}"))}");
}
}
protected override Item Create(Match match) =>
new
(
GetNumber(match, Price, FallbackAction<int>(Throw)),
GetNumber(match, Count, 1),
GetString(match, Name)
);
}
struct Event
{
public WikiHyperlinq WikiHyperlinq { get; private set; }
public Items Items { get; private set; }
public Items this[WikiHyperlinq wikiHyperlinq]
{
get => Items;
set => (WikiHyperlinq, Items) = (wikiHyperlinq, value);
}
}
class SanityHyperlink : Hyperlink
{
public SanityHyperlink(Sanity sanity)
: base(sanity.Left.ToString(DumpContext.CultureInfo), sanity.Uri) =>
this.SetTitle($"{(
sanity.Spent > 0
? $"{sanity.Spent} 🡒 {sanity.Total} {DumpContext.Glyphs.Circle} {sanity.PercentSpent}% sanity spent"
: "No sanity spent yet"
)}. Sanity per prime: {sanity.SanityPerPrime}");
}
static class ColorData
{
public static readonly ReadOnlyCollection<Color> Value = new(new[]
{
0x209020,
0xFF0000
}
.Select(Color.FromArgb)
#if CONFIG_INTERPOLATE_COLORS
.Aggregate(new[] { new List<Color>() }, static (r, c) => { r.First().Add(c); return r; })
.Select(static c => Enumerable.Range(0, 101).Select(p => c.Last().InterpolateTo(p / 100.0, c.First())))
.SelectMany()
#endif
.ToArray());
}
static class EventData
{
public static readonly ReadOnlyDictionary<WikiHyperlinq, Items> Value = new(new Dictionary<WikiHyperlinq, Items>
{
// One or two whitespace/tab(s) separated number(s) per line in any order: Price and/or Count and optional item name.
// EventStockParser.linq script parses event stock.
// Key is (EventURI#EventStock, EventName, EventCurrency)
[new("Babel_(event)#Motorized_Logistical_Camp", "Babel", "Raw_Sugar_Lumps")] = new("""
// Babel
200 Odda's Token
240 Odda's Token
280 Odda's Token
320 Odda's Token
360 Odda's Token
500 Newsgirl
150 3 Headhunting Permit
75 3 Module Data Block
100 5 D32 Steel
35 10 Keton Colloid
35 10 RMA70-24
40 10 Crystalline Circuit
45 10 Cyclicene Prefab
60 Witchcraft Workbench
60 Welded Storage Box
80 Oddities Showcase
80 Load-bearing Pillar
90 Ice-Cold Patchwork Wallpaper
90 Never Even Flooring
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Sugar Pack
10 15 Manganese Ore
10 15 Incandescent Alloy
12 15 Transmuted Salt
7 120 LMD
5 30 Strategic Battle Record
3 50 Tactical Battle Record
1 150 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 40 Orirock Cube
3 30 Sugar
3 30 Polyester
3 25 Oriron
3 25 Polyketon
4 20 Device
6 5 Guard Chip
2 200 Furniture Part
"""),
[new("Come_Catastrophes_or_Wakes_of_Vultures#Shack_by_the_Tower", "Come Catastrophes or Wakes of Vultures", "Shoddy_Fuel")] = new("""
// Come Catastrophes or Wakes of Vultures
200 Coldshot's Token
240 Coldshot's Token
280 Coldshot's Token
320 Coldshot's Token
360 Coldshot's Token
150 3 Headhunting Permit
75 2 Module Data Block
100 5 Bipolar Nanoflake
25 10 Orirock Concentration
40 10 Oriron Block
35 10 Grindstone Pentahydrate
25 Reinforced Work Chair
25 Explosion-proof Fluorescent Lamp
30 Shock-proof Pillar
50 'Advance Patchwork'
50 Assembly Workbench
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Loxic Kohl
12 10 Semi-Synthetic Solvent
7 100 LMD
5 25 Strategic Battle Record
3 50 Tactical Battle Record
1 120 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 25 Orirock Cube
3 25 Oriron
4 25 Device
6 5 Sniper Chip
2 200 Furniture Part
"""),
[new("Here_A_People_Sows#Shennong_Market", "Here A People Sows", "Sky_Pole")] = new("""
// Here A People Sows
200 Wanqing's Token
240 Wanqing's Token
280 Wanqing's Token
320 Wanqing's Token
360 Wanqing's Token
70 Bibeak's Token
500 Night Watcher
150 3 Headhunting Permit
75 2 Module Data Block
100 5 Polymerization Preparation
25 10 Orirock Concentration
35 10 Manganese Trihydrate
35 10 RMA70-24
35 10 Cutting Fluid Solution
100 'The Archives'
90 'Prize for Excellence'
70 Responsive Floorlamp
35 Small Dougong Lamp
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Polyester Pack
10 15 Manganese Ore
12 15 Coagulating Gel
10 15 Incandescent Alloy
7 120 LMD
5 30 Strategic Battle Record
3 50 Tactical Battle Record
1 150 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 40 Orirock Cube
3 30 Sugar
3 30 Polyester
3 25 Oriron
3 25 Polyketon
4 20 Device
6 5 Vanguard Chip
2 200 Furniture Part
"""),
[new("Hortus_de_Escapismo#Convivia_Cenarum_Localia", "Hortus de Escapismo", "Holy_Statue_Fragment")] = new("""
// Hortus de Escapismo
200 Insider's Token
240 Insider's Token
280 Insider's Token
320 Insider's Token
360 Insider's Token
150 3 Headhunting Permit
75 2 Module Data Block
100 5 Crystalline Electronic Unit
25 10 Orirock Concentration
35 10 Manganese Trihydrate
35 10 RMA70-24
40 'Cultivating Hope'
40 'Record of Suffering'
40 'Audible Redemption'
40 'Purge of Flaws'
60 'Witness of Friendship'
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Sugar Pack
8 10 Loxic Kohl
7 100 LMD
5 25 Strategic Battle Record
3 50 Tactical Battle Record
1 120 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 25 Orirock Cube
3 25 Oriron
3 25 Polyketon
6 5 Sniper Chip
2 200 Furniture Part
"""),
[new("Lone_Trail/Rerun#Special_Case_Contact,_C.U.D.O.D.", "Lone Trail Rerun", "Flight_Data_Recorder_Chip")] = new("""
// Lone Trail Rerun
250 Silence the Paradigmatic's Token
300 Silence the Paradigmatic's Token
350 Silence the Paradigmatic's Token
400 Silence the Paradigmatic's Token
450 Silence the Paradigmatic's Token
150 3 Headhunting Permit
100 Bipolar Nanoflake
40 3 Oriron Block
35 3 Cutting Fluid Solution
30 3 White Horse Kohl
60 'Collection'
60 'Indications'
80 'Implantation'
100 'Fowlbeast Accommodations'
100 'Treeshade Lineations'
150 'Elevations'
200 'Nostalgic Habitations'
10 5 Crystalline Component
10 5 Orirock Cluster
15 15 Integrated Device
7 20 LMD
5 5 Strategic Battle Record
3 10 Tactical Battle Record
1 20 Frontline Battle Record
4 10 Skill Summary - 3
2 20 Skill Summary - 2
3 8 Sugar
3 8 Polyester
3 25 Polyketon
6 5 Supporter Chip
"""),
[new("Operation_Lucent_Arrowhead#Galería_Boutique", "Operation Lucent Arrowhead", "Galería_Stamp_Card")] = new("""
// Operation Lucent Arrowhead
200 Fuze's Token
240 Fuze's Token
280 Fuze's Token
320 Fuze's Token
360 Fuze's Token
150 3 Headhunting Permit
75 2 Module Data Block
100 5 Bipolar Nanoflake
30 10 White Horse Kohl
35 10 RMA70-24
40 10 Solidified Fiber Board
30 Galería Lighting
30 'Awards Ceremony'
40 Secret Exhibit 'Do Not Touch'
40 'Light and Heat'
50 Galería Carpet
50 'Off the Rails'
50 'Help Yourself'
100 Galería Lamp
100 Galería Plant
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
7 15 Orirock Cluster
10 10 Crystalline Component
7 100 LMD
5 25 Strategic Battle Record
3 50 Tactical Battle Record
1 100 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 25 Orirock Cube
3 25 Sugar
3 25 Oriron
6 5 Guard Chip
2 200 Furniture Part
"""),
[new(@"So_Long,_Adele#""White_Volcano""", "So Long, Adele", "Fluffy_Critter_Wool")] = new("""
// So Long, Adele
200 Bryophyta's Token
240 Bryophyta's Token
280 Bryophyta's Token
320 Bryophyta's Token
360 Bryophyta's Token
150 3 Headhunting Permit
75 3 Module Data Block
100 5 Bipolar Nanoflake
25 10 Orirock Concentration
30 10 Transmuted Salt Agglomerate
35 10 Manganese Trihydrate
40 10 Crystalline Circuit
70 Mischievously Spliced Table
70 Stumpy Little Fridge
75 Yellowy Gauze Curtain
100 Toasty Shop Lamp
45 2 Dizzy Spinning Chair
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Polyester Pack
12 15 Coagulating Gel
12 15 Compound Cutting Fluid
12 15 Transmuted Salt
7 120 LMD
5 30 Strategic Battle Record
3 50 Tactical Battle Record
1 150 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 40 Orirock Cube
3 30 Sugar
3 30 Polyester
3 25 Oriron
3 25 Polyketon
4 20 Device
6 5 Guard Chip
2 200 Furniture Part
"""),
[new("The_Rides_to_Lake_Silberneherze#Onboard_Services", "The Rides to Lake Silberneherze", "Burdenbeast_Blind_Box")] = new("""
// The Rides to Lake Silberneherze
200 Harold's Token
240 Harold's Token
280 Harold's Token
320 Harold's Token
360 Harold's Token
150 3 Headhunting Permit
75 2 Module Data Block
100 5 D32 Steel
35 10 Keton Colloid
35 10 Manganese Trihydrate
35 10 RMA70-24
30 Window to the Snowy Mountains
45 Shipping Counter
60 Small Mailbox
60 'Kjeragandr's Bones'
90 Small Post Office Floor
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
10 15 Aketon
12 10 Transmuted Salt
7 100 LMD
5 25 Strategic Battle Record
3 50 Tactical Battle Record
1 120 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
3 25 Oriron
3 25 Polyketon
4 25 Device
6 5 Medic Chip
2 200 Furniture Part
"""),
[new("What_the_Firelight_Casts/Rerun#River_Valley_Caravan", "What the Firelight Casts Rerun", "Manuscripts_of_Ballads")] = new("""
// What the Firelight Casts Rerun
150 3 Headhunting Permit
100 Bipolar Nanoflake
35 3 Keton Colloid
30 3 Polymerized Gel
35 3 Incandescent Alloy Block
8 5 Polyester Pack
10 5 Manganese Ore
7 20 LMD
5 5 Strategic Battle Record
3 10 Tactical Battle Record
1 20 Frontline Battle Record
4 10 Skill Summary - 3
2 20 Skill Summary - 2
2 8 Orirock Cube
3 8 Sugar
4 8 Device
6 5 Vanguard Chip
"""),
[new("Zwillingstürme_im_Herbst#Herbstmondeskonzert", "Zwillingstürme im Herbst", "Die_Klänge_von_den_Erinnerungen")] = new("""
// Zwillingstürme im Herbst
150 3 Headhunting Permit
75 3 Module Data Block
100 5 Polymerization Preparation
100 5 Nucleic Crystal Sinter
25 10 Orirock Concentration
40 10 Oriron Block
35 10 Grindstone Pentahydrate
30 10 Polymerized Gel
35 10 Cutting Fluid Solution
30 10 Transmuted Salt Agglomerate
110 Pipe Organ Literature Stand
90 Library Stairs
90 'Scenery of Knowledge'
90 Knowledge-Seeking Hall Flooring
15 10 Data Supplement Instrument
5 60 Data Supplement Stick
8 15 Polyester Pack
10 15 Manganese Ore
12 15 Coagulating Gel
10 15 Crystalline Component
7 120 LMD
5 30 Strategic Battle Record
3 50 Tactical Battle Record
1 150 Frontline Battle Record
4 25 Skill Summary - 3
2 50 Skill Summary - 2
2 40 Orirock Cube
3 30 Sugar
3 30 Polyester
3 25 Oriron
3 25 Polyketon
4 20 Device
6 5 Guard Chip
2 200 Furniture Part
""")
});
}