pub enum StatusKind {
Show 14 variants
Burning,
Frozen,
Poisoned,
Stunned,
Cursed,
Corroded,
Vulnerable,
Thorned,
Regenerating,
Enraged,
Silenced,
Entropied,
TemporalSnare,
GravityWell,
}Expand description
Type of status effect.
Variants§
Burning
Deals fire damage each second.
Frozen
Slows movement and attack speed.
Poisoned
Applies random small damages each tick.
Stunned
Stuns the target — no actions possible.
Cursed
Drains HP and transfers to attacker (vampiric).
Corroded
Reduces armor.
Vulnerable
Increases damage taken.
Thorned
Reflects a portion of damage back to attacker.
Regenerating
Regenerates HP each second.
Enraged
Increases all stats temporarily.
Silenced
Disables skill use.
Entropied
Amplifies entropy field on target.
TemporalSnare
Slows time around the target.
GravityWell
Gravity well — pulls nearby particles toward the target.
Implementations§
Trait Implementations§
Source§impl Clone for StatusKind
impl Clone for StatusKind
Source§fn clone(&self) -> StatusKind
fn clone(&self) -> StatusKind
Returns a duplicate 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 StatusKind
impl Debug for StatusKind
Source§impl Hash for StatusKind
impl Hash for StatusKind
Source§impl PartialEq for StatusKind
impl PartialEq for StatusKind
impl Copy for StatusKind
impl Eq for StatusKind
impl StructuralPartialEq for StatusKind
Auto Trait Implementations§
impl Freeze for StatusKind
impl RefUnwindSafe for StatusKind
impl Send for StatusKind
impl Sync for StatusKind
impl Unpin for StatusKind
impl UnsafeUnpin for StatusKind
impl UnwindSafe for StatusKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.