mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 01:15:13 +01:00
properly implement character level up
currency is now subtracted
This commit is contained in:
@@ -57,4 +57,28 @@ namespace nksrv.StaticInfo
|
||||
public int NextId;
|
||||
public bool SaveTutorial;
|
||||
}
|
||||
|
||||
public class CharacterLevelData
|
||||
{
|
||||
/// <summary>
|
||||
/// level
|
||||
/// </summary>
|
||||
public int level;
|
||||
/// <summary>
|
||||
/// can be CharacterLevel or SynchroLevel
|
||||
/// </summary>
|
||||
public string type = "";
|
||||
/// <summary>
|
||||
/// amount of credits required
|
||||
/// </summary>
|
||||
public int gold = 0;
|
||||
/// <summary>
|
||||
/// amount of battle data required
|
||||
/// </summary>
|
||||
public int character_exp = 0;
|
||||
/// <summary>
|
||||
/// amount of core dust required
|
||||
/// </summary>
|
||||
public int character_exp2 = 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user