Implemented getAllBotDifficulties

This commit is contained in:
Chomp
2025-01-18 13:09:28 +00:00
parent 2c1e974c89
commit abb9e02869
7 changed files with 173 additions and 20 deletions
+61 -5
View File
@@ -1,4 +1,4 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;
using Core.Models.Common;
namespace Core.Models.Eft.Common;
@@ -937,9 +937,65 @@ public record Area
public enum WildSpawnType
{
assault,
marksman,
pmcbot,
bosskilla,
bossknight
assault,
bossTest,
bossBully,
followerTest,
followerBully,
bossKilla,
bossKojaniy,
followerKojaniy,
pmcBot,
cursedAssault,
bossGluhar,
followerGluharAssault,
followerGluharSecurity,
followerGluharScout,
followerGluharSnipe,
followerSanitar,
bossSanitar,
test,
assaultGroup,
sectantWarrior,
sectantPriest,
bossTagilla,
followerTagilla,
exUsec,
gifter,
bossKnight,
followerBigPipe,
followerBirdEye,
bossZryachiy,
followerZryachiy,
bossBoar = 32,
followerBoar,
arenaFighter,
arenaFighterEvent,
bossBoarSniper,
crazyAssaultEvent,
peacefullZryachiyEvent,
sectactPriestEvent,
ravangeZryachiyEvent,
followerBoarClose1,
followerBoarClose2,
bossKolontay,
followerKolontayAssault,
followerKolontaySecurity,
shooterBTR,
bossPartisan,
spiritWinter,
spiritSpring,
peacemaker,
pmcBEAR,
pmcUSEC,
skier,
sectantPredvestnik = 57,
sectantPrizrak,
sectantOni,
infectedAssault,
infectedPmc,
infectedCivil,
infectedLaborant,
infectedTagilla
}
+1 -1
View File
@@ -14,7 +14,7 @@ public record BotType
public Chances? BotChances { get; set; }
[JsonPropertyName("difficulty")]
public Difficulties? BotDifficulty { get; set; }
public Dictionary<string, DifficultyCategories>? BotDifficulty { get; set; }
[JsonPropertyName("experience")]
public Experience? BotExperience { get; set; }