Skip to main content

StaticMode

Enum StaticMode 

Source
pub enum StaticMode {
Show 85 variants Continuous, CantAttack, CantBlock, ETBTapped, CantBeCast, CantBeActivated, CantPlayLand, ReduceCost, RaiseCost, SetCost, CantTarget, CantAttach, MustAttack, MustBlock, Panharmonicon, CantGainLosePayLife, CantDraw, CantExile, CantSacrifice, CantRegenerate, DisableTriggers, CantPutCounter, CastWithFlash, BlockRestrict, AttackRestrict, CanAttackDefender, IgnoreHexproof, IgnoreShroud, IgnoreLegendRule, MustTarget, AssignCombatDamageAsUnblocked, AssignNoCombatDamage, CombatDamageToughness, NoCleanupDamage, InfectDamage, WitherDamage, ColorlessDamageSource, CountersRemain, MaxCounter, CantAttackUnless, OptionalAttackCost, OptionalCost, AttackRequirement, PlayerMustAttack, CantBlockUnless, CantBlockBy, ManaConvert, UnspentMana, ManaBurn, ActivateAbilityAsIfHaste, CanAdapt, AlternativeCost, CantBeCopied, CantBeSuspected, CantBecomeMonarch, CantChangeDayTime, CantCrew, CantDiscard, CantPhaseIn, CantPhaseOut, CantTransform, CantVenture, Devotion, CanExhaust, FlipCoinMod, GainLifeRadiation, IgnoreLandwalk, NumLoyaltyAct, PlotZone, SurveilNum, TapPowerValue, TurnReversed, PhaseReversed, UntapOtherPlayer, CanBlockIfReach, BlockTapped, CanAttackIfHaste, MinMaxBlocker, AttackVigilance, CantPreventDamage, CantGainLife, CantLoseLife, CantPayLife, CantChangeLife, Other(String),
}
Expand description

The mode of a static ability.

Mirrors Java StaticAbilityMode enum. Each variant corresponds to a Mode$ <Value> entry in the card script.

Variants§

§

Continuous

Mode$ Continuous — layer-based continuous effects (anthems, keyword grants, P/T setting). The most common category; handled by the layer system in layer.rs.

§

CantAttack

Mode$ CantAttack — affected creatures cannot attack.

§

CantBlock

Mode$ CantBlock — affected creatures cannot block.

§

ETBTapped

Mode$ ETBTapped — this permanent (or matching permanents) enters the battlefield tapped. Applied once at ETB time, not continuously.

§

CantBeCast

Mode$ CantBeCast — matching spells cannot be cast.

§

CantBeActivated

Mode$ CantBeActivated — matching abilities cannot be activated.

§

CantPlayLand

Mode$ CantPlayLand — matching lands cannot be played.

§

ReduceCost

Mode$ ReduceCost — reduce the mana cost of matching spells.

§

RaiseCost

Mode$ RaiseCost — increase the mana cost of matching spells.

§

SetCost

Mode$ SetCost — raise cost to a minimum (Trinisphere). Used with RaiseTo$.

§

CantTarget

§

CantAttach

§

MustAttack

§

MustBlock

§

Panharmonicon

§

CantGainLosePayLife

§

CantDraw

§

CantExile

§

CantSacrifice

§

CantRegenerate

§

DisableTriggers

§

CantPutCounter

§

CastWithFlash

§

BlockRestrict

§

AttackRestrict

§

CanAttackDefender

§

IgnoreHexproof

§

IgnoreShroud

§

IgnoreLegendRule

§

MustTarget

§

AssignCombatDamageAsUnblocked

§

AssignNoCombatDamage

§

CombatDamageToughness

§

NoCleanupDamage

§

InfectDamage

§

WitherDamage

§

ColorlessDamageSource

§

CountersRemain

§

MaxCounter

§

CantAttackUnless

Mode$ CantAttackUnless — attacker must pay a cost to attack (Propaganda, Ghostly Prison).

§

OptionalAttackCost

Mode$ OptionalAttackCost — optional attack payment like Exert/Enlist.

§

OptionalCost

Mode$ OptionalCost — generic optional cost on a spell/ability (GameActionUtil).

§

AttackRequirement

Mode$ AttackRequirement — adds an attack requirement (StaticAbilityAttackRequirement).

§

PlayerMustAttack

Mode$ PlayerMustAttack — controller of affected creatures must attack.

§

CantBlockUnless

Mode$ CantBlockUnless — blocker must pay a cost to block (War Cadence).

§

CantBlockBy

Mode$ CantBlockBy — restricts which blockers can block an attacker (Flying, Fear, Intimidate, Skulk, or card-specific restrictions).

§

ManaConvert

Mode$ ManaConvert — spend mana as though it were mana of any color/type.

§

UnspentMana

Mode$ UnspentMana — mana of specified type doesn’t empty from pool.

§

ManaBurn

Mode$ ManaBurn — losing unspent mana causes life loss (Yurlok of Scorch Thrash).

§

ActivateAbilityAsIfHaste

§

CanAdapt

§

AlternativeCost

§

CantBeCopied

§

CantBeSuspected

§

CantBecomeMonarch

§

CantChangeDayTime

§

CantCrew

§

CantDiscard

§

CantPhaseIn

§

CantPhaseOut

§

CantTransform

§

CantVenture

§

Devotion

§

CanExhaust

§

FlipCoinMod

§

GainLifeRadiation

§

IgnoreLandwalk

§

NumLoyaltyAct

§

PlotZone

§

SurveilNum

§

TapPowerValue

§

TurnReversed

§

PhaseReversed

§

UntapOtherPlayer

§

CanBlockIfReach

§

BlockTapped

§

CanAttackIfHaste

§

MinMaxBlocker

§

AttackVigilance

§

CantPreventDamage

§

CantGainLife

§

CantLoseLife

§

CantPayLife

§

CantChangeLife

§

Other(String)

Any mode not yet recognised — stored but not applied.

Trait Implementations§

Source§

impl Clone for StaticMode

Source§

fn clone(&self) -> StaticMode

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StaticMode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for StaticMode

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for StaticMode

Source§

impl From<&str> for StaticMode

Source§

fn from(s: &str) -> StaticMode

Converts to this type from the input type.
Source§

impl FromStr for StaticMode

Source§

type Err = Infallible

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<StaticMode, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for StaticMode

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for StaticMode

Source§

fn cmp(&self, other: &StaticMode) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for StaticMode

Source§

fn eq(&self, other: &StaticMode) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for StaticMode

Source§

fn partial_cmp(&self, other: &StaticMode) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for StaticMode

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for StaticMode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CallHasher for T
where T: Hash + ?Sized,

Source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V