Ensnaring Component and Bola Update (#9968)

This commit is contained in:
keronshb
2022-08-24 10:50:31 -04:00
committed by GitHub
parent 16be5184a4
commit cd78c5451d
29 changed files with 681 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ namespace Content.Tests.Shared.Alert
id: testAlertOrder
order:
- alertType: Handcuffed
- alertType: Ensnared
- category: Pressure
- category: Hunger
- alertType: Hot
@@ -47,6 +48,10 @@ namespace Content.Tests.Shared.Alert
id: Handcuffed
icons: []
- type: alert
id: Ensnared
icons: []
- type: alert
id: Hot
icons: []
@@ -82,6 +87,7 @@ namespace Content.Tests.Shared.Alert
// ensure they sort according to our expected criteria
var expectedOrder = new List<AlertType>();
expectedOrder.Add(AlertType.Handcuffed);
expectedOrder.Add(AlertType.Ensnared);
expectedOrder.Add(AlertType.HighPressure);
// stuff with only category + same category ordered by enum value
expectedOrder.Add(AlertType.Peckish);