mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 08:54:47 +01:00
Implement tower rewards
This commit is contained in:
@@ -59,6 +59,7 @@ namespace EpinelPS.StaticInfo
|
||||
public Dictionary<int, SkillInfoRecord> skillInfoTable = [];
|
||||
public Dictionary<int, CostRecord> costTable = [];
|
||||
public Dictionary<string, MidasProductRecord> mediasProductTable = [];
|
||||
public Dictionary<int, TowerRecord> towerTable = [];
|
||||
|
||||
|
||||
|
||||
@@ -492,6 +493,12 @@ namespace EpinelPS.StaticInfo
|
||||
{
|
||||
this.mediasProductTable.Add(obj.midas_product_id_proximabeta, obj);
|
||||
}
|
||||
|
||||
var towerTable = await LoadZip<TowerTable>("TowerTable.json", progress);
|
||||
foreach (var obj in towerTable.records)
|
||||
{
|
||||
this.towerTable.Add(obj.id, obj);
|
||||
}
|
||||
}
|
||||
|
||||
public async Task LoadJukeboxListData(ProgressBar bar)
|
||||
|
||||
Reference in New Issue
Block a user