v1.6.17.0 (Unto the Breach update)

This commit is contained in:
Regalis11
2024-10-22 17:29:04 +03:00
parent e74b3cdb17
commit 6e6c17e100
417 changed files with 17166 additions and 5870 deletions
@@ -12,6 +12,13 @@ namespace Barotrauma
Exponential
}
public enum SelectedSubType
{
Shuttle,
Sub,
EnemySub
}
/// <summary>
/// ActionTypes define when a <see cref="StatusEffect"/> is executed.
/// </summary>
@@ -116,6 +123,14 @@ namespace Barotrauma
/// </summary>
OnAbility = 23,
/// <summary>
/// Executes once when a specific Containable is placed inside an ItemContainer. Only valid for Containables defined in an ItemContainer component.
/// </summary>
OnInserted = 24,
/// <summary>
/// Executes once when a specific Containable is removed from an ItemContainer. Only valid for Containables defined in an ItemContainer component.
/// </summary>
OnRemoved = 25,
/// <summary>
/// Executes when the character dies. Only valid for characters.
/// </summary>
OnDeath = OnBroken
@@ -588,7 +603,17 @@ namespace Barotrauma
/// <summary>
/// Reduces the dual wielding penalty by a percentage.
/// </summary>
DualWieldingPenaltyReduction
DualWieldingPenaltyReduction,
/// <summary>
/// Multiplier bonus to melee attacks coming from a natural weapon (limb).
/// </summary>
NaturalMeleeAttackMultiplier,
/// <summary>
/// Multiplier bonus to ranged attacks coming from a natural weapon (limb).
/// </summary>
NaturalRangedAttackMultiplier
}
internal enum ItemTalentStats
@@ -599,12 +624,13 @@ namespace Barotrauma
EngineSpeed,
EngineMaxSpeed,
PumpSpeed,
PumpMaxFlow,
ReactorMaxOutput,
ReactorFuelConsumption,
DeconstructorSpeed,
FabricationSpeed,
ExtraStackSize
ExtraStackSize,
[Obsolete("Use PumpSpeed instead.")]
PumpMaxFlow = PumpSpeed,
}
/// <summary>
@@ -723,4 +749,10 @@ namespace Barotrauma
Local,
Radio
}
public enum PvpTeamSelectionMode
{
PlayerPreference,
PlayerChoice,
}
}