feat: added bloodlust, double-edged, comeback, blindside
This commit is contained in:
parent
0c9d96375d
commit
71169690b7
7 changed files with 211 additions and 60 deletions
|
|
@ -70,6 +70,10 @@ pub enum WeaponBonusType {
|
|||
// Misc
|
||||
Execute,
|
||||
Deadly,
|
||||
Bloodlust,
|
||||
DoubleEdged,
|
||||
Blindside,
|
||||
Comeback,
|
||||
}
|
||||
|
||||
#[derive(Component)]
|
||||
|
|
@ -197,6 +201,14 @@ pub enum ArmourBypassBonus {
|
|||
Penetrate { mitigation: f32 },
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Component)]
|
||||
pub enum MiscBonus {
|
||||
Blindside { bonus: f32 },
|
||||
Comeback { bonus: f32 },
|
||||
Deadly { chance: f64 },
|
||||
DoubleEdged { chance: f64 },
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, Component, Display)]
|
||||
#[cfg_attr(feature = "json", derive(serde::Deserialize, serde::Serialize))]
|
||||
#[cfg_attr(feature = "json", serde(rename_all = "snake_case"))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue