[][src]Struct sulis_state::script::ScriptAppliedEffect

pub struct ScriptAppliedEffect { /* fields omitted */ }

An already applied effect, in contrast to an effect being created via ScriptEntity:create_effect

name() -> String

Returns the user defined name of this effect

tag() -> String

Returns the user defined tag of this effect

surface_points() -> Table

Returns a table of all the affected points for this effect. Only works on surfaces.

cur_duration() -> Int

Returns the number of rounds this effect has currently been active

total_duration() -> Int

Returns the total number of rounds this effect will be active for, or 0 for infinite duration (modal) effects

total_duration_is_infinite() -> Bool

Returns true if this effect has infinite duration (manually removed or modal), false otherwise

has_bonus_of_kind(kind: String) -> Bool

Checks whether this effect has one of more bonuses of the given kind. The kind Bonus kinds include armor, ap, reach, range, initiative, hit_points, melee_accuracy, ranged_accuracy, spell_accuracy, defense, fortitude, reflex, will, concealment, concealment_ignore, crit_chance, hit_threshold, graze_threshold, graze_multiplier, hit_multiplier, crit_multiplier, movement_rate, move_anim_rate, attack_cost, ability_ap_cost, hidden, free_ability_group_use, abilities_disabled, move_disabled, attack_disabled, flanked_immunity, sneak_attack_immunity, crit_immunity`

mark_for_removal()

Marks this effect to be removed on the next update. This is done asynchronously, so the effect will still be applied when this method returns.

Implementations

impl ScriptAppliedEffect[src]

pub fn new(effect: &Effect, index: usize) -> ScriptAppliedEffect[src]

Trait Implementations

impl Clone for ScriptAppliedEffect[src]

impl UserData for ScriptAppliedEffect[src]

Auto Trait Implementations

impl RefUnwindSafe for ScriptAppliedEffect

impl Send for ScriptAppliedEffect

impl Sync for ScriptAppliedEffect

impl Unpin for ScriptAppliedEffect

impl UnwindSafe for ScriptAppliedEffect

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<'lua, T> FromLua<'lua> for T where
    T: 'static + UserData + Clone
[src]

impl<'lua, T> FromLuaMulti<'lua> for T where
    T: FromLua<'lua>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'lua, T> ToLua<'lua> for T where
    T: 'static + UserData + Send
[src]

impl<'lua, T> ToLuaMulti<'lua> for T where
    T: ToLua<'lua>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]