Skip to content

Commit

Permalink
Update enums
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Jan 7, 2025
1 parent e8744c2 commit 9e38a9f
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 33 deletions.
6 changes: 4 additions & 2 deletions Fuyu.Backend.BSG/ItemTemplates/AmmoItemProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,11 @@ public class AmmoItemProperties : StackableItemItemProperties

public enum EFlareEventType
{
Airdrop,
Light,
Airdrop,
ExitActivate,
AIFollowEvent,
Quest,
AIFollowEvent,
CallArtilleryOnMyself
}
}
1 change: 1 addition & 0 deletions Fuyu.Backend.BSG/ItemTemplates/VestItemProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public enum EMaterialType
GlassVisor,
HelmetRicochet,
MetalNoDecal,
Snow,
None = 0
}

Expand Down
57 changes: 30 additions & 27 deletions Fuyu.Backend.BSG/Models/Hideout/EAreaType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
3 changes: 2 additions & 1 deletion Fuyu.Backend.BSG/Models/Profiles/Info/EMemberCategory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public enum EMemberCategory
ChatModeratorWithPermanentBan = 64,
UnitTest = 128,
Sherpa = 256,
Emissary = 512
Emissary = 512,
Unheard = 1024
}
}
4 changes: 2 additions & 2 deletions Fuyu.Backend.BSG/Models/Profiles/Info/EPlayerSide.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ namespace Fuyu.Backend.BSG.Models.Profiles.Info
{
public enum EPlayerSide
{
Usec,
Usec = 1,
Bear,
Savage
Savage = 4
}
}
3 changes: 2 additions & 1 deletion Fuyu.Backend.BSG/Models/Templates/EEquipmentBuildType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ namespace Fuyu.Backend.BSG.Models.Templates
public enum EEquipmentBuildType
{
Custom,
Standard
Standard,
Storage
}
}

0 comments on commit 9e38a9f

Please sign in to comment.