Add Gadget(zh-cn only)!!

Update Spawns page, Subdivided monster types
This commit is contained in:
2022-10-29 21:10:03 +08:00
parent 8d42ddee10
commit aa075f5f91
31 changed files with 22301 additions and 5829 deletions

View File

@@ -0,0 +1,24 @@
namespace GrasscutterTools.Game.Player
{
/// <summary>
/// 玩家数据
/// </summary>
internal class PlayerData
{
/// <summary>
/// 升到下一级所需经验,索引为当前等级
/// </summary>
public static int[] LevelExp = new int[]
{
0, 375, 500, 625, 725, 850, 950, 1075, 1200, 1300, 1425, 1525, 1650, 1775, 1875, 2000, 2375, 2500, 2625,
2775, 2825, 3425, 3725, 4000, 4300, 4575, 4875, 5150, 5450, 5725, 6025, 6300, 6600, 6900, 7175, 7475, 7750,
8050, 8325, 8625, 10550, 11525, 12475, 13450, 14400, 15350, 16325, 17275, 18250, 19200, 26400, 28800, 31200,
33600, 36000, 232350, 258950, 285750, 312825, 340125, 0,
};
/// <summary>
/// 玩家最大等级数
/// </summary>
public const int PlayerMaxLevel = 60;
}
}