Add more bot types

This commit is contained in:
Chomp 2021-08-18 21:41:59 +01:00
parent 79220c7075
commit a591b6e21b
3 changed files with 45 additions and 21 deletions

View File

@ -27,27 +27,32 @@ namespace Generator
var stopwatch = Stopwatch.StartNew(); var stopwatch = Stopwatch.StartNew();
LoggingHelpers.LogToConsole("Started processing bot base"); 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<Bot> var rawBots = new List<Bot>
{ {
assaultBot, new Bot(BotType.assault),
raiderBot, new Bot(BotType.pmcBot),
marksmanBot, new Bot(BotType.marksman),
bossbully, new Bot(BotType.bossbully),
bossgluharBot, new Bot(BotType.bossgluhar),
bosskillaBot, new Bot(BotType.bosskilla),
bosskojaniyBot, new Bot(BotType.bosskojaniy),
bosssanitarBot 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) foreach (var botToUpdate in rawBots)

View File

@ -9,6 +9,18 @@
bossgluhar = 5, bossgluhar = 5,
bosskilla = 6, bosskilla = 6,
bosskojaniy = 7, 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
} }
} }

View File

@ -16,6 +16,8 @@ namespace Generator
"bosskilla", "bosskilla",
"bosskojaniy", "bosskojaniy",
"bosssanitar", "bosssanitar",
"bossstormtrooper",
"followerbully", "followerbully",
"followergluharassault", "followergluharassault",
"followergluharscout", "followergluharscout",
@ -23,7 +25,12 @@ namespace Generator
"followergluharsnipe", "followergluharsnipe",
"followerkojaniy", "followerkojaniy",
"followersanitar", "followersanitar",
"cursedassault" "followerstormtrooper",
"cursedassault",
"sectantpriest",
"sectantwarrior",
}; };
// Read raw bot dumps from live and turn into c# objects // Read raw bot dumps from live and turn into c# objects