pub enum SuitMod {
Show 14 variants
ReducedToolBatteryConsumption,
ImprovedBatteryCapacity,
IncreasedSprintDuration,
CombatMovementSpeed,
ImprovedJumpAssist,
IncreasedAirReserves,
NightVision,
EnhancedTracking,
ExtraBackpackCapacity,
AddedMeleeDamage,
DamageResistance,
ExtraAmmoCapacity,
FasterShieldRegen,
QuieterFootsteps,
}
Expand description
A mod applied to a suit.
Variants§
ReducedToolBatteryConsumption
Reduces the battery consumption of the suit’s utility tool.
ImprovedBatteryCapacity
Increases battery capacity.
IncreasedSprintDuration
Increases how long the player can sprint.
CombatMovementSpeed
Increases movement speed when carrying a weapon.
ImprovedJumpAssist
Increases how long you can use your jetpack.
IncreasedAirReserves
Increases the maximum oxygen capacity the suit can carry.
NightVision
Adds the ability to use nightvision.
EnhancedTracking
Increases the scanning range.
ExtraBackpackCapacity
Increases the carrying capacity for each item category.
AddedMeleeDamage
Increases melee damage.
DamageResistance
Decreases how much damage the player takes from various sources.
ExtraAmmoCapacity
Increases how much extra ammo the player can carry.
FasterShieldRegen
Increases how fast the shield recharges.
QuieterFootsteps
Decreases noise and in turn improves stealth.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SuitMod
impl<'de> Deserialize<'de> for SuitMod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SuitMod
Auto Trait Implementations§
impl Freeze for SuitMod
impl RefUnwindSafe for SuitMod
impl Send for SuitMod
impl Sync for SuitMod
impl Unpin for SuitMod
impl UnwindSafe for SuitMod
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more