2023-09-18 17:15:30 +01:00
|
|
|
|
using Common.Models.Input;
|
2021-09-18 22:36:59 +01:00
|
|
|
|
using Common.Models.Output;
|
2021-08-13 16:24:05 +01:00
|
|
|
|
using Generator.Helpers.Gear;
|
2021-08-12 16:52:06 +01:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace Generator
|
|
|
|
|
{
|
2021-09-01 19:19:44 +03:00
|
|
|
|
public static class BotGearGenerator
|
2021-08-12 16:52:06 +01:00
|
|
|
|
{
|
2024-11-03 23:29:50 -08:00
|
|
|
|
public static void AddGear(Bot botToUpdate, Datum rawBotData)
|
2021-08-12 16:52:06 +01:00
|
|
|
|
{
|
2024-11-03 23:29:50 -08:00
|
|
|
|
GearHelpers.AddEquippedGear(botToUpdate, rawBotData);
|
|
|
|
|
GearHelpers.AddAmmo(botToUpdate, rawBotData);
|
|
|
|
|
GearHelpers.AddEquippedMods(botToUpdate, rawBotData);
|
|
|
|
|
//GearHelpers.AddCartridges(botToUpdate, rawBotData);
|
2021-08-12 16:52:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|