Implemented more of Bot Generation

This commit is contained in:
Chomp
2025-01-14 16:56:37 +00:00
parent 7f411c808e
commit 144b63d8ef
5 changed files with 123 additions and 24 deletions
@@ -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; }
}
+2 -2
View File
@@ -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