diff --git a/Fuyu.Backend.BSG/ItemTemplates/AmmoItemProperties.cs b/Fuyu.Backend.BSG/ItemTemplates/AmmoItemProperties.cs index dea0bc71..e9f51aaf 100644 --- a/Fuyu.Backend.BSG/ItemTemplates/AmmoItemProperties.cs +++ b/Fuyu.Backend.BSG/ItemTemplates/AmmoItemProperties.cs @@ -190,9 +190,11 @@ public class AmmoItemProperties : StackableItemItemProperties public enum EFlareEventType { - Airdrop, + Light, + Airdrop, ExitActivate, - AIFollowEvent, + Quest, + AIFollowEvent, CallArtilleryOnMyself } } diff --git a/Fuyu.Backend.BSG/ItemTemplates/VestItemProperties.cs b/Fuyu.Backend.BSG/ItemTemplates/VestItemProperties.cs index e389cb3a..654a6085 100644 --- a/Fuyu.Backend.BSG/ItemTemplates/VestItemProperties.cs +++ b/Fuyu.Backend.BSG/ItemTemplates/VestItemProperties.cs @@ -108,6 +108,7 @@ public enum EMaterialType GlassVisor, HelmetRicochet, MetalNoDecal, + Snow, None = 0 } diff --git a/Fuyu.Backend.BSG/Models/Hideout/EAreaType.cs b/Fuyu.Backend.BSG/Models/Hideout/EAreaType.cs index 75459d8f..90f55680 100644 --- a/Fuyu.Backend.BSG/Models/Hideout/EAreaType.cs +++ b/Fuyu.Backend.BSG/Models/Hideout/EAreaType.cs @@ -2,31 +2,34 @@ namespace Fuyu.Backend.BSG.Models.Hideout { public enum EAreaType { - Vents = 0, - Security = 1, - WaterCloset = 2, - Stash = 3, - Generator = 4, - Heating = 5, - WaterCollector = 6, - MedStation = 7, - Kitchen = 8, - RestSpace = 9, - Workbench = 10, - IntelligenceCenter = 11, - ShootingRange = 12, - Library = 13, - ScavCase = 14, - Illumination = 15, - PlaceOfFame = 16, - AirFilteringUnit = 17, - SolarPower = 18, - BoozeGenerator = 19, - BitcoinFarm = 20, - ChristmasIllumination = 21, - EmergencyWall = 22, - Gym = 23, - WeaponStand = 24, - WeaponStandSecondary = 25 - } + NotSet = -1, + Vents, + Security, + WaterCloset, + Stash, + Generator, + Heating, + WaterCollector, + MedStation, + Kitchen, + RestSpace, + Workbench, + IntelligenceCenter, + ShootingRange, + Library, + ScavCase, + Illumination, + PlaceOfFame, + AirFilteringUnit, + SolarPower, + BoozeGenerator, + BitcoinFarm, + ChristmasIllumination, + EmergencyWall, + Gym, + WeaponStand, + WeaponStandSecondary, + EquipmentPresetsStand, + CircleOfCultists + } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/Info/EMemberCategory.cs b/Fuyu.Backend.BSG/Models/Profiles/Info/EMemberCategory.cs index b530a5f6..6be8c595 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/Info/EMemberCategory.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/Info/EMemberCategory.cs @@ -11,6 +11,7 @@ public enum EMemberCategory ChatModeratorWithPermanentBan = 64, UnitTest = 128, Sherpa = 256, - Emissary = 512 + Emissary = 512, + Unheard = 1024 } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Profiles/Info/EPlayerSide.cs b/Fuyu.Backend.BSG/Models/Profiles/Info/EPlayerSide.cs index 83b42ada..6fecfdb4 100644 --- a/Fuyu.Backend.BSG/Models/Profiles/Info/EPlayerSide.cs +++ b/Fuyu.Backend.BSG/Models/Profiles/Info/EPlayerSide.cs @@ -2,8 +2,8 @@ namespace Fuyu.Backend.BSG.Models.Profiles.Info { public enum EPlayerSide { - Usec, + Usec = 1, Bear, - Savage + Savage = 4 } } \ No newline at end of file diff --git a/Fuyu.Backend.BSG/Models/Templates/EEquipmentBuildType.cs b/Fuyu.Backend.BSG/Models/Templates/EEquipmentBuildType.cs index befa6241..eb979c27 100644 --- a/Fuyu.Backend.BSG/Models/Templates/EEquipmentBuildType.cs +++ b/Fuyu.Backend.BSG/Models/Templates/EEquipmentBuildType.cs @@ -4,6 +4,7 @@ namespace Fuyu.Backend.BSG.Models.Templates public enum EEquipmentBuildType { Custom, - Standard + Standard, + Storage } } \ No newline at end of file