pub struct AbilityCombatProfile {
pub dps_add: f64,
pub heal_add: f64,
}Expand description
Combat-honest contribution of one slotted ability to the power scalar.
Fields§
§dps_add: f64Additive DPS throughput in reference units: 1.0 = the reference
single-ability caster (BASE_SPELL_EFF, cd→0) that spawn_wave’s
mirror player is built from. Per-second form of the same
eff × FD/(FD+cd) budget combat damage derives from.
heal_add: f64Heal throughput in the same units (multiply by attack × DMG_K for
absolute HP/s — exactly what spell_heal/HoT apply in combat).
Trait Implementations§
Source§impl Clone for AbilityCombatProfile
impl Clone for AbilityCombatProfile
Source§fn clone(&self) -> AbilityCombatProfile
fn clone(&self) -> AbilityCombatProfile
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AbilityCombatProfile
impl Debug for AbilityCombatProfile
Source§impl Default for AbilityCombatProfile
impl Default for AbilityCombatProfile
Source§fn default() -> AbilityCombatProfile
fn default() -> AbilityCombatProfile
Returns the “default value” for a type. Read more
Source§impl PartialEq for AbilityCombatProfile
impl PartialEq for AbilityCombatProfile
impl Copy for AbilityCombatProfile
impl StructuralPartialEq for AbilityCombatProfile
Auto Trait Implementations§
impl Freeze for AbilityCombatProfile
impl RefUnwindSafe for AbilityCombatProfile
impl Send for AbilityCombatProfile
impl Sync for AbilityCombatProfile
impl Unpin for AbilityCombatProfile
impl UnwindSafe for AbilityCombatProfile
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