diff --git a/Generator/BaseBotGenerator.cs b/Generator/BaseBotGenerator.cs index 1c4689c..5be1650 100644 --- a/Generator/BaseBotGenerator.cs +++ b/Generator/BaseBotGenerator.cs @@ -27,28 +27,33 @@ namespace Generator var stopwatch = Stopwatch.StartNew(); LoggingHelpers.LogToConsole("Started processing bot base"); - var assaultBot = new Bot(BotType.assault); - var raiderBot = new Bot(BotType.pmcBot); - var marksmanBot = new Bot(BotType.marksman); - - var bossbully = new Bot(BotType.bossbully); - var bossgluharBot = new Bot(BotType.bossgluhar); - var bosskillaBot = new Bot(BotType.bosskilla); - var bosskojaniyBot = new Bot(BotType.bosskojaniy); - var bosssanitarBot = new Bot(BotType.bosssanitar); - var rawBots = new List { - assaultBot, - raiderBot, - marksmanBot, + new Bot(BotType.assault), + new Bot(BotType.pmcBot), + new Bot(BotType.marksman), - bossbully, - bossgluharBot, - bosskillaBot, - bosskojaniyBot, - bosssanitarBot - }; + new Bot(BotType.bossbully), + new Bot(BotType.bossgluhar), + new Bot(BotType.bosskilla), + new Bot(BotType.bosskojaniy), + new Bot(BotType.bosssanitar), + + new Bot(BotType.bossstormtrooper), + + new Bot(BotType.followerbully), + new Bot(BotType.followergluharassault), + new Bot(BotType.followergluharscout), + new Bot(BotType.followergluharsecurity), + new Bot(BotType.followergluharsnipe), + new Bot(BotType.followerkojaniy), + new Bot(BotType.followersanitar), + new Bot(BotType.followerstormtrooper), + + new Bot(BotType.cursedassault), + new Bot(BotType.sectantpriest), + new Bot(BotType.sectantwarrior), + }; foreach (var botToUpdate in rawBots) { diff --git a/Generator/Models/Enums.cs b/Generator/Models/Enums.cs index d5ef6dd..a159155 100644 --- a/Generator/Models/Enums.cs +++ b/Generator/Models/Enums.cs @@ -9,6 +9,18 @@ bossgluhar = 5, bosskilla = 6, bosskojaniy = 7, - bosssanitar = 8 + bosssanitar = 8, + bossstormtrooper = 9, + followerbully = 10, + followergluharassault = 11, + followergluharscout = 12, + followergluharsecurity = 13, + followergluharsnipe = 14, + followerkojaniy = 15, + followersanitar = 16, + followerstormtrooper = 17, + cursedassault = 18, + sectantpriest = 19, + sectantwarrior = 20 } } diff --git a/Generator/Program.cs b/Generator/Program.cs index 1f286f7..1143a37 100644 --- a/Generator/Program.cs +++ b/Generator/Program.cs @@ -16,6 +16,8 @@ namespace Generator "bosskilla", "bosskojaniy", "bosssanitar", + "bossstormtrooper", + "followerbully", "followergluharassault", "followergluharscout", @@ -23,7 +25,12 @@ namespace Generator "followergluharsnipe", "followerkojaniy", "followersanitar", - "cursedassault" + "followerstormtrooper", + + "cursedassault", + + "sectantpriest", + "sectantwarrior", }; // Read raw bot dumps from live and turn into c# objects