Add more bot types
This commit is contained in:
parent
79220c7075
commit
a591b6e21b
@ -27,27 +27,32 @@ 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<Bot>
|
||||
{
|
||||
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)
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user