mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 06:43:57 +00:00
Implement BossPvP logic (I implemented this based on undownding's code. Thank you!)
This commit is contained in:
15
Common/Data/Excel/BossPvpNumExcel.cs
Normal file
15
Common/Data/Excel/BossPvpNumExcel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace MikuSB.Data.Excel;
|
||||
|
||||
[ResourceEntity("challenge/bosspvp/num.json")]
|
||||
public class BossPvpNumExcel : ExcelResource
|
||||
{
|
||||
public uint Week { get; set; }
|
||||
public uint Num { get; set; }
|
||||
|
||||
public override uint GetId() => Week;
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.BossPvpNumData[Week] = this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user