mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 09:24:37 +01:00
fix jukebox, begin work on outpost rewards
This commit is contained in:
@@ -39,6 +39,7 @@ namespace EpinelPS.StaticInfo
|
||||
public Dictionary<int, int> SidestoryRewardTable = [];
|
||||
public Dictionary<string, int> PositionReward = new Dictionary<string, int>();
|
||||
public Dictionary<int, FieldItemRecord> FieldItems = [];
|
||||
public Dictionary<int, OutpostBattleTableRecord> OutpostBattle = [];
|
||||
|
||||
public byte[] Sha256Hash;
|
||||
public int Size;
|
||||
@@ -370,6 +371,12 @@ namespace EpinelPS.StaticInfo
|
||||
{
|
||||
FieldItems.Add(obj.id, obj);
|
||||
}
|
||||
|
||||
var battleOutpostTable = await LoadZip<OutpostBattleTable>("OutpostBattleTable.json", progress);
|
||||
foreach (var obj in battleOutpostTable.records)
|
||||
{
|
||||
OutpostBattle.Add(obj.id, obj);
|
||||
}
|
||||
}
|
||||
|
||||
public MainQuestCompletionRecord? GetMainQuestForStageClearCondition(int stage)
|
||||
|
||||
Reference in New Issue
Block a user