Implemented more of Bot Generation
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Core.Models.Eft.Bot;
|
||||
|
||||
public class RandomisedBotLevelResult
|
||||
{
|
||||
[JsonPropertyName("level")]
|
||||
public int? Level { get; set; }
|
||||
public double? Level { get; set; }
|
||||
|
||||
[JsonPropertyName("exp")]
|
||||
public int? Exp { get; set; }
|
||||
}
|
||||
public double? Exp { get; set; }
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using Core.Models.Eft.Common.Tables;
|
||||
using Core.Models.Eft.Common.Tables;
|
||||
using Core.Models.Eft.Hideout;
|
||||
|
||||
namespace Core.Models.Eft.Common;
|
||||
@@ -1255,7 +1255,7 @@ public class Level
|
||||
public class ExpTable
|
||||
{
|
||||
[JsonPropertyName("exp")]
|
||||
public int? Experience { get; set; }
|
||||
public double? Experience { get; set; }
|
||||
}
|
||||
|
||||
public class LootAttempt
|
||||
|
||||
Reference in New Issue
Block a user