diff --git a/crates/engine/src/database/forge/effect.rs b/crates/engine/src/database/forge/effect.rs index c000542303..548187ac77 100644 --- a/crates/engine/src/database/forge/effect.rs +++ b/crates/engine/src/database/forge/effect.rs @@ -1,5 +1,6 @@ use crate::types::ability::{ - ControllerRef, Effect, ManaProduction, PtValue, QuantityExpr, TargetFilter, TypedFilter, + ControllerRef, Effect, EffectScope, ManaProduction, PtValue, QuantityExpr, TapStateChange, + TargetFilter, TypedFilter, }; use crate::types::mana::ManaColor; use crate::types::Zone; @@ -341,13 +342,21 @@ fn translate_destroy_all(params: &ForgeParams) -> Result Result { let target = resolve_target(params, "ValidTgts"); - Ok(Effect::Tap { target }) + Ok(Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + }) } -// CR 701.26a: Untap target permanent. +// CR 701.26b: Untap target permanent. fn translate_untap(params: &ForgeParams) -> Result { let target = resolve_target(params, "ValidTgts"); - Ok(Effect::Untap { target }) + Ok(Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Untap, + }) } // CR 400.7: Move objects between zones. diff --git a/crates/engine/src/database/synthesis.rs b/crates/engine/src/database/synthesis.rs index 885d5fb754..8dffb96883 100644 --- a/crates/engine/src/database/synthesis.rs +++ b/crates/engine/src/database/synthesis.rs @@ -13,13 +13,14 @@ use crate::types::ability::{ AttackScope, AttackSubject, CardPlayMode, CastFromZoneDriver, CastManaObjectScope, CastManaSpentMetric, CastVariantPaid, ChoiceType, Comparator, ContinuousModification, ControllerRef, CopyRetargetPermission, CounterTriggerFilter, DamageKindFilter, - DamageModification, DelayedTriggerCondition, Duration, Effect, FilterProp, KickerVariant, - ManaContribution, ManaProduction, ModalSelectionCondition, ModalSelectionConstraint, - NinjutsuVariant, ObjectScope, ParsedCondition, PaymentCost, PlayerFilter, PlayerScope, PtStat, - PtValue, PtValueScope, QuantityExpr, QuantityRef, RenownSubject, ReplacementCondition, - ReplacementDefinition, RuntimeHandler, SearchSelectionConstraint, StaticCondition, - StaticDefinition, TargetChoiceTiming, TargetFilter, TriggerCondition, TriggerDefinition, - TypeFilter, TypedFilter, UnlessPayModifier, + DamageModification, DelayedTriggerCondition, Duration, Effect, EffectScope, FilterProp, + KickerVariant, ManaContribution, ManaProduction, ModalSelectionCondition, + ModalSelectionConstraint, NinjutsuVariant, ObjectScope, ParsedCondition, PaymentCost, + PlayerFilter, PlayerScope, PtStat, PtValue, PtValueScope, QuantityExpr, QuantityRef, + RenownSubject, ReplacementCondition, ReplacementDefinition, RuntimeHandler, + SearchSelectionConstraint, StaticCondition, StaticDefinition, TapStateChange, + TargetChoiceTiming, TargetFilter, TriggerCondition, TriggerDefinition, TypeFilter, TypedFilter, + UnlessPayModifier, }; use crate::types::card::{CardFace, CardLayout, CleaveVariant}; use crate::types::card_type::{CardType, CoreType, Supertype}; @@ -4772,8 +4773,10 @@ fn is_provoke_attack_trigger(t: &TriggerDefinition) -> bool { } // CR 702.39a + CR 701.26b: the parent body untaps a creature the defending // player controls. - let Effect::Untap { + let Effect::SetTapState { target: TargetFilter::Typed(tf), + scope: EffectScope::Single, + state: TapStateChange::Untap, } = &*execute.effect else { return false; @@ -4829,14 +4832,21 @@ fn build_enlist_trigger() -> TriggerDefinition { // CR 702.154a: "you may tap … when you do, [pump]." The optional parent taps // the eligible creature; the reflexive pump rides as its sub-ability. - let execute = AbilityDefinition::new(AbilityKind::Spell, Effect::Tap { target: tap_target }) - .optional() - .sub_ability(pump) - .description( - "Enlist — you may tap an untapped creature you control; if you do, this \ + let execute = AbilityDefinition::new( + AbilityKind::Spell, + Effect::SetTapState { + target: tap_target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + }, + ) + .optional() + .sub_ability(pump) + .description( + "Enlist — you may tap an untapped creature you control; if you do, this \ creature gets +X/+0 where X is that creature's power" - .to_string(), - ); + .to_string(), + ); TriggerDefinition::new(TriggerMode::Attacks) .valid_card(TargetFilter::SelfRef) @@ -4886,7 +4896,14 @@ fn is_enlist_trigger(t: &TriggerDefinition) -> bool { return false; }; execute.optional - && matches!(&*execute.effect, Effect::Tap { .. }) + && matches!( + &*execute.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ) && execute .sub_ability .as_deref() @@ -4936,8 +4953,10 @@ fn build_provoke_trigger() -> TriggerDefinition { // optional parent body untaps the chosen defender, then force-blocks it. let execute = AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: untap_target, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ) .optional() @@ -12823,8 +12842,10 @@ mod provoke_synthesis_tests { ); // CR 702.39a + CR 701.26b: parent body untaps the defending player's creature. - let Effect::Untap { + let Effect::SetTapState { target: TargetFilter::Typed(tf), + scope: EffectScope::Single, + state: TapStateChange::Untap, } = &*execute.effect else { panic!("execute body must be Effect::Untap over a TypedFilter"); @@ -12892,10 +12913,12 @@ mod provoke_synthesis_tests { .valid_card(TargetFilter::SelfRef) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed( TypedFilter::creature().controller(ControllerRef::DefendingPlayer), ), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, )); assert!( @@ -12955,7 +12978,12 @@ mod provoke_synthesis_tests { ); // Parent body taps an eligible Enlist creature. - let Effect::Tap { target } = &*execute.effect else { + let Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } = &*execute.effect + else { panic!("execute body must be Effect::Tap"); }; let TargetFilter::And { filters } = target else { diff --git a/crates/engine/src/game/ability_utils.rs b/crates/engine/src/game/ability_utils.rs index 69c74d974b..e815bd7b70 100644 --- a/crates/engine/src/game/ability_utils.rs +++ b/crates/engine/src/game/ability_utils.rs @@ -1,6 +1,8 @@ +#[cfg(test)] +use crate::types::ability::TapStateChange; use crate::types::ability::{ AbilityCondition, AbilityDefinition, CardTypeSetSource, CastManaSpentMetric, - CombatRelationSubject, ControllerRef, CounterMoveSelection, Effect, FilterProp, + CombatRelationSubject, ControllerRef, CounterMoveSelection, Effect, EffectScope, FilterProp, GameRestriction, ModalChoice, ModalSelectionCondition, ModalSelectionConstraint, MultiTargetSpec, ObjectScope, PlayerFilter, QuantityExpr, QuantityRef, ResolvedAbility, RestrictionPlayerScope, SpellContext, SubAbilityLink, TargetChoiceTiming, TargetFilter, @@ -1734,8 +1736,11 @@ fn effect_references_target_player(effect: &Effect) -> bool { | Effect::DestroyAll { target, .. } | Effect::PumpAll { target, .. } | Effect::DamageAll { target, .. } - | Effect::TapAll { target, .. } - | Effect::UntapAll { target, .. } + | Effect::SetTapState { + scope: EffectScope::All, + target, + .. + } | Effect::BounceAll { target, .. } | Effect::CounterAll { target, .. } | Effect::ChangeZoneAll { target, .. } @@ -1939,8 +1944,11 @@ fn effect_references_parent_target_combat_relation(effect: &Effect) -> bool { match effect { Effect::DestroyAll { target, .. } | Effect::PumpAll { target, .. } - | Effect::TapAll { target, .. } - | Effect::UntapAll { target, .. } + | Effect::SetTapState { + scope: EffectScope::All, + target, + .. + } | Effect::BounceAll { target, .. } | Effect::CounterAll { target, .. } | Effect::ChangeZoneAll { target, .. } @@ -2013,8 +2021,11 @@ fn effect_references_target_creature_quantity(effect: &Effect) -> bool { } Effect::DestroyAll { target, .. } | Effect::PumpAll { target, .. } - | Effect::TapAll { target, .. } - | Effect::UntapAll { target, .. } + | Effect::SetTapState { + scope: EffectScope::All, + target, + .. + } | Effect::BounceAll { target, .. } | Effect::CounterAll { target, .. } | Effect::ChangeZoneAll { target, .. } @@ -4858,8 +4869,10 @@ mod tests { }; let def = AbilityDefinition::new( AbilityKind::Activated, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .unless_pay(modifier.clone()); @@ -6638,10 +6651,12 @@ mod tests { .tapped = true; let mut ability = per_opponent_gain_control_ability().sub_ability( ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::TrackedSet { id: TrackedSetId(0), }, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![], ObjectId(900), @@ -7267,8 +7282,10 @@ mod tests { TargetFilter::Typed(TypedFilter::creature().controller(ControllerRef::TargetPlayer)); let ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: creature_filter.clone(), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], ObjectId(900), @@ -7607,8 +7624,10 @@ mod tests { } let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], ObjectId(10), @@ -7649,8 +7668,10 @@ mod tests { } let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], ObjectId(10), @@ -7683,8 +7704,10 @@ mod tests { .push(crate::types::card_type::CoreType::Creature); let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], ObjectId(10), @@ -7726,8 +7749,10 @@ mod tests { } let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], ObjectId(10), @@ -7772,8 +7797,10 @@ mod tests { } let mut ability = ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::land()), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![], ObjectId(10), @@ -7812,8 +7839,10 @@ mod tests { } let mut ability = ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::land()), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![], ObjectId(10), @@ -8312,8 +8341,10 @@ mod tests { target: TargetFilter::Typed(TypedFilter::creature()), cant_regenerate: false, }), - single_target_mode(Effect::Tap { + single_target_mode(Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }), ]; let descriptions = vec![ @@ -8351,8 +8382,10 @@ mod tests { target: TargetFilter::Typed(TypedFilter::creature()), cant_regenerate: false, }); - mode.sub_ability = Some(Box::new(single_target_mode(Effect::Tap { + mode.sub_ability = Some(Box::new(single_target_mode(Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }))); let abilities = vec![mode]; let descriptions = vec!["Destroy then tap.".to_string()]; @@ -8386,8 +8419,10 @@ mod tests { let mut state = crate::types::game_state::GameState::new_two_player(42); spawn_creatures(&mut state, PlayerId(1), 1); - let mode = single_target_mode(Effect::Tap { + let mode = single_target_mode(Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }); let abilities = vec![mode]; let descriptions = vec!["Tap a creature.".to_string()]; @@ -8420,8 +8455,10 @@ mod tests { let mut state = crate::types::game_state::GameState::new_two_player(42); spawn_creatures(&mut state, PlayerId(0), 1); - let abilities = vec![single_target_mode(Effect::Tap { + let abilities = vec![single_target_mode(Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, })]; let (slots, labels) = build_target_slots_labelled( @@ -8456,8 +8493,10 @@ mod tests { max: usize, ) -> ResolvedAbility { let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], source, diff --git a/crates/engine/src/game/attractions.rs b/crates/engine/src/game/attractions.rs index 59405bd98a..50b3cca70b 100644 --- a/crates/engine/src/game/attractions.rs +++ b/crates/engine/src/game/attractions.rs @@ -272,8 +272,10 @@ mod tests { src.replacement_definitions = vec![ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: crate::types::ability::EffectScope::Single, + state: crate::types::ability::TapStateChange::Tap, }, )) .destination_zone(Zone::Battlefield) diff --git a/crates/engine/src/game/casting.rs b/crates/engine/src/game/casting.rs index b42260ba69..373ef34170 100644 --- a/crates/engine/src/game/casting.rs +++ b/crates/engine/src/game/casting.rs @@ -12670,13 +12670,13 @@ mod tests { AbilityCost, AbilityTag, ActivationRestriction, AdditionalCost, AggregateFunction, BasicLandType, CastPermissionConstraint, CastVariantPaid, CastingPermission, ChosenAttribute, ChosenSubtypeKind, Comparator, ContinuousModification, ControllerRef, - CostCategory, CountScope, FilterProp, GameRestriction, KickerVariant, ManaContribution, - ManaProduction, ManaSpendPermission, ManaSpendRestriction, ModalChoice, + CostCategory, CountScope, EffectScope, FilterProp, GameRestriction, KickerVariant, + ManaContribution, ManaProduction, ManaSpendPermission, ManaSpendRestriction, ModalChoice, ModalSelectionCondition, ModalSelectionConstraint, MultiTargetSpec, ObjectProperty, ProhibitedActivity, PtStat, PtValue, PtValueScope, QuantityExpr, QuantityRef, ReplacementDefinition, ReplacementMode, RestrictionExpiry, RestrictionPlayerScope, - SearchSelectionConstraint, StaticCondition, StaticDefinition, TargetFilter, TargetRef, - TypeFilter, TypedFilter, + SearchSelectionConstraint, StaticCondition, StaticDefinition, TapStateChange, TargetFilter, + TargetRef, TypeFilter, TypedFilter, }; use crate::types::actions::GameAction; use crate::types::card_type::{CoreType, Supertype}; @@ -24578,8 +24578,10 @@ mod tests { Arc::make_mut(&mut obj.abilities).push( AbilityDefinition::new( AbilityKind::Activated, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::new(TypeFilter::Creature)), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ) .cost(AbilityCost::ReturnToHand { diff --git a/crates/engine/src/game/coverage.rs b/crates/engine/src/game/coverage.rs index 5bb3d06c01..36ab00fd43 100644 --- a/crates/engine/src/game/coverage.rs +++ b/crates/engine/src/game/coverage.rs @@ -13,11 +13,12 @@ use crate::types::ability::{ AdditionalCost, AggregateFunction, AttackScope, AttackSubject, CardTypeSetSource, ChoiceType, Comparator, ContinuousModification, ControllerRef, CountScope, CounterSourceRider, DelayedTriggerCondition, DieRollModifier, DoublePTMode, Duration, Effect, EffectOutcomeSignal, - FilterProp, GameRestriction, ManaProduction, ObjectProperty, ObjectScope, PlayerFilter, - PlayerScope, PtStat, PtValue, PtValueScope, QuantityExpr, QuantityRef, ReplacementCondition, - ReplacementDefinition, ReplacementMode, SeatDirection, SharedQuality, SharedQualityRelation, - SpeedDelta, SpellCastingOption, SpellCastingOptionKind, StaticCondition, StaticDefinition, - TargetFilter, TriggerDefinition, TypeFilter, TypedFilter, ZoneRef, + EffectScope, FilterProp, GameRestriction, ManaProduction, ObjectProperty, ObjectScope, + PlayerFilter, PlayerScope, PtStat, PtValue, PtValueScope, QuantityExpr, QuantityRef, + ReplacementCondition, ReplacementDefinition, ReplacementMode, SeatDirection, SharedQuality, + SharedQualityRelation, SpeedDelta, SpellCastingOption, SpellCastingOptionKind, StaticCondition, + StaticDefinition, TapStateChange, TargetFilter, TriggerDefinition, TypeFilter, TypedFilter, + ZoneRef, }; use crate::types::card::CardFace; use crate::types::card_type::CoreType; @@ -343,6 +344,14 @@ pub struct SetCoverageSummary { /// Extract the effect variant name (e.g. "DealDamage", "Draw", "Unimplemented") /// by serializing to JSON and reading the serde `type` tag. fn effect_type_name(effect: &Effect) -> String { + // CR 701.26a/b: `Effect::SetTapState` serializes under one `"type"` tag, + // but the diagnostic label must preserve the four legacy names + // (Tap/Untap/TapAll/UntapAll) so per-effect coverage reporting reads the + // same set as before the collapse. `effect_variant_name` reconstructs them + // from `(scope, state)`. + if matches!(effect, Effect::SetTapState { .. }) { + return crate::types::ability::effect_variant_name(effect).to_string(); + } serde_json::to_value(effect) .ok() .and_then(|v| v.get("type").and_then(|t| t.as_str()).map(String::from)) @@ -1696,9 +1705,16 @@ fn effect_details(effect: &Effect) -> Vec<(String, String)> { d.push(("filter".into(), fmt_target(target))); } } + // CR 701.26a/b: single-target tap/untap reports its `target` like other + // single-target effects; the mass scope reports a `filter` below. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } => { + d.push(("target".into(), fmt_target(target))); + } Effect::Destroy { target, .. } - | Effect::Tap { target } - | Effect::Untap { target } | Effect::Sacrifice { target, .. } | Effect::GainControl { target } | Effect::Attach { target, .. } @@ -1723,8 +1739,13 @@ fn effect_details(effect: &Effect) -> Vec<(String, String)> { Effect::EpicCopy { .. } => {} Effect::Intensify { .. } => {} Effect::DestroyAll { target, .. } - | Effect::TapAll { target } - | Effect::UntapAll { target } + // CR 701.26a/b: mass tap/untap (legacy `TapAll`/`UntapAll`) reports a + // population `filter`, like the other mass effects. + | Effect::SetTapState { + scope: EffectScope::All, + target, + .. + } | Effect::BounceAll { target, .. } | Effect::CounterAll { target, .. } | Effect::DamageAll { @@ -6986,10 +7007,18 @@ fn audit_card_lines(oracle_text: &str, face: &CardFace) -> Vec // "You may pay {X} rather than pay ..." — alternative cost patterns effective_lower.contains("rather than pay") } - Effect::TapAll { .. } => { - effective_lower.contains("tap") && !effective_lower.contains("untap") - } - Effect::UntapAll { .. } => effective_lower.contains("untap"), + // CR 701.26a/b: mass tap/untap (legacy `TapAll`/`UntapAll`) + // swallowed-clause detection. + Effect::SetTapState { + scope: EffectScope::All, + state: TapStateChange::Tap, + .. + } => effective_lower.contains("tap") && !effective_lower.contains("untap"), + Effect::SetTapState { + scope: EffectScope::All, + state: TapStateChange::Untap, + .. + } => effective_lower.contains("untap"), Effect::PreventDamage { .. } => { // "If a source would deal damage to you, prevent N of that damage" // Parsed as PreventDamage without a description string. @@ -7004,9 +7033,16 @@ fn audit_card_lines(oracle_text: &str, face: &CardFace) -> Vec Effect::CastCopyOfCard { .. } => { effective_lower.contains("copy") && effective_lower.contains("cast the copy") } - Effect::Untap { .. } => { - // "Untap this creature during each other player's untap step" and similar - // Parsed as Untap without a description string. + // CR 701.26b: single-target untap (legacy `Effect::Untap`) — + // "Untap this creature during each other player's untap step" + // and similar, parsed without a description string. Single-target + // tap (legacy `Effect::Tap`) has no swallowed-clause heuristic and + // falls through to `false`. + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } => { effective_lower.contains("untap") && (effective_lower.contains("untap step") || effective_lower.contains("during each")) diff --git a/crates/engine/src/game/effects/change_zone.rs b/crates/engine/src/game/effects/change_zone.rs index 7c2f9c4b21..48a1ddcb73 100644 --- a/crates/engine/src/game/effects/change_zone.rs +++ b/crates/engine/src/game/effects/change_zone.rs @@ -5,6 +5,8 @@ use crate::types::ability::{ ControllerRef, Duration, Effect, EffectError, EffectKind, FilterProp, ResolvedAbility, TargetChoiceTiming, TargetFilter, TargetSelectionMode, TypedFilter, }; +#[cfg(test)] +use crate::types::ability::{EffectScope, TapStateChange}; use crate::types::counter::CounterType; use crate::types::events::GameEvent; use crate::types::game_state::{GameState, PendingCounterPostAction, WaitingFor}; @@ -4169,8 +4171,10 @@ mod tests { trigger.condition = Some(TriggerCondition::ZoneChangeObjectIsTapped); trigger.execute = Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::TriggeringSource, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ))); trigger @@ -4408,8 +4412,10 @@ mod tests { }); trigger.execute = Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::TriggeringSource, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ))); let obj = state.objects.get_mut(&conqueror).unwrap(); @@ -5571,8 +5577,10 @@ mod tests { }, decline: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), }) @@ -5765,8 +5773,10 @@ mod tests { }, decline: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), }) @@ -5940,8 +5950,10 @@ mod tests { }, decline: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), }) @@ -5972,8 +5984,10 @@ mod tests { }, decline: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), }) diff --git a/crates/engine/src/game/effects/mod.rs b/crates/engine/src/game/effects/mod.rs index d9cfd983cf..b806f4f23d 100644 --- a/crates/engine/src/game/effects/mod.rs +++ b/crates/engine/src/game/effects/mod.rs @@ -8,9 +8,10 @@ use crate::game::filter; use crate::game::speed::has_max_speed; use crate::types::ability::{ AbilityCondition, AbilityCost, AbilityKind, ControllerRef, CopyRetargetPermission, - CostPaidObjectSnapshot, Effect, EffectError, EffectKind, EffectOutcomeSignal, FilterProp, - PlayerFilter, PlayerScope, QuantityExpr, QuantityRef, RepeatContinuation, ResolvedAbility, - SharedQuality, SharedQualityRelation, SubAbilityLink, TargetFilter, TargetRef, + CostPaidObjectSnapshot, Effect, EffectError, EffectKind, EffectOutcomeSignal, EffectScope, + FilterProp, PlayerFilter, PlayerScope, QuantityExpr, QuantityRef, RepeatContinuation, + ResolvedAbility, SharedQuality, SharedQualityRelation, SubAbilityLink, TapStateChange, + TargetFilter, TargetRef, }; #[cfg(test)] use crate::types::ability::{AttackScope, AttackSubject}; @@ -1877,10 +1878,9 @@ pub fn resolve_effect( Effect::Token { .. } => token::resolve(state, ability, events), Effect::GainLife { .. } => life::resolve_gain(state, ability, events), Effect::LoseLife { .. } => life::resolve_lose(state, ability, events), - Effect::Tap { .. } => tap_untap::resolve_tap(state, ability, events), - Effect::Untap { .. } => tap_untap::resolve_untap(state, ability, events), - Effect::TapAll { .. } => tap_untap::resolve_tap_all(state, ability, events), - Effect::UntapAll { .. } => tap_untap::resolve_untap_all(state, ability, events), + // CR 701.26a/b: scope (Single vs All) and state (Tap vs Untap) are + // dispatched inside `resolve_set_tap_state`. + Effect::SetTapState { .. } => tap_untap::resolve_set_tap_state(state, ability, events), Effect::RemoveCounter { .. } => counters::resolve_remove(state, ability, events), Effect::Sacrifice { .. } => sacrifice::resolve(state, ability, events), Effect::DiscardCard { .. } => discard::resolve(state, ability, events), @@ -2328,9 +2328,14 @@ fn affected_objects_from_events( _ => None, }) .collect(), - // CR 701.26a + CR 608.2c: Tap publishes the tapped set for downstream - // "each of those " continuations (Urge to Feed class). - Effect::Tap { .. } | Effect::Untap { .. } => { + // CR 701.26a + CR 608.2c: single-target tap/untap publishes the tapped + // set for downstream "each of those " continuations (Urge to Feed + // class). The mass (`All`) scope is not a target source — it falls + // through to the default arm, matching the legacy `TapAll`/`UntapAll`. + Effect::SetTapState { + scope: EffectScope::Single, + .. + } => { let from_events: Vec = events .iter() .filter_map(|event| match event { @@ -2442,10 +2447,18 @@ fn mandatory_parent_effect_performed(effect: &Effect, events: &[GameEvent]) -> b Effect::Token { .. } => events .iter() .any(|event| matches!(event, GameEvent::TokenCreated { .. })), - Effect::Tap { .. } | Effect::TapAll { .. } => events + // CR 701.26a: a tap "did anything" iff some permanent became tapped. + Effect::SetTapState { + state: TapStateChange::Tap, + .. + } => events .iter() .any(|event| matches!(event, GameEvent::PermanentTapped { .. })), - Effect::Untap { .. } | Effect::UntapAll { .. } => events + // CR 701.26b: an untap "did anything" iff some permanent became untapped. + Effect::SetTapState { + state: TapStateChange::Untap, + .. + } => events .iter() .any(|event| matches!(event, GameEvent::PermanentUntapped { .. })), Effect::GainLife { .. } => events @@ -3058,8 +3071,6 @@ fn extract_event_context_filter(effect: &Effect) -> Option<&TargetFilter> { | Effect::PairWith { target } | Effect::Destroy { target, .. } | Effect::Regenerate { target, .. } - | Effect::Tap { target, .. } - | Effect::Untap { target, .. } | Effect::Bounce { target, .. } | Effect::GainControl { target, .. } | Effect::Counter { target, .. } @@ -3115,6 +3126,16 @@ fn extract_event_context_filter(effect: &Effect) -> Option<&TargetFilter> { | Effect::GiveControl { target, .. } | Effect::Detain { target, .. } | Effect::TargetOnly { target } => target, + // CR 701.26a/b + CR 603.7c: only the single-permanent tap/untap exposes + // an event-context target. The mass (`All`) scope's `target` is a + // population filter, not a per-event target ref — it must not be + // auto-resolved here (matching the legacy `TapAll`/`UntapAll`, which had + // no event-context target at all). + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } => target, // CR 603.7c + CR 608.2c: `GenericEffect` carries an optional `target` that may // be an event-context ref (e.g., `TriggeringSource` for "that land doesn't untap // during its controller's next untap step" on a TapsForMana trigger). Routing it @@ -7106,8 +7127,10 @@ mod tests { Zone::Battlefield, ); let mut ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Any, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![TargetRef::Object(target)], source, @@ -9251,8 +9274,10 @@ mod tests { PlayerId(0), ); let ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature().subtype("Vampire".to_string())), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![TargetRef::Object(vampire)], source, diff --git a/crates/engine/src/game/effects/overload.rs b/crates/engine/src/game/effects/overload.rs index 4f96fcfe3c..bd96ef9b1e 100644 --- a/crates/engine/src/game/effects/overload.rs +++ b/crates/engine/src/game/effects/overload.rs @@ -32,7 +32,9 @@ //! for those. CR 702.96a's clarification that the transformation applies //! only to the word "target" in the spell's text matches this behavior. -use crate::types::ability::{AbilityDefinition, Effect}; +#[cfg(test)] +use crate::types::ability::TapStateChange; +use crate::types::ability::{AbilityDefinition, Effect, EffectScope}; /// Transform an ability definition tree in place: rewrite every target-bearing /// effect into its all-matching counterpart and recurse into `sub_ability`, @@ -88,7 +90,20 @@ fn transform_effect_in_place(effect: &mut Effect) { player_filter: None, damage_source: None, }, - Effect::Tap { target } => Effect::TapAll { target }, + // CR 702.96a + CR 701.26a/b: overload's text change (replace every + // "target" with "each") promotes single-target tap/untap to its mass + // scope, carrying the tap/untap polarity through. (Only the Tap polarity + // appears in the current overload corpus; Untap promotion is + // type-supported for parity.) + Effect::SetTapState { + target, + scope: EffectScope::Single, + state, + } => Effect::SetTapState { + target, + scope: EffectScope::All, + state, + }, // CR 702.96b + CR 400.7 + CR 611.2c: Cyclonic Rift overload — promote // single-target Bounce to the canonical mass-bounce variant. Preserves // `destination` so top-of-library overloads (none in current corpus @@ -202,11 +217,20 @@ mod tests { #[test] fn tap_becomes_tap_all() { - let mut def = leaf(Effect::Tap { + let mut def = leaf(Effect::SetTapState { target: creature_filter(), + scope: EffectScope::Single, + state: TapStateChange::Tap, }); transform_ability_def(&mut def); - assert!(matches!(*def.effect, Effect::TapAll { .. })); + assert!(matches!( + *def.effect, + Effect::SetTapState { + scope: EffectScope::All, + state: TapStateChange::Tap, + .. + } + )); } #[test] @@ -315,13 +339,22 @@ mod tests { }); let mut parent = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: creature_filter(), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .sub_ability(sub); transform_ability_def(&mut parent); - assert!(matches!(*parent.effect, Effect::TapAll { .. })); + assert!(matches!( + *parent.effect, + Effect::SetTapState { + scope: EffectScope::All, + state: TapStateChange::Tap, + .. + } + )); let sub_ref = parent.sub_ability.as_ref().expect("sub present"); assert!(matches!(*sub_ref.effect, Effect::DestroyAll { .. })); } diff --git a/crates/engine/src/game/effects/reveal_from_hand.rs b/crates/engine/src/game/effects/reveal_from_hand.rs index 5b6df002b2..e5bc39b777 100644 --- a/crates/engine/src/game/effects/reveal_from_hand.rs +++ b/crates/engine/src/game/effects/reveal_from_hand.rs @@ -11,6 +11,8 @@ use crate::game::filter::{matches_target_filter, FilterContext}; use crate::types::ability::{ AbilityDefinition, Effect, EffectError, EffectKind, ResolvedAbility, TargetRef, }; +#[cfg(test)] +use crate::types::ability::{EffectScope, TapStateChange}; use crate::types::events::GameEvent; use crate::types::game_state::{GameState, PendingContinuation, WaitingFor}; @@ -76,7 +78,8 @@ pub fn resolve( // normal RevealChoice handler path. // // CR 107.3 + CR 611.2: Seed the continuation's targets with the source so - // `Effect::Tap { target: SelfRef }` (the reveal-land decline branch) + // `Effect::SetTapState { target: SelfRef, scope: Single, state: Tap }` (the + // reveal-land decline branch) // resolves correctly when drained. Mirrors `apply_post_replacement_effect`'s // convention of threading the source object as the default target. if let Some(def) = on_decline { @@ -161,8 +164,10 @@ mod tests { fn tap_self_ability() -> AbilityDefinition { AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) } @@ -295,8 +300,10 @@ mod tests { ); let conditional_tap = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .condition(crate::types::ability::AbilityCondition::Not { @@ -373,8 +380,10 @@ mod tests { ); let conditional_tap = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .condition(crate::types::ability::AbilityCondition::Not { diff --git a/crates/engine/src/game/effects/tap_untap.rs b/crates/engine/src/game/effects/tap_untap.rs index 1d1bd2ff8f..4eff81fdb4 100644 --- a/crates/engine/src/game/effects/tap_untap.rs +++ b/crates/engine/src/game/effects/tap_untap.rs @@ -2,7 +2,8 @@ use std::collections::HashSet; use crate::game::replacement::{self, ReplacementResult}; use crate::types::ability::{ - Effect, EffectError, EffectKind, ResolvedAbility, TargetChoiceTiming, TargetFilter, TargetRef, + Effect, EffectError, EffectKind, EffectScope, ResolvedAbility, TapStateChange, + TargetChoiceTiming, TargetFilter, TargetRef, }; use crate::types::events::GameEvent; use crate::types::game_state::{GameState, WaitingFor}; @@ -52,69 +53,67 @@ fn tap_untap_target_ids( } } -/// CR 701.26a: Tap — turn a permanent sideways. CR 701.26b: Untap — return to upright. -pub fn resolve_tap( - state: &mut GameState, +/// CR 701.26a (tap) / CR 701.26b (untap): Resolve `Effect::SetTapState`. +/// +/// The `scope` field is load-bearing and genuinely divergent: +/// - `EffectScope::Single` (legacy `Tap`/`Untap`) resolves a single chosen or +/// source permanent through the target/SelfRef/TrackedSet/resolution-prompt +/// path (`resolve_single`). +/// - `EffectScope::All` (legacy `TapAll`/`UntapAll`) iterates every permanent +/// matching the population filter (`resolve_all`). +/// +/// `state: TapStateChange` selects the tap/untap polarity within each scope. +pub fn resolve_set_tap_state( + game_state: &mut GameState, ability: &ResolvedAbility, events: &mut Vec, ) -> Result<(), EffectError> { - // CR 701.26a + CR 608.2c: `Effect::Tap`'s subject is resolved from its own - // `target` filter — `SelfRef` (the printed-name "tap ~" anaphor) and - // `TrackedSet` ("tap those creatures") resolve regardless of - // `ability.targets`, so chained `Tap` sub-abilities don't inherit the - // parent's targets via chain propagation in - // `effects::mod.rs::resolve_ability_chain` (issue #323 class). - let Effect::Tap { target } = &ability.effect else { - return Err(EffectError::MissingParam("Tap".to_string())); + let Effect::SetTapState { + target, + scope, + state, + } = &ability.effect + else { + return Err(EffectError::MissingParam("SetTapState".to_string())); }; - if prompt_resolution_tap_untap_choice(state, ability, target, EffectKind::Tap, events) { - return Ok(()); - } - let target_ids = tap_untap_target_ids(state, ability, target); - for obj_id in target_ids { - if let TapUntapOutcome::NeedsChoice(player) = - process_one_tap(state, obj_id, ability.source_id, events)? - { - state.waiting_for = - crate::game::replacement::replacement_choice_waiting_for(player, state); - return Ok(()); - }; + match scope { + EffectScope::Single => resolve_single(game_state, ability, target, *state, events), + EffectScope::All => resolve_all(game_state, ability, target, *state, events), } - - events.push(GameEvent::EffectResolved { - kind: EffectKind::from(&ability.effect), - source_id: ability.source_id, - }); - - Ok(()) } -/// CR 701.26b: Untap target permanents — rotate back to upright position. -pub fn resolve_untap( +/// CR 701.26a/b + CR 608.2c: Single-permanent tap/untap (legacy +/// `Effect::Tap`/`Effect::Untap`). The subject is resolved from the effect's +/// own `target` filter — `SelfRef` (the printed-name "tap ~"/"untap ~" anaphor) +/// and `TrackedSet` ("tap/untap those creatures") resolve regardless of +/// `ability.targets`, so chained tap/untap sub-abilities don't inherit the +/// parent's targets via chain propagation in +/// `effects::mod.rs::resolve_ability_chain` (issue #323 class). `SelfRef` is +/// also the runtime path for trigger shapes like Ragost's untap-self (CR 603.4 +/// intervening-if + CR 514 end step); `TrackedSet` is the chain-unified +/// "untap those creatures" tail of a `ChooseObjectsIntoTrackedSet` chain +/// (CR 603.7e — Magnetic Mountain / Dream Tides / Thelon's Curse). +fn resolve_single( state: &mut GameState, ability: &ResolvedAbility, + target: &TargetFilter, + change: TapStateChange, events: &mut Vec, ) -> Result<(), EffectError> { - // CR 701.26b + CR 608.2c: `Effect::Untap`'s subject is resolved from its - // own `target` filter. `SelfRef` is the printed-name "untap ~" anaphor - // (runtime path for trigger shapes like Ragost's "At the beginning of - // each end step, if you gained life this turn, untap ~" — CR 603.4 - // intervening-if + CR 514 end step). `TrackedSet` is the chain-unified - // "untap those creatures" tail of a `ChooseObjectsIntoTrackedSet` chain - // (CR 603.7e — Magnetic Mountain / Dream Tides / Thelon's Curse). Both - // resolve from the filter regardless of `ability.targets`, so chained - // `Untap` sub-abilities don't inherit the parent's targets via chain - // propagation in `effects::mod.rs::resolve_ability_chain` (issue #323 - // class). - let Effect::Untap { target } = &ability.effect else { - return Err(EffectError::MissingParam("Untap".to_string())); + let effect_kind = match change { + TapStateChange::Tap => EffectKind::Tap, + TapStateChange::Untap => EffectKind::Untap, }; - if prompt_resolution_tap_untap_choice(state, ability, target, EffectKind::Untap, events) { + if prompt_resolution_tap_untap_choice(state, ability, target, effect_kind, events) { return Ok(()); } let target_ids = tap_untap_target_ids(state, ability, target); for obj_id in target_ids { - if let TapUntapOutcome::NeedsChoice(player) = process_one_untap(state, obj_id, events)? { + let outcome = match change { + TapStateChange::Tap => process_one_tap(state, obj_id, ability.source_id, events)?, + TapStateChange::Untap => process_one_untap(state, obj_id, events)?, + }; + if let TapUntapOutcome::NeedsChoice(player) = outcome { state.waiting_for = crate::game::replacement::replacement_choice_waiting_for(player, state); return Ok(()); @@ -252,76 +251,18 @@ fn prompt_resolution_tap_untap_choice( true } -/// CR 701.26a: Tap all permanents matching the filter. -pub fn resolve_tap_all( - state: &mut GameState, - ability: &ResolvedAbility, - events: &mut Vec, -) -> Result<(), EffectError> { - let target_filter = match &ability.effect { - Effect::TapAll { target } => target.clone(), - _ => TargetFilter::Any, - }; - - let effective_filter = crate::game::effects::resolved_object_filter(ability, &target_filter); - - // CR 107.3a + CR 601.2b: ability-context filter evaluation. - let ctx = crate::game::filter::FilterContext::from_ability(ability); - let matching: Vec<_> = state - .battlefield - .iter() - .filter(|id| { - crate::game::filter::matches_target_filter(state, **id, &effective_filter, &ctx) - }) - .copied() - .collect(); - - for obj_id in matching { - let proposed = ProposedEvent::Tap { - object_id: obj_id, - applied: HashSet::new(), - }; - - match replacement::replace_event(state, proposed, events) { - ReplacementResult::Execute(event) => { - if let ProposedEvent::Tap { object_id, .. } = event { - if let Some(obj) = state.objects.get_mut(&object_id) { - obj.tapped = true; - events.push(GameEvent::PermanentTapped { - object_id, - caused_by: Some(ability.source_id), - }); - } - } - } - ReplacementResult::Prevented => {} - ReplacementResult::NeedsChoice(player) => { - state.waiting_for = replacement::replacement_choice_waiting_for(player, state); - return Ok(()); - } - } - } - - events.push(GameEvent::EffectResolved { - kind: EffectKind::from(&ability.effect), - source_id: ability.source_id, - }); - - Ok(()) -} - -/// CR 701.26b: Untap all permanents matching the filter. -pub fn resolve_untap_all( +/// CR 701.26a (tap) / CR 701.26b (untap): Mass tap/untap of every permanent +/// matching the filter (legacy `Effect::TapAll`/`Effect::UntapAll`). Unlike the +/// single scope this never declares targets — it iterates the resolved +/// population filter and applies the change to each matching permanent. +fn resolve_all( state: &mut GameState, ability: &ResolvedAbility, + target: &TargetFilter, + change: TapStateChange, events: &mut Vec, ) -> Result<(), EffectError> { - let target_filter = match &ability.effect { - Effect::UntapAll { target } => target.clone(), - _ => TargetFilter::Any, - }; - - let effective_filter = crate::game::effects::resolved_object_filter(ability, &target_filter); + let effective_filter = crate::game::effects::resolved_object_filter(ability, target); // CR 107.3a + CR 601.2b: ability-context filter evaluation. let ctx = crate::game::filter::FilterContext::from_ability(ability); @@ -335,25 +276,13 @@ pub fn resolve_untap_all( .collect(); for obj_id in matching { - let proposed = ProposedEvent::Untap { - object_id: obj_id, - applied: HashSet::new(), + let outcome = match change { + TapStateChange::Tap => process_one_tap(state, obj_id, ability.source_id, events)?, + TapStateChange::Untap => process_one_untap(state, obj_id, events)?, }; - - match replacement::replace_event(state, proposed, events) { - ReplacementResult::Execute(event) => { - if let ProposedEvent::Untap { object_id, .. } = event { - if let Some(obj) = state.objects.get_mut(&object_id) { - obj.tapped = false; - events.push(GameEvent::PermanentUntapped { object_id }); - } - } - } - ReplacementResult::Prevented => {} - ReplacementResult::NeedsChoice(player) => { - state.waiting_for = replacement::replacement_choice_waiting_for(player, state); - return Ok(()); - } + if let TapUntapOutcome::NeedsChoice(player) = outcome { + state.waiting_for = replacement::replacement_choice_waiting_for(player, state); + return Ok(()); } } @@ -370,8 +299,8 @@ mod tests { use super::*; use crate::game::zones::create_object; use crate::types::ability::{ - Effect, MultiTargetSpec, QuantityExpr, TargetChoiceTiming, TargetFilter, TypeFilter, - TypedFilter, + Effect, EffectScope, MultiTargetSpec, QuantityExpr, TapStateChange, TargetChoiceTiming, + TargetFilter, TypeFilter, TypedFilter, }; use crate::types::card_type::CoreType; use crate::types::identifiers::{CardId, ObjectId}; @@ -380,8 +309,10 @@ mod tests { fn make_tap_ability(target: ObjectId) -> ResolvedAbility { ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Any, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![TargetRef::Object(target)], ObjectId(100), @@ -391,8 +322,10 @@ mod tests { fn make_untap_ability(target: ObjectId) -> ResolvedAbility { ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Any, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![TargetRef::Object(target)], ObjectId(100), @@ -412,7 +345,7 @@ mod tests { ); let mut events = Vec::new(); - resolve_tap(&mut state, &make_tap_ability(obj_id), &mut events).unwrap(); + resolve_set_tap_state(&mut state, &make_tap_ability(obj_id), &mut events).unwrap(); assert!(state.objects[&obj_id].tapped); assert!(events @@ -440,8 +373,10 @@ mod tests { state.objects.get_mut(&obj_id).unwrap().tapped = true; let ability = ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![], // empty — SelfRef must resolve via source_id obj_id, @@ -449,7 +384,7 @@ mod tests { ); let mut events = Vec::new(); - resolve_untap(&mut state, &ability, &mut events).unwrap(); + resolve_set_tap_state(&mut state, &ability, &mut events).unwrap(); assert!( !state.objects[&obj_id].tapped, @@ -474,8 +409,10 @@ mod tests { ); let ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], obj_id, @@ -483,7 +420,7 @@ mod tests { ); let mut events = Vec::new(); - resolve_tap(&mut state, &ability, &mut events).unwrap(); + resolve_set_tap_state(&mut state, &ability, &mut events).unwrap(); assert!( state.objects[&obj_id].tapped, @@ -504,7 +441,7 @@ mod tests { state.objects.get_mut(&obj_id).unwrap().tapped = true; let mut events = Vec::new(); - resolve_untap(&mut state, &make_untap_ability(obj_id), &mut events).unwrap(); + resolve_set_tap_state(&mut state, &make_untap_ability(obj_id), &mut events).unwrap(); assert!(!state.objects[&obj_id].tapped); assert!(events @@ -559,12 +496,14 @@ mod tests { .push(CoreType::Creature); let mut ability = ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter { type_filters: vec![TypeFilter::Land], controller: None, properties: vec![], }), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, vec![], ObjectId(100), @@ -574,7 +513,7 @@ mod tests { ability.target_choice_timing = TargetChoiceTiming::Resolution; let mut events = Vec::new(); - resolve_untap(&mut state, &ability, &mut events).unwrap(); + resolve_set_tap_state(&mut state, &ability, &mut events).unwrap(); match &state.waiting_for { WaitingFor::EffectZoneChoice { @@ -685,14 +624,18 @@ mod tests { }); let ability = ResolvedAbility::new( - Effect::UntapAll { target: filter }, + Effect::SetTapState { + target: filter, + scope: EffectScope::All, + state: TapStateChange::Untap, + }, vec![], ObjectId(100), PlayerId(0), ); let mut events = Vec::new(); - resolve_untap_all(&mut state, &ability, &mut events).unwrap(); + resolve_set_tap_state(&mut state, &ability, &mut events).unwrap(); // All 3 nonland permanents should be untapped assert!( @@ -761,16 +704,117 @@ mod tests { }); let ability = ResolvedAbility::new( - Effect::TapAll { target: filter }, + Effect::SetTapState { + target: filter, + scope: EffectScope::All, + state: TapStateChange::Tap, + }, vec![], ObjectId(100), PlayerId(0), ); let mut events = Vec::new(); - resolve_tap_all(&mut state, &ability, &mut events).unwrap(); + resolve_set_tap_state(&mut state, &ability, &mut events).unwrap(); assert!(state.objects[&creature].tapped, "creature should be tapped"); assert!(!state.objects[&land].tapped, "land should not be tapped"); } + + /// Building-block test: `resolve_set_tap_state` routes every + /// (scope, state) quadrant correctly. CR 701.26a (tap) / CR 701.26b (untap). + #[test] + fn set_tap_state_routes_all_four_quadrants() { + use crate::types::ability::{ControllerRef, TypeFilter, TypedFilter}; + use crate::types::card_type::CoreType; + + // Helper: a single battlefield permanent in a known tap state. + fn one_creature(tapped: bool) -> (GameState, ObjectId) { + let mut state = GameState::new_two_player(42); + let id = create_object( + &mut state, + CardId(1), + PlayerId(0), + "Bear".to_string(), + Zone::Battlefield, + ); + state + .objects + .get_mut(&id) + .unwrap() + .card_types + .core_types + .push(CoreType::Creature); + state.objects.get_mut(&id).unwrap().tapped = tapped; + (state, id) + } + + let single = |state: TapStateChange, id: ObjectId| { + ResolvedAbility::new( + Effect::SetTapState { + target: TargetFilter::Any, + scope: EffectScope::Single, + state, + }, + vec![TargetRef::Object(id)], + ObjectId(100), + PlayerId(0), + ) + }; + let all = |state: TapStateChange| { + ResolvedAbility::new( + Effect::SetTapState { + target: TargetFilter::Typed(TypedFilter { + type_filters: vec![TypeFilter::Creature], + controller: Some(ControllerRef::You), + properties: vec![], + }), + scope: EffectScope::All, + state, + }, + vec![], + ObjectId(100), + PlayerId(0), + ) + }; + + // (Single, Tap): untapped → tapped via the target path. + let (mut state, id) = one_creature(false); + resolve_set_tap_state( + &mut state, + &single(TapStateChange::Tap, id), + &mut Vec::new(), + ) + .unwrap(); + assert!(state.objects[&id].tapped, "Single/Tap must tap the target"); + + // (Single, Untap): tapped → untapped via the target path. + let (mut state, id) = one_creature(true); + resolve_set_tap_state( + &mut state, + &single(TapStateChange::Untap, id), + &mut Vec::new(), + ) + .unwrap(); + assert!( + !state.objects[&id].tapped, + "Single/Untap must untap the target" + ); + + // (All, Tap): untapped → tapped via the population-filter path. + let (mut state, id) = one_creature(false); + resolve_set_tap_state(&mut state, &all(TapStateChange::Tap), &mut Vec::new()).unwrap(); + assert!( + state.objects[&id].tapped, + "All/Tap must tap each matching permanent" + ); + + // (All, Untap): tapped → untapped via the population-filter path. + let (mut state, id) = one_creature(true); + resolve_set_tap_state(&mut state, &all(TapStateChange::Untap), &mut Vec::new()).unwrap(); + assert!( + !state.objects[&id].tapped, + "All/Untap must untap each matching permanent" + ); + } } diff --git a/crates/engine/src/game/engine.rs b/crates/engine/src/game/engine.rs index 93cedf6c56..13aa161b99 100644 --- a/crates/engine/src/game/engine.rs +++ b/crates/engine/src/game/engine.rs @@ -3,6 +3,8 @@ use std::collections::VecDeque; use thiserror::Error; use crate::types::ability::{EffectKind, KeywordAction, TargetRef}; +#[cfg(test)] +use crate::types::ability::{EffectScope, TapStateChange}; use crate::types::actions::GameAction; use crate::types::events::{BendingType, ContestRound, GameEvent, ManaTapState, PlayerActionKind}; use crate::types::game_state::{ @@ -12571,8 +12573,10 @@ mod tests { ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) @@ -15146,9 +15150,10 @@ mod phase_trigger_regression_tests { use crate::parser::oracle::parse_oracle_text; use crate::types::ability::{ AbilityCondition, AbilityCost, AbilityDefinition, AbilityKind, ControllerRef, Effect, - FilterProp, ObjectScope, PlayerFilter, QuantityExpr, QuantityRef, ReplacementDefinition, - ReplacementMode, ResolvedAbility, TargetFilter, TargetRef, TriggerConstraint, - TriggerDefinition, TypeFilter, TypedFilter, UnlessPayModifier, + EffectScope, FilterProp, ObjectScope, PlayerFilter, QuantityExpr, QuantityRef, + ReplacementDefinition, ReplacementMode, ResolvedAbility, TapStateChange, TargetFilter, + TargetRef, TriggerConstraint, TriggerDefinition, TypeFilter, TypedFilter, + UnlessPayModifier, }; use crate::types::card::CardFace; use crate::types::card_type::CoreType; @@ -17384,8 +17389,10 @@ Echo—Discard a card. (At the beginning of your upkeep, if this came under your ); let mut pending_ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Any, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![], source_id, diff --git a/crates/engine/src/game/engine_payment_choices.rs b/crates/engine/src/game/engine_payment_choices.rs index b0d1dacf35..120e415e72 100644 --- a/crates/engine/src/game/engine_payment_choices.rs +++ b/crates/engine/src/game/engine_payment_choices.rs @@ -1,7 +1,8 @@ use crate::game::filter; use crate::game::replacement::{self, ReplacementResult}; use crate::types::ability::{ - AbilityCondition, AbilityCost, Effect, EffectKind, ResolvedAbility, TargetFilter, TargetRef, + AbilityCondition, AbilityCost, Effect, EffectKind, EffectScope, ResolvedAbility, + TapStateChange, TargetFilter, TargetRef, }; use crate::types::events::GameEvent; use crate::types::game_state::{ @@ -115,8 +116,23 @@ pub(super) fn handle_opponent_may_choice( ability.context.accepting_player = Some(promptee); let target_selection = match &ability.effect { - Effect::Sacrifice { target, .. } | Effect::Tap { target } => { - let require_untapped = matches!(ability.effect, Effect::Tap { .. }); + // CR 701.21a (sacrifice) / CR 701.26a (tap): an optional + // sacrifice or single-target tap cost. Tap requires an untapped + // permanent (CR 701.26a); sacrifice has no such restriction. + Effect::Sacrifice { target, .. } + | Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => { + let require_untapped = matches!( + ability.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ); let legal: Vec = state .objects .iter() diff --git a/crates/engine/src/game/engine_replacement.rs b/crates/engine/src/game/engine_replacement.rs index 64f0265046..f14a054d5a 100644 --- a/crates/engine/src/game/engine_replacement.rs +++ b/crates/engine/src/game/engine_replacement.rs @@ -3,6 +3,8 @@ use crate::types::ability::{ AbilityDefinition, Effect, PostReplacementContinuation, ResolvedAbility, TargetFilter, TargetRef, }; +#[cfg(test)] +use crate::types::ability::{EffectScope, TapStateChange}; use crate::types::counter::CounterType; use crate::types::events::{GameEvent, ManaTapState}; use crate::types::game_state::{GameState, WaitingFor}; @@ -1384,8 +1386,10 @@ mod tests { src.replacement_definitions = vec![ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .destination_zone(Zone::Battlefield) @@ -2337,8 +2341,10 @@ mod tests { // Legacy slots also populated (corrupted/hybrid input). state.legacy_post_replacement_effect = Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ))); diff --git a/crates/engine/src/game/keywords.rs b/crates/engine/src/game/keywords.rs index 9510f2dd04..8326bf1ee7 100644 --- a/crates/engine/src/game/keywords.rs +++ b/crates/engine/src/game/keywords.rs @@ -1399,8 +1399,10 @@ mod tests { src.replacement_definitions = vec![ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: crate::types::ability::EffectScope::Single, + state: crate::types::ability::TapStateChange::Tap, }, )) .destination_zone(Zone::Battlefield) diff --git a/crates/engine/src/game/morph.rs b/crates/engine/src/game/morph.rs index 8afe31e11e..add0536438 100644 --- a/crates/engine/src/game/morph.rs +++ b/crates/engine/src/game/morph.rs @@ -421,8 +421,10 @@ mod tests { src.replacement_definitions = vec![ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( crate::types::ability::AbilityKind::Spell, - crate::types::ability::Effect::Tap { + crate::types::ability::Effect::SetTapState { target: TargetFilter::SelfRef, + scope: crate::types::ability::EffectScope::Single, + state: crate::types::ability::TapStateChange::Tap, }, )) .destination_zone(Zone::Battlefield) diff --git a/crates/engine/src/game/planeswalker.rs b/crates/engine/src/game/planeswalker.rs index b9b7dd4f07..0a1d60d81d 100644 --- a/crates/engine/src/game/planeswalker.rs +++ b/crates/engine/src/game/planeswalker.rs @@ -318,8 +318,8 @@ mod tests { use super::*; use crate::game::zones::create_object; use crate::types::ability::{ - AbilityCost, AbilityDefinition, AbilityKind, ActivationRestriction, Effect, QuantityExpr, - TargetFilter, TypedFilter, + AbilityCost, AbilityDefinition, AbilityKind, ActivationRestriction, Effect, EffectScope, + QuantityExpr, TapStateChange, TargetFilter, TypedFilter, }; use crate::types::card_type::CoreType; use crate::types::game_state::CastingVariant; @@ -641,8 +641,10 @@ mod tests { 4, vec![make_loyalty_ability( -2, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::creature()), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )], ); diff --git a/crates/engine/src/game/printed_cards.rs b/crates/engine/src/game/printed_cards.rs index 7f582a3b91..3fd9939758 100644 --- a/crates/engine/src/game/printed_cards.rs +++ b/crates/engine/src/game/printed_cards.rs @@ -751,10 +751,8 @@ fn walk_effect(effect: &Effect, out: &mut Vec) { | Effect::GainLife { .. } | Effect::LoseLife { .. } | Effect::ExchangeLifeWithStat { .. } - | Effect::Tap { .. } - | Effect::Untap { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } + // CR 701.26a/b: all tap/untap scopes are leaf effects here. + | Effect::SetTapState { .. } | Effect::RemoveCounter { .. } | Effect::Sacrifice { .. } | Effect::DiscardCard { .. } diff --git a/crates/engine/src/game/replacement.rs b/crates/engine/src/game/replacement.rs index 787057770d..6706aea240 100644 --- a/crates/engine/src/game/replacement.rs +++ b/crates/engine/src/game/replacement.rs @@ -3,9 +3,9 @@ use std::collections::HashMap; use crate::types::ability::{ AbilityCost, AbilityDefinition, CombatDamageScope, ControllerRef, DamageModification, - DamageTargetFilter, DamageTargetPlayerScope, Effect, PostReplacementContinuation, + DamageTargetFilter, DamageTargetPlayerScope, Effect, EffectScope, PostReplacementContinuation, PreventionAmount, QuantityExpr, QuantityModification, ReplacementCondition, - ReplacementDefinition, ReplacementMode, ShieldKind, TargetFilter, TargetRef, + ReplacementDefinition, ReplacementMode, ShieldKind, TapStateChange, TargetFilter, TargetRef, }; use crate::types::card_type::CoreType; use crate::types::counter::CounterType; @@ -460,11 +460,17 @@ fn replacement_choice_label(repl: &ReplacementDefinition) -> String { // enters-tapped modifier class. The `target: TargetFilter::SelfRef` // constraint is load-bearing — a non-SelfRef tap is not an // enters-tapped modifier and must fall through to raw text. - Effect::Tap { + // CR 701.26a: SelfRef single tap → enters tapped. + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, } => "Enters tapped".to_string(), - Effect::Untap { + // CR 701.26b: SelfRef single untap → enters untapped. + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, } => "Enters untapped".to_string(), _ => fallback(), }, @@ -3926,10 +3932,12 @@ impl EventModifiers { fn is_event_modifier_effect(effect: &Effect) -> bool { matches!( effect, - Effect::Tap { - target: TargetFilter::SelfRef, - } | Effect::Untap { + // CR 701.26a/b: a SelfRef single tap/untap is purely an enters-tapped + // event modifier (either polarity). + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + .. } | Effect::PutCounter { target: TargetFilter::SelfRef, .. @@ -3989,11 +3997,17 @@ fn event_modifiers_for_ability( while let Some(def) = current { if etb_tap_state == EtbTapState::Unspecified { etb_tap_state = match &*def.effect { - Effect::Tap { + // CR 701.26a: SelfRef single tap → enters tapped. + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, } => EtbTapState::Tapped, - Effect::Untap { + // CR 701.26b: SelfRef single untap → enters untapped. + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, } => EtbTapState::Untapped, _ => EtbTapState::Unspecified, }; @@ -4659,10 +4673,14 @@ fn candidate_materiality( } // CR 616.1c: copy-as-it-enters strips another replacement's source. Effect::BecomeCopy { .. } => return CandidateMateriality::Unconditional, - // CR 614.1c: `Tap`/`Untap` both overwrite the `enter_tapped` field — - // two such candidates conflict (tapland + Spelunking / Archelos), - // last-applied wins. - Effect::Tap { .. } | Effect::Untap { .. } => { + // CR 614.1c: single-target `Tap`/`Untap` (legacy `Tap`/`Untap`) both + // overwrite the `enter_tapped` field — two such candidates conflict + // (tapland + Spelunking / Archelos), last-applied wins. The mass + // scope is not an ETB modifier and is not matched here. + Effect::SetTapState { + scope: EffectScope::Single, + .. + } => { field = Some(EventField::EnterTapped); } // ETB-counter replacements (`PutCounter`) only *append* to @@ -5161,8 +5179,10 @@ mod tests { fn chained_etb_modifiers_do_not_stash_post_replacement_continuation() { let mut enter_tapped = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ); enter_tapped.sub_ability = Some(Box::new(AbilityDefinition::new( @@ -5233,8 +5253,10 @@ mod tests { }, decline: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), }) @@ -5554,8 +5576,10 @@ mod tests { let tap_repl = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) @@ -5563,8 +5587,10 @@ mod tests { let untap_repl = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, )) .valid_card(TargetFilter::SelfRef) @@ -5960,8 +5986,10 @@ mod tests { let tap_repl = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) @@ -6006,8 +6034,10 @@ mod tests { let tap = ReplacementDefinition::new(ReplacementEvent::Moved).execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )); assert_eq!(replacement_choice_label(&tap), "Enters tapped"); @@ -6015,8 +6045,10 @@ mod tests { let untap = ReplacementDefinition::new(ReplacementEvent::Moved).execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, )); assert_eq!(replacement_choice_label(&untap), "Enters untapped"); @@ -6026,8 +6058,10 @@ mod tests { let non_self_tap = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Any, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .description("X".to_string()); @@ -6062,8 +6096,10 @@ mod tests { let untap_repl = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, )) .valid_card(TargetFilter::SelfRef) @@ -6072,8 +6108,10 @@ mod tests { let tap_repl = ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) @@ -6137,8 +6175,10 @@ mod tests { .description("This permanent enters with an additional +1/+1 counter on it".to_string()); let haste_branch = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .description("It gains haste".to_string()); @@ -7042,8 +7082,10 @@ mod tests { ReplacementDefinition::new(ReplacementEvent::ChangeZone) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::Typed( @@ -7057,8 +7099,10 @@ mod tests { ReplacementDefinition::new(ReplacementEvent::ChangeZone) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, )) .valid_card(TargetFilter::Typed( @@ -10386,8 +10430,10 @@ mod tests { let tap_repl = ReplacementDefinition::new(ReplacementEvent::CreateToken).execute( AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ), ); @@ -10395,8 +10441,10 @@ mod tests { let untap_repl = ReplacementDefinition::new(ReplacementEvent::CreateToken).execute( AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ), ); diff --git a/crates/engine/src/game/triggers.rs b/crates/engine/src/game/triggers.rs index 5fb2585ec7..8ef6d5b594 100644 --- a/crates/engine/src/game/triggers.rs +++ b/crates/engine/src/game/triggers.rs @@ -6,6 +6,8 @@ use crate::types::ability::{ ModalChoice, PlayerFilter, QuantityExpr, RenownSubject, ResolvedAbility, TargetFilter, TargetRef, TributeOutcome, TriggerCondition, TriggerDefinition, TypeFilter, TypedFilter, }; +#[cfg(test)] +use crate::types::ability::{EffectScope, TapStateChange}; use crate::types::card_type::CoreType; use crate::types::events::{GameEvent, ManaTapState}; use crate::types::game_state::{ @@ -17074,10 +17076,12 @@ pub mod tests { )) .execute(AbilityDefinition::new( AbilityKind::Database, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed( TypedFilter::default().with_type(TypeFilter::Creature), ), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )); { @@ -20841,8 +20845,10 @@ mod dedup_regression_tests { }; let ability = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::TriggeringSource, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, Vec::new(), ObjectId(0), diff --git a/crates/engine/src/parser/oracle.rs b/crates/engine/src/parser/oracle.rs index f3fcaa6807..b9947161c6 100644 --- a/crates/engine/src/parser/oracle.rs +++ b/crates/engine/src/parser/oracle.rs @@ -4806,11 +4806,11 @@ mod tests { use crate::parser::oracle_effect::parse_effect_chain; use crate::types::ability::{ AbilityCondition, AggregateFunction, Comparator, ContinuousModification, ControllerRef, - Duration, Effect, FilterProp, ManaProduction, ManaSpendRestriction, + Duration, Effect, EffectScope, FilterProp, ManaProduction, ManaSpendRestriction, ModalSelectionConstraint, MultiTargetSpec, ObjectScope, ParsedCondition, PlayerFilter, PlayerScope, PreventionAmount, PtStat, PtValue, PtValueScope, QuantityExpr, QuantityRef, ReplacementCondition, RoundingMode, SharedQuality, SharedQualityRelation, ShieldKind, - StaticCondition, TargetFilter, TriggerCondition, TypeFilter, TypedFilter, + StaticCondition, TapStateChange, TargetFilter, TriggerCondition, TypeFilter, TypedFilter, }; use crate::types::keywords::{FlashbackCost, KeywordKind, WardCost}; use crate::types::mana::{ManaColor, ManaCost, ManaCostShard}; @@ -7684,7 +7684,7 @@ mod tests { matches!( modification, ContinuousModification::GrantAbility { definition } - if matches!(&*definition.effect, Effect::Untap { .. }) + if matches!(&*definition.effect, Effect::SetTapState { state: TapStateChange::Untap, .. }) ) }) })); @@ -8456,7 +8456,13 @@ mod tests { assert_eq!(r.abilities.len(), 1); let ability = &r.abilities[0]; assert_eq!(ability.kind, AbilityKind::Activated); - assert!(matches!(*ability.effect, Effect::Untap { .. })); + assert!(matches!( + *ability.effect, + Effect::SetTapState { + state: TapStateChange::Untap, + .. + } + )); assert!(ability .activation_restrictions .iter() @@ -14044,7 +14050,11 @@ mod tests { while let Some(def) = cursor { match def.effect.as_ref() { Effect::PutCounter { .. } => saw_counter = true, - Effect::Tap { .. } => saw_tap = true, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } => saw_tap = true, Effect::GenericEffect { static_abilities, duration, diff --git a/crates/engine/src/parser/oracle_effect/imperative.rs b/crates/engine/src/parser/oracle_effect/imperative.rs index 244a2f5d38..98e80e5aa1 100644 --- a/crates/engine/src/parser/oracle_effect/imperative.rs +++ b/crates/engine/src/parser/oracle_effect/imperative.rs @@ -26,9 +26,10 @@ use crate::parser::oracle_static::{ use crate::types::ability::{ AbilityCost, AbilityDefinition, AbilityKind, BounceSelection, CategoryChooserScope, ChoiceType, Chooser, ContinuousModification, ControllerRef, CopyRetargetPermission, Duration, Effect, - FilterProp, LibraryPosition, MultiTargetSpec, OutsideGameSourcePool, PaymentCost, PlayerScope, - PreventionAmount, PreventionScope, PtStat, PtValue, QuantityExpr, QuantityRef, - SearchSelectionConstraint, StaticDefinition, TargetFilter, TypeFilter, TypedFilter, ZoneOwner, + EffectScope, FilterProp, LibraryPosition, MultiTargetSpec, OutsideGameSourcePool, PaymentCost, + PlayerScope, PreventionAmount, PreventionScope, PtStat, PtValue, QuantityExpr, QuantityRef, + SearchSelectionConstraint, StaticDefinition, TapStateChange, TargetFilter, TypeFilter, + TypedFilter, ZoneOwner, }; use crate::types::card_type::CoreType; use crate::types::phase::Phase; @@ -1484,10 +1485,28 @@ pub(super) fn parse_targeted_action_ast( pub(super) fn lower_targeted_action_ast(ast: TargetedImperativeAst) -> Effect { match ast { - TargetedImperativeAst::Tap { target } => Effect::Tap { target }, - TargetedImperativeAst::Untap { target } => Effect::Untap { target }, - TargetedImperativeAst::TapAll { target } => Effect::TapAll { target }, - TargetedImperativeAst::UntapAll { target } => Effect::UntapAll { target }, + // CR 701.26a/b: map the parser AST tap/untap variants onto the + // parameterized `Effect::SetTapState` (scope = Single/All, state = Tap/Untap). + TargetedImperativeAst::Tap { target } => Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + }, + TargetedImperativeAst::Untap { target } => Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Untap, + }, + TargetedImperativeAst::TapAll { target } => Effect::SetTapState { + target, + scope: EffectScope::All, + state: TapStateChange::Tap, + }, + TargetedImperativeAst::UntapAll { target } => Effect::SetTapState { + target, + scope: EffectScope::All, + state: TapStateChange::Untap, + }, TargetedImperativeAst::Goad { target } => Effect::Goad { target }, TargetedImperativeAst::GoadAll { target } => Effect::GoadAll { target }, TargetedImperativeAst::Sacrifice { diff --git a/crates/engine/src/parser/oracle_effect/lower.rs b/crates/engine/src/parser/oracle_effect/lower.rs index 78ecc378a0..83bfc2c012 100644 --- a/crates/engine/src/parser/oracle_effect/lower.rs +++ b/crates/engine/src/parser/oracle_effect/lower.rs @@ -24,10 +24,10 @@ use crate::parser::oracle_ir::diagnostic::OracleDiagnostic; use crate::parser::oracle_ir::effect_chain::{ClauseIr, EffectChainIr, SpecialClause}; use crate::types::ability::{ AbilityCondition, AbilityDefinition, AbilityKind, AttackScope, AttackSubject, Comparator, - ControllerRef, DamageSource, DelayedTriggerCondition, Duration, Effect, FilterProp, - MultiTargetSpec, ObjectScope, PaymentCost, PlayerFilter, PtValue, QuantityExpr, QuantityRef, - RoundingMode, StaticCondition, StaticDefinition, SubAbilityLink, TargetChoiceTiming, - TargetFilter, TypeFilter, TypedFilter, + ControllerRef, DamageSource, DelayedTriggerCondition, Duration, Effect, EffectScope, + FilterProp, MultiTargetSpec, ObjectScope, PaymentCost, PlayerFilter, PtValue, QuantityExpr, + QuantityRef, RoundingMode, StaticCondition, StaticDefinition, SubAbilityLink, + TargetChoiceTiming, TargetFilter, TypeFilter, TypedFilter, }; use crate::types::counter::CounterType; use crate::types::game_state::{DistributionUnit, TargetSelectionConstraint}; @@ -832,9 +832,14 @@ fn target_choice_timing_for_clause(clause_ir: &ClauseIr) -> TargetChoiceTiming { return TargetChoiceTiming::Resolution; } } + // CR 701.26a/b: only single-target tap/untap (legacy `Tap`/`Untap`) takes + // the resolution-timing branch; the mass scope never declares multi-target. if matches!( clause_ir.parsed.effect, - Effect::Tap { .. } | Effect::Untap { .. } + Effect::SetTapState { + scope: EffectScope::Single, + .. + } ) && clause_ir.multi_target.is_some() { let lower = clause_ir.source_text.to_ascii_lowercase(); @@ -1253,8 +1258,12 @@ pub(super) fn rewrite_parent_target_to_last_created(effect: &mut Effect) { Effect::Sacrifice { target, .. } | Effect::Destroy { target, .. } | Effect::Bounce { target, .. } - | Effect::Tap { target, .. } - | Effect::Untap { target, .. } + // CR 701.26a/b: only single-target tap/untap carries a rewritable target. + | Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::Pump { target, .. } | Effect::ChangeZone { target, .. } => { if matches!(target, TargetFilter::ParentTarget) { diff --git a/crates/engine/src/parser/oracle_effect/mod.rs b/crates/engine/src/parser/oracle_effect/mod.rs index fc25bfbe1d..f82c4b667a 100644 --- a/crates/engine/src/parser/oracle_effect/mod.rs +++ b/crates/engine/src/parser/oracle_effect/mod.rs @@ -90,14 +90,14 @@ use crate::types::ability::{ BounceSelection, CardPlayMode, CastPermissionConstraint, CastingPermission, ChoiceType, ChooseFromZoneConstraint, Chooser, CombatDamageScope, Comparator, ConjureCard, ConjureSource, ContinuousModification, ControllerRef, DamageModification, DamageSource, - DelayedTriggerCondition, DoubleTarget, Duration, Effect, FilterProp, GameRestriction, - IntensityScope, IterationKindBinding, ManaProduction, ManaSpendPermission, MultiTargetSpec, - ObjectProperty, ObjectScope, PaymentCost, PlayerFilter, PlayerRelation, PlayerScope, - PreventionAmount, PreventionScope, ProhibitedActivity, QuantityExpr, QuantityRef, + DelayedTriggerCondition, DoubleTarget, Duration, Effect, EffectScope, FilterProp, + GameRestriction, IntensityScope, IterationKindBinding, ManaProduction, ManaSpendPermission, + MultiTargetSpec, ObjectProperty, ObjectScope, PaymentCost, PlayerFilter, PlayerRelation, + PlayerScope, PreventionAmount, PreventionScope, ProhibitedActivity, QuantityExpr, QuantityRef, ReplacementDefinition, RestrictionExpiry, RestrictionPlayerScope, RoundingMode, - StaticCondition, StaticDefinition, StepSkipTarget, SubAbilityLink, TargetFilter, - TargetSelectionMode, TriggerCondition, TriggerDefinition, TypeFilter, TypedFilter, - UnlessPayModifier, UntilCondition, ZoneOwner, + StaticCondition, StaticDefinition, StepSkipTarget, SubAbilityLink, TapStateChange, + TargetFilter, TargetSelectionMode, TriggerCondition, TriggerDefinition, TypeFilter, + TypedFilter, UnlessPayModifier, UntilCondition, ZoneOwner, }; #[cfg(test)] use crate::types::ability::{AttackScope, AttackSubject}; @@ -2308,15 +2308,19 @@ fn try_parse_tap_or_untap_choice( let mut tap_branch = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ); tap_branch.description = Some("tap".to_string()); let mut untap_branch = AbilityDefinition::new( AbilityKind::Spell, - Effect::Untap { + Effect::SetTapState { target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ); untap_branch.description = Some("untap".to_string()); @@ -8478,14 +8482,14 @@ fn try_parse_tap_goad_compound(text: &str, ctx: &mut ParseContext) -> Option { *target = TargetFilter::ParentTarget; } - Effect::Tap { target } - | Effect::Untap { target } + // CR 701.26a/b: only single-target tap/untap carries a rewritable target. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::Destroy { target, .. } | Effect::GainControl { target } | Effect::Fight { target, .. } @@ -9907,10 +9915,9 @@ fn has_typed_target(effect: &Effect) -> bool { } | Effect::Destroy { target: TargetFilter::Typed(_), .. - } | Effect::Tap { - target: TargetFilter::Typed(_), - .. - } | Effect::Untap { + } | Effect::SetTapState { + // CR 701.26a/b: only single-target tap/untap exposes a typed target. + scope: EffectScope::Single, target: TargetFilter::Typed(_), .. } | Effect::Bounce { @@ -10021,8 +10028,12 @@ fn has_typed_target_widened(effect: &Effect) -> bool { | Effect::Pump { target, .. } | Effect::DealDamage { target, .. } | Effect::Destroy { target, .. } - | Effect::Tap { target, .. } - | Effect::Untap { target, .. } + // CR 701.26a/b: only single-target tap/untap exposes a widenable target. + | Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::Bounce { target, .. } | Effect::GainControl { target, .. } | Effect::Attach { target, .. } @@ -11001,8 +11012,13 @@ fn inject_subject_target(effect: &mut Effect, subject: &SubjectPhraseAst) { | Effect::Destroy { target, .. } | Effect::Regenerate { target, .. } | Effect::Counter { target, .. } - | Effect::Tap { target, .. } - | Effect::Untap { target, .. } + // CR 701.26a/b: only single-target tap/untap carries an `Any` target to + // rewrite into the subject filter. + | Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::RemoveCounter { target, .. } | Effect::Sacrifice { target, .. } | Effect::DiscardCard { target, .. } @@ -13256,8 +13272,12 @@ fn fold_cast_copy_of_card_defs(defs: &mut Vec) { fn rewrite_parent_targets_to_tracked_set(effect: &mut Effect) { match effect { - Effect::Tap { target } - | Effect::Untap { target } + // CR 701.26a/b: only single-target tap/untap carries a rewritable target. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::Destroy { target, .. } | Effect::GainControl { target } | Effect::Fight { target, .. } @@ -13478,8 +13498,15 @@ pub(crate) fn each_quantity_expr_mut(effect: &mut Effect, f: &mut impl FnMut(&mu /// hold a player ref like `ParentTargetController`. pub(crate) fn each_target_filter_mut(effect: &mut Effect, f: &mut impl FnMut(&mut TargetFilter)) { match effect { - Effect::Tap { target } - | Effect::Untap { target } + // CR 701.26a/b: only single-target tap/untap exposes a per-event target + // filter; the mass (`All`) scope is a population filter and was never + // visited here (it falls through to the no-op arm), matching the legacy + // `TapAll`/`UntapAll`. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } | Effect::Destroy { target, .. } | Effect::Regenerate { target, .. } | Effect::Sacrifice { target, .. } @@ -18001,8 +18028,16 @@ fn extract_effect_verb(effect: &Effect) -> Option<&'static str> { } => Some("return"), Effect::Bounce { .. } | Effect::BounceAll { .. } => Some("return"), Effect::Sacrifice { .. } => Some("sacrifice"), - Effect::Tap { .. } | Effect::TapAll { .. } => Some("tap"), - Effect::Untap { .. } | Effect::UntapAll { .. } => Some("untap"), + // CR 701.26a: the carry-forward verb depends on tap/untap polarity only; + // both scopes share the same verb. + Effect::SetTapState { + state: TapStateChange::Tap, + .. + } => Some("tap"), + Effect::SetTapState { + state: TapStateChange::Untap, + .. + } => Some("untap"), // CR 608.2c: distributive "put" carries forward to a verbless trailing // counter conjunct ("...and a loyalty counter on each planeswalker..."). Effect::PutCounter { .. } | Effect::PutCounterAll { .. } => Some("put"), @@ -18733,20 +18768,31 @@ mod tests { &mut ParseContext::default(), ); assert!( - matches!(clause.effect, Effect::Untap { .. }), - "primary clause must be Untap, got {:?}", + matches!( + clause.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + ), + "primary clause must be single Untap, got {:?}", clause.effect ); let sub = clause .sub_ability .expect("must have sub_ability for mass continuation"); match sub.effect.as_ref() { - Effect::UntapAll { target } => { + Effect::SetTapState { + target, + scope: EffectScope::All, + state: TapStateChange::Untap, + } => { let tf = typed_leg(target).expect("mass untap target should be typed"); assert!(has_type(tf, TypeFilter::Subtype("Samurai".to_string()))); assert_eq!(tf.controller, Some(ControllerRef::You)); } - other => panic!("sub-clause must be UntapAll, got {:?}", other), + other => panic!("sub-clause must be mass Untap, got {:?}", other), } } @@ -21228,7 +21274,14 @@ mod tests { AbilityKind::Activated, ); - assert!(matches!(*def.effect, Effect::Tap { .. })); + assert!(matches!( + *def.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + )); let unless_pay = def.unless_pay.expect("should attach unless_pay"); assert_eq!(unless_pay.payer, TargetFilter::ParentTargetController); assert_eq!( @@ -21249,7 +21302,14 @@ mod tests { AbilityKind::Activated, ); - assert!(matches!(*def.effect, Effect::Tap { .. })); + assert!(matches!( + *def.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + )); let unless_pay = def.unless_pay.expect("should attach unless_pay"); assert_eq!(unless_pay.payer, TargetFilter::ParentTargetController); assert_eq!( @@ -23034,8 +23094,10 @@ mod tests { .expect("targeted creatures should be tapped"); assert!(matches!( &*tap.effect, - Effect::Tap { - target: TargetFilter::TrackedSet { .. } + Effect::SetTapState { + target: TargetFilter::TrackedSet { .. }, + scope: EffectScope::Single, + state: TapStateChange::Tap, } )); @@ -23061,7 +23123,14 @@ mod tests { "Untap target creature. It gets +2/+2 until end of turn and can block an additional creature this turn.", AbilityKind::Spell, ); - assert!(matches!(*def.effect, Effect::Untap { .. })); + assert!(matches!( + *def.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + )); let pump = def.sub_ability.expect("target creature should get pumped"); assert!(matches!( @@ -24727,14 +24796,18 @@ mod tests { assert_eq!(branches.len(), 2); assert!(matches!( &*branches[0].effect, - Effect::Tap { - target: TargetFilter::ParentTarget + Effect::SetTapState { + target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Tap, } )); assert!(matches!( &*branches[1].effect, - Effect::Untap { - target: TargetFilter::ParentTarget + Effect::SetTapState { + target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Untap, } )); } @@ -25412,7 +25485,14 @@ mod tests { &mut ParseContext::default(), ); assert!( - matches!(clause.effect, Effect::Tap { .. }), + matches!( + clause.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ), "primary should be Tap, got {:?}", clause.effect ); @@ -27015,7 +27095,14 @@ mod tests { DelayedTriggerCondition::AtNextPhase { phase: Phase::End } ); assert!( - matches!(*effect.effect, Effect::Untap { .. }), + matches!( + *effect.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + ), "Inner effect should be Untap, got {:?}", effect.effect ); @@ -27034,7 +27121,14 @@ mod tests { .as_ref() .and_then(|discard| discard.sub_ability.as_ref()) .expect("Frantic Search should chain to an untap instruction"); - assert!(matches!(&*untap.effect, Effect::Untap { .. })); + assert!(matches!( + &*untap.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + )); assert_eq!(untap.target_choice_timing, TargetChoiceTiming::Resolution); assert_eq!( untap.multi_target, @@ -31224,7 +31318,14 @@ mod tests { .as_deref() .expect("else-branch must attach when the subtype condition parses"); assert!( - matches!(*else_ab.effect, Effect::Tap { .. }), + matches!( + *else_ab.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ), "expected Tap else-branch, got {:?}", else_ab.effect ); @@ -31263,7 +31364,14 @@ mod tests { .else_ability .as_deref() .expect("else-branch must attach when the keyword condition parses"); - assert!(matches!(*else_ab.effect, Effect::Tap { .. })); + assert!(matches!( + *else_ab.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + )); } #[test] @@ -33245,8 +33353,10 @@ mod tests { assert!( matches!( *def.effect, - Effect::Tap { - target: TargetFilter::ParentTarget + Effect::SetTapState { + target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Tap, } ), "Expected Tap ParentTarget, got {:?}", @@ -33272,8 +33382,10 @@ mod tests { assert!( matches!( *def.effect, - Effect::Untap { - target: TargetFilter::ParentTarget + Effect::SetTapState { + target: TargetFilter::ParentTarget, + scope: EffectScope::Single, + state: TapStateChange::Untap, } ), "Expected Untap ParentTarget, got {:?}", @@ -34232,7 +34344,14 @@ mod tests { "sub condition should be IfAPlayerDoes" ); assert!( - matches!(*sub.effect, Effect::Tap { .. }), + matches!( + *sub.effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ), "sub effect should be Tap, got {:?}", sub.effect ); @@ -37618,8 +37737,10 @@ mod tests { assert!( matches!( def.effect.as_ref(), - Effect::Tap { - target: TargetFilter::Typed(_) + Effect::SetTapState { + target: TargetFilter::Typed(_), + scope: EffectScope::Single, + state: TapStateChange::Tap, } ), "expected Tap with typed target, got: {:?}", diff --git a/crates/engine/src/parser/oracle_effect/sequence.rs b/crates/engine/src/parser/oracle_effect/sequence.rs index 05785332f0..bbe6d3e641 100644 --- a/crates/engine/src/parser/oracle_effect/sequence.rs +++ b/crates/engine/src/parser/oracle_effect/sequence.rs @@ -3324,10 +3324,8 @@ pub(super) fn clause_is_dig_lookback_transparent(effect: &Effect) -> bool { | Effect::Token { .. } | Effect::GainLife { .. } | Effect::LoseLife { .. } - | Effect::Tap { .. } - | Effect::Untap { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } + // CR 701.26a/b: all tap/untap scopes are treated identically here. + | Effect::SetTapState { .. } | Effect::RemoveCounter { .. } | Effect::DiscardCard { .. } | Effect::Mill { .. } diff --git a/crates/engine/src/parser/oracle_keyword.rs b/crates/engine/src/parser/oracle_keyword.rs index ebb6833cd6..fe60b414bc 100644 --- a/crates/engine/src/parser/oracle_keyword.rs +++ b/crates/engine/src/parser/oracle_keyword.rs @@ -15,8 +15,8 @@ use super::oracle_quantity::parse_cda_quantity; use super::oracle_target::parse_type_phrase; use super::oracle_util::strip_reminder_text; use crate::types::ability::{ - AbilityCost, AdditionalCost, ControllerRef, CostObjectCount, Effect, FilterProp, QuantityExpr, - TargetFilter, TypeFilter, TypedFilter, + AbilityCost, AdditionalCost, ControllerRef, CostObjectCount, Effect, EffectScope, FilterProp, + QuantityExpr, TapStateChange, TargetFilter, TypeFilter, TypedFilter, }; use crate::types::keywords::{ normalize_bands_with_other_quality, BloodthirstValue, BuybackCost, CyclingCost, EmbalmCost, @@ -1416,7 +1416,13 @@ pub(crate) fn parse_keyword_from_oracle(text: &str) -> Option { fn normalize_escalate_cost(cost: AbilityCost) -> AbilityCost { match cost { AbilityCost::EffectCost { effect } => match *effect { - Effect::Tap { target } => AbilityCost::TapCreatures { + // CR 701.26a: a single-target tap effect-cost becomes a typed + // tap-creatures cost. Untap / mass scopes keep the effect-cost form. + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => AbilityCost::TapCreatures { count: 1, filter: target, }, diff --git a/crates/engine/src/parser/oracle_replacement.rs b/crates/engine/src/parser/oracle_replacement.rs index 9dd825f058..4cf51ed7d5 100644 --- a/crates/engine/src/parser/oracle_replacement.rs +++ b/crates/engine/src/parser/oracle_replacement.rs @@ -30,10 +30,10 @@ use crate::types::ability::{ AbilityCost, AbilityDefinition, AbilityKind, CastVariantPaid, ChoiceType, CombatDamageScope, Comparator, ContinuousModification, ControllerRef, CopyManaValueLimit, DamageModification, DamageRedirectTarget, DamageTargetFilter, DamageTargetPlayerScope, Duration, Effect, - FilterProp, ManaModification, ManaReplacementScope, PlayerFilter, PreventionAmount, - QuantityExpr, QuantityModification, QuantityRef, ReplacementCondition, ReplacementDefinition, - ReplacementMode, ReplacementPlayerScope, StaticCondition, TargetFilter, TypeFilter, - TypedFilter, + EffectScope, FilterProp, ManaModification, ManaReplacementScope, PlayerFilter, + PreventionAmount, QuantityExpr, QuantityModification, QuantityRef, ReplacementCondition, + ReplacementDefinition, ReplacementMode, ReplacementPlayerScope, StaticCondition, + TapStateChange, TargetFilter, TypeFilter, TypedFilter, }; use crate::types::counter::{CounterMatch, CounterType}; use crate::types::mana::{ManaColor, ManaCost, ManaType}; @@ -168,8 +168,10 @@ fn parse_replacement_line_inner(text: &str, card_name: &str) -> Option AbilityDefinition { AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) } @@ -963,8 +967,10 @@ fn tap_self_unless_controls_matching_ability(filter: &TargetFilter) -> AbilityDe let bound_filter = inject_controller(filter.clone(), ControllerRef::You); AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ) .condition(crate::types::ability::AbilityCondition::Not { @@ -996,8 +1002,10 @@ fn parse_shock_land(norm_lower: &str, original_text: &str) -> Option Option { + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Untap, + } => { assert_eq!( *target, TargetFilter::SelfRef, @@ -14594,7 +14598,10 @@ mod tests { assert!( matches!( *untap_sub.effect, - Effect::UntapAll { .. } | Effect::Untap { .. } + Effect::SetTapState { + state: TapStateChange::Untap, + .. + } ), "second tier effect must be UntapAll/Untap, got {:?}", untap_sub.effect, @@ -25967,7 +25974,11 @@ mod tests { assert_eq!(def.mode, TriggerMode::YouAttack); let execute = def.execute.as_deref().expect("execute ability"); match execute.effect.as_ref() { - Effect::Tap { target } => match target { + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => match target { TargetFilter::Typed(t) => assert_eq!( t.controller, Some(ControllerRef::DefendingPlayer), @@ -26022,7 +26033,11 @@ mod tests { ); let execute = def.execute.as_deref().expect("execute ability"); match execute.effect.as_ref() { - Effect::Tap { target } => match target { + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => match target { TargetFilter::Typed(t) => assert_eq!( t.controller, Some(ControllerRef::DefendingPlayer), @@ -26044,7 +26059,11 @@ mod tests { ); let execute = def.execute.as_deref().expect("execute ability"); match execute.effect.as_ref() { - Effect::Tap { target } => match target { + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => match target { TargetFilter::Typed(t) => assert_eq!( t.controller, Some(ControllerRef::DefendingPlayer), @@ -26126,8 +26145,10 @@ mod tests { // If the parser doesn't classify the synthetic effect, the negative // assertion is vacuously satisfied — the karazikar test covers the // positive case. If it DOES classify, the controller must remain `You`. - if let Effect::Tap { + if let Effect::SetTapState { target: TargetFilter::Typed(t), + scope: EffectScope::Single, + state: TapStateChange::Tap, } = execute.effect.as_ref() { assert_eq!( @@ -27901,7 +27922,9 @@ mod snapshot_tests { #[cfg(test)] mod slicer_control_handoff_tests { use crate::parser::oracle::parse_oracle_text; - use crate::types::ability::{AbilityDefinition, ControllerRef, Effect, TargetFilter}; + use crate::types::ability::{ + AbilityDefinition, ControllerRef, Effect, EffectScope, TapStateChange, TargetFilter, + }; use crate::types::TriggerMode; /// Walk a chained `AbilityDefinition` collecting one effect per node (parent @@ -27944,7 +27967,14 @@ mod slicer_control_handoff_tests { // PayCost → Untap → Goad → GiveControl, all present. assert!( - effects.iter().any(|e| matches!(e, Effect::Untap { .. })), + effects.iter().any(|e| matches!( + e, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + )), "untap sub-effect must be present, got {effects:#?}", ); assert!( @@ -27995,7 +28025,14 @@ mod slicer_control_handoff_tests { let effects = flatten_effects(trigger.execute.as_ref().expect("execute")); // The untap clause must survive… assert!( - effects.iter().any(|e| matches!(e, Effect::Untap { .. })), + effects.iter().any(|e| matches!( + e, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + )), "untap sub-effect must be present, got {effects:#?}", ); // …and the control handoff must be present in some valid lowered form, diff --git a/crates/engine/src/parser/snapshots/engine__parser__oracle_replacement__snapshot_tests__replacement_enters_tapped.snap b/crates/engine/src/parser/snapshots/engine__parser__oracle_replacement__snapshot_tests__replacement_enters_tapped.snap index ffe11cda9e..0e76229380 100644 --- a/crates/engine/src/parser/snapshots/engine__parser__oracle_replacement__snapshot_tests__replacement_enters_tapped.snap +++ b/crates/engine/src/parser/snapshots/engine__parser__oracle_replacement__snapshot_tests__replacement_enters_tapped.snap @@ -7,9 +7,15 @@ expression: def "execute": { "kind": "Spell", "effect": { - "type": "Tap", + "type": "SetTapState", "target": { "type": "SelfRef" + }, + "scope": { + "type": "Single" + }, + "state": { + "type": "Tap" } }, "cost": null, diff --git a/crates/engine/src/types/ability.rs b/crates/engine/src/types/ability.rs index db782d7d42..14680efd17 100644 --- a/crates/engine/src/types/ability.rs +++ b/crates/engine/src/types/ability.rs @@ -3032,6 +3032,34 @@ pub enum TargetFilter { AllPlayers, } +/// CR 701.26a / CR 701.26b: Selection scope for `Effect::SetTapState`. Picks +/// whether the tap/untap targets a single chosen/source permanent (the legacy +/// `Tap` / `Untap`) or every permanent matching the filter (the legacy +/// `TapAll` / `UntapAll`). Parameterizes the structural "single vs mass" +/// axis instead of proliferating sibling effect variants. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)] +#[serde(tag = "type")] +pub enum EffectScope { + /// One permanent — `target` is a selectable target filter (legacy + /// `Effect::Tap` / `Effect::Untap`). `target_filter()` exposes it. + Single, + /// Every permanent matching the filter — `target` is a non-targeting + /// population filter (legacy `Effect::TapAll` / `Effect::UntapAll`). + All, +} + +/// CR 701.26a (tap) / CR 701.26b (untap): Direction of an `Effect::SetTapState`. +/// Parameterizes the tap/untap axis so a single effect variant covers both +/// keyword actions. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)] +#[serde(tag = "type")] +pub enum TapStateChange { + /// CR 701.26a: Turn the permanent sideways (tap it). + Tap, + /// CR 701.26b: Rotate the permanent upright (untap it). + Untap, +} + /// CR 102 + CR 119 + CR 402: Player axis for player-scoped quantity references. /// /// Parameterizes the player whose hand size, life total, or other per-player @@ -6114,23 +6142,27 @@ pub enum Effect { #[serde(default, skip_serializing_if = "Option::is_none")] target: Option, }, - Tap { - #[serde(default = "default_target_filter_any")] - target: TargetFilter, - }, - Untap { + /// CR 701.26a (tap) / CR 701.26b (untap): Set the tap state of one or more + /// permanents. Collapses the legacy `Tap` / `Untap` / `TapAll` / `UntapAll` + /// variants into a single parameterized form: + /// + /// - `Tap` == `{ scope: Single, state: Tap }` (target = chosen/source permanent) + /// - `Untap` == `{ scope: Single, state: Untap }` + /// - `TapAll` == `{ scope: All, state: Tap }` (target = population filter) + /// - `UntapAll`== `{ scope: All, state: Untap }` + /// + /// `scope` is load-bearing: `Single` resolves one selectable target while + /// `All` iterates every matching permanent (see `resolve_set_tap_state`). + SetTapState { + /// CR 115.1: For `Single`, the selectable target filter. For `All`, + /// the (non-targeting) population filter. Defaults to `Any` to preserve + /// the legacy `Tap`/`Untap` serde default; mass emitters always supply + /// an explicit filter. #[serde(default = "default_target_filter_any")] target: TargetFilter, - }, - /// CR 701.26a: Tap all permanents matching the filter. - TapAll { - #[serde(default = "default_target_filter_none")] - target: TargetFilter, - }, - /// CR 701.26b: Untap all permanents matching the filter. - UntapAll { - #[serde(default = "default_target_filter_none")] - target: TargetFilter, + #[serde(default = "default_effect_scope_single")] + scope: EffectScope, + state: TapStateChange, }, RemoveCounter { #[serde(default)] @@ -8221,6 +8253,12 @@ fn default_target_filter_none() -> TargetFilter { TargetFilter::None } +/// Serde default for `Effect::SetTapState::scope`: preserves the legacy +/// `Tap`/`Untap` (single-target) reading when `scope` is omitted. +fn default_effect_scope_single() -> EffectScope { + EffectScope::Single +} + fn default_target_filter_controller() -> TargetFilter { TargetFilter::Controller } @@ -8666,8 +8704,6 @@ impl Effect { | Effect::Destroy { target, .. } | Effect::Regenerate { target, .. } | Effect::Counter { target, .. } - | Effect::Tap { target, .. } - | Effect::Untap { target, .. } | Effect::RemoveCounter { target, .. } | Effect::Sacrifice { target, .. } | Effect::DiscardCard { target, .. } @@ -8825,6 +8861,19 @@ impl Effect { // every classic mana ability (Cabal Coffers, Reflecting Pool, etc.). Effect::Mana { target, .. } => target.as_ref(), + // CR 701.26a/b: `SetTapState` exposes its target only for the + // single-permanent scope (legacy `Tap`/`Untap`). The `All` scope + // (legacy `TapAll`/`UntapAll`) is a non-targeting population filter. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } => Some(target), + Effect::SetTapState { + scope: EffectScope::All, + .. + } => None, + // --- Effects with no player-selectable target field --- // These use filters, zone-level operations, or have no targeting at all. Effect::StartYourEngines { .. } @@ -8839,8 +8888,6 @@ impl Effect { | Effect::DamageAll { .. } | Effect::DamageEachPlayer { .. } | Effect::DestroyAll { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } | Effect::GoadAll { .. } | Effect::BounceAll { .. } | Effect::CounterAll { .. } @@ -9031,10 +9078,8 @@ impl Effect { | Effect::Regenerate { .. } | Effect::Counter { .. } | Effect::CounterAll { .. } - | Effect::Tap { .. } - | Effect::Untap { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } + // CR 701.26a/b: tap/untap carry no QuantityExpr in any scope. + | Effect::SetTapState { .. } | Effect::RemoveCounter { .. } | Effect::DiscardCard { .. } | Effect::ChangeZone { .. } @@ -9227,10 +9272,8 @@ impl Effect { | Effect::Regenerate { .. } | Effect::Counter { .. } | Effect::CounterAll { .. } - | Effect::Tap { .. } - | Effect::Untap { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } + // CR 701.26a/b: tap/untap carry no QuantityExpr in any scope. + | Effect::SetTapState { .. } | Effect::RemoveCounter { .. } | Effect::DiscardCard { .. } | Effect::ChangeZone { .. } @@ -9376,10 +9419,14 @@ pub fn effect_variant_name(effect: &Effect) -> &str { Effect::Token { .. } => "Token", Effect::GainLife { .. } => "GainLife", Effect::LoseLife { .. } => "LoseLife", - Effect::Tap { .. } => "Tap", - Effect::Untap { .. } => "Untap", - Effect::TapAll { .. } => "TapAll", - Effect::UntapAll { .. } => "UntapAll", + // CR 701.26a/b: preserve the four legacy variant labels so diagnostic + // and coverage tooling that keys on the name keeps reading the same set. + Effect::SetTapState { scope, state, .. } => match (scope, state) { + (EffectScope::Single, TapStateChange::Tap) => "Tap", + (EffectScope::Single, TapStateChange::Untap) => "Untap", + (EffectScope::All, TapStateChange::Tap) => "TapAll", + (EffectScope::All, TapStateChange::Untap) => "UntapAll", + }, Effect::RemoveCounter { .. } => "RemoveCounter", Effect::Sacrifice { .. } => "Sacrifice", Effect::DiscardCard { .. } => "DiscardCard", @@ -9767,10 +9814,14 @@ impl From<&Effect> for EffectKind { Effect::Token { .. } => EffectKind::Token, Effect::GainLife { .. } => EffectKind::GainLife, Effect::LoseLife { .. } => EffectKind::LoseLife, - Effect::Tap { .. } => EffectKind::Tap, - Effect::Untap { .. } => EffectKind::Untap, - Effect::TapAll { .. } => EffectKind::TapAll, - Effect::UntapAll { .. } => EffectKind::UntapAll, + // CR 701.26a/b: map the parameterized effect back to the four + // legacy `EffectKind` discriminants (EffectKind stays unchanged). + Effect::SetTapState { scope, state, .. } => match (scope, state) { + (EffectScope::Single, TapStateChange::Tap) => EffectKind::Tap, + (EffectScope::Single, TapStateChange::Untap) => EffectKind::Untap, + (EffectScope::All, TapStateChange::Tap) => EffectKind::TapAll, + (EffectScope::All, TapStateChange::Untap) => EffectKind::UntapAll, + }, Effect::RemoveCounter { .. } => EffectKind::RemoveCounter, Effect::Sacrifice { .. } => EffectKind::Sacrifice, Effect::DiscardCard { .. } => EffectKind::DiscardCard, diff --git a/crates/engine/tests/fixtures/integration_cards.json b/crates/engine/tests/fixtures/integration_cards.json index 8ff8ddd12f..09794362c1 100644 --- a/crates/engine/tests/fixtures/integration_cards.json +++ b/crates/engine/tests/fixtures/integration_cards.json @@ -1 +1 @@ -{"abattoir ghoul":{"name":"Abattoir Ghoul","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"First strike\nWhenever a creature dealt damage by this creature this turn dies, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature dealt damage by ~ this turn dies, you gain life equal to that creature's toughness.","constraint":null,"condition":{"type":"DealtDamageBySourceThisTurn"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2b211adb-de44-4468-b65d-907a09aa7e9d","metadata":{"source_printing_ids":["43297ddd-276f-4d2d-9d9c-937603d0e376","59cf0906-04fa-4b30-a7a6-3d117931154f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDQ","ISD"],"rulings":[{"date":"2011-09-22","text":"You'll gain life equal to the creature's last known toughness before it died. For example, if Abattoir Ghoul deals 3 first-strike damage to a 7/7 creature and then you give the creature -5/-5 before the regular combat damage step, you'll gain 2 life."}],"rarities":["uncommon"]},"abundance":{"name":"Abundance","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Land","Nonland"]}},"persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenLandOrNonlandKind"}]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":null,"description":"If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order.","condition":null}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"eccc9a54-2b56-4a02-9926-258d5b2e25fb","metadata":{"source_printing_ids":["46184f97-d5c9-4a98-9fd9-e19057ce9b7e","51d27db7-3c11-4896-a8f9-2f7f7beeec18","73a44759-1fa4-4a96-b668-316851e8a35a","7f3fff7e-f34d-4a99-a805-bd66c4e9f0cb","9ab8ad39-840e-474b-beb8-96a7c2a8d0fa","9bc359b0-8886-415b-a497-e98a2241084e","c2413999-49c8-4aee-9f1e-90728089d15f","f6d051fa-bd3a-4c94-ae41-34d89a7bb77d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","40K","C17","CMM","DDR","USG","ZNC"],"rulings":[{"date":"2004-10-04","text":"If no card of the chosen type is found before your library empties, you don't get a card, but you do get to order all the cards in your library any way you choose."},{"date":"2004-10-04","text":"If you use this on a multi-card draw, each replaced draw is handled separately. In other words, you reveal and then put on the bottom of the library for the first card, then do the same for the second, and so on. In a multi-card draw you do not have to choose how many of those draws will be replaced before you do any drawing or use of this card."},{"date":"2004-10-04","text":"This replacement effect replaces the draw, so nothing that triggers on a draw will trigger."},{"date":"2007-07-15","text":"If your library is empty, Abundance can prevent you from losing the game for being unable to draw a card. If an effect or turn-based action would cause you to draw a card, you can replace that draw with Abundance's replacement effect. (It doesn't matter that you'd be unable to actually draw a card.) Since Abundance's effect has you put a card into your hand instead of drawing a card, you'll never be forced to draw a card with an empty library."}],"rarities":["rare"]},"abzan falconer":{"name":"Abzan Falconer","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Outlast {W} ({W}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)\nEach creature you control with a +1/+1 counter on it has flying.","non_ability_text":null,"flavor_name":null,"keywords":[{"Outlast":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"ability_tag":{"type":"Outlast"},"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature you control with a +1/+1 counter on it has flying."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8b972819-507a-40a9-ab1f-1a674ea56083","metadata":{"source_printing_ids":["21ee4f3c-dc94-4156-b0ed-60fe6310451a","42560ce5-c7ac-422f-8f22-e2fb043861b7","5f03c34e-5304-4e62-a1ea-c8c9aa5f2342","8df1f5ca-b41d-4a8a-b7ba-9ca946ab35e8","9c06621d-a0c9-4c84-8b1a-cb0abd8390c4","a1b85829-afe8-4854-af4c-8ccf3b94da52","b52cc391-ea4e-4fe8-aac8-fffa682f290b","bedd68b3-baf2-4416-8107-79be8d2edaae","db62ac2c-0d24-4d6f-a6ca-cca4371a3bd7","f7e2b0e1-c9ea-4f91-b19e-73b1bd6a0884"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","C16","CM2","IMA","J21","KTK","MIC","MOC","PLST","ZNC"],"rulings":[{"date":"2014-09-20","text":"Several creatures with outlast also grant an ability to creatures you control with +1/+1 counters on them, including themselves. These counters could come from an outlast ability, but any +1/+1 counter on the creature will count."},{"date":"2014-09-20","text":"The cost to activate a creature's outlast ability includes the tap symbol ({T}). A creature's outlast ability can't be activated unless that creature has been under your control continuously since the beginning of your turn."}],"rarities":["uncommon"]},"aclazotz, deepest betrayal":{"name":"Aclazotz, Deepest Betrayal","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Bat","God"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nWhenever Aclazotz attacks, each opponent discards a card. For each opponent who can't, you draw a card.\nWhenever an opponent discards a land card, create a 1/1 black Bat creature token with flying.\nWhen Aclazotz dies, return it to the battlefield tapped and transformed under its owner's control.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, each opponent discards a card. For each opponent who can't, you draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"Discarded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Bat","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Bat"],"colors":["Black"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an opponent discards a land card, create a 1/1 black Bat creature token with flying.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":true,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to the battlefield tapped and transformed under its owner's control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fcdfe9d5-2743-4d3e-ab57-bf0f96beaa15","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["3e43a418-8c17-5ed2-b92b-42dbe4c96b4b"],"source_printing_ids":["627c392c-4d18-4eb2-a4e8-c668f61f5487","95775b13-2761-424e-9828-2275ec987368"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If a card that isn't a transforming double-faced card is a copy of Aclazotz, Deepest Betrayal, it won't return to the battlefield when it dies."},{"date":"2023-11-10","text":"The last ability of Temple of the Dead will resolve even if you have two or more cards in hand at that time."}],"rarities":["mythic"]},"acolyte of the inferno":{"name":"Acolyte of the Inferno","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Monk"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)\nWhenever this creature becomes blocked by a creature, it deals 2 damage to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Renown":1}],"abilities":[],"triggers":[{"mode":"BecomesBlocked","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"valid_source":null,"description":"Whenever ~ becomes blocked by a creature, it deals 2 damage to that creature.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Renown","count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":"Renown 1","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"CR 702.112a: Renown 1 — when this creature deals combat damage to a player, if it isn't renowned, put 1 +1/+1 counter on it and it becomes renowned.","constraint":null,"condition":{"type":"Not","condition":{"type":"IsRenowned","subject":"Source"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"35bf67e0-8141-4664-b762-2c613353e1eb","metadata":{"source_printing_ids":["186581c7-81a6-4c27-b8a9-ff7f7a4b1d40"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI"],"rulings":[{"date":"2015-06-22","text":"Acolyte of the Inferno's last ability triggers and resolves before combat damage is dealt. If that causes each creature blocking Acolyte of the Inferno to be destroyed, Acolyte of the Inferno will remain blocked and neither deal nor be dealt combat damage."},{"date":"2015-06-22","text":"Acolyte of the Inferno's last ability will trigger once for each creature that blocks it. Each of those creatures will be dealt 2 damage."},{"date":"2015-06-22","text":"If a creature with renown deals combat damage to its controller because that damage was redirected, renown will trigger."},{"date":"2015-06-22","text":"If a renown ability triggers, but the creature leaves the battlefield before that ability resolves, the creature doesn't become renowned. Any ability that triggers \"whenever a creature becomes renowned\" won't trigger."},{"date":"2015-06-22","text":"Renown won't trigger when a creature deals combat damage to a planeswalker or another creature. It also won't trigger when a creature deals noncombat damage to a player."}],"rarities":["uncommon"]},"ad nauseam":{"name":"Ad Nauseam","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal the top card of your library and put that card into your hand. You lose life equal to its mana value. You may repeat this process any number of times.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Reveal the top card of your library and put that card into your hand. You lose life equal to its mana value. You may repeat this process any number of times.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"repeat_until":{"type":"ControllerChoice"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"981b0e21-e5e6-4a1e-bfde-679d56623f7f","metadata":{"source_printing_ids":["0a4ce4a1-65e3-4b40-be35-8fc55a968ec8","a9f2c53e-ff58-4aa8-89a6-4f45628cc571"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"banned","timeless":"legal","vintage":"legal"},"printings":["2XM","ALA","SOA"],"rulings":[{"date":"2026-03-20","text":"Each time you put the revealed card into your hand and lose the appropriate amount of life, you decide whether to continue by revealing another card. You don't decide in advance how many cards to put into your hand this way."},{"date":"2026-03-20","text":"If a card in a player's library has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2026-03-20","text":"You may continue to reveal cards with Ad Nauseam even if your life total has been reduced to 0 or less. If you continue, you will continue to lose life, dropping your life total into negative numbers. As soon as you stop, you'll lose the game as a state-based action."}],"rarities":["rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"advanced reconstruction":{"name":"Advanced Reconstruction","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nAt the beginning of your first main phase, mill a card, then exile a card from your graveyard at random. You may play the exiled card this turn.\n{1}{R}: Level 2\nWhenever one or more cards leave your graveyard, this Class deals 2 damage to each opponent.\n{1}{R}: Level 3\nSpells you cast from anywhere other than your hand cost {2} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false,"target_selection_mode":{"type":"Random"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, mill a card, then exile a card from your graveyard at random. You may play the exiled card this turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":2},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more cards leave your graveyard, ~ deals 2 damage to each opponent.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":true}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"ClassLevelGE","level":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast from anywhere other than your hand cost {2} less to cast."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f00bc101-8082-4459-b987-f0c4b7a12344","metadata":{"source_printing_ids":["cc912fec-827d-4deb-8430-79f5ea31ca9b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If multiple cards leave your graveyard at the same time, Advanced Reconstruction's level 2 ability will trigger only once."},{"date":"2026-03-20","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying, add any cost increases, then apply any cost reductions (such as that of Advanced Reconstruction's level 3 ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."},{"date":"2026-03-20","text":"You pay all costs and follow all timing rules for cards played this way. For example, if the exiled card is a land card, you may play it only during your main phase while the stack is empty and only if you have an available land play remaining."}],"rarities":["rare"]},"agonizing demise":{"name":"Agonizing Demise","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)\nDestroy target nonblack creature. It can't be regenerated. If this spell was kicked, Agonizing Demise deals damage equal to that creature's power to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["Red"],"generic":1}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. If this spell was kicked, ~ deals damage equal to that creature's power to the creature's controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}}]}},"metadata":{"source_printing_ids":["539ac5e1-4bad-4f70-abac-e70c406bebec","b7621aab-4839-45ef-bfa2-9aa2417bbec0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["DDH","INV"],"rulings":[{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["common"]},"ajani, nacatl avenger":{"name":"Ajani, Nacatl Avenger","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Ajani"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"[+2]: Put a +1/+1 counter on each Cat you control.\n[0]: Create a 2/1 white Cat Warrior creature token. When you do, if you control a red permanent other than Ajani, he deals damage equal to the number of creatures you control to any target.\n[−4]: Each opponent chooses an artifact, a creature, an enchantment, and a planeswalker from among the nonland permanents they control, then sacrifices the rest.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[{"Subtype":"Cat"}],"controller":"You","properties":[]}},"cost":{"type":"Loyalty","amount":2},"sub_ability":null,"duration":null,"description":"[+2]: Put a +1/+1 counter on each Cat you control.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Cat Warrior","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Cat","Warrior"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Create a 2/1 white Cat Warrior creature token. When you do, if you control a red permanent other than ~, he deals damage equal to the number of creatures you control to any target.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChooseAndSacrificeRest","categories":["Artifact","Creature","Enchantment","Planeswalker"],"chooser_scope":"EachPlayerSelf","choose_filter":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"sacrifice_filter":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each opponent chooses an artifact, a creature, an enchantment, and a planeswalker from among the nonland permanents they control, then sacrifices the rest.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","White"],"color_identity":["Red","White"],"scryfall_oracle_id":"2588f348-d7a3-46c8-9ace-dca53ed5ef99","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["d9743436-0dec-5c72-bfc5-54668a38d036"],"source_printing_ids":["0d16e8e0-31b2-4389-afd6-783c501f6fa0","e91ba1d4-3bca-45a2-ad9f-7abbcfe50dbd","f897d650-f1a2-4366-a025-f12c10310d96"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["MH3","PMH3"],"rarities":["mythic"]},"ajani, nacatl pariah":{"name":"Ajani, Nacatl Pariah","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Cat","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Ajani enters, create a 2/1 white Cat Warrior creature token.\nWhenever one or more other Cats you control die, you may exile Ajani, then return him to the battlefield transformed under his owner's control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Cat Warrior","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Cat","Warrior"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 2/1 white Cat Warrior creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Cat"}],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more other Cats you control die, you may exile ~, then return him to the battlefield transformed under his owner's control.","constraint":null,"condition":null,"batched":true}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"2588f348-d7a3-46c8-9ace-dca53ed5ef99","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["d9743436-0dec-5c72-bfc5-54668a38d036"],"source_printing_ids":["0d16e8e0-31b2-4389-afd6-783c501f6fa0","e91ba1d4-3bca-45a2-ad9f-7abbcfe50dbd","f897d650-f1a2-4366-a025-f12c10310d96"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"A permanent with more than one type may be chosen as any of its types. For example, an artifact creature may be chosen as the artifact, the creature, or both. Choosing the same permanent twice this way has the same result as choosing it once."},{"date":"2024-06-07","text":"A transforming double-faced card enters the battlefield with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or allows you to cast it transformed, in which case it enters with its back face up."},{"date":"2024-06-07","text":"Each face of a transforming double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a transforming double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2024-06-07","text":"Each transforming double-faced card in this set is cast with its front face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2024-06-07","text":"If an opponent doesn't control any permanents of one of the types, they'll still choose the permanents of the types they do control."},{"date":"2024-06-07","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter the battlefield at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Ral, Monsoon Mage, choosing to exile that permanent during the resolution of its triggered ability will cause it to remain in exile."},{"date":"2024-06-07","text":"In a case where you create more than one Cat Warrior creature token with Ajani, Nacatl Avenger's second ability (for example, because of the effect of Doubling Season), the reflexive ability will trigger once for each Cat Warrior you made this way. If a replacement effect causes you to create different tokens instead (for example, the effect of Divine Visitation), the creation of those tokens won't cause the reflexive ability to trigger."},{"date":"2024-06-07","text":"In some rare cases, a spell or ability may cause Ajani, Nacatl Pariah to transform while it's a creature (front face up) on the battlefield. If this happens, Ajani, Nacatl Avenger won't have any loyalty counters on him and will subsequently be put into his owner's graveyard."},{"date":"2024-06-07","text":"In the Commander variant, a double-faced card's color identity is determined by the mana costs and mana symbols in the rules text of both faces combined. If either face has a color indicator or basic land type, those are also considered. For example, Ral, Monsoon Mage's color identity is blue and red, since its front face is red and its back face has a blue and red color indicator."},{"date":"2024-06-07","text":"Lands can't be chosen and won't be sacrificed, even if they have any of the types referenced by Ajani, Nacatl Avenger's last ability."},{"date":"2024-06-07","text":"The back face of a transforming double-faced card usually has a color indicator that defines its color. Colorless back faces, such as lands, do not."},{"date":"2024-06-07","text":"The mana value of a transforming double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2024-06-07","text":"When Ajani, Nacatl Avenger's last ability resolves, starting with the next opponent in turn order, each opponent in turn order chooses permanents they control. Each opponent will know the choices made by players who chose before them. They then sacrifice all of their unchosen nonland permanents simultaneously."},{"date":"2024-06-07","text":"You can activate one of Ajani, Nacatl Avenger's loyalty abilities the turn he enters the battlefield. However, you may do so only during one of your main phases when the stack is empty. For example, if Ajani, Nacatl Avenger enters the battlefield during combat, there will be an opportunity for your opponent to remove him before you can activate one of his abilities."},{"date":"2024-06-07","text":"You don't choose a target for Ajani, Nacatl Avenger's second ability when you activate it. Rather, if you control a red permanent other than Ajani, Nacatl Avenger, a second \"reflexive\" ability triggers when you create a Cat Warrior creature token this way. You choose a target for that ability as it goes on the stack. Each player may respond to this triggered ability as normal."}],"rarities":["mythic"]},"alchemist's talent":{"name":"Alchemist's Talent","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nWhen this Class enters, create two tapped Treasure tokens.\n{1}{R}: Level 2\nTreasures you control have \"{T}, Sacrifice this artifact: Add two mana of any one color.\"\n{4}{R}: Level 3\nWhenever you cast a spell, if mana from a Treasure was spent to cast it, this Class deals damage equal to that spell's mana value to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":true,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create two tapped Treasure tokens.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell, if mana from a Treasure was spent to cast it, ~ deals damage equal to that spell's mana value to each opponent.","constraint":null,"condition":{"type":"ClassLevelGE","level":3},"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Artifact",{"Subtype":"Treasure"}],"controller":"You","properties":[]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":2},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{T}, Sacrifice ~: Add two mana of any one color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":{"type":"ClassLevelGE","level":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Treasures you control have \"{T}, Sacrifice ~: Add two mana of any one color.\""}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5a2dfff5-9dba-42f5-bcca-918c16f23807","metadata":{"related_token_ids":["4811acb4-e116-5e6b-8d42-707057b51299"],"source_printing_ids":["2fb8dace-c604-40fc-bbd4-5add5deb041a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC"],"rulings":[{"date":"2024-07-26","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2024-07-26","text":"Each Class starts with only the first of its three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2024-07-26","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2024-07-26","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2024-07-26","text":"If a spell has {X} in its mana cost, use the value chosen for X to determine that spell's mana value."},{"date":"2024-07-26","text":"There's no restriction on how many Class permanents you can control, whether they're the same or different classes. Each Class permanent tracks its own level separately."},{"date":"2024-07-26","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["rare"]},"alpha brawl":{"name":"Alpha Brawl","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature an opponent controls deals damage equal to its power to each other creature that player controls, then each of those creatures deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"damage_source":"Target"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target creature an opponent controls deals damage equal to its power to each other creature that player controls, then each of those creatures deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cfc023e0-9e9d-48ac-bfb5-74bfd5977dee","metadata":{"source_printing_ids":["e2ec168a-3e4f-4527-901a-bc28cc28d125"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DKA"],"rulings":[{"date":"2011-01-22","text":"Abilities like lifelink and deathtouch that care about any kind of damage are taken into account."},{"date":"2011-01-22","text":"Combat abilities like first strike, double strike, and trample don’t apply and will have no impact on Alpha Brawl’s effect."},{"date":"2011-01-22","text":"If the targeted creature has infect or wither, the damage it deals will result in -1/-1 counters being put on each creature it deals damage to. The power of those creatures will be reduced when they deal damage back to the targeted creature."},{"date":"2011-01-22","text":"None of the damage dealt due to Alpha Brawl is combat damage."},{"date":"2011-01-22","text":"The damage dealt by the targeted creature is not divided in any way. For example, if a 3/3 creature is targeted, it will deal 3 damage to each other creature controlled by its controller."},{"date":"2011-01-22","text":"The two parts of Alpha Brawl’s effect happen sequentially: first the targeted creature deals damage, then the other creatures deal damage. State-based actions aren’t checked in the middle, so creatures that are dealt lethal damage by the targeted creature will still deal damage."}],"rarities":["rare"]},"amazing spider-man":{"name":"Amazing Spider-Man","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spider","Human","Hero"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance, reach\nEach legendary spell you cast that's one or more colors has web-slinging {G}{W}{U}. (You may cast a spell for its web-slinging cost if you also return a tapped creature you control to its owner's hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance","Reach"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":{"WebSlinging":{"type":"Cost","shards":["Green","White","Blue"],"generic":0}}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"},{"type":"ColorCount","comparator":"GE","count":1}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Each legendary spell you cast that's one or more colors has web-slinging {G}{W}{U}."}],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"f1b7488c-c675-42e9-818a-24a50347ec2c","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["cd0b828b-461a-5835-8da5-0d684b505914"],"source_printing_ids":["2ec821c3-3e5c-4af8-a6ef-e2e77aa8668c","3ce33422-5dba-4a42-8375-dd8ccc692a7b","97fcf5a5-54e1-43f3-95e3-edc6215bf973","98912aae-4e42-4434-b979-9c85f09f8d6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["OM1","PMEI","PSPM","SPM"],"rarities":["mythic"]},"ambuscade":{"name":"Ambuscade","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e419975-e054-4c35-8845-a08589ebb08f","metadata":{"source_printing_ids":["4df71162-7e8f-47c5-aff4-59d82d8c674d","cfc06303-cb35-4feb-b23d-7ac0a2fa7ce3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["2X2","HOU"],"rulings":[{"date":"2017-07-14","text":"If the creature you control leaves the battlefield before Ambuscade resolves, Ambuscade has no effect and no damage is dealt. If the creature an opponent controls leaves the battlefield instead, the creature you control gets +1/+0 even though it won't deal any damage."}],"rarities":["common"]},"amphin mutineer":{"name":"Amphin Mutineer","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Salamander","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, exile up to one target non-Salamander creature. That creature's controller creates a 4/3 blue Salamander Warrior creature token.\nEncore {4}{U}{U} ({4}{U}{U}, Exile this card from your graveyard: For each opponent, create a token copy that attacks that opponent this turn if able. They gain haste. Sacrifice them at the beginning of the next end step. Activate only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Encore":{"type":"Cost","shards":["Blue","Blue"],"generic":4}}],"abilities":[{"kind":"Activated","effect":{"type":"Encore"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":4}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature",{"Non":{"Subtype":"Salamander"}}],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Salamander Warrior","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"types":["Creature","Salamander","Warrior"],"colors":["Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"ParentTargetController"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile up to one target non-Salamander creature. That creature's controller creates a 4/3 blue Salamander Warrior creature token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8910f79a-66c9-41b3-b55a-e3e651ae6f26","metadata":{"related_token_ids":["20871e74-cf51-5956-8184-09ff568097a5","2b48ec72-3a9d-5b4b-bd63-3e4266bd8848","3e95b37e-45a2-51f0-aeb1-c38e9e2a5d76","40a109ad-ee09-5f13-a852-dbaa5efbd124"],"source_printing_ids":["0f54f429-80c2-4f55-bb99-236f2c697985","4b45f225-0553-482b-8be4-9c7f3ccf0d0d","967b5ed9-7275-4564-8bf9-2748fea2f387","b465a22b-6fea-4bf8-b290-fa3e1a4aa6eb","c7be9d06-3651-47f4-9e44-00ecd4a15e3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","LCC","MKC","PRM","TDC"],"rulings":[{"date":"2020-11-10","text":"Each token must attack the appropriate player if able."},{"date":"2020-11-10","text":"Exiling the card with encore is a cost to activate the ability. Once you announce that you're activating it, no player may take actions until you've finished. They can't try to remove the card from your graveyard to stop you from paying the cost."},{"date":"2020-11-10","text":"If one of the tokens can't attack for any reason (such as being tapped), then it doesn't attack. If there's a cost associated with having it attack, you aren't forced to pay that cost, so it doesn't have to attack in that case either."},{"date":"2020-11-10","text":"If one of the tokens somehow is under another player's control as the delayed triggered ability resolves, you can't sacrifice that token. It remains on the battlefield indefinitely, even if you regain control of it later."},{"date":"2020-11-10","text":"If the target non-Salamander creature is an illegal target by the time Amphin Mutineer's ability tries to resolve, the ability doesn't resolve. No player creates a Salamander Warrior token."},{"date":"2020-11-10","text":"Opponents who have left the game aren't counted when determining how many tokens to create."},{"date":"2020-11-10","text":"The tokens copy only what's on the original card. Effects that modified that creature when it was previously on the battlefield won't be copied."},{"date":"2023-07-28","text":"If an effect stops a token from attacking a specific player, that token can attack any player, planeswalker, or battle, or not attack at all. If the effect stops the token from attacking a specific player unless a cost is paid, you don't have to pay that cost unless you want to attack that player."}],"rarities":["rare"]},"ancient brass dragon":{"name":"Ancient Brass Dragon","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. When you do, put any number of target creature cards with total mana value X or less from graveyards onto the battlefield under your control, where X is the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"target_constraints":[{"type":"TotalManaValue","comparator":"LE","value":{"type":"Ref","qty":{"type":"EventContextAmount"}}}],"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. When you do, put any number of target creature cards with total mana value X or less from graveyards onto the battlefield under your control, where X is the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"7d79fb4e-2ca0-404a-9663-1f5abce6e733","metadata":{"source_printing_ids":["631a9966-b5d2-4696-a2f1-2d56fccad9b2","6430c61b-407d-471d-9012-07f1ddef28aa","763d7fcb-e5f0-4438-8d35-8beb4cc015e4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG","PCLB"],"rarities":["mythic"]},"ancient bronze dragon":{"name":"Ancient Bronze Dragon","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. When you do, put X +1/+1 counters on each of up to two target creatures, where X is the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. When you do, put X +1/+1 counters on each of up to two target creatures, where X is the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8ce74097-97b1-493d-9585-bd1336f95927","metadata":{"source_printing_ids":["6261fba2-0420-4271-87f4-f168a1e74c9b","781af4dd-9e3c-48af-80e9-b52c427d2120","9b957a1f-6d26-47bb-84ba-81acc01a8dae","b571077e-a4a5-4442-99d9-558a4ffe55e9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG","PCLB","SLD"],"rarities":["mythic"]},"ancient copper dragon":{"name":"Ancient Copper Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. You create a number of Treasure tokens equal to the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. You create a number of Treasure tokens equal to the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48daee9d-ddaf-410f-8c3a-12fa1064ab56","metadata":{"related_token_ids":["7fb44e8f-f3f6-5834-b4ef-a0249adacc31"],"source_printing_ids":["0c9ac08c-11ce-4e8a-8ea8-c18cfc745ac7","3836dddd-a7e4-499f-ad49-ce298aa65720","e12d32a7-60b4-4e49-b279-970b170c1a9c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","FCA","HBG","PCLB"],"rarities":["mythic"]},"ancient greenwarden":{"name":"Ancient Greenwarden","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Reach (This creature can block creatures with flying.)\nYou may play lands from your graveyard.\nIf a land entering causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":["Reach"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."},{"mode":{"DoubleTriggers":{"cause":{"EntersBattlefield":{"core_types":["Land"]}}}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a land entering causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3bcf090c-e890-4a9f-a8aa-6079e4ec9947","metadata":{"source_printing_ids":["12a0bf5c-a165-48f1-9a57-3a7cc9f3b0f9","7109092e-52c3-417b-a2c0-340eabb5af9d","c6a058aa-f620-4a1f-af32-6e6be2cb3e4b","d0a63737-8da7-4e92-89d2-742419530fc9","dfe08e59-fdc4-436f-b05c-6ad386c46310"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J25","OTC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"An ability that triggers whenever you play a land won't trigger an additional time."},{"date":"2020-09-25","text":"Ancient Greenwarden allows you to play a modal double-faced card's land face, but not a nonland face."},{"date":"2020-09-25","text":"Ancient Greenwarden doesn't allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2020-09-25","text":"Ancient Greenwarden doesn't change the times when you can play those lands. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."},{"date":"2020-09-25","text":"Ancient Greenwarden's effect doesn't copy the triggered ability; it causes the ability to trigger twice. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."},{"date":"2020-09-25","text":"Ancient Greenwarden's third ability affects a land's own enters-the-battlefield triggered abilities as well as other triggered abilities that trigger when that land enters the battlefield, such as landfall abilities. Such triggered abilities start with \"when\" or \"whenever.\""},{"date":"2020-09-25","text":"If a land entering the battlefield at the same time as Ancient Greenwarden (including Ancient Greenwarden itself if an effect causes it to be a land) causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."},{"date":"2020-09-25","text":"If you control two Ancient Greenwardens, a land entering the battlefield causes abilities to trigger three times, not four. A third Ancient Greenwarden causes abilities to trigger four times, a fourth causes abilities to trigger five times, and so on."},{"date":"2020-09-25","text":"Look at each permanent as it exists on the battlefield, taking into account continuous effects, to determine whether any triggered abilities will trigger multiple times. For example, if you control Ashaya, Soul of the Wild, a nontoken creature entering the battlefield will cause any appropriate abilities to trigger an additional time."},{"date":"2020-09-25","text":"Replacement effects are unaffected by Ancient Greenwarden's third ability. This includes any abilities that apply \"as [this land] enters the battlefield\" and any ability that says the land enters the battlefield with counters."},{"date":"2020-09-25","text":"The trigger event doesn't have to specifically refer to \"lands.\" For example, an ability that triggers \"whenever a creature enters the battlefield under your control\" would trigger twice if the entering land is also a creature."}],"rarities":["mythic"]},"angelic chorus":{"name":"Angelic Chorus","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control enters, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control enters, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e66b12ff-45da-46dc-9148-bd8ea9b7fde0","metadata":{"source_printing_ids":["907bf221-a1bf-41ab-9b7e-e5a64c385642","d9e966cb-bb42-49d8-b351-114619b31497","f835ff5d-e03d-4a93-98bb-704eaa1e2b64"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","BBD","USG"],"rulings":[{"date":"2004-10-04","text":"Angelic Chorus does not trigger when creatures phase in or change controllers."},{"date":"2004-10-04","text":"This does not trigger on a permanent being turned into a creature. That is just a permanent changing type, not something entering."}],"rarities":["rare"]},"arabella, abandoned doll":{"name":"Arabella, Abandoned Doll","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact","Creature"],"subtypes":["Toy"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever Arabella attacks, it deals X damage to each opponent and you gain X life, where X is the number of creatures you control with power 2 or less.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it deals X damage to each opponent and you gain X life, where X is the number of creatures you control with power 2 or less.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"7c4bbb1b-29c4-4e06-aed0-b361293a585b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["f683d5a1-b8bf-446f-9fe3-88a4398bf3cf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"The value of X is determined only once, as Arabella's ability resolves."}],"rarities":["uncommon"]},"aradesh, the founder":{"name":"Aradesh, the Founder","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhenever a creature you control attacks, if it enlisted a creature this combat, the creature that attacked gains double strike until end of turn. If that creature's power is 4 or greater, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"the","description":"the creature that attacked gains double strike"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control attacks, if it enlisted a creature this combat, the creature that attacked gains double strike until end of turn. If that creature's power is 4 or greater, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"32620b26-10b9-47a7-bfa7-ca590ab5fa50","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3382f11f-c32f-46cb-a578-d82e545691c3","6701dae4-348e-40f6-9db4-d6f0039be831","b76832a0-8690-4843-8be4-1eba89ada995","c569396f-99cf-44c5-bb64-f59a4891efd1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Aradesh’s last ability has an intervening if clause. If a creature that attacks hasn’t enlisted a creature this combat, the ability won’t trigger at all for that creature."},{"date":"2024-03-08","text":"It doesn’t matter what happens to the enlisted creature after Aradesh’s last ability triggers. As long as the creature that attacked enlisted a creature this combat, when Aradesh’s last ability resolves, the creature that attacked will still get double strike, and if that creature’s power is 4 or greater, you’ll still draw a card."},{"date":"2024-03-08","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2024-03-08","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2024-03-08","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2024-03-08","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["rare"]},"arcane adaptation":{"name":"Arcane Adaptation","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nCreatures you control are the chosen type in addition to their other types. The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield."},"cost":null,"sub_ability":null,"duration":null,"description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control are the chosen type in addition to their other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"2188c03f-11b6-4651-914a-b4fdd59127e3","metadata":{"source_printing_ids":["b0384a47-b189-4e10-b847-1819d3ca5f8e","bf3edaaf-cf63-4e17-94ae-9d9991d9fb5f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"Replacement effects that modify creatures of a certain type as they enter the battlefield will apply after you apply Arcane Adaptation’s effect. This is a change from previous rules. If you control Arcane Adaptation and the Aether Revolt card Metallic Mimic, with the same creature type chosen for both, then any creature you control will enter the battlefield with an additional +1/+1 counter on it."},{"date":"2018-01-19","text":"To choose a creature type, you must choose an existing creature type, such as Vampire or Knight. You can’t choose multiple creature types, such as “Vampire Knight.” Card types such as artifact can’t be chosen, nor can subtypes that aren’t creature types, such as Jace, Vehicle, or Treasure."}],"rarities":["rare"]},"archangel of tithes":{"name":"Archangel of Tithes","mana_cost":{"type":"Cost","shards":["White","White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nAs long as this creature is untapped, creatures can't attack you or planeswalkers you control unless their controller pays {1} for each of those creatures.\nAs long as this creature is attacking, creatures can't block unless their controller pays {1} for each of those creatures.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"SourceIsTapped"}},{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":1},"scaling":{"type":"PerAffectedCreature"},"defended":"PlayerOrPlaneswalker"}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is untapped, creatures can't attack you or planeswalkers you control unless their controller pays {1} for each of those creatures."},{"mode":"CantBlock","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"And","conditions":[{"type":"SourceIsAttacking"},{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":1},"scaling":{"type":"PerAffectedCreature"}}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is attacking, creatures can't block unless their controller pays {1} for each of those creatures."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ff5caed4-0276-476d-8fae-edae2536df7f","metadata":{"source_printing_ids":["1af50bf1-c51e-4592-86bf-4197ec85a45d","2f338a9f-2af0-4e0f-9de1-17fc51145c46","c853d04c-864b-491c-8c6f-72d2d4874d2f","d34f043c-d01e-4462-b381-39748d7fa31b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ORI","OTJ","PLST","POTJ"],"rulings":[{"date":"2015-06-22","text":"If you control an untapped Archangel of Tithes, your opponents can choose to not attack with a creature that must attack if able. The same is true with respect to an attacking Archangel of Tithes and a creature that must block if able."}],"rarities":["mythic"]},"archdruid's charm":{"name":"Archdruid's Charm","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Search your library for a creature or land card and reveal it. Put it onto the battlefield tapped if it's a land card. Otherwise, put it into your hand. Then shuffle.\n• Put a +1/+1 counter on target creature you control. It deals damage equal to its power to target creature you don't control.\n• Exile target artifact or enchantment.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Land"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3c1ef404-e2c6-486d-a5a2-d5779c71d498","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Search your library for a creature or land card and reveal it. Put it onto the battlefield tapped if it's a land card. Otherwise, put it into your hand. Then shuffle.","Put a +1/+1 counter on target creature you control. It deals damage equal to its power to target creature you don't control.","Exile target artifact or enchantment."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["00c2c17b-889b-416b-af58-c4039efec2bb","5caae5ae-845f-42c2-b1ae-956df2739433"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM","PMKM"],"rulings":[{"date":"2024-02-02","text":"If you choose the second mode and the creature you don't control is not a legal target as Archdruid's Charm resolves, you'll still put a +1/+1 counter on your creature."},{"date":"2024-02-02","text":"If you choose the second mode and your creature is not a legal target as Archdruid's Charm resolves, you won't put a +1/+1 counter on it, and no damage will be dealt."},{"date":"2024-02-02","text":"You can't choose the second mode for Archdruid's Charm unless you and another player have creatures to target."}],"rarities":["rare"]},"archelos, lagoon mystic":{"name":"Archelos, Lagoon Mystic","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Turtle","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"As long as Archelos is tapped, other permanents enter tapped.\nAs long as Archelos is untapped, other permanents enter untapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"description":"As long as ~ is tapped, other permanents enter tapped.","condition":{"type":"SourceTappedState","tapped":true},"destination_zone":"Battlefield"},{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"Untap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"description":"As long as ~ is untapped, other permanents enter untapped.","condition":{"type":"SourceTappedState","tapped":false},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"fd19a009-d1ab-4148-a829-3d4c3af1b0b2","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["25e5643c-26d9-4ada-bc03-cafda0f64f40","d45ec78e-6190-46af-8057-834f5ca41ec8","eafb8740-1bab-4f5e-96d1-79f1f04cc0d8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","DMC","PRM"],"rulings":[{"date":"2020-11-10","text":"Archelos's abilities don't apply to itself as it enters the battlefield, nor do they apply to any permanents entering the battlefield at the same time."},{"date":"2020-11-10","text":"If another replacement effect says that a permanent enters the battlefield tapped while Archelos is untapped, the entering permanent's controller chooses whether the permanent enters tapped or untapped. If a permanent is simply put onto the battlefield tapped without a replacement effect being applied, it always enters untapped if Archelos is untapped."},{"date":"2020-11-10","text":"If more than one Archelos is on the battlefield, the controller of an entering permanent chooses how to order the replacement effects."}],"rarities":["rare"]},"archon of redemption":{"name":"Archon of Redemption","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Archon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature or another creature you control with flying enters, you may gain life equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"},{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control with flying enters, you may gain life equal to that creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"434e58f4-4237-454f-a2d0-61885c9aafaa","metadata":{"source_printing_ids":["1f7dfcf6-c41b-48d6-a3b4-4b4a7bed82eb","2243270a-2e7c-4239-af2e-9b6b47124237","a9e8eb41-3800-4553-843b-ec27a44e8d55"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["JMP","SCD","WWK"],"rulings":[{"date":"2010-03-01","text":"The creature’s power is determined as the triggered ability resolves, so it will take into account any effects that modify it. If the creature has left the battlefield by the time the triggered ability resolves, its last existence on the battlefield is checked to determine its power."}],"rarities":["rare"]},"argivian cavalier":{"name":"Argivian Cavalier","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Orc","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhen this creature enters, create a 1/1 white Soldier creature token.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Soldier","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Soldier"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 white Soldier creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c45090bd-a589-45a0-8388-025b8e0b3487","metadata":{"related_token_ids":["d3eecb4c-1ec3-5770-893f-3e89c455ebe9"],"source_printing_ids":["57746e72-ba9f-4717-a4a2-6c6a039080c3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"armored kincaller":{"name":"Armored Kincaller","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may reveal a Dinosaur card from your hand. If you do or if you control another Dinosaur, you gain 3 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Controller"},"card_filter":{"type":"Typed","type_filters":[{"Subtype":"Dinosaur"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Or","conditions":[{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Dinosaur"}],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may reveal a Dinosaur card from your hand. If you do or if you control another Dinosaur, you gain 3 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6aad6906-96ec-4994-bfc3-9a76f893bc8c","metadata":{"source_printing_ids":["223a1876-e413-4f07-ac39-c52d29384bef","b76a46a1-a63e-460a-98c5-699dd1c827aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["J25","LCI"],"rulings":[{"date":"2023-11-10","text":"Whether or not you control another Dinosaur is checked only as Armored Kincaller's ability is resolving. It doesn't matter if you still control Armored Kincaller at the time, or if it's still a Dinosaur."}],"rarities":["common"]},"artifact mutation":{"name":"Artifact Mutation","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. It can't be regenerated. Create X 1/1 green Saproling creature tokens, where X is that artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. It can't be regenerated. Create X 1/1 green Saproling creature tokens, where X is that artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"e77e8768-3ea8-44f9-aba6-1e023e006946","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","993318ee-4e8f-58a6-b55f-894b9310a3d9","b0e11732-60f4-5695-a354-73642be29b5d","b97a960d-5d34-5fd0-a94c-af7bb41c3edb"],"source_printing_ids":["ad22e43b-e244-43f2-bb2a-f94b777a4602","b2f5de3e-f3ca-439f-8b7c-f0b1807f34b4","b3bbecfc-0983-4ade-b00a-2bac2cad8d2f","d5eef49c-a80f-4622-ba77-999f9151c841","fed09083-a259-4ab5-bb85-aeab9d0b1f7c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C16","C20","INV","NCC","SLD"],"rulings":[{"date":"2004-10-04","text":"This spell is countered and you get no Saprolings if the artifact is an illegal target on resolution."}],"rarities":["rare"]},"ashaya, soul of the wild":{"name":"Ashaya, Soul of the Wild","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Variable","value":"*"},"toughness":{"type":"Variable","value":"*"},"loyalty":null,"defense":null,"oracle_text":"Ashaya's power and toughness are each equal to the number of lands you control.\nNontoken creatures you control are Forest lands in addition to their other types. (They're still affected by summoning sickness.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}}}},{"type":"SetDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":"~'s power and toughness are each equal to the number of lands you control."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"modifications":[{"type":"AddSubtype","subtype":"Forest"},{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Nontoken creatures you control are Forest lands in addition to their other types."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"162572f2-1757-42e9-bd97-e6bd9a762c0e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0a74b4e6-f6c9-4fef-a83c-a285a541e720","74943390-d25f-47cb-90bb-cbf70c87f4a2","813057d4-ec5b-4ec4-a6ad-8f53cc49b827","8a6a883f-55e2-43f5-90a9-34494c14c0c4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"A land that's a Forest has the intrinsic mana ability \"{T}: Add {G}.\""},{"date":"2020-09-25","text":"As long as Ashaya is on the battlefield, it's affected by its second ability and thus its first ability counts itself."},{"date":"2020-09-25","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to Ashaya may become lethal if lands you control leave the battlefield during that turn."},{"date":"2020-09-25","text":"The ability that defines Ashaya's power and toughness applies in all zones, not just the battlefield."},{"date":"2020-09-25","text":"You can't play creature cards as lands; you'll still have to cast them as spells, and they'll enter the battlefield as lands (in addition to their other types)."}],"rarities":["mythic"]},"assault":{"name":"Assault","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Assault deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 2 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"fcdeb83f-531c-4087-9254-7f19eb065f00","metadata":{"related_token_ids":["b804cdc2-1aaf-5dee-9760-fc9e88a37542","ed4b719a-b918-59b4-ba00-ecf427f0643f"],"source_printing_ids":["0ec6a889-c941-4898-a2f6-4d3863faf535","4a9f1e99-9de8-45cb-b035-4f920477e2e5","9b2ca0a2-0a18-4d9e-b953-52018af3c65b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"layout":"split","printings":["DMR","HOP","INV","TSB"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon","special"]},"assert perfection":{"name":"Assert Perfection","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to up to one target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to up to one target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecf574a5-6410-466d-a726-732134f904b2","metadata":{"source_printing_ids":["6995b308-5582-4ca1-ab10-a536d5ca0a6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL"],"rulings":[{"date":"2025-11-17","text":"If either target is an illegal target as Assert Perfection tries to resolve, the creature you control won't deal damage."}],"rarities":["common"]},"atarka's command":{"name":"Atarka's Command","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Your opponents can't gain life this turn.\n• Atarka's Command deals 3 damage to each opponent.\n• You may put a land card from your hand onto the battlefield.\n• Creatures you control get +1/+1 and gain reach until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantGainLife","affected":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"modifications":[{"type":"AddStaticMode","mode":"CantGainLife"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't gain life"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":3},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1},{"type":"AddKeyword","keyword":"Reach"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +1/+1 and gain reach"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"1943cbb0-2b12-4450-90af-060b8c8627c3","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Your opponents can't gain life this turn.","~ deals 3 damage to each opponent.","You may put a land card from your hand onto the battlefield.","Creatures you control get +1/+1 and gain reach until end of turn."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["903d78c9-c5b3-45c3-a6d0-7e92b4196ae3","c57b152e-c94e-4c10-9f0d-d960e878a430","fa86ff7b-04c7-415a-835b-ae9886f172df"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","DTK","HA5","PDTK"],"rulings":[{"date":"2015-02-25","text":"As the spell resolves, follow the instructions of the modes you chose in the order they are printed on the card. For example, if you chose the second and fourth modes of Ojutai's Command, you would gain 4 life and then draw a card. (The order won't matter in most cases.)"},{"date":"2015-02-25","text":"If a Command is copied, the effect that creates the copy will usually allow you to choose new targets for the copy, but you can't choose new modes."},{"date":"2015-02-25","text":"If all targets for the chosen modes become illegal before the Command resolves, the spell won't resolve and none of its effects will happen. If at least one target is still legal, the spell will resolve but will have no effect on any illegal targets."},{"date":"2015-02-25","text":"If you choose the third mode and put a land card onto the battlefield, that doesn't count as playing a land. For example, you can both play a land and put a land onto the battlefield this way during your turn."},{"date":"2015-02-25","text":"The first mode won't affect life that was gained earlier in the turn."},{"date":"2015-02-25","text":"You can choose a mode only if you can choose legal targets for that mode. Ignore the targeting requirements for modes that aren't chosen. For example, you can cast Ojutai's Command without targeting a creature spell provided you don't choose the third mode."},{"date":"2015-02-25","text":"You choose the two modes as you cast the spell. You must choose two different modes. Once modes are chosen, they can't be changed."}],"rarities":["rare"]},"augury adept":{"name":"Augury Adept","mana_cost":{"type":"Cost","shards":["WhiteBlue","WhiteBlue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kithkin","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to a player, reveal the top card of your library and put that card into your hand. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, reveal the top card of your library and put that card into your hand. You gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"be5a65fd-0d06-4771-bee7-0e42cc9871da","metadata":{"source_printing_ids":["4ba392e1-f310-4496-9d29-99a8783cc0f3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","SHM"],"rarities":["rare"]},"auntie ool, cursewretch":{"name":"Auntie Ool, Cursewretch","mana_cost":{"type":"Cost","shards":["Black","Red","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Warlock"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Ward—Blight 2. (To blight 2, a player puts two -1/-1 counters on a creature they control.)\nWhenever one or more -1/-1 counters are put on a creature, draw a card if you control that creature. If you don't control it, its controller loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":0}}}],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more -1/-1 counters are put on a creature, draw a card if you control that creature. If you don't control it, its controller loses 1 life.","constraint":null,"condition":null,"counter_filter":{"counter_type":"M1M1"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","Red"],"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"e3cd53c1-86bd-4177-adb0-a1fa693b44c6","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["9a2e4252-9fbc-4d43-8935-db2cafaa7b5f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["ECC"],"rulings":[{"date":"2025-11-17","text":"All of the -1/-1 counters must be put on a single creature. You can't choose to split them up between multiple creatures."},{"date":"2025-11-17","text":"If a creature has +1/+1 counters and -1/-1 counters on it, state-based actions remove the same number of each so that it has only one kind of those counters on it. For example, if a creature has three +1/+1 counters on it and two -1/-1 counters are put on it, state-based actions will remove two of each of those kinds of counters, leaving the creature with just one +1/+1 counter."},{"date":"2025-11-17","text":"If a creature that has +1/+1 counters on it receives enough -1/-1 counters to cause it to be destroyed by lethal damage or put into its owner's graveyard for having 0 or less toughness, effects that refer to the counters on that creature when it died will see all of those +1/+1 and -1/-1 counters."},{"date":"2025-11-17","text":"If you can't place -1/-1 counters on any creatures you control (probably because you control no creatures), you can't choose to blight."},{"date":"2025-11-17","text":"Once you've announced that you're casting a spell or activating an ability, players can't take actions until you've finished doing so. Notably, opponents can't try to destroy or otherwise remove your creatures to stop you from blighting as part of paying the cost of that spell or ability."},{"date":"2025-11-17","text":"The creature you choose to put -1/-1 counters on doesn't have to have enough toughness to survive the process. For example, if you blight 2, you can choose to put the counters on a 1/1 creature you control."}],"rarities":["mythic"]},"aura mutation":{"name":"Aura Mutation","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target enchantment. Create X 1/1 green Saproling creature tokens, where X is that enchantment's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target enchantment. Create X 1/1 green Saproling creature tokens, where X is that enchantment's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"19bb51dd-2b93-45f0-927d-bbafddadd0a3","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","b0e11732-60f4-5695-a354-73642be29b5d","b4472ae3-d346-5d13-8183-1aeeba37741d","b97a960d-5d34-5fd0-a94c-af7bb41c3edb"],"source_printing_ids":["0526debc-6eca-413e-b68c-50aa70927058","31bddc53-fa0c-4aa5-a92a-fa247e5330db","38421179-615e-4aba-91a4-503bfee05403","7240e52a-e435-46f1-ad68-96d6e12e123c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C16","INV","NCC","SCD"],"rulings":[{"date":"2004-10-04","text":"This spell doesn't resolve and you get no Saprolings if the enchantment is an illegal target on resolution."}],"rarities":["rare"]},"avatar destiny":{"name":"Avatar Destiny","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature you control\nEnchanted creature gets +1/+1 for each creature card in your graveyard and is an Avatar in addition to its other types.\nWhen enchanted creature dies, mill cards equal to its power. Return this card to its owner's hand and up to one creature card milled this way to the battlefield under your control.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, mill cards equal to its power. Return this card to its owner's hand and up to one creature card milled this way to the battlefield under your control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1},{"type":"AddSubtype","subtype":"Avatar"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+1 for each creature card in your graveyard and is an Avatar in addition to its other types."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecb81888-589b-4486-a444-e0c26384854e","metadata":{"source_printing_ids":["19b71bf7-d354-4729-a160-b85402c084f3","4d74da72-8443-4fce-9d64-d2041f6a3292"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rarities":["rare"]},"avatar roku":{"name":"Avatar Roku","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Avatar"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Firebending 4 (Whenever this creature attacks, add {R}{R}{R}{R}. This mana lasts until end of combat.)\n{8}: Create a 4/4 red Dragon creature token with flying and firebending 4.","non_ability_text":null,"flavor_name":null,"keywords":[{"Firebending":{"type":"Fixed","value":4}}],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Dragon","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"types":["Creature","Dragon"],"colors":["Red"],"keywords":["Flying",{"Firebending":{"type":"Fixed","value":4}}],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":8}},"sub_ability":null,"duration":null,"description":"{8}: Create a 4/4 red Dragon creature token with flying and firebending 4.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f26f270-26d9-46d3-957f-19f52d51eb03","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["566d2a4c-5be0-573a-964f-89a13982c567"],"source_printing_ids":["4a8bdef0-c50c-4a30-81bc-507a8289a81b","95f2f5af-d405-4534-8683-5a9001f997b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["PTLA","TLA"],"rarities":["mythic"]},"aven interrupter":{"name":"Aven Interrupter","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bird","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flash\nFlying\nWhen this creature enters, exile target spell. It becomes plotted. (Its owner may cast it as a sorcery on a later turn without paying its mana cost.)\nSpells your opponents cast from graveyards or from exile cost {2} more to cast.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"StackSpell"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"Plotted","turn_plotted":0},"target":{"type":"ParentTarget"},"grantee":{"type":"ObjectOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile target spell. It becomes plotted.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Raise","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InAnyZone","zones":["Graveyard","Exile"]}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"Opponent","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells your opponents cast from graveyards or from exile cost {2} more to cast."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d31fd12f-b4dd-4bc3-ace4-703dabd0f607","metadata":{"source_printing_ids":["75143fdb-5651-4289-86df-76c9655a0599","d3ca43a4-d194-440f-8099-f1fa103a108d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ","PWCS"],"rulings":[{"date":"2024-04-12","text":"Exiling a card using its plot ability is a special action. Once you announce you're taking that action, no other player can respond by trying to remove that card from your hand."},{"date":"2024-04-12","text":"If a plotted card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-04-12","text":"If the plotted card's owner casts it, the spell has no relation to the spell that player originally cast. Any choices made for the original spell or effects affecting the original spell aren't carried over to the new one."},{"date":"2024-04-12","text":"If you're casting a plotted card from exile without paying its mana cost, you can't choose to cast it for any other alternative costs. You can, however, pay additional costs, such as kicker costs. If the plotted card has any mandatory additional costs, those must still be paid to cast the spell."},{"date":"2024-04-12","text":"Plot abilities are written \"Plot [cost],\" which means \"Any time you have priority during your main phase while the stack is empty, you may pay [cost] and exile this card from your hand. It becomes plotted.\""},{"date":"2024-04-12","text":"Spells that can't be countered can still be exiled by Aven Interrupter's triggered ability. They won't resolve."},{"date":"2024-04-12","text":"You can't cast a plotted card on the same turn it became plotted. On any future turn, you may cast that card from exile without paying its mana cost during your main phase while the stack is empty."},{"date":"2024-06-07","text":"If an instant or a card with flash is plotted this way, you can still cast it only when you have priority during your main phase while the stack is empty."}],"rarities":["rare"]},"backlash":{"name":"Backlash","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature. That creature deals damage equal to its power to its controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Untapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature. That creature deals damage equal to its power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"3db9bf7b-da4e-428f-aa5d-a0cd1afeb16c","metadata":{"source_printing_ids":["a3a1d840-a5b0-449a-a1ba-95f3d9bff008","dadf030d-5451-43fc-bf0c-c1629fdf88ec"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["INV","PLST"],"rulings":[{"date":"2004-10-04","text":"Being untapped is a targeting restriction. If the target is tapped before this spell resolves, then this spell doesn’t resolve."}],"rarities":["uncommon"]},"badgermole cub":{"name":"Badgermole Cub","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Badger","Mole"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, earthbend 1. (Target land you control becomes a 0/0 creature with haste that's still a land. Put a +1/+1 counter on it. When it dies or is exiled, return it to the battlefield tapped.)\nWhenever you tap a creature for mana, add an additional {G}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 1.","constraint":null,"condition":null,"batched":false},{"mode":"TapsForMana","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"],"contribution":"Additional"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you tap a creature for mana, add an additional {G}.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2b0afb89-0944-4861-b9c3-e909e2ac215e","metadata":{"source_printing_ids":["340c5799-4964-44dd-8c48-8f3f3aba5211","be16c053-99e1-4921-8530-5135c989149d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"An ability that triggers \"whenever you tap a creature for mana\" triggers only if you activate a mana ability of a creature including {T} in its cost. Mana abilities that don't include the {T} symbol and instead say \"Tap an untapped creature you control\" or similar won't cause Badgermole Cub's second ability to trigger. Similarly, it won't trigger if you tap a creature to activate a mana ability of another object (even if that mana ability also includes {T})."},{"date":"2025-10-02","text":"Badgermole Cub's last ability is a triggered mana ability. It doesn't use the stack and can't be responded to."}],"rarities":["mythic"]},"balance":{"name":"Balance","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player chooses a number of lands they control equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"ScopedPlayer","properties":[]}}},"right":{"type":"Ref","qty":{"type":"ControlledByEachPlayer","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"aggregate":"Min"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"ScopedPlayer"}}},"right":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"AllPlayers","aggregate":"Min"}}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]}}},"right":{"type":"Ref","qty":{"type":"ControlledByEachPlayer","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"aggregate":"Min"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":"Each player chooses a number of lands they control equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"17fa98cd-ed8f-483f-9525-7e989a82ebb2","metadata":{"source_printing_ids":["0caf528a-1a26-4bf2-bb82-2dbbe4681d74","0f2c32a0-ee97-4239-94e3-aabab91dab83","107cfaa9-3457-4f59-89ad-4c7b57a87f14","1896db0e-efd3-46a6-8f98-eb744bbac72f","3095d590-f105-4338-b96c-4fc2972912ca","39a28a50-3130-485d-975c-26a0f40681a3","3f4f3c43-11bb-4678-b8fe-11e55a7d7831","5086b4dc-8066-4487-bd09-a04432291a54","6f9ea46a-411f-40ce-a873-a905180093f4","7ecf2cae-8bb6-48a9-9fb0-2930ce2a540a","8352e8b6-c947-49f3-a653-a6af65d3e9c3","8745833d-fa67-4af7-9f35-534ad99e7bef","8bf4940c-e83d-434a-80bb-48b087165379","a21b08d4-b43d-4c93-99e7-39dfe83ced91","a8619034-173c-4950-a0b4-1ae1dcfd0bc5","b17530a1-7be3-4af3-aa98-9476c69fa766","ce648aa3-098b-4af0-a433-fd290bc85904","d2823b1d-39bf-41ee-8e8b-99f12797408e","db3e219d-8e5e-44c7-97b3-2d489e2808b9","f48bc615-b40c-4c9d-9eda-a4f1cae6ac75","f5f345ec-d0a5-461f-b78f-5f888c6a828b"]},"legalities":{"commander":"banned","duel":"banned","legacy":"banned","oathbreaker":"banned","premodern":"banned","vintage":"restricted"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","EMA","FBB","G04","LEA","LEB","ME4","OLEP","PLST","PRM","PTC","SLD","SUM","V09","VMA"],"rulings":[{"date":"2016-06-08","text":"Balance doesn't have targets, so permanents that can't be targeted, such as a creature with shroud or protection from white, are valid choices to be sacrificed."},{"date":"2016-06-08","text":"Each type of object is counted during the corresponding part of the process. Cards in hand are counted after lands have been sacrificed, and creatures on the battlefield are counted after cards have been discarded. Thus, a land creature sacrificed to the first part of the spell would not be counted when determining how many creatures are on the battlefield for the last part."},{"date":"2016-06-08","text":"First the player whose turn it is chooses which lands (if any) to keep, then each other player in turn order does the same. Each player will know the choices made by the players who chose before them. All of the unchosen lands are then sacrificed simultaneously. Then the process is repeated for cards in hand, except that no cards are revealed until all players have chosen what to discard, at which point those cards are all discarded simultaneously. Lastly, the process is repeated for creatures, and players will again know earlier choices made when deciding what to sacrifice. All of the unchosen creatures are then sacrificed simultaneously."}],"rarities":["rare","mythic"]},"balduvian berserker":{"name":"Balduvian Berserker","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kor","Berserker"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhen this creature dies, it deals damage equal to its power to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, it deals damage equal to its power to any target.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"3a7b1d1c-1724-4208-943b-650a5d773653","metadata":{"source_printing_ids":["c35bab2f-8464-4968-8c50-8807638d687b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To determine the amount of damage it deals, use Balduvian Berserker’s power as it last existed on the battlefield, not its power in the graveyard."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"baleful mastery":{"name":"Baleful Mastery","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may pay {1}{B} rather than pay this spell's mana cost.\nIf the {1}{B} cost was paid, an opponent draws a card.\nExile target creature or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":0}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"If the {1}{B} cost was paid, an opponent draws a card.\nExile target creature or planeswalker.","target_prompt":null,"condition":{"type":"AlternativeManaCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"adfcdadd-ddda-477b-8e72-0cae2430fb63","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"metadata":{"source_printing_ids":["26e07454-2cca-4b9e-b175-e97c65b0d7b5","35f1a6ba-e46f-44fb-93f4-fb883d677b36","579e20e7-1395-4a6c-a836-ae3419fc8808","fcefe86f-9998-4259-bf71-2b2ed1d6bf50"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["OTC","PLST","PRM","PSTX","STX"],"rulings":[{"date":"2021-04-16","text":" If an effect increases or decreases the cost of spells you cast, that cost increase or decrease is applied to the alternative cost you chose to pay. In that case, the cost was still paid for the purposes of the effect, even if you paid more or less for it when it was cast."},{"date":"2021-04-16","text":" If you choose to pay one alternative cost, you can't pay any other alternative costs. For example, if an effect lets you cast a \"Mastery\" spell \"without paying its mana cost,\" you can't also choose to pay its given alternative cost."},{"date":"2021-04-16","text":" If you copy a \"Mastery\" spell and the alternative cost was paid, the copy will resolve as though the cost was paid."},{"date":"2021-04-16","text":" In a multiplayer game, you choose which opponent takes the prescribed action as the spell resolves."},{"date":"2021-04-16","text":" The mana value of a spell on the stack is determined by its mana cost, not any alternative costs you used to pay for it."}],"rarities":["rare"]},"balloon stand":{"name":"Balloon Stand","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Attraction"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Visit — Choose one.\n• Create a 1/1 red Balloon creature token with flying.\n• Sacrifice a Balloon. If you do, target creature gains flying until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"• Create a 1/1 red Balloon creature token with flying."},"cost":null,"sub_ability":null,"duration":null,"description":"• Create a 1/1 red Balloon creature token with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"• Sacrifice a Balloon. If you do, target creature gains flying until end of turn."},"cost":null,"sub_ability":null,"duration":null,"description":"• Sacrifice a Balloon. If you do, target creature gains flying until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"VisitAttraction","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"choose","description":"Choose one"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":null,"constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"abb6f51b-2a14-44ac-8c19-e135c9deb1ea","metadata":{"related_token_ids":["aeaa0582-78d4-5bbb-848d-472aa3bbb01c"],"source_printing_ids":["26bb8928-8178-439b-803e-35f5681b8ff4","2e9eaed8-e956-4fb2-a23d-3d442cd2fa5c","41a7de59-f3d4-4092-b23d-0e519a108ced","7412ea3f-646c-41bd-be94-cf2a2c0cee14"]},"legalities":{"commander":"legal","duel":"banned","oathbreaker":"banned"},"printings":["UNF"],"rarities":["uncommon"]},"baneful omen":{"name":"Baneful Omen","mana_cost":{"type":"Cost","shards":["Black","Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, you may reveal the top card of your library. If you do, each opponent loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may reveal the top card of your library. If you do, each opponent loses life equal to that card's mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc1711cf-c62b-436b-ba35-56bef8ef14d0","metadata":{"source_printing_ids":["2bff6e03-b6af-4f54-b365-9a6db2dbb595"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ROE"],"rarities":["rare"]},"baneslayer angel":{"name":"Baneslayer Angel","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying, first strike, lifelink, protection from Demons and from Dragons","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Flying","Lifelink",{"Protection":{"CardType":"demons"}},{"Protection":{"CardType":"dragons"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0e11792b-7fe5-4208-aa0b-e5d09b2b65fe","metadata":{"source_printing_ids":["0b0974b4-b306-4026-b0a8-22bd9da3e384","4bd3014b-94bb-4a9f-92cf-239a2dcc7e97","6764ea7b-ccb3-4f39-b8ba-654a186210b9","ff70c4ff-a241-4333-bd8f-9f0ed5a0333b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M11","M21","PM21","PRM","V15"],"rulings":[{"date":"2009-10-01","text":"“Protection from Demons and from Dragons” means the following: -- Baneslayer Angel can't be blocked by creatures with the creature type Demon or the creature type Dragon. -- Baneslayer Angel can't be targeted abilities from sources with the creature type Demon or the creature type Dragon, or by spells with either of those types. -- All damage that would be dealt to Baneslayer Angel by sources with the creature type Demon or the creature type Dragon is prevented. -- Baneslayer Angel can't be enchanted by Auras or equipped by artifacts that have somehow gotten the creature type Demon or the creature type Dragon."}],"rarities":["mythic"]},"banewasp affliction":{"name":"Banewasp Affliction","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, that creature's controller loses life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, that creature's controller loses life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c1cb870a-8c1f-435c-b678-e456c4d2d627","metadata":{"source_printing_ids":["fef85030-d591-407d-8045-c595326dd6fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ALA","PS11"],"rulings":[{"date":"2008-10-01","text":"The player who loses life is the player who controlled the creature when it was put into a graveyard. This may not be the player whose graveyard it was put into. That player loses life equal to the creature’s toughness as it last existed on the battlefield."}],"rarities":["common"]},"barbarian class":{"name":"Barbarian Class","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nIf you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll.\n{1}{R}: Level 2\nWhenever you roll one or more dice, target creature you control gets +2/+0 and gains menace until end of turn.\n{2}{R}: Level 3\nCreatures you control have haste.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"If you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll."},"cost":null,"sub_ability":null,"duration":null,"description":"If you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":2}},"sub_ability":null,"duration":null,"description":"{2}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"RolledDie","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Menace"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +2/+0 and gains menace"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you roll one or more dice, target creature you control gets +2/+0 and gains menace until end of turn.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":true}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"ClassLevelGE","level":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control have haste."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"59faa1b9-17aa-4f2c-a8f8-17ab50392b36","metadata":{"source_printing_ids":["647c2269-bdc7-4455-9158-73abbff6e50e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rulings":[{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"barkweave crusher":{"name":"Barkweave Crusher","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cbac75c6-6006-4025-b893-8828965b5f97","metadata":{"source_printing_ids":["41c62c55-7b04-4987-9047-1322c842bb59"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"barrensteppe siege":{"name":"Barrensteppe Siege","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Abzan or Mardu.\n• Abzan — At the beginning of your end step, put a +1/+1 counter on each creature you control.\n• Mardu — At the beginning of your end step, if a creature died under your control this turn, each opponent sacrifices a creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, put a +1/+1 counter on each creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Abzan"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if a creature died under your control this turn, each opponent sacrifices a creature of their choice.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"And","conditions":[{"type":"ChosenLabelIs","label":"Mardu"},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ZoneChangeCountThisTurn","from":"Battlefield","to":"Graveyard","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Abzan","Mardu"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Abzan or Mardu.","condition":null,"destination_zone":"Battlefield"}],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"228d3307-69a9-45ce-a610-77754ed50877","metadata":{"source_printing_ids":["2556a35b-2229-42c7-8cb3-c8c668403dd2","c09d4015-f101-4529-a603-c66192dcfd92"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Barrensteppe Siege’s Mardu ability will check as the end step starts to see if a creature died under your control this turn. If none did, the ability won’t trigger at all."},{"date":"2025-04-04","text":"If you somehow control Barrensteppe Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"bartz and boko":{"name":"Bartz and Boko","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Bird"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Affinity for Birds (This spell costs {1} less to cast for each Bird you control.)\nWhen Bartz and Boko enters, each other Bird you control deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[{"Affinity":{"type_filters":[{"Subtype":"Bird"}],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each other Bird you control deals damage equal to its power to target creature an opponent controls.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2d995c47-e548-4fc4-9182-fef46af20ca5","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1b9a92f8-2044-4554-aec9-00b410dada35","d818d574-2832-4a7a-a13b-aa6e695fdaa5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Bartz and Boko's last ability targets only one creature, regardless of how many Birds you control."}],"rarities":["rare"]},"battery":{"name":"Battery","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create a 3/3 green Elephant creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Elephant","power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"types":["Creature","Elephant"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Create a 3/3 green Elephant creature token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"fcdeb83f-531c-4087-9254-7f19eb065f00","metadata":{"related_token_ids":["b804cdc2-1aaf-5dee-9760-fc9e88a37542","ed4b719a-b918-59b4-ba00-ecf427f0643f"],"source_printing_ids":["0ec6a889-c941-4898-a2f6-4d3863faf535","4a9f1e99-9de8-45cb-b035-4f920477e2e5","9b2ca0a2-0a18-4d9e-b953-52018af3c65b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"layout":"split","printings":["DMR","HOP","INV","TSB"],"rarities":["uncommon","special"]},"bear cub":{"name":"Bear Cub","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bear"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ed206651-3d9b-4546-8d45-0682817192fd","metadata":{"source_printing_ids":["1ceb41a1-c5fb-4d4b-b063-d24820007040","a3d36d12-22e4-4889-8f01-5f54de39e379","d8662ebb-068b-41d2-b504-4b5854e4d4aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J21","P02","PLST"],"rarities":["common"]},"beastie beatdown":{"name":"Beastie Beatdown","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control and target creature an opponent controls.\nDelirium — If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.\nThe creature you control deals damage equal to its power to the creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose target creature you control and target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Delirium — If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.\nThe creature you control deals damage equal to its power to the creature an opponent controls.","target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"DistinctCardTypes","source":{"type":"Zone","zone":"Graveyard","scope":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"3da5fbe2-e47b-4a1d-9e73-393f37314fa3","metadata":{"source_printing_ids":["5f889c95-46af-4fd9-aff2-573d5384fd58"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"If either creature is an illegal target as Beastie Beatdown tries to resolve, the creature you control won't deal damage. If the creature you control is an illegal target, you won't put two +1/+1 counters on it even if you have delirium."},{"date":"2024-09-20","text":"You can't cast Beastie Beatdown unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"belbe, corrupted observer":{"name":"Belbe, Corrupted Observer","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Phyrexian","Zombie","Elf"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each postcombat main phase, the active player adds {C}{C} for each of your opponents who lost life this turn. (Damage causes loss of life.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"OpponentLostLife"}}}}},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PostCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each postcombat main phase, the active player adds {C}{C} for each of your opponents who lost life this turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"f1c303d8-6d77-4bc6-82d1-2a409a6f2cfd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["b4427e73-8c60-490d-8ae3-53e872a5163e","ee6c3f6e-3c46-47b2-abcc-8aeb2f12d2fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"If an effect creates an additional combat phase in a turn, it may also create an additional main phase after that combat phase. Belbe's ability triggers at the beginning of each of these postcombat main phases."},{"date":"2020-11-10","text":"If an opponent loses life before their own postcombat main phase, Belbe will reward their suffering with mana."},{"date":"2020-11-10","text":"If an opponent lost life and subsequently lost the game, Belbe's triggered ability still counts that player to determine how much mana to add."}],"rarities":["rare"]},"benalish faithbonder":{"name":"Benalish Faithbonder","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Vigilance"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"278db664-4235-40f0-a926-3074a0e038c1","metadata":{"source_printing_ids":["084d77df-a899-406f-9d79-e3fa3abeaebc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"benalish knight-counselor":{"name":"Benalish Knight-Counselor","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Enlist\nWhenever Benalish Knight-Counselor enlists a creature, you get a one-time boon with \"When you cast a creature spell, that creature enters with a +1/+1 counter on it.\"","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"\"when you cast a creature spell, that creature enters with a +1/+1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Whenever ~ enlists a creature, you get a one-time boon with \"When you cast a creature spell, that creature enters with a +1/+1 counter on it.\"","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e792e7d3-43c3-4a99-be04-318af41399b0","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDMU"]},"betor, ancestor's voice":{"name":"Betor, Ancestor's Voice","mana_cost":{"type":"Cost","shards":["White","Black","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit","Dragon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nAt the beginning of your end step, put a number of +1/+1 counters on up to one other target creature you control equal to the amount of life you gained this turn. Return up to one target creature card with mana value less than or equal to the amount of life you lost this turn from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"LifeLostThisTurn","player":{"type":"Controller"}}}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, put a number of +1/+1 counters on up to one other target creature you control equal to the amount of life you gained this turn. Return up to one target creature card with mana value less than or equal to the amount of life you lost this turn from your graveyard to the battlefield.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","White"],"color_identity":["Black","Green","White"],"scryfall_oracle_id":"990b5e12-6e04-4832-9d64-87278f12cbda","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2e261489-8dde-4594-8868-69f432f03d03"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TDC"],"rarities":["mythic"]},"birthing ritual":{"name":"Birthing Ritual","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, if you control a creature, look at the top seven cards of your library. Then you may sacrifice a creature. If you do, you may put a creature card with mana value X or less from among those cards onto the battlefield, where X is 1 plus the sacrificed creature's mana value. Put the rest on the bottom of your library in a random order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":7},"destination":"Battlefield","keep_count":1,"up_to":true,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}},"offset":1}}]},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you control a creature, look at the top seven cards of your library. Then you may sacrifice a creature. If you do, you may put a creature card with mana value X or less from among those cards onto the battlefield, where X is 1 plus the sacrificed creature's mana value. Put the rest on the bottom of your library in a random order.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ControlsType","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"37a5ab64-12e4-4aad-9a09-46a26fe9953b","metadata":{"source_printing_ids":["004bbc84-b57b-4393-889e-dff95e8f334c","4820d223-4ea1-4850-931c-3d2ab5eb003b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Birthing Ritual's ability checks if you control a creature at the beginning of your end step. If you don't, the ability won't trigger."},{"date":"2024-06-07","text":"If Birthing Ritual's ability does trigger but you control no creatures when it tries to resolve, the ability will do nothing."},{"date":"2024-06-07","text":"If one of the revealed creature cards has {X} in its mana cost, X is 0 when determining that card's mana value."},{"date":"2024-06-07","text":"Use the mana value of the sacrificed creature as it last existed on the battlefield to determine the value of X."}],"rarities":["mythic"]},"bite down on crime":{"name":"Bite Down on Crime","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, you may collect evidence 6. This spell costs {2} less to cast if evidence was collected. (To collect evidence 6, exile cards with total mana value 6 or greater from your graveyard.)\nTarget creature you control gets +2/+0 until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +2/+0 until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"AdditionalCostPaid"},"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {2} less to cast if evidence was collected."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ff387264-31da-4f6b-88c6-2843f56acbda","additional_cost":{"type":"Optional","data":{"cost":{"type":"CollectEvidence","amount":6}}},"metadata":{"source_printing_ids":["29bbfe93-8225-444c-835b-33ffa006ef66"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM"],"rulings":[{"date":"2024-02-02","text":"If either target is an illegal target as Bite Down on Crime tries to resolve, the creature you control won't deal damage."},{"date":"2024-02-02","text":"If you can't exile enough cards to meet or exceed the required mana value, you can't choose to collect evidence at all."},{"date":"2024-02-02","text":"Once you've announced that you're casting a spell, players can't take actions until you've finished doing so. Notably, opponents can't try to remove cards from your graveyard to stop you from collecting evidence."}],"rarities":["common"]},"blood artist":{"name":"Blood Artist","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or another creature dies, target player loses 1 life and you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever ~ or another creature dies, target player loses 1 life and you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"310f141c-7f37-4729-aed6-dd9c09db448d","metadata":{"source_printing_ids":["036f387a-8dee-482e-b3e3-cf79b54c61e1","1bcda0fd-0def-41ef-932a-85e83acce99d","2e1fb442-68ff-4249-8e44-87edf6fae211","465d8c18-c76b-488a-a4ec-ec0d2267a307","5587191b-b56a-452d-8a18-1622df83c267","693dd112-d04a-4404-8fce-74f7e5497312","7752646a-463d-4fdd-8754-e41ef8107108","877558c4-f633-4510-97db-f1205a080ecb","8a5b65ed-250c-42a6-84c0-ac06662ca5ed","9ca6d92a-45d3-4d67-8ae9-f25dd4a86739","b5275d76-2947-4219-be21-614c7421614a","b7f1c316-cf2f-4bbf-89a1-79c8043bdd96","c4c1641d-c4ea-4657-a0ae-db09bba83a0f","cf25a260-009c-44d5-86b5-b027329a6ff8","e93e65d6-c2c8-4ab6-9296-7b21ff2ff8bf","fe97a73f-33fd-4394-a393-ceb41a214820"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","AVR","C17","DSC","EMA","INR","J22","JMP","LCC","PLST","PRM","SLD","SOC","VOC"],"rulings":[{"date":"2016-06-08","text":"If Blood Artist and one or more other creatures die at the same time, its ability will trigger for each of those creatures."}],"rarities":["uncommon","rare"]},"blood poet":{"name":"Blood Poet","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Spark (Activate spark abilities by spending or giving yourself spark counters. Activate only one spark ability per turn, and only as a sorcery.)\n[+1]: Blood Poet gains lifelink until end of turn.\n[−3]: Target opponent discards a card. You gain life equal to its converted mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Spark"},"cost":null,"sub_ability":null,"duration":null,"description":"Spark","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Lifelink"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain lifelink"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[+1]: ~ gains lifelink until end of turn.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Target opponent discards a card. You gain life equal to its converted mana cost.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c74655d1-25a2-4208-8507-95fccff2a694","metadata":{"source_printing_ids":["841c3f47-ee6d-4a87-9c5b-57a911b312fe","c3783d59-c2cc-4fff-afd7-c32418fa36ec"]},"legalities":{},"printings":["CMB1","CMB2"],"rulings":[{"date":"2019-11-12","text":"If Blood Poet loses spark, its spark abilities can’t be activated."},{"date":"2019-11-12","text":"You can activate only one spark ability from among permanents you control each turn, no matter how many permanents you control with spark abilities."}],"rarities":["rare"]},"bloodghast":{"name":"Bloodghast","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Spirit"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"This creature can't block.\nThis creature has haste as long as an opponent has 10 or less life.\nLandfall — Whenever a land you control enters, you may return this card from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Graveyard"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, you may return this card from your graveyard to the battlefield.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"Opponent","aggregate":"Min"}}},"comparator":"LE","rhs":{"type":"Fixed","value":10}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ has haste as long as an opponent has 10 or less life."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e97f9c2b-b41e-4f36-9245-77c0ac125647","metadata":{"source_printing_ids":["08e01310-d192-41e9-a6f0-0edbd6fb3cfb","2cdbfc1d-b8f3-4e46-ac60-7fbf8fade29e","3489de46-e90c-483e-ac2b-547497f64e82","4560bd1f-eb63-45bc-a8c7-b5de200facc9","63870c81-63bf-4a9a-aeb5-74c6eaded9f1","730c521f-ba12-48fb-b18f-6bb55423a551","77534750-fa92-42b4-8f32-be437eca64ad","87089d28-46a7-4247-a784-c34b9f822172","97d42d32-c9c8-4def-a48b-0590ea572e33","cee85485-598f-4dfc-aa0b-7b1de86c7788","fdceefe6-f083-4955-b53a-8e6f8aeb2083"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT","HA7","IMA","LCC","PDFT","PLST","SLD","SOC","ZEN"],"rulings":[{"date":"2009-10-01","text":"Bloodghast's landfall ability triggers only if it's already in your graveyard at the time a land enters under your control."},{"date":"2025-07-25","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2025-07-25","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2025-07-25","text":"Whenever a land you control enters, each landfall ability of permanents you control will trigger. You can put them on the stack in any order. The last ability you put on the stack will be the first one to resolve. As a result, you can have those abilities resolve in the order of your choosing."}],"rarities":["rare"]},"bog imp":{"name":"Bog Imp","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Imp"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying (This creature can't be blocked except by creatures with flying or reach.)","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"45b94e3c-a905-435b-aee5-bec9239fd24c","metadata":{"source_printing_ids":["0aa5efb5-d893-4126-af86-28a29e029ea8","33eb7e04-dc9f-40ee-93d1-39df5e9e8f1f","79073387-b835-4079-aa22-76c866488fbe","7f1e2c65-d2b0-4bf7-b302-d755e9259ce2","846f5cda-3d93-4dfd-b1c3-1dff7b814d98","94903771-d0d0-49dd-b28a-438ef4bdf416","c11924b2-c290-47a1-803d-b00c433cf840","c50c3053-3cf3-40d3-bc9e-2fc292f11c34","cea56b32-e0cc-4261-a5a8-c85cb6bd55ad","d3f70e3a-b094-45f9-8e34-02db116292ce","e3bb7271-634a-4612-9073-7a5438e8c2b8","fa02b4a5-8302-483c-9f38-b559974a601c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["4BB","4ED","5ED","6ED","7ED","8ED","9ED","DRK","ITP","POR","REN","RQS","S99"],"rarities":["common"]},"bolas's citadel":{"name":"Bolas's Citadel","mana_cost":{"type":"Cost","shards":["Black","Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may play lands and cast spells from the top of your library. If you cast a spell this way, pay life equal to its mana value rather than pay its mana cost.\n{T}, Sacrifice ten nonland permanents: Each opponent loses 10 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":10}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"count":10}]},"sub_ability":null,"duration":null,"description":"{T}, Sacrifice ten nonland permanents: Each opponent loses 10 life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Play","alt_cost":{"type":"PayLife","amount":{"type":"Ref","qty":{"type":"SelfManaValue"}}}}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands and cast spells from the top of your library. If you cast a spell this way, pay life equal to its mana value rather than pay its mana cost."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2bd111bb-ce02-414c-b5b7-e0e037d8d96b","metadata":{"source_printing_ids":["5a16665a-2600-460a-a5ad-417930fda62c","7572bb1d-0578-4ebb-9180-dbb709ec9a5c","d2124603-d20e-40eb-97f0-a66323397ac2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","MB2","PLG21","PRM","PWAR","SLD","WAR"],"rulings":[{"date":"2019-05-03","text":"Bolas's Citadel lets you look at the top card of your library whenever you want (with one restriction—see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2019-05-03","text":"Bolas's Citadel may be one of the permanents you sacrifice to activate its last ability."},{"date":"2019-05-03","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2019-05-03","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast the top card of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2019-05-03","text":"If you cast a spell for another cost \"rather than pay its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, such as that of Spark Harvest, those must be paid to cast the card."},{"date":"2019-05-03","text":"In a Two-Headed Giant game, the last ability of Bolas's Citadel causes the opposing team to lose 20 life."},{"date":"2019-05-03","text":"You can play a land card from the top of your library only if you have available land plays remaining."},{"date":"2019-05-03","text":"You must follow the normal timing permissions and restrictions of the cards you play from your library."}],"rarities":["rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"bonecrusher giant":{"name":"Bonecrusher Giant","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature becomes the target of a spell, this creature deals 2 damage to that spell's controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"TriggeringSpellController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"Whenever ~ becomes the target of a spell, ~ deals 2 damage to that spell's controller.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d72f5f-8f5d-4180-b514-f22ff5482902","metadata":{"source_printing_ids":["09fd2d9c-1793-4beb-a3fb-7a869f660cd4","3a6431fd-4b79-488e-a0c0-57731616bd08","b5b71cd2-de35-451f-b16e-2e3936169407","c402a722-d412-4598-8a1e-edb889b957e8","ff984a4c-1818-4f8f-a9d7-fce57e77937d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["CLB","ELD","PELD","PLST","PRM"],"rulings":[{"date":"2019-10-04","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Giant Killer is a white creature card whose mana value is 1. It can't be the target of the triggered ability of Mystic Sanctuary."},{"date":"2019-10-04","text":"Bonecrusher Giant's ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2019-10-04","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2019-10-04","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to cast it as a permanent later."},{"date":"2019-10-04","text":"If a spell targets Bonecrusher Giant more than once, its ability triggers only once."},{"date":"2019-10-04","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to cast it as a permanent spell."},{"date":"2019-10-04","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to cast the copy as a permanent."},{"date":"2019-10-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2019-10-04","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2019-10-04","text":"If the chosen target is an illegal target by the time Stomp tries to resolve, the spell won't resolve. Damage can be prevented as usual."},{"date":"2019-10-04","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if Giant Killer is exiled with the last ability of Vivien, Champion of the Wilds, you can't cast it as Chop Down."},{"date":"2019-10-04","text":"Protection prevents damage, so protection will be unable to prevent damage after Stomp has resolved. However, this won't allow a spell or ability to target illegally, even if that spell or ability would cause damage to be dealt."},{"date":"2019-10-04","text":"Stomp only stops damage from being prevented by effects that specifically use the word \"prevent.\""},{"date":"2019-10-04","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2019-10-04","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you'll be able to cast it only during your main phase while the stack is empty."}],"rarities":["rare"]},"bonesplitter":{"name":"Bonesplitter","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Equipped creature gets +2/+0.\nEquip {1}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":null,"duration":null,"description":"Equip {1}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature gets +2/+0."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"452e3f5f-ce17-4682-966b-5cc100210aee","metadata":{"source_printing_ids":["465a7990-c9f9-4716-a833-fd41458b9cee","690972a8-72df-4050-a353-16e45589167c","b09dad6d-ec9a-40b4-b136-7a8b58a42a3b","bda22fad-8149-42fb-b915-2c2580efb353"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["CMR","HA4","MMA","MRD","PAL03","PLST","PRM","PSAL","TD0","TD2"],"rarities":["common"]},"boon reflection":{"name":"Boon Reflection","mana_cost":{"type":"Cost","shards":["White"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would gain life, you gain twice that much life instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"GainLife","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would gain life, you gain twice that much life instead.","condition":null}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b86d3142-568a-4eea-b1ae-5fcfc1453533","metadata":{"source_printing_ids":["0d4032a7-600c-4b30-a012-fe3cde1be9c9","1a27ba4d-53af-427d-9e51-be04db077fac"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","SHM"],"rulings":[{"date":"2020-08-07","text":"If an effect would set your life total to a specific number that's higher than your current life total, that effect would cause you to gain life equal to the difference. Boon Reflection will then double the amount of life that effect would cause you to gain. For example, if you have 3 life and an effect says that your life total “becomes 10,” your life total will actually become 17."},{"date":"2020-08-07","text":"In a Two-Headed Giant game, only Boon Reflection's controller is affected by it. If that player's teammate gains life, Boon Reflection will have no effect, even when that life gain is applied to the shared team life total."},{"date":"2020-08-07","text":"The effects of multiple Boon Reflections are cumulative. For example, if you control two Boon Reflections, you'll gain four times the original amount of life. If you control three Boon Reflections, you'll gain eight times the original amount, and so on."}],"rarities":["rare"]},"boros fury-shield":{"name":"Boros Fury-Shield","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Prevent all combat damage that would be dealt by target attacking or blocking creature this turn. If {R} was spent to cast this spell, Boros Fury-Shield deals damage to that creature's controller equal to the creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"CombatDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ManaColorSpent","color":"Red","minimum":1},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"20eff2ce-f26d-48a2-8a1f-435a7e2968c8","metadata":{"source_printing_ids":["c46b2f5c-3c7a-4421-9d6f-81197e93d8d0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["RAV"],"rulings":[{"date":"2005-10-01","text":"If red mana was spent, Boros Fury-Shield, not the target creature, deals the damage to the creature’s controller."}],"rarities":["common"]},"bottle golems":{"name":"Bottle Golems","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"46334ae3-e496-4f15-8033-0f42ee0ae375","metadata":{"source_printing_ids":["513a36a1-b2e3-4779-b8a7-66f01c488bf0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["MH2"],"rulings":[{"date":"2021-06-18","text":"Use Bottle Golems' power when it was on the battlefield to determine the amount of life you gain. This may be different than its power in the graveyard."}],"rarities":["common"]},"boulderbranch golem":{"name":"Boulderbranch Golem","mana_cost":{"type":"Cost","shards":[],"generic":7},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Prototype {3}{G} — 3/3 (You may cast this spell with different mana cost, color, and size. It keeps its abilities and types.)\nWhen this creature enters, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[{"Prototype":{"cost":{"type":"Cost","shards":["Green"],"generic":3},"power":3,"toughness":3}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"82caf3e2-da42-4851-b4db-546e2403c4bf","metadata":{"source_printing_ids":["6e6e5338-9b95-4ac7-a57c-5efaa6423531"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRO"],"rulings":[{"date":"2022-10-14","text":"A prototype card is a colorless card in every zone except the stack or the battlefield, as well as while on the stack or the battlefield if not cast as a prototyped spell. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Blitz Automaton is a colorless creature card with mana value 7. It can't be the target of Recommission, a spell that targets an artifact or creature card with mana value 3 or less in your graveyard."},{"date":"2022-10-14","text":"Casting a prototyped spell isn't the same as casting it for an alternative cost, and an alternative cost may be applied to a spell cast this way. For example, if an effect allows you to cast an artifact card without paying its mana cost, you could either cast Blitz Automaton normally, or as a prototyped spell."},{"date":"2022-10-14","text":"If Boulderbranch Golem leaves the battlefield before its enters-the-battlefield triggered ability resolves, use its power as it last existed on the battlefield to determine how much life is gained, not its power in the zone it moved to."},{"date":"2022-10-14","text":"If an effect copies a prototyped spell, that copy (as well as the token it becomes on the battlefield) will have the same characteristics as the prototyped spell. Similarly, if an effect creates a token that's a copy of a prototyped permanent or causes another permanent to become a copy of it, the copy would have the same characteristics as the prototyped permanent."},{"date":"2022-10-14","text":"Regardless of how it was cast, a prototype card always has the same name, abilities, types, and so on. Only the mana cost, mana value, color, power, and toughness change depending on whether the card was cast as a prototyped spell."},{"date":"2022-10-14","text":"The prototype ability functions in any zone that the spell could be cast from. For example, if an effect allows you to cast artifact spells from your graveyard, you could cast a prototyped Blitz Automaton from your graveyard."},{"date":"2022-10-14","text":"When cast as a prototyped spell, that spell has the mana cost, power, and toughness characteristics shown in its colored, secondary text box rather than the normal values of those characteristics. Its color and mana value are determined by that mana cost. The permanent that spell becomes as it resolves has the same characteristics. If the spell leaves the stack in any other way, or the permanent it becomes leaves the battlefield, it immediately resumes using its normal characteristics."},{"date":"2022-10-14","text":"When casting a prototyped spell, use only its prototype characteristics to determine whether it's legal to cast it. For example, if Blitz Automaton is exiled with the last ability of Chandra, Dressed to Kill, you would be able to cast it for {2}{R} (because it's a red spell), even though you wouldn't be able to cast it as a colorless spell for its normal cost."}],"rarities":["common"]},"bounteous kirin":{"name":"Bounteous Kirin","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kirin","Spirit"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever you cast a Spirit or Arcane spell, you may gain life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Spirit"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Arcane"}],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a Spirit or Arcane spell, you may gain life equal to that spell's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"31d572b8-2c5e-4819-b2a6-e7ef90872d9e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1d7fe65e-81b1-4e69-913a-25fc99d96d81"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOK"],"rulings":[{"date":"2005-06-01","text":"If the Spirit or Arcane spell has {X} in the mana cost, then you use the value of {X} on the stack. For example, Shining Shoal costs {X}{W}{W}. If you choose X = 2, then Shining Shoal’s mana value is 4. Shining Shoal also has an ability that says “You may exile a white card with mana value X from your hand rather than pay Shining Shoal’s mana cost”; if you choose to pay the alternative cost and exile a card with mana value 2, then X is 2 while Shining Shoal is on the stack and its mana value is 4."}],"rarities":["rare"]},"braids, arisen nightmare":{"name":"Braids, Arisen Nightmare","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Nightmare"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, you may sacrifice an artifact, creature, enchantment, land, or planeswalker. If you do, each opponent may sacrifice a permanent of their choice that shares a card type with it. For each opponent who doesn't, that player loses 2 life and you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"SharesQuality","quality":"CardType","reference":{"type":"ParentTarget"}}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may sacrifice an artifact, creature, enchantment, land, or planeswalker. If you do, each opponent may sacrifice a permanent of their choice that shares a card type with it. For each opponent who doesn't, that player loses 2 life and you draw a card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e0445c80-fa53-4c3e-881e-940e9fce7f57","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1e20d56c-20df-4fe9-a329-df5768a180af","4ff97c69-6a6b-401c-b0a1-55fa81045d19","9f8937d6-a1a0-4930-968f-29fa611528e5","f2559ff7-a97c-40c6-942f-36998eafb050","f96223d0-04c4-40c2-87a9-0c6bc74adddb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","DSC","EOC","GDY","PDMU","PRM","PWCS"],"rulings":[{"date":"2022-09-09","text":"If the permanent that you sacrifice as you resolve Braids's triggered ability has more than one card type, each opponent may choose to sacrifice any permanent they control that shares any card type with it. For example, if the permanent you sacrifice is an artifact creature, one opponent might choose to sacrifice an artifact and another opponent might choose to sacrifice a creature."}],"rarities":["rare"]},"brainstealer dragon":{"name":"Brainstealer Dragon","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon","Horror"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, exile the top card of each opponent's library. You may play those cards for as long as they remain exiled. If you cast a spell this way, you may spend mana as though it were mana of any color to cast it.\nWhenever a nonland permanent an opponent owns enters the battlefield under your control, they lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[{"type":"InZone","zone":"Library"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"TrackedSet","id":0},"without_paying_mana_cost":false,"mode":"Play"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast it"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"they remain exiled"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, exile the top card of each opponent's library. You may play those cards for as long as they remain exiled. If you cast a spell this way, you may spend mana as though it were mana of any color to cast it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[{"type":"Owned","controller":"Opponent"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a nonland permanent an opponent owns enters the battlefield under your control, they lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"13cb958f-1e66-4219-901a-ff58275c8475","metadata":{"source_printing_ids":["0984b1f1-dfc8-4cb9-90a3-e084950438bf","884d4eea-77c0-4b78-bb83-3f855cc77298","bdeda32b-9c70-47c6-bfbe-06b651af1ce1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","OTC"],"rarities":["rare"]},"breaking":{"name":"Breaking","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player mills eight cards.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":8},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":"Target player mills eight cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"043370fd-9cfe-47ce-8019-e915cee1ae95","metadata":{"source_printing_ids":["66724f4e-59dd-4c70-b09b-49947320e6d1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PDGM","PRM"],"rulings":[{"date":"2013-04-15","text":"Entering doesn’t target any creature card. You choose which card you’re putting onto the battlefield as Entering resolves. You can choose any creature card in a graveyard at time, including one put into a graveyard because of Breaking if you cast Breaking // Entering as a fused split spell."},{"date":"2013-04-15","text":"If a player names a card, the player may name either half of a split card, but not both. A split card has the chosen name if one of its two names matches the chosen name."},{"date":"2013-04-15","text":"If you cast a split card with fuse from your hand without paying its mana cost, you can choose to use its fuse ability and cast both halves without paying their mana costs."},{"date":"2013-04-15","text":"If you’re casting a split card with fuse from any zone other than your hand, you can’t cast both halves. You’ll only be able to cast one half or the other."},{"date":"2013-04-15","text":"On the stack, a split spell that hasn’t been fused has only that half’s characteristics and mana value. The other half is treated as though it didn’t exist."},{"date":"2013-04-15","text":"Some split cards with fuse have two halves that are both multicolored. That card is multicolored no matter which half is cast, or if both halves are cast. It’s also multicolored while not on the stack."},{"date":"2013-04-15","text":"Some split cards with fuse have two monocolor halves of different colors. If such a card is cast as a fused split spell, the resulting spell is multicolored. If only one half is cast, the spell is the color of that half. While not on the stack, such a card is multicolored."},{"date":"2013-04-15","text":"To cast a fused split spell, pay both of its mana costs. While the spell is on the stack, its mana value is the total amount of mana in both costs."},{"date":"2013-04-15","text":"When a fused split spell resolves, follow the instructions of the left half first, then the instructions on the right half."},{"date":"2013-04-15","text":"When resolving a fused split spell with multiple targets, treat it as you would any spell with multiple targets. If all targets are illegal when the spell tries to resolve, the spell doesn’t resolve and none of its effects happen. If at least one target is still legal at that time, the spell resolves, but an illegal target can’t perform any actions or have any actions performed on it."},{"date":"2013-04-15","text":"You can choose the same object as the target of each half of a fused split spell, if appropriate."}],"rarities":["rare"]},"breeches, the blastmaker":{"name":"Breeches, the Blastmaker","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever you cast your second spell each turn, you may sacrifice an artifact. If you do, flip a coin. When you win the flip, copy that spell. You may choose new targets for the copy. When you lose the flip, Breeches deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"FlipCoin","win_effect":null,"lose_effect":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"when","description":"When you win the flip, copy that spell"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"valid_source":null,"description":"Whenever you cast your second spell each turn, you may sacrifice an artifact. If you do, flip a coin. When you win the flip, copy that spell. You may choose new targets for the copy. When you lose the flip, ~ deals damage equal to that spell's mana value to any target.","constraint":{"type":"NthSpellThisTurn","n":2},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"8514f20a-50c7-4319-84cb-2bf263548234","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["cf3bda9e-42af-4f99-a504-c96c25c2794b","fcde5cd5-4ce6-4b94-8d97-534a647dbfc1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Breeches's triggered ability triggers without requiring a target. It sets up two delayed triggered abilities: one that triggers when you win the flip, and one that triggers when you lose the flip. Only one of these abilities will trigger, based on the result of the flip. If you lost the flip, you'll choose a target for that delayed triggered ability at that time. Players can respond to the delayed triggered ability knowing its target and how much damage will be dealt, as normal."},{"date":"2024-04-12","text":"If the spell that's copied has an X whose value was determined as it was cast, the copy will have the same value of X."},{"date":"2024-04-12","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode or modes. You can't choose different ones."},{"date":"2024-04-12","text":"If you don't sacrifice an artifact, you won't flip a coin, and neither delayed triggered ability will trigger."},{"date":"2024-04-12","text":"If you win the flip, the copy created by Breeches's delayed triggered ability will have the same targets as the spell it's copying unless you choose new ones. You may change any number of the targets, including all of them or none of them. The new targets must be legal."},{"date":"2024-04-12","text":"Spells that were cast before Breeches entered the battlefield count. If Breeches was the first spell you cast this turn, the next spell you cast this turn is your second spell."},{"date":"2024-04-12","text":"The copy made by Breeches's delayed triggered ability is created on the stack, so it's not \"cast.\""},{"date":"2024-04-12","text":"You can't choose to pay any additional costs for the copy. However, effects based on any additional costs that were paid for the original spell are copied as though those same costs were paid for the copy too."}],"rarities":["rare"]},"breeding pool":{"name":"Breeding Pool","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Forest","Island"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {G} or {U}.)\nAs this land enters, you may pay 2 life. If you don't, it enters tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"PayLife","amount":{"type":"Fixed","value":2}},"decline":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, you may pay 2 life. If you don't, it enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"20283c4a-f1f0-42f0-bc08-6da87474426b","metadata":{"source_printing_ids":["19477aca-b8db-4061-9a78-ebb189a9df22","1c575871-9b46-4cd4-8596-54dc04f76456","29ded082-0e6e-4aed-90cc-1bc4aea77dfa","3c750d5a-f743-41ff-b5ba-02025ca0bec2","4f36e582-e734-4159-b156-5a99d844f2ff","5656d6f2-ca19-452d-870c-d5e7a3dc9432","830eb270-f7aa-4694-8fe1-7c19e148a39f","9b35c030-029d-4286-ab79-0165c8688c6c","b98b2a35-ec2b-47fe-903d-dd292e469a3c","bb54233c-0844-4965-9cde-e8a4ef3e11b8","cebd6adc-cfb1-4cbb-abf5-9f2913c81898","ece3bcdd-cb33-4923-b919-ba57a327d3cd","f920e32c-8a4b-4152-be3a-02810f3e5f13","fda15a78-a370-4cc6-a4df-92200d6ca826"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["CLU","DIS","EOE","EXP","GTC","PEOE","PRM","PRNA","RNA","RVR","SLD","UNF"],"rulings":[{"date":"2018-10-05","text":"If an effect puts this land onto the battlefield tapped, you may pay 2 life, but it still enters tapped."},{"date":"2018-10-05","text":"Unlike most dual lands, this land has two basic land types. It's not basic, so cards such as District Guide can't find it, but it does have the appropriate land types for effects such as that of Drowned Catacomb (from the Ixalan set)."}],"rarities":["rare"]},"bribery":{"name":"Bribery","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"6d194882-ca37-49bb-ac9f-a751c53850a8","metadata":{"source_printing_ids":["49fd737a-d7da-421b-a741-d6d0d213299f","99c7c1d0-dc6b-413f-8346-54728a4c7b14","a70f54e4-3297-4bf4-8aa8-e4be4965e961","d452456c-f828-4301-9b4f-8a0e77525d5f","d820fed7-fbe8-4175-834a-33b6742481ea","dfc0ea8a-62f6-49e8-8eec-9748870bc596","e0b099ef-4b43-4b63-a7fc-cec19cf29f4e","e7b8a9a2-55d8-4cf8-9912-787bdbc90ebb","eb0cb4bc-c2de-4d4a-8daa-df68350239a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["8ED","CMM","J13","MMQ","PRM","SLD","TLE"],"rulings":[{"date":"2004-10-04","text":"You put the creature onto the battlefield, so you control it and any \"enters\" abilities it has."}],"rarities":["rare","mythic"]},"brightmare":{"name":"Brightmare","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Unicorn"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, tap up to one target creature. You gain life equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, tap up to one target creature. You gain life equal to that creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"32025108-0dba-40bd-88db-5fcc48e3d054","metadata":{"source_printing_ids":["0fc18921-59f5-413f-a221-dc47d31b2ec8","dfb4aab6-144d-437d-8936-7220a27aae13","e1f3af80-3fdd-4a35-b7a4-a8a419057e23"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","JMP"],"rulings":[{"date":"2020-06-23","text":"Brightmare's ability can target a tapped creature. If the target creature is already tapped when the ability resolves, that creature just remains tapped and you gain life equal to its power."},{"date":"2020-06-23","text":"If the target creature is an illegal target by the time Brightmare's ability tries to resolve, the ability won't resolve. You won't gain any life."}],"rarities":["uncommon"]},"brigid, clachan's heart":{"name":"Brigid, Clachan's Heart","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kithkin","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature enters or transforms into Brigid, Clachan's Heart, create a 1/1 green and white Kithkin creature token.\nAt the beginning of your first main phase, you may pay {G}. If you do, transform Brigid.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Kithkin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Kithkin"],"colors":["Green","White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters, create a 1/1 green and white Kithkin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Transformed","execute":{"kind":"Spell","effect":{"type":"Token","name":"Kithkin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Kithkin"],"colors":["Green","White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"SelfRef"},"description":"Whenever ~ transforms into ~, create a 1/1 green and white Kithkin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, you may pay {G}. If you do, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"60fc89a1-cc6f-4a32-84c3-09abf7a4a1df","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["87bee785-9a5c-5fdc-bda0-b6053886e6bd"],"source_printing_ids":["887002ae-794b-427c-9f98-e909b22313d9","cb7d5bbb-4f68-4e38-8bb0-a95af21b24c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["ECL","PECL"],"rarities":["rare"]},"brigid, doun's mind":{"name":"Brigid, Doun's Mind","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kithkin","Soldier"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{T}: Add X {G} or X {W}, where X is the number of other creatures you control.\nAt the beginning of your first main phase, you may pay {W}. If you do, transform Brigid.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}}},"color_options":["Green","White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add X {G} or X {W}, where X is the number of other creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, you may pay {W}. If you do, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green","White"],"scryfall_oracle_id":"60fc89a1-cc6f-4a32-84c3-09abf7a4a1df","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["87bee785-9a5c-5fdc-bda0-b6053886e6bd"],"source_printing_ids":["887002ae-794b-427c-9f98-e909b22313d9","cb7d5bbb-4f68-4e38-8bb0-a95af21b24c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["ECL","PECL"],"rarities":["rare"]},"brokers charm":{"name":"Brokers Charm","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature or planeswalker an opponent controls.\n• Destroy target enchantment.\n• Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"a90de2b8-4d71-4d0e-82b3-3b7ab194165b","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature or planeswalker an opponent controls.","Destroy target enchantment.","Draw two cards."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["0aac0943-6c9a-4c65-9d17-3ca0f2ba2340","51157e88-32c5-4add-9127-565d3833ce21","74c9c315-1cf4-468e-a74a-b5f3be4a63a1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["SNC"],"rulings":[{"date":"2022-04-29","text":"If you choose the first mode and your creature is not a legal target as Brokers Charm resolves, no damage will be dealt."},{"date":"2022-04-29","text":"If you choose the first mode and your opponent's creature or planeswalker is not a legal target as Brokers Charm resolves, your creature will still get +1/+0"},{"date":"2022-04-29","text":"You can't choose the first mode for Brokers Charm unless your opponent has a creature or planeswalker to target."}],"rarities":["uncommon"]},"bronzehide lion":{"name":"Bronzehide Lion","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{G}{W}: This creature gains indestructible until end of turn.\nWhen this creature dies, return it to the battlefield. It's an Aura enchantment with enchant creature you control and \"{G}{W}: Enchanted creature gains indestructible until end of turn,\" and it loses all other abilities.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain indestructible"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":0}},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{G}{W}: ~ gains indestructible until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"grants":[{"type":"RemoveAllAbilities"},{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Unimplemented","name":"gain","description":"gain indestructible until end of turn,"},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":0}},"sub_ability":null,"duration":null,"description":"{G}{W}: Enchanted creature gains indestructible until end of turn,","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to the battlefield. It's an Aura enchantment with enchant creature you control and \"{G}{W}: Enchanted creature gains indestructible until end of turn,\" and it loses all other abilities.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"0db3b29e-e21c-4240-8e5e-959ba6bcf706","metadata":{"source_printing_ids":["8fdafadb-fa04-4282-b576-b85e79c242c9","c65f4d9d-aa87-439c-8db5-3789cabcce4c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PRM","PTHB","THB"],"rulings":[{"date":"2020-01-24","text":"If a nontoken permanent is a copy of Bronzehide Lion, it returns from its owner's graveyard as an Aura with the two abilities granted by Bronzehide Lion and none of its normal abilities. If it has any enters-the-battlefield replacement effects, those won't apply. The Aura keeps its name, colors, and any supertypes it may have."},{"date":"2020-01-24","text":"If a token is a copy of Bronzehide Lion, it won't return from its owner's graveyard."},{"date":"2020-01-24","text":"If you control but don't own Bronzehide Lion, you'll return it to the battlefield when it dies, not its owner. It'll enchant a creature you control."},{"date":"2020-01-24","text":"You choose a creature you control for Bronzehide Lion to enchant as it returns to the battlefield. If there's nothing it can legally enchant, it remains in its owner's graveyard."}],"rarities":["rare"]},"brood birthing":{"name":"Brood Birthing","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you control an Eldrazi Spawn, create three 0/1 colorless Eldrazi Spawn creature tokens. They have \"Sacrifice this token: Add {C}.\" Otherwise, create one of those tokens.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"If"}],"controller":"You","properties":[]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice ~: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If you control an Eldrazi Spawn, create three 0/1 colorless Eldrazi Spawn creature tokens. They have \"Sacrifice ~: Add {C}.\" Otherwise, create one of those tokens."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e7d1c762-69d0-401d-8035-6e9744baf9d8","metadata":{"related_token_ids":["72736a8e-7059-58e0-83df-1a88d355766b"],"source_printing_ids":["0e44f7ff-1cfa-4bc4-a0f7-9d71ba48a97a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ROE"],"rulings":[{"date":"2010-06-15","text":"If you put a single token onto the battlefield this way, it's exactly like the ones specified earlier: it's a 0/1 colorless Eldrazi Spawn creature token that has \"Sacrifice this creature: Add {C}.\""},{"date":"2010-06-15","text":"Whether you control an Eldrazi Spawn is checked as Brood Birthing resolves."}],"rarities":["common"]},"bruse tarl, roving rancher":{"name":"Bruse Tarl, Roving Rancher","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Oxen you control have double strike.\nWhenever Bruse Tarl enters or attacks, exile the top card of your library. If it's a land card, create a 2/2 white Ox creature token. Otherwise, you may cast it until the end of your next turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Ox","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Ox"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Land"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, exile the top card of your library. If it's a land card, create a 2/2 white Ox creature token. Otherwise, you may cast it until the end of your next turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Ox"}],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"DoubleStrike"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Oxen you control have double strike."}],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"c22589e1-1721-43a3-897e-990af6ebcffa","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0c6204e4-e3fc-51cd-9496-4b2da24e3783","1fdbd699-ae54-51c4-91db-3150c59e0787"],"source_printing_ids":["026257bf-f4e7-45f8-9c93-7248f201c583","286c55c2-dcc1-4e87-a83f-9981d28ab62d","40196502-3887-4315-bff4-de39f82796fc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","PLST","POTJ"],"rulings":[{"date":"2024-04-12","text":"Bruse Tarl's ability doesn't allow you to play land cards that it exiles. But hey, free Oxen."},{"date":"2024-04-12","text":"If Bruse Tarl leaves the battlefield after other Oxen you control have dealt first-strike damage but before regular combat damage, those Oxen won't deal regular combat damage (unless they still have double strike for some other reason) ."},{"date":"2024-04-12","text":"You pay all costs and follow all normal timing rules for spells cast from exile with Bruse Tarl's last ability. For example, if you exile a creature card this way, you must wait until your main phase to cast it."}],"rarities":["rare"]},"bucknard's everfull purse":{"name":"Bucknard's Everfull Purse","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{1}, {T}: Roll a d4 and create a number of Treasure tokens equal to the result. The player to your right gains control of this artifact.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":4,"results":[]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GiveControl","target":{"type":"SelfRef"},"recipient":{"type":"Neighbor","direction":{"type":"Right"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}: Roll a d4 and create a number of Treasure tokens equal to the result. The player to your right gains control of ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"f70b9eee-3874-4391-8df8-e10bbd19307e","metadata":{"related_token_ids":["6a613aa7-be49-5cc5-abd3-4fab87bb0065","8cfc974b-4493-5d52-af68-ace05fa34f90"],"source_printing_ids":["38b51dbb-7d8e-41fc-9768-627fd4692555","57073533-dcd8-4a86-9aa8-d7205d3799e1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","PLST"],"rulings":[{"date":"2021-07-23","text":"An ability that tells you to roll a die will also specify what to do with the result of that roll. Most often, this is in the form of a “results table” in the card text."},{"date":"2021-07-23","text":"An effect that says “choose a target, then roll a d20” or similar still uses the normal process of putting an ability on the stack and resolving it. Choosing targets is part of putting the ability on the stack and rolling the d20 happens later, as the ability resolves."},{"date":"2021-07-23","text":"Dice are identified by the number of faces each one has. For example, a d20 is a twenty-sided die."},{"date":"2021-07-23","text":"Dice used must have equally likely outcomes and the roll must be fair. Although physical dice are recommended, digital substitutes are allowed, provided they have the same number of equally likely outcomes as specified in the original roll instruction."},{"date":"2021-07-23","text":"Some abilities, like that of Pixie Guide and Barbarian Class, replace rolling a die with rolling extra dice and ignoring the lowest roll. The ignored rolls are not considered for the effect that instructed you to roll a die, and do not cause abilities to trigger. For all intents and purposes, once you determine which dice count, any extra dice were never rolled."},{"date":"2021-07-23","text":"Some effects instruct you to roll again. This uses the same number and type of dice as the original roll, and that roll will use the same set of possible outcomes."},{"date":"2021-07-23","text":"Some effects may modify the result of a die roll. This may be part of the instruction to roll a die or it may come from other cards. Anything that references the “result” of a die roll is looking for the result after these modifications. Anything that is looking for the “natural result” is looking for the number shown on the face of the die before these modifications."},{"date":"2021-07-23","text":"The instruction to roll a die and the effect that occurs because of the result are all part of the same ability. Players do not get the chance to respond to the ability after knowing the result of the roll."},{"date":"2021-07-23","text":"Tournament events have more specific rules regarding dice and die-rolling. For more information, please see the most recent version of the Magic Tournament Rules at https://wpn.wizards.com/en/document/magic-gathering-tournament-rules."},{"date":"2021-07-23","text":"While playing Planechase, rolling the planar die will cause any ability that triggers whenever a player rolls one or more dice to trigger. However, any effect that refers to a numerical result will ignore the rolling of the planar die."}],"rarities":["uncommon"]},"calibrated blast":{"name":"Calibrated Blast","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal cards from the top of your library until you reveal a nonland card. Put the revealed cards on the bottom of your library in a random order. When you reveal a nonland card this way, Calibrated Blast deals damage equal to that card's mana value to any target.\nFlashback {3}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Red","Red"],"generic":3}}}],"abilities":[{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Reveal cards from the top of your library until you reveal a nonland card. Put the revealed cards on the bottom of your library in a random order. When you reveal a nonland card this way, ~ deals damage equal to that card's mana value to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d9f5fc77-40df-4872-b633-6bf5a22a8831","metadata":{"source_printing_ids":["1a8284eb-a604-4e86-a140-7c703b52c806","37962700-e4d9-419e-8972-d3fd955ff40e","70d81763-46c0-4e5e-9292-04a8aa461682"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH2","PMH2","PRM"],"rulings":[{"date":"2021-06-18","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-06-18","text":"Calibrated Blast goes on the stack without a target. When you reveal a nonland card during its resolution, its reflexive triggered ability triggers and you pick a target to be dealt damage. You'll know the mana value of the revealed nonland card and how much damage will be dealt."},{"date":"2021-06-18","text":"The nonland card revealed this way ends up on the bottom of the library with the other cards."},{"date":"2021-06-18","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-06-18","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-06-18","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."},{"date":"2021-06-18","text":"“Flashback [cost]” means “You may cast this card from your graveyard by paying [cost] rather than paying its mana cost” and “If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.”"}],"rarities":["rare"]},"cancel":{"name":"Cancel","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"7d00fb28-ea6c-49a9-b4af-ffb38860a9a7","metadata":{"source_printing_ids":["1850d1d5-f506-4e50-9d51-408f987bbbbd","2667f1d1-18d3-4bb4-a071-dd65b237d733","475bff39-220a-4490-9c2e-d311e306a6db","479f56c2-8256-4325-909a-bf460505dbc5","59e14910-ee2e-49ae-855e-46a8ab6cad82","6a6932af-c7e7-49e9-963e-97e680a53da5","7258e651-868a-4f63-9454-6c6c95d25387","954eec32-7e40-452d-94c2-f704b819f338","9cff3fae-e072-4068-a1de-27de3d89c532","9e557f54-3d9d-4610-a0d0-5874feacc76e","9f540dcb-8d0b-4d33-8c0d-893fa5db54eb","b4e175f7-f649-451b-9ee5-ad1140b2e8a7","c464b856-e3c0-4b06-a2b0-6663a9aafd26","c6151721-0642-40c6-9f55-02f0cd94cdd2","c8153fad-8a06-46f3-8a5a-2d0d4841191a","cf6e5ad6-ffe2-4588-b357-c415c33fbc11","d0bf9f71-c592-4064-b7b3-172c26e5605b","fd994a26-65ff-43be-8d52-476e887d3ed2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","AKH","ALA","DPA","FDN","KTK","M10","M11","M12","M14","M15","M19","M21","P10","PC2","PCA","PLST","PRM","PS11","RTR","TSP","XLN","ZEN"],"rarities":["common"]},"centaur courser":{"name":"Centaur Courser","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2f5bf099-2e01-4e1c-9ebf-0ce0ac66939e","metadata":{"source_printing_ids":["03354b67-7df2-4b4b-a996-a37550e58561","3b625203-6c50-4b14-928c-6b0aec1375a2","44a5f7db-ea4e-4af5-9d4a-0335db6ea0e9","bae6eb55-4bf9-4418-b667-a9a761f91ef9","e8b67ee8-3189-4426-8b1a-b540267768fd","eb7eb6f0-a329-4fcd-ba23-ec435659441d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M13","M15","M19","M20","PLST"],"rarities":["common"]},"chain of acid":{"name":"Chain of Acid","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target noncreature permanent. Then that permanent's controller may copy this spell and may choose a new target for that copy.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Creature"}],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target noncreature permanent. Then that permanent's controller may copy this spell and may choose a new target for that copy.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0b1a27bd-bb98-44f8-8357-666fabfeabf0","metadata":{"source_printing_ids":["1d47ddca-a363-4ab7-b7f2-d0e0043c9916"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS"],"rarities":["uncommon"]},"chain of smog":{"name":"Chain of Smog","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player discards two cards. That player may copy this spell and may choose a new target for that copy.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player discards two cards. That player may copy this spell and may choose a new target for that copy.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"ea14c26b-bf2f-48b4-b879-6e63069ded1f","metadata":{"source_printing_ids":["6bfe64f9-8b03-41f6-a47b-fade397ad9d1","a56d9468-9d33-48e3-b41c-942653669b1a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","PLST"],"rarities":["uncommon"]},"champion of the path":{"name":"Champion of the Path","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Sorcerer"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, behold an Elemental and exile it. (Exile an Elemental you control or an Elemental card from your hand.)\nWhenever another Elemental you control enters, it deals damage equal to its power to each opponent.\nWhen this creature leaves the battlefield, return the exiled card to its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elemental"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Elemental you control enters, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TrackedSet","id":0},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, return the exiled card to its owner's hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"b326ccd5-8ad2-441c-9d73-82ee6390dd36","additional_cost":{"type":"Required","data":{"type":"Behold","count":1,"filter":{"type":"Typed","type_filters":[{"Subtype":"Elemental"}],"controller":null,"properties":[]},"action":"ExileChosen"}},"metadata":{"source_printing_ids":["874a32a5-0a9b-4225-a877-bb6e74cd6c5f","e369cd31-3e22-47eb-bf6a-00d823651710"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL","PECL"],"rulings":[{"date":"2025-11-17","text":"If Champion of the Path is countered or otherwise fails to resolve, the beheld card will remain in exile indefinitely."},{"date":"2025-11-17","text":"If an Elemental you control that isn't a creature enters (probably because it's a kindred permanent with the Elemental subtype), Champion of the Path's second ability will still trigger. If that Elemental still isn't a creature when the ability resolves, the ability won't deal any damage."},{"date":"2025-11-17","text":"If the Elemental that caused Champion of the Path's second ability to trigger is no longer on the battlefield when that ability resolves, use that Elemental's power as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"champion of wits":{"name":"Champion of Wits","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may draw cards equal to its power. If you do, discard two cards.\nEternalize {5}{U}{U} ({5}{U}{U}, Exile this card from your graveyard: Create a token that's a copy of it, except it's a 4/4 black Zombie Snake Wizard with no mana cost. Eternalize only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Eternalize":{"type":"Mana","data":{"type":"Cost","shards":["Blue","Blue"],"generic":5}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["Black"]},{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":5}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may draw cards equal to its power. If you do, discard two cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3fd8ba0c-75ec-43ea-8706-f71e6cf1d236","metadata":{"related_token_ids":["aee15eef-bfdf-5d72-80b1-87527824b5fe"],"source_printing_ids":["0e41318b-7939-4c2c-a5f1-9eb44a374d90","489e339b-3bc6-4221-9734-d796b65910d2","b685b930-3201-4eb1-ac29-9c926651d118","cce2fce1-8172-43ed-937d-a543a474ef46","cf76d414-9424-4fd5-a1ff-2ff345ad6b0a","d765221d-9718-47eb-aa49-9c0719337139"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","AKR","C21","DRC","HOU","NCC","PHOU"],"rulings":[{"date":"2017-07-14","text":"For each card with eternalize, a corresponding game play supplement token can be found in some Hour of Devastation booster packs. These supplements are not required to play with cards with eternalize; you can use the same items to represent an eternalized token as you would any other token."},{"date":"2017-07-14","text":"If a creature card with eternalize is put into your graveyard during your main phase, you'll have priority immediately afterward. You can activate its eternalize ability before any player can try to exile it, such as with Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"If the card copied by the token had any “when [this permanent] enters the battlefield” abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any “as [this permanent] enters the battlefield” or “[this permanent] enters the battlefield with” abilities that the token has copied will also work."},{"date":"2017-07-14","text":"Once you've activated an eternalize ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"The token copies exactly what was printed on the original card and nothing else, except the characteristics specifically modified by eternalize. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-07-14","text":"The token is a Zombie in addition to its other types and is black instead of its other colors. Its base power and toughness are 4/4. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."},{"date":"2017-07-14","text":"Use Champion of Wits's power as the first ability resolves to determine if you want to use the ability and how many cards you draw if you do. If you use the ability, you discard two cards regardless of how many cards you draw. If Champion of Wits leaves the battlefield before that ability resolves, use its last known power."}],"rarities":["rare"]},"charge":{"name":"Charge","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control get +1/+1 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures you control get +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"36b5022d-fa62-46ea-97ab-23c0f60f62a5","metadata":{"source_printing_ids":["000eded9-854c-408a-aadf-c26209e27432","8b46269c-35d3-4f8f-8fef-f58cf8be4054"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DOM","PLST"],"rulings":[{"date":"2018-04-27","text":"Charge affects only creatures you control at the time it resolves. Creatures you begin to control later in the turn won’t get +1/+1."}],"rarities":["common"]},"chastise":{"name":"Chastise","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target attacking creature. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target attacking creature. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b7553f3f-5de1-409c-a184-e12e40f017ab","metadata":{"source_printing_ids":["1169dab7-8f4c-474d-9289-42765a275376","1cbdf926-95a5-4144-b707-85483a78f808","78e0d3d9-8c28-46d7-9fab-c115e6c8682f","80972578-36fb-4bc2-9593-f9b10fb8424c","fd561226-9bb8-47f9-b5be-8a0aecdbfad0","fe622c34-7b41-4855-a07f-a2ff773a2745"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","9ED","JUD","PLST"],"rarities":["uncommon"]},"chatterstorm":{"name":"Chatterstorm","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create a 1/1 green Squirrel creature token.\nStorm (When you cast this spell, copy it for each spell cast before it this turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Squirrel","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Squirrel"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Create a 1/1 green Squirrel creature token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7e6c7b57-bd6a-4ac8-bcab-c3a879f479c2","metadata":{"related_token_ids":["20cf468e-53c0-55c9-81f0-7ed254feac63","da457623-e6de-51b0-a22f-e279640934a9"],"source_printing_ids":["4c1b91d8-39c4-4ab1-996b-2a5a78243fd4","9426c906-e665-40a4-823a-0245bc39fbda","aa2bb6af-ba3d-410a-9cc7-85ac0f5b5f5b","b34f0ac1-6894-4761-b62c-b85d927acf09"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"banned","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","J21","MH2"],"rulings":[{"date":"2021-06-18","text":" A copy of a spell can be countered like any other spell, but it must be countered individually. Countering a spell with storm won't affect the copies."},{"date":"2021-06-18","text":" If a spell with storm has targets, you may choose new targets for any of the copies. You can make different choices for each copy."},{"date":"2021-06-18","text":" Spells cast from zones other than a player's hand and spells that were countered or otherwise failed to resolve are counted by the storm ability."},{"date":"2021-06-18","text":" The copies are put directly onto the stack. They aren't cast and won't be counted by other spells with storm cast later in the turn."},{"date":"2021-06-18","text":" The triggered ability that creates the copies can itself be countered by anything that can counter a triggered ability. If it is countered, no copies will be put onto the stack."}],"rarities":["common"]},"chop down":{"name":"Chop Down","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature with power 4 or greater. (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"GE","value":{"type":"Fixed","value":4}}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature with power 4 or greater.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"91e71279-c9d2-4873-916a-59da03a65741","metadata":{"source_printing_ids":["75754468-2850-42e6-ab22-61ff7b9d1214","cdbd2541-71a3-4945-8a9d-db9e59c86784","d0960ccb-6952-4398-aa94-816e6fb04c2d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["ELD","PELD","PLST","PRM"],"rarities":["rare"]},"chord of calling":{"name":"Chord of Calling","mana_cost":{"type":"Cost","shards":["X","Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nSearch your library for a creature card with mana value X or less, put it onto the battlefield, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":["Convoke"],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a creature card with mana value X or less, put it onto the battlefield, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6789a170-f2c5-4fc0-8a45-2b2361e67410","metadata":{"source_printing_ids":["0a7695cc-7b6b-499d-9f5a-729082fc72e9","4f009d4a-3b50-40ae-b52e-0b9535049265","5ef345fc-e64e-4053-b643-2f8648a5473a","b18fe7e0-8344-40cc-b242-83f01c6be7a6","bae7a7e5-321d-4fb7-ab5e-cf35f0885bdd","cd9f1d2c-4fc7-40c5-aa81-afa4c7a7eef3","dac257a9-39bf-4185-9d2e-f80f0848a96a","e064174b-8f07-4fea-9eef-c3b5d0220b1a","f3ae21be-760d-4f67-ae06-ac4c8e333d1a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","EA3","M15","P30A","PRM","RAV","RVR","SLD"],"rulings":[{"date":"2020-08-07","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2024-01-12","text":"Because convoke isn't an alternative cost, it can be used in conjunction with alternative costs."},{"date":"2024-01-12","text":"If a creature you control has a mana ability with {T} in the cost, activating that ability while casting a spell with convoke will result in the creature being tapped before you pay the spell's costs. You won't be able to tap it again for convoke. Similarly, if you sacrifice a creature to activate a mana ability while casting a spell with convoke, that creature won't be on the battlefield when you pay the spell's costs, so you won't be able to tap it for convoke."},{"date":"2024-01-12","text":"Tapping a multicolored creature using convoke will pay for {1} or one mana of your choice of any of that creature's colors."},{"date":"2024-01-12","text":"Tapping an untapped creature that's attacking or blocking to convoke a spell won't cause that creature to stop attacking or blocking."},{"date":"2024-01-12","text":"When calculating a spell's total cost, include any alternative costs, additional costs, or anything else that increases or reduces the cost to cast the spell. Convoke applies after the total cost is calculated. Convoke doesn't change a spell's mana cost or mana value."},{"date":"2024-01-12","text":"When using convoke to cast a spell with {X} in its mana cost, first choose the value for X. That choice, plus any cost increases or decreases, will determine the spell's total cost. Then you can tap creatures you control to help pay that cost. For example, if you cast Chord of Calling (a spell with convoke and mana cost {X}{G}{G}{G}) and choose X to be 3, the total cost is {3}{G}{G}{G}. If you tap two green creatures and two red creatures, you'll have to pay {1}{G}."},{"date":"2024-01-12","text":"You can tap any untapped creature you control to convoke a spell, even one you haven't controlled continuously since the beginning of your most recent turn."}],"rarities":["rare"]},"cinder cloud":{"name":"Cinder Cloud","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. If a white creature dies this way, ~ deals damage to that creature's controller equal to the creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f64ea1a7-0e10-4549-8056-25ebc2ce0175","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's ","line_index":0}],"metadata":{"source_printing_ids":["1938cb88-5ff5-4bf2-8a15-26b8cb39d00c","f044c470-50ce-4a6c-b8ab-665357c3c11e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR","PLST"],"rarities":["uncommon"]},"circus of the sun":{"name":"Circus of the Sun","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Las Vegas"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you planeswalk here or at the beginning of your upkeep, create two 1/1 red performer creature tokens with flying and haste.\nWhenever one or more creatures you control with flying deal combat damage to a player, you may return it to your hand. If you do, draw cards equal to its power.\nWhenever Chaos ensues, put a flying counter on up to one target creature. It becomes a Performer in addition to its other types.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":{"Unknown":"Whenever you planeswalk here or at the beginning of your upkeep"},"execute":{"kind":"Spell","effect":{"type":"Token","name":"Performer","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Performer"],"colors":["Red"],"keywords":["Flying","Haste"],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you planeswalk here or at the beginning of your upkeep, create two 1/1 red performer creature tokens with flying and haste.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TriggeringSource"},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]},"description":"Whenever one or more creatures you control with flying deal combat damage to a player, you may return it to your hand. If you do, draw cards equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"flying","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddSubtype","subtype":"Performer"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become a Performer in addition to its other types"}],"duration":"Permanent","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever Chaos ensues, put a flying counter on up to one target creature. It becomes a Performer in addition to its other types.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"fb061505-a3d6-45a4-a9ba-2adb1883c77d","metadata":{"source_printing_ids":["c1fd6112-f71c-4f3d-979a-9a1178132338"]},"legalities":{},"printings":["PUNK"],"rarities":["common"]},"citadel siege":{"name":"Citadel Siege","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of combat on your turn, put two +1/+1 counters on target creature you control.\n• Dragons — At the beginning of combat on each opponent's turn, tap target creature that player controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put two +1/+1 counters on target creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on each opponent's turn, tap target creature that player controls.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"40f66e21-5b60-4e42-927d-65397e7ad544","metadata":{"source_printing_ids":["239c373a-465c-4cda-9895-624871d8606e","44c40250-6f58-4590-b745-1aa95c1da2e8","871fcb2a-136c-4efe-b5cd-bec102b02e4b","9c13bc7c-a536-44d0-8c89-49ff33bee326","c6e693ad-3e49-4692-a35a-06e9e4e8027e","ce58a8bd-e979-41e0-a533-7408830e0154"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C16","C21","CM2","FRF","MIC"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."}],"rarities":["rare"]},"clear shot":{"name":"Clear Shot","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+1 until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+1 until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0b8defd2-8530-47d7-a0c6-27aa5162dff6","metadata":{"source_printing_ids":["12fa1d34-7e32-45b7-9f6f-68f152f75d1a","27476d9c-006d-4227-a5f2-49c7234b84a1","4f362332-3682-4638-bc8b-6984f48e3464","52f8a75e-8183-443d-b6cd-3c4d47d8e110","79a04353-21a6-4540-8a1c-dffa715e92c6","88b8905b-68d3-491b-b7fe-eed74841e9a0","a7ff66fc-bd38-4607-b394-8c4e09affec8","b11a76bd-3239-49f6-b125-b5bad907695c","cfbea1eb-8270-416d-842c-c61d619a75df","e2ccc15f-cb17-44b9-bfd2-a216431b63a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","DBL","EMN","INR","J25","MID","OTP","PIO","PLST","SIR"],"rulings":[{"date":"2020-08-07","text":"As Clear Shot tries to resolve, if either creature is an illegal target, the creature you control won't deal damage. If the creature you control is a legal target but the other creature isn't, your creature will still get +1/+1."},{"date":"2020-08-07","text":"You can't cast Clear Shot unless you choose a creature you control and a creature you don't control as targets."}],"rarities":["common","uncommon"]},"cleric class":{"name":"Cleric Class","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nIf you would gain life, you gain that much life plus 1 instead.\n{3}{W}: Level 2\nWhenever you gain life, put a +1/+1 counter on target creature you control.\n{4}{W}: Level 3\nWhen this Class becomes level 3, return target creature card from your graveyard to the battlefield. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":3}},"sub_ability":null,"duration":null,"description":"{3}{W}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{W}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, put a +1/+1 counter on target creature you control.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":false},{"mode":"ClassLevelGained","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes level 3","constraint":{"type":"AtClassLevel","level":3},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"GainLife","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"EventContextAmount"}},"offset":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would gain life, you gain that much life plus 1 instead.","condition":null}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f0ead7f5-5c82-40fd-8e89-3e3c5d31fbad","metadata":{"source_printing_ids":["47ce8b7e-d8e1-489a-a69e-99089eeb8739","48e8de7c-3e9a-4569-8968-c4a5fc81acaa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","PLST"],"rulings":[{"date":"2021-07-23","text":"An ability that triggers “whenever you gain life” triggers just once for each life gain event, no matter how much life you gain."},{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Each creature with lifelink dealing combat damage causes a separate life gain event. For example, if two creatures you control with lifelink deal combat damage at the same time, you will gain 2 additional life from Cleric Class's first ability and its level 2 ability will trigger twice. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, and/or planeswalkers at the same time (perhaps because it has trample or was blocked by more than one creature), you will only gain 1 additional life and the ability will trigger only once."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"If you gain an amount of life “for each” of something, that life is gained as one event and the ability will trigger only once."},{"date":"2021-07-23","text":"If you gain life at the same time a creature is dealt lethal damage, it dies before Cleric Class's level 2 ability can put a +1/+1 counter on it."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"When Cleric Class's level 3 ability resolves, you gain life equal to the creature's toughness as it exists on battlefield, which may be different than its toughness in the graveyard."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"cloud key":{"name":"Cloud Key","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this artifact enters, choose artifact, creature, enchantment, instant, or sorcery.\nSpells you cast of the chosen type cost {1} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenCardType"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast of the chosen type cost {1} less to cast."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose artifact, creature, enchantment, instant, or sorcery.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"2a838818-d590-4374-9a63-d9e6381a0f0d","metadata":{"source_printing_ids":["3b348e66-0552-4650-82d5-67af84df5462","6f880de5-8fc5-4e4e-a4bb-cc3e61a7697b","b851ab76-e40e-4232-b120-0bc1905ef0b4","b893ab56-44a6-4b3c-bb3e-6deec298cbce"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","EOC","FUT","PLST","TSR"],"rulings":[{"date":"2021-03-19","text":"The cost reduction applies only to generic mana in the cost of spells of the chosen type you cast."},{"date":"2021-03-19","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as a flashback cost), add any cost increases (such as kicker costs), then apply any cost reductions (such as that of Cloud Key's ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."}],"rarities":["rare"]},"coalition relic":{"name":"Coalition Relic","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add one mana of any color.\n{T}: Put a charge counter on this artifact.\nAt the beginning of your first main phase, remove all charge counters from this artifact. Add one mana of any color for each charge counter removed this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"charge","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Put a charge counter on ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"charge","count":-1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"PreviousEffectAmount"}},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, remove all charge counters from ~. Add one mana of any color for each charge counter removed this way.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"008cb342-79f5-4df6-a6b7-0e9e22ed693f","metadata":{"source_printing_ids":["02c532e8-21f1-4d6f-a931-1ea48a6aeea2","54f816e4-76ed-4f09-8398-a73e06dce3e6","73f27b75-d400-46fd-acec-6b55a1e801ee","7a7c98b0-d64d-4d0a-b284-1187a8e7095e","9f83d87c-9ff7-4151-a266-bd77680a899b","a9fae620-8fa5-44db-8326-11cb323c626e","af9f452e-f66c-426f-bad7-645538f2097f","ef44324a-32bd-47e9-8fd9-258ba668de53"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","DDE","DMC","FUT","M3C","PLST","TSR"],"rulings":[{"date":"2021-03-19","text":"If you remove multiple charge counters from Coalition Relic at once, you may add a different color of mana for each one."},{"date":"2021-03-19","text":"Only the first main phase each turn is considered a precombat main phase, even if additional main phases or combat phases are created."}],"rarities":["rare"]},"coalition skyknight":{"name":"Coalition Skyknight","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Flying"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dc763f20-73e7-4db7-9e98-6f419b8fba84","metadata":{"source_printing_ids":["8b12da45-aff4-406d-83a3-39ecaff6ff56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"coalition warbrute":{"name":"Coalition Warbrute","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Minotaur","Berserker"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nTrample","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Trample"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"84d67d87-2696-4c2f-9f10-29d5832bfbb6","metadata":{"source_printing_ids":["554c422f-2a1b-47c0-9358-42b85cdbb84e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"collision":{"name":"Collision","mana_cost":{"type":"Cost","shards":["RedGreen"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Collision deals 6 damage to target creature with flying.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":6},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithKeyword","value":"Flying"}]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 6 damage to target creature with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"197ce21b-3387-4e76-a49c-04b9c371c031","metadata":{"source_printing_ids":["9bd15da6-2b86-4dba-951d-318c7d9a5dde"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"colossus":{"name":"Colossus","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets +4/+2 and gains trample until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":4},{"type":"AddToughness","value":2},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +4/+2 and gains trample"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Target creature gets +4/+2 and gains trample until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"197ce21b-3387-4e76-a49c-04b9c371c031","metadata":{"source_printing_ids":["9bd15da6-2b86-4dba-951d-318c7d9a5dde"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rarities":["uncommon"]},"combat celebrant":{"name":"Combat Celebrant","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"If this creature hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after this phase, there is an additional combat phase. (An exerted creature won't untap during your next untap step.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Exerted","execute":{"kind":"Spell","effect":{"type":"UntapAll","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"AdditionalPhase","target":{"type":"Controller"},"phase":"BeginCombat","after":"EndCombat","followed_by":[],"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"If ~ hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after this phase, there is an additional combat phase.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5e15ff93-99a0-4000-918e-4bd2c257188d","parse_warnings":[{"type":"SwallowedClause","detector":"Duration_ThisTurn","description":"If this creature hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after","line_index":0}],"metadata":{"source_printing_ids":["0be1c60b-511b-4d88-93d3-7910c082245a","28b63c3d-2e55-4343-b49a-11fa602ec473","3e611db6-0819-487c-bc05-17c92d79c75b","a505914a-a3e0-413e-8781-fc5407cd024b","b943300e-e6af-4e7f-b936-62ef9c314916"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","AKR","BLC","J25","LTC","PAKH"],"rulings":[{"date":"2017-04-18","text":"All cards in the Amonkhet set that let you exert a creature let you do so as you declare it as an attacking creature, as do some of the cards in the Hour of Devastation set. You can't do so later in combat, and creatures put onto the battlefield attacking can't be exerted. Any abilities that trigger on exerting an attacking creature will resolve before blockers are declared."},{"date":"2017-04-18","text":"Combat Celebrant's ability untaps all of your creatures, not just the ones that are attacking."},{"date":"2017-04-18","text":"If an exerted creature is already untapped during your next untap step (most likely because it had vigilance or an effect untapped it), exert's effect preventing it from untapping expires without having done anything."},{"date":"2017-04-18","text":"If you exert Combat Celebrant, you get an additional combat phase even if Combat Celebrant doesn't survive the first combat phase."},{"date":"2017-04-18","text":"If you exert multiple Combat Celebrants in one combat phase, you'll have that many additional combat phases, but all of your creatures are untapped only during the current combat phase. You'll need to exert the Combat Celebrants one at a time, in multiple combat phases, to untap your attacking creatures and attack with them in each combat step."},{"date":"2017-04-18","text":"If you gain control of another player's creature until end of turn and exert it, it will untap during that player's untap step."},{"date":"2017-04-18","text":"There's no main phase between your combat phases, so you'll have no opportunity to cast spells or activate abilities that could only be cast any time you could cast a sorcery. For example, you won't be able to cast another creature or equip Equipment between combats."},{"date":"2017-04-18","text":"Untapping an attacking creature doesn't remove it from combat."},{"date":"2017-04-18","text":"You can't exert a creature unless an effect allows you to do so. Similar effects that \"tap and freeze\" a creature (such as that of Decision Paralysis) don't exert that creature."}],"rarities":["mythic"]},"common black removal":{"name":"Common Black Removal","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one. Destroy target creature, then —\n• Create a Food token.\n• Create a Treasure token.\n• Put a menace counter on a creature you control.\n• That creature's controller mills cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"menace","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f64eff0e-dda7-457b-adf9-aa4e537f4f58","modal":{"min_choices":1,"max_choices":1,"mode_count":4,"mode_descriptions":["Create a Food token.","Create a Treasure token.","Put a menace counter on a creature you control.","That creature's controller mills cards equal to its power."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["44ba16ca-bc75-4d7b-9f40-547ff76ac02b"]},"legalities":{},"printings":["MB2"],"rulings":[{"date":"2024-11-08","text":"For many playtest cards, you’ll need to make a generous assumption that basic game rules would be updated to allow them to work. The Mystery Booster 2 Playtest Card Notes section (reproduced here in individual Gatherer rulings) provides guidance for fitting these cards into the existing rules structure."},{"date":"2024-11-08","text":"Playtest cards aren’t legal for play in any tournament format other than Mystery Booster Limited formats. On the other hand, we expect they will spice up a wide variety of non-tournament games (as long as everyone’s on the same page about using them!)."},{"date":"2024-11-08","text":"Playtest cards use a modified version of game symbols, such as {T} and {W}. These modified symbols should be treated as the standard symbols during play."}],"rarities":["rare"]},"conclave mentor":{"name":"Conclave Mentor","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"If one or more +1/+1 counters would be put on a creature you control, that many plus one +1/+1 counters are put on that creature instead.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"AddCounter","execute":null,"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"If one or more +1/+1 counters would be put on a creature you control, that many plus one +1/+1 counters are put on that creature instead.","condition":null,"quantity_modification":{"type":"Plus","value":1},"counter_match":{"type":"OfType","data":"P1P1"}}],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"a2fe5937-212c-4e71-8d6e-f408b38100aa","metadata":{"source_printing_ids":["2e2d72f6-bde3-49fb-976e-2d0c4dce60e3","93cc7133-1814-4a77-95cc-22b93e63db50","a328a93a-e720-46d5-a190-cc65d1c90cea","c6d36786-6e36-4a9b-97ad-ad7d9d2b8d92"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","M21","MOC","PLST"],"rulings":[{"date":"2020-06-23","text":"Conclave Mentor's first ability doesn't apply to itself if it's somehow entering the battlefield with a +1/+1 counter on it."},{"date":"2020-06-23","text":"If a creature you control would enter the battlefield with a number of +1/+1 counters on it, it enters with that many plus one instead."},{"date":"2020-06-23","text":"If two or more effects attempt to modify how many counters would be put onto a creature you control, you choose the order to apply those effects, no matter who controls the sources of those effects."},{"date":"2020-06-23","text":"If you control two Conclave Mentors, the number of +1/+1 counters put on a creature is two plus the original number. Three Conclave Mentors add three, and so on."},{"date":"2020-06-23","text":"Use Conclave Mentor's power as it last existed on the battlefield to determine how much life you gain."}],"rarities":["uncommon"]},"consecrate":{"name":"Consecrate","mana_cost":{"type":"Cost","shards":["WhiteBlack"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target card from a graveyard.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target card from a graveyard.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"20e7a93f-77ce-466b-8586-35d390689d0c","metadata":{"source_printing_ids":["00320106-ce51-46a9-b0f9-79b3baf4e505"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rulings":[{"date":"2019-01-25","text":"If the creature's power is negative, you don't lose or gain life."},{"date":"2019-01-25","text":"If the target player controls more than one creature with the greatest power among creatures they control, that player chooses which to sacrifice."},{"date":"2019-01-25","text":"The amount of life gained while Consume resolves is equal to the power of the creature as it last existed on the battlefield."},{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"consume":{"name":"Consume","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature with the greatest power among creatures they control. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Aggregate","function":"Max","property":"Power","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature with the greatest power among creatures they control. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"20e7a93f-77ce-466b-8586-35d390689d0c","metadata":{"source_printing_ids":["00320106-ce51-46a9-b0f9-79b3baf4e505"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rarities":["uncommon"]},"consuming ferocity":{"name":"Consuming Ferocity","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant non-Wall creature\nEnchanted creature gets +1/+0.\nAt the beginning of your upkeep, put a +1/+0 counter on enchanted creature. If that creature has three or more +1/+0 counters on it, it deals damage equal to its power to its controller, then destroy that creature and it can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"+1/+0","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"ParentTarget"},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetHasKeywordInstead","keyword":{"Unknown":"three or more +1/+0 counters on it"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetHasKeywordInstead","keyword":{"Unknown":"three or more +1/+0 counters on it"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, put a +1/+0 counter on enchanted creature. If that creature has three or more +1/+0 counters on it, it deals damage equal to its power to its controller, then destroy that creature and it can't be regenerated.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+0."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"8efbe68c-622c-4986-a375-7e0bf780eb2e","metadata":{"source_printing_ids":["05835e35-f4f8-4513-b5a1-9e31b21168f0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["uncommon"]},"consuming sepulcher":{"name":"Consuming Sepulcher","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, each opponent loses 1 life and you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses 1 life and you gain 1 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black"],"color_identity":["Black"],"scryfall_oracle_id":"883a4180-9ede-4249-a4b8-3a29c998fb63","metadata":{"source_printing_ids":["dbaa9a2d-e9fd-4746-a26c-f99ae731f024"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rarities":["common"]},"consuming vapors":{"name":"Consuming Vapors","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice. You gain life equal to that creature's toughness.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","non_ability_text":null,"flavor_name":null,"keywords":["Rebound"],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature of their choice. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a10ce333-48d7-499b-9355-f381f2395497","metadata":{"source_printing_ids":["008de17e-aa79-4d4c-ab66-d516eca49e42","7b6e74a3-f390-4ad2-93de-930af0e5585c","9d47bea4-3286-4a96-ab61-f4865ed03ac5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C17","ROE"],"rulings":[{"date":"2010-06-15","text":"At the beginning of your upkeep, all delayed triggered abilities created by rebound effects trigger. You may handle them in any order. If you want to cast a card this way, you do so as part of the resolution of its delayed triggered ability. Timing restrictions based on the card's type (if it's a sorcery) are ignored. Other restrictions are not (such as the one from Rule of Law)."},{"date":"2010-06-15","text":"If a replacement effect would cause a spell with rebound that you cast from your hand to be put somewhere else instead of your graveyard (such as Leyline of the Void might), you choose whether to apply the rebound effect or the other effect as the spell resolves."},{"date":"2010-06-15","text":"If a spell with rebound that you cast from your hand doesn't resolve for any reason (due being countered by a spell like Cancel, or because all of its targets are illegal), rebound has no effect. The spell is simply put into your graveyard. You won't get to cast it again next turn."},{"date":"2010-06-15","text":"If the targeted player doesn't sacrifice a creature (because the player didn't control any creatures or due to Tajuru Preserver, perhaps), you gain no life."},{"date":"2010-06-15","text":"If you are unable to cast a card from exile this way, or you choose not to, nothing happens when the delayed triggered ability resolves. The card remains exiled for the rest of the game, and you won't get another chance to cast the card. The same is true if the ability is countered (due to Stifle, perhaps)."},{"date":"2010-06-15","text":"If you cast a card from exile this way, it will go to your graveyard when it resolves, fails to resolve, or is countered. It won't go back to exile."},{"date":"2010-06-15","text":"If you cast a spell with rebound from anywhere other than your hand (such as from your graveyard due to Sins of the Past, from your library due to cascade, or from your opponent's hand due to Sen Triplets), rebound won't have any effect. If you do cast it from your hand, rebound will work regardless of whether you paid its mana cost (for example, if you cast it from your hand due to Maelstrom Archangel)."},{"date":"2010-06-15","text":"If you cast a spell with rebound from your hand and it resolves, it isn't put into your graveyard. Rather, it's exiled directly from the stack. Effects that care about cards being put into your graveyard won't do anything."},{"date":"2010-06-15","text":"Rebound will have no effect on copies of spells because you don't cast them from your hand."},{"date":"2010-06-15","text":"The sacrificed creature's last known existence on the battlefield is checked to determine its toughness."}],"rarities":["rare"]},"coralhelm commander":{"name":"Coralhelm Commander","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Level up {1} ({1}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 2-3\n3/3\nFlying\nLEVEL 4+\n4/4\nFlying\nOther Merfolk creatures you control get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":[],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"Flying"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":2,"maximum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 2-3 / 3/3 / Flying"},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Merfolk"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":4},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Merfolk creatures you control get +1/+1."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"AddKeyword","keyword":"Flying"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":4},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 4+ / 4/4 / Flying"}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"0ca0a186-026d-4cec-9c23-15d94e6acca9","metadata":{"source_printing_ids":["46246d37-dfce-4977-854e-ee79d47cea05","4f8d1bea-58cd-4483-a70a-0330ad5ab4a1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LCC","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature's level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler's power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature's power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler's power or toughness to a specific value, including the effects from a level symbol's ability, apply in timestamp order. The timestamp of each level symbol's ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler's printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don't overwrite any other abilities it may have. In particular, they don't overwrite the creature's level up ability; it always has that."}],"rarities":["rare"]},"corpse harvester":{"name":"Corpse Harvester","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{B}, {T}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, put them into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Swamp"}],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":2},"reveal":true,"selection_constraint":{"type":"MatchEachFilter","filters":[{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Swamp"}],"controller":null,"properties":[]}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}{B}, {T}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, put them into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f02ad6fa-7a82-471a-979e-0bb9ba866ef6","metadata":{"source_printing_ids":["0d09c2c8-526b-4693-bbaa-109911ce5281","b49430a6-8572-4959-a8ae-4b6fdcef440f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["HOP","LGN","PLST"],"rulings":[{"date":"2004-10-04","text":"You do not have to find a Zombie card or swamp card if you do not want to, even if you have them in your library."}],"rarities":["uncommon"]},"counterspell":{"name":"Counterspell","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"cc187110-1148-4090-bbb8-e205694a39f5","metadata":{"source_printing_ids":["02da8709-4228-4fed-9d2d-781e686661df","053f724c-c88d-44c0-9902-6400c064640b","0a1b4e2e-5459-4fae-81d9-1e882647daac","0a448077-3b1f-4efd-a606-e3ff40fe1621","0c9a7cb0-5bff-48ff-b620-2838816ac9b5","0df55e3f-14de-46ef-b6b1-616618724d9e","113675bf-4916-4902-a40f-4b587ac0bebe","13c474f7-38f1-4e46-8619-dd2a1b23c158","14b62ca7-2147-422e-97dd-573b474ef97f","180fa82e-9e25-4a9c-b9a7-3e1dffaaa5ea","18388c02-8b29-4f83-877b-706c68a9ee29","1920dae4-fb92-4f19-ae4b-eb3276b8dac7","1b73577a-8ca1-41d7-9b2b-7300286fde43","22b31ea9-f967-4e5a-b293-c7773cc4a0ba","29bb1b85-9444-4bfa-b622-092a6873631c","2a6c681a-2b5f-4c4e-81c3-91e8aba47985","2c358d75-01ad-4487-8104-425124b96aae","4652c51c-881f-4732-872d-17f60847ef29","47973a25-a600-49ed-b92e-83cdd65be1e3","4a196a26-d03e-4535-940c-0e7976da216d","4dd995aa-6aa1-495e-8d00-37fdbdbdbc7b","4f616706-ec97-4923-bb1e-11a69fbaa1f8","500e6211-c101-43f1-a03a-1750f762deaf","52042404-12db-4914-bfa0-8249a5942088","5323b7eb-976b-49fa-bc95-53337b43f9a3","5932f2dc-3bb6-4f5e-8e8d-c62e7413ac0a","5d93b770-dc46-46ad-aefe-282dac8cc246","62504a3f-df9f-4fab-a5fc-50fc39288052","6522cc61-397d-4754-9a7f-9f9d50f85922","68787949-4c50-47a1-a28c-05ea37dd13cd","6ac949a7-51ea-4c7e-ad46-87e5ee88b99b","6c4de9a0-b778-4e58-ab7d-23aeddffc5af","703dc932-3f90-47e9-8d13-aad1b65f1651","71cfcba5-1571-48b8-a3db-55dca135506e","79976df3-e989-4f99-8534-dca962f85e3d","7bd03c80-7812-4704-9e07-9cf73b49c01f","7c3271da-cc20-48c2-ac61-b64a8e47f9e5","7c666b4b-c4ff-40ca-9d16-c76aafebaa83","7e47212d-399e-4121-92d4-9fb0d85767cb","8493131c-0a7b-4be6-a8a2-0b425f4f67fb","87284999-8b35-4142-a711-0c9e1bdc8e1a","885b5ca4-b8e4-4a66-9508-a12396959253","8bed211e-f3ec-4e9e-b9a7-0989930dd049","976f36ce-57b0-4364-9009-b3bbf5763050","9e11bf7c-f439-4529-b29a-d711359807ef","a457f404-ddf1-40fa-b0f0-23c8598533f4","a7b5b4b1-1df0-46c4-97ff-f0ca2d1c91fb","aedbcbaa-40f0-485f-8427-778edc2d2ec0","b230b4f7-0e2a-42ba-a780-27c9714b70a2","b975289d-d8b8-46b4-8c60-d6ed4b594519","cca8eb95-d071-46a4-885c-3da25b401806","ce30f926-bc06-46ee-9f35-0cdf09a67043","d14d5ff3-40c0-4f22-91ad-d6c8447cb9e0","dacdd380-71cf-4832-bd02-3697501325f3","e8493631-6c9c-40a8-b7de-ecf26ba6bf7d","ec4fb462-9226-43cb-862f-7467762e6c8b","ee0d3f5f-7790-4772-bead-5d7114a23e94","f35ec9da-f38b-4b7f-9eb5-090ca7755668","f5c6f284-fc07-4849-8210-80f12f77f518"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","A25","BRB","BTD","CED","CEI","CMM","CMR","DD2","DMR","DSC","EMA","F05","FBB","FCA","G00","GN3","ICE","JVC","LEA","LEB","MAR","MB2","ME2","ME4","MH2","MMQ","MP2","OMB","PF24","PF26","PLGM","PLST","PMEI","PRM","PTC","PURL","S99","SCD","SLD","SS1","STA","SUM","TMP","TPR","VMA","WC00","WC01","WC02","WC97","WC98"],"rarities":["common","uncommon","rare"]},"cragganwick cremator":{"name":"Cragganwick Cremator","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant","Shaman"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, discard a card at random. If you discard a creature card this way, this creature deals damage equal to that card's power to target player or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"random":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, discard a card at random. If you discard a creature card this way, ~ deals damage equal to that card's power to target player or planeswalker.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f8ea46e2-84ca-4dcb-b675-a2374bc967bc","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"When this creature enters, discard a card at random. If you discard a creature card this way, this creature deals damage equal to that card'","line_index":0}],"metadata":{"source_printing_ids":["2a5b228b-4ea3-426f-a74b-1efd35592ccb","4b13d612-f5d4-4423-99bc-359c47a8aa99","c9297506-8656-483d-892e-217ecd8bab0c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","PLST","SHM"],"rulings":[{"date":"2020-08-07","text":"Cragganwick Cremator deals damage equal to the discarded creature card's power as it exists in your graveyard."},{"date":"2020-08-07","text":"If the target player or planeswalker is an illegal target by the time the ability tries to resolve, the ability won't resolve. You won't discard a card."},{"date":"2020-08-07","text":"If you have no cards in hand when Cragganwick Cremator's ability resolves, you don't discard anything."},{"date":"2020-08-07","text":"You choose the target player or planeswalker when the ability is put onto the stack. You won't know how much damage will be dealt until the ability resolves."}],"rarities":["rare"]},"creature bond":{"name":"Creature Bond","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, this Aura deals damage equal to that creature's toughness to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, ~ deals damage equal to that creature's toughness to the creature's controller.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"70492e32-ba4d-4314-b016-892fb15f7a23","metadata":{"source_printing_ids":["131b80ad-1ffe-449d-a595-74c65f6605cd","1f9e4aa8-4ca7-4893-81d7-98205246f357","4ce48b24-a65e-42d9-a147-8f89028fada7","5d89669b-f08a-400c-8673-7ffd91c05f5d","678e1ddd-caf8-4565-b9c0-cea2891a531e","717c5ee5-a033-4a58-bdcb-ef54e6c8b7a9","90e7626d-0b49-4ab8-91f6-4921448a4520","e83cd6e8-0460-44ed-8255-e4b82bca4d16","ee4bd7d1-77e5-46e5-a594-c24469e88c4c","fb601439-7610-4bf7-a2f3-5fb6e9a0d82c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","FBB","LEA","LEB","SUM"],"rarities":["common"]},"crossway troublemakers":{"name":"Crossway Troublemakers","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Attacking Vampires you control have deathtouch and lifelink. (Any amount of damage they deal to a creature is enough to destroy it. Damage dealt by those creatures also causes their controller to gain that much life.)\nWhenever a Vampire you control dies, you may pay 2 life. If you do, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Fixed","value":2}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a Vampire you control dies, you may pay 2 life. If you do, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Attacking"}]},"modifications":[{"type":"AddKeyword","keyword":"Deathtouch"},{"type":"AddKeyword","keyword":"Lifelink"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Attacking Vampires you control have deathtouch and lifelink."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"1a362e4d-6c02-4b67-ab63-c6622e505195","metadata":{"source_printing_ids":["03a5e19c-4cb8-4bd7-923c-4db747dc6ca3","38a61199-7471-4568-bc86-b8cc48b91c2c","431711c5-c04f-4d34-97c9-5199cfbf9da9","74b7a5dc-da8f-49dd-8182-45b851335be4","95ef4f86-9b96-4181-9442-44adce180984"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J25","LCC","PRM","VOC"],"rulings":[{"date":"2021-11-19","text":"You may pay 2 life only once for each Vampire that dies. You can't pay multiple times for the same triggered ability and draw multiple cards."}],"rarities":["rare"]},"crucible of worlds":{"name":"Crucible of Worlds","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play lands from your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"33c722cf-b4bf-431f-aefd-ee96241a7fbf","metadata":{"source_printing_ids":["0dccb71b-a25a-4ef8-b2ab-716fd38dcc0b","20b7357c-7afc-466a-b74c-a7a8a4c5a4b1","2f314ca8-19fa-4cc9-9d23-c280de3b79bc","312a6058-de08-487d-95bd-b3c56807fdd6","43ca51fb-46f9-42c1-8e2f-442c9425adfb","5d7ef391-60d7-41cd-b3fe-d1ce250e807a","7f4893ef-f983-418b-b7a4-5f073c844545","eb28b35c-28a5-4042-b21d-6d43658a16eb","ef970bfc-462d-4998-9366-eed160ab57da","fcc887b1-299e-49f2-94ab-7c3fb24b1432"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2X2","5DN","J13","M19","MPS","PIP","PM19","PRM","PWOR","SLD"],"rulings":[{"date":"2018-07-13","text":"Crucible of Worlds doesn't allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2018-07-13","text":"Crucible of Worlds doesn't change the times when you can play those land cards. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."}],"rarities":["rare","mythic"]},"cruel reality":{"name":"Cruel Reality","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nAt the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the player can't, they lose 5 life.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"ScopedPlayer","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":5},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"At the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the player can't, they lose 5 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2e3cc9b6-7849-4385-a487-c8f5364174e7","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Enchant player\nAt the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the play","line_index":0}],"metadata":{"source_printing_ids":["06a91cf5-4eab-4d9b-90bd-fb933bb00540","ee5ba8e9-869e-4f68-b668-8ef03929ff3f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","AKR","PAKH"],"rulings":[{"date":"2017-04-18","text":"The enchanted player can’t choose to lose 5 life if they have a creature or planeswalker that can be sacrificed."},{"date":"2017-04-18","text":"The enchanted player chooses a permanent to sacrifice from among the creatures and planeswalkers that player controls. You don’t choose which type of permanent the player has to sacrifice."},{"date":"2018-01-19","text":"There are many important moments in the story, but the most crucial—called “story spotlights”—are shown on cards. These cards have the Planeswalker symbol in their text box; this symbol has no effect on gameplay. You can read more about these events in the official Magic fiction at http://www.mtgstory.com."}],"rarities":["mythic"]},"crumble":{"name":"Crumble","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. It can't be regenerated. That artifact's controller gains life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. It can't be regenerated. That artifact's controller gains life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8d6e39b0-a190-40a0-a8e1-ee82f477376f","metadata":{"source_printing_ids":["06db0403-dce7-411b-8c3a-8a00b83e681c","32123652-4f71-4f0b-b317-39e6df039b4f","3ae039bf-8e76-41fd-b02f-de2fa79dc788","3cfb6d26-a7f8-49b1-9e72-053a0d2ee06f","4283c407-235d-4332-ab2b-50ec09cd9812","45c781ee-7ffb-4dd3-ac84-4d6fe4649591","86873be9-21eb-496c-b278-4c9847563b0f","a5db8a5b-c5be-4d94-abbb-ad01b4dfd13f","d2101f86-8d3c-4ba8-ac42-bd3df0644280"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","5ED","ATQ","FBB","ME4","SUM","WC97"],"rulings":[{"date":"2004-10-04","text":"If the target artifact becomes illegal before resolution, the player does not gain any life."}],"rarities":["common","uncommon"]},"crush underfoot":{"name":"Crush Underfoot","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Kindred","Instant"],"subtypes":["Giant"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose a Giant creature you control. It deals damage equal to its power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Giant"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose a Giant creature you control. It deals damage equal to its power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"81686da0-85fc-4938-962b-24443de3ada1","metadata":{"source_printing_ids":["756025a8-1096-4e7c-bbfe-6237e4a76216","e0386925-53bc-4902-ac30-cbdcb099936d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW","MMA"],"rulings":[{"date":"2013-06-07","text":"Crush Underfoot doesn't target the Giant creature you control. You choose that Giant as Crush Underfoot resolves. If you don't control a Giant creature at that time, the spell will finish resolving with no effect."},{"date":"2024-06-07","text":"Kindred is a card type that allows noncreature cards to have creature types. For example, Echoes of Eternity is an Eldrazi (although not a creature) while on the battlefield and an Eldrazi card (although not a creature card) in zones other than the battlefield."},{"date":"2024-06-07","text":"This cards was originally printed with the \"tribal\" card type. That card type has been replaced with \"kindred\". This change does not affect the gameplay function of this card."},{"date":"2024-06-07","text":"While it appears only on cards that already have other card types, kindred is a card type and will be counted by effects that refer to the number of card types among cards in a zone."}],"rarities":["common","uncommon"]},"cryptic command":{"name":"Cryptic Command","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Counter target spell.\n• Return target permanent to its owner's hand.\n• Tap all creatures your opponents control.\n• Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"TapAll","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"a3e51a35-09df-4189-b131-08a21e6a557d","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Counter target spell.","Return target permanent to its owner's hand.","Tap all creatures your opponents control.","Draw a card."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["007b8395-2725-4eb8-9e44-c7eb419fd319","0183c540-9b05-4e65-b2a5-b062754020da","02fe76b0-86eb-4f5b-8877-657cb8a37fc3","2aafb336-609e-425b-b4b6-9dc7d791f0cb","30f6fca9-003b-4f6b-9d6e-1e88adda4155","829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba","db764c69-9cbd-4fcf-aff6-bc6a60ef1051"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","IMA","LRW","MM2","MMA","MP2","P09","PLST","PPRO","PRM","SLD"],"rulings":[{"date":"2017-11-17","text":"Look at both chosen modes to determine how many targets Cryptic Command has, if any. If it has at least one target, and all its targets are illegal when it tries to resolve, then it won’t resolve and none of its effects will happen. For example, if you choose the second and fourth modes, and the permanent is an illegal target when Cryptic Command tries to resolve, you won’t draw a card."},{"date":"2017-11-17","text":"You choose both modes as you cast Cryptic Command. You must choose two different modes."}],"rarities":["rare"]},"crystalline sliver":{"name":"Crystalline Sliver","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"All Slivers have shroud. (They can't be the targets of spells or abilities.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":[{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Shroud"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Slivers have shroud."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"ba3aa1eb-722a-47d3-83be-96daddb50265","metadata":{"source_printing_ids":["06551990-713c-4b8b-bebb-4e849babb5bb","8c10b48a-f21c-4f4a-84d1-2beedef05270","a0c7f341-c61e-491d-850a-221c6a57ac64","d30d18c1-65a2-447a-9ebd-194e74e46015","e6a1b96a-ff75-4b4c-aea7-b41d9f9ac710"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["CMM","F03","H09","PLST","PRM","SLD","STH","TPR"],"rulings":[{"date":"2004-10-04","text":"The ability only applies while this card is on the battlefield."},{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn’t provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it’s no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."}],"rarities":["uncommon","rare"]},"cultivate":{"name":"Cultivate","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for up to two basic land cards, reveal those cards, put one onto the battlefield tapped and the other into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"UpTo","max":{"type":"Fixed","value":2}},"reveal":true,"split":{"primary_destination":"Battlefield","primary_count":1,"primary_enter_tapped":true,"rest_destination":"Hand"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for up to two basic land cards, reveal those cards, put one onto the battlefield tapped and the other into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8b755881-a72d-4e21-a369-d2924eb4585a","metadata":{"source_printing_ids":["075cac04-9397-4edb-b49a-485dd58dcae1","0c5f5297-fe94-44df-9004-427640196afd","2c7b84c8-b79d-4d05-8d2e-23657bd6ca7c","2d378437-4fc1-4004-a49a-98d7bac36ef5","2ef3dbe4-5c03-4be4-ab48-45b6689b6712","31233339-c5ec-40fb-badd-94ef7f0ff7c0","3217b813-7c21-473c-b65b-5766b0dc7803","44a70f85-2909-49f5-8e11-8fc806dce3b2","46419c85-c476-42b8-979f-143b45c6819b","47086c14-f451-47da-845b-2a256930d067","4791c571-289e-4c7a-b642-04f12a1c2200","4824ad7c-e533-4357-b486-9e908721db65","4a433310-3fe2-4156-864d-7a6b2638340b","4d36559d-3b91-46e4-bc39-c489842adcbf","56b34b52-7a67-44b4-82e7-2860729ba410","5a108064-8143-4b20-a5a2-eeb3b80af82f","5e6cdd3d-f9c5-4303-b56f-e7f6260e36f4","66a82a81-9b3e-421c-b916-15f40f359bf8","684063e2-c9a5-4e7c-b702-94e3e114d063","69c90a17-42ad-4f27-ab1b-3790bc0813b3","6bb4dff5-4486-4ba5-9b85-9f005d988108","6d204fda-c4c4-456c-900a-a67fa9ce3b5d","782ec69b-89c5-484e-a5ce-9cbea75dcc3e","7ee610ee-7711-4a6b-b441-d6c73e6ef2b4","83d1a3a2-4f2d-4f5f-9270-7c771d2c91b1","8960ee5f-1109-4569-9191-be68a2c0f7d5","8bc964b1-26bc-4dd2-99e3-4f421c2f8e67","8c97fe96-f30a-41ef-9d80-dd83207d14a4","a3889ea3-b7e0-446e-a8af-be284198a758","af9a4b1e-f6c0-489b-878b-533dd46cdd1a","b149d9f6-c337-43cd-8f9e-1f864d039d9c","bd71a79c-59aa-459d-bd38-8c180af0835f","bffc7f45-6f2c-401a-83a6-b36ce3e1948e","c6396ba2-ea82-4ca8-9848-08751a1bf45a","d6a8f239-0e6c-4454-a2f7-f1a8351864d5","e180e418-f62e-4b4b-a07a-bdc523a6addb","e19cd136-0541-4db0-997f-20a58ec8d028","e903f265-a644-421f-a956-b470831d94fd","ea325c2c-36cb-46c5-b410-a3ee0b15e638","ef49fe58-9839-44e1-934d-ff744d3da35a","f1cc00f9-ae7b-4f7b-95f2-bc5c00e4bd72","f6eecb56-d5a3-4c2b-a479-dbec61da9fb4","faf2ef91-fb95-4cc0-a2a6-53fac5cd807d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["40K","A25","AFC","BLC","C13","C16","C17","C18","C19","C20","C21","CLB","CM2","CMD","CMM","CMR","DMC","DSC","E01","ECC","EOC","F11","FIC","J22","LCC","LTC","M11","M21","MOC","NCC","ONC","PC2","PCA","PIP","PLST","PRM","PW23","PZ1","SCD","SLD","SOC","STA","TDC","TMC","WHO"],"rulings":[{"date":"2010-08-15","text":"If you choose to find only one basic land card, you put it onto the battlefield tapped."}],"rarities":["common","uncommon","rare"]},"curse of bounty":{"name":"Curse of Bounty","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nWhenever enchanted player is attacked, untap all nonland permanents you control. Each opponent attacking that player untaps all nonland permanents they control.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"UntapAll","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"attacking","description":"attacking that player untaps all nonland permanents they control"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"Whenever enchanted player is attacked, untap all nonland permanents you control. Each opponent attacking that player untaps all nonland permanents they control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b6689782-08d8-48e1-a05d-cd040dfe85bc","metadata":{"source_printing_ids":["2f497641-b73a-4399-bc89-5274c42e17cc","37d5b1a2-01c6-475f-86cc-c911802e6033"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","PZ2","SCD"],"rulings":[{"date":"2017-08-25","text":"A player is attacking another player if they control a creature that’s attacking that player. If no creatures are attacking the enchanted player as a Curse’s ability resolves (most likely because they’ve left the battlefield), only the Curse’s controller performs its actions."},{"date":"2017-08-25","text":"Each Curse’s ability triggers only once, no matter how many creatures are attacking the enchanted player."},{"date":"2017-08-25","text":"If you enchant yourself with one of these Curses, you’ll get its effects whenever another player attacks you."},{"date":"2017-08-25","text":"The triggered ability of these Curses won’t trigger if only a planeswalker controlled by the enchanted player is attacked."},{"date":"2017-08-25","text":"Untapping an attacking creature doesn’t remove it from combat."}],"rarities":["uncommon"]},"curse of opulence":{"name":"Curse of Opulence","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nWhenever enchanted player is attacked, create a Gold token. Each opponent attacking that player does the same. (A Gold token is an artifact with \"Sacrifice this token: Add one mana of any color.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Token","name":"Gold","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Gold"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"attacking","description":"attacking that player does the same"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"Whenever enchanted player is attacked, create a Gold token. Each opponent attacking that player does the same.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ba0d3df2-3acf-46d7-8d64-8d67d1579adc","metadata":{"related_token_ids":["214f0959-71fa-59ba-8efb-080cbc3e5b99","603d6f2b-313f-5453-a3f1-55f5154ec9f6","66cd1235-f092-5483-b517-bd0398621a94","6c3f3f0f-cfa8-5ae3-ac32-eadcaf33f275","6c4de848-5258-50e6-9a57-ceccc81aefce"],"source_printing_ids":["32cc103e-949d-42d4-aadd-490a261c9ad9","3dccadfc-458f-4696-bfb4-4bfc80379df2","440acae3-aadb-40f0-a608-d1d93578c6b0","494a6f50-9cd3-4bfc-9382-dce4f7047a81","6615d7f1-1ed6-43af-a916-6caa4bd35ca3","e23db9d3-d11f-4b2c-8349-687bc0e9d4c2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","CLB","MKC","MOC","PLST","PZ2","TDC"],"rulings":[{"date":"2017-08-25","text":"A player is attacking another player if they control a creature that's attacking that player. If no creatures are attacking the enchanted player as a Curse's ability resolves (most likely because they've left the battlefield), only the Curse's controller performs its actions."},{"date":"2017-08-25","text":"Curse of Opulence's triggered ability resolves after attackers have been declared. Any costs to attack must have already been paid before the attacking player creates the Gold."},{"date":"2017-08-25","text":"Each Curse's ability triggers only once, no matter how many creatures are attacking the enchanted player."},{"date":"2017-08-25","text":"If you enchant yourself with one of these Curses, you'll get its effects whenever another player attacks you."},{"date":"2017-08-25","text":"The triggered ability of these Curses won't trigger if only a planeswalker controlled by the enchanted player is attacked."}],"rarities":["uncommon"]},"cyclonic rift":{"name":"Cyclonic Rift","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target nonland permanent you don't control to its owner's hand.\nOverload {6}{U} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Overload":{"type":"Cost","shards":["Blue"],"generic":6}}],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"Opponent","properties":[]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":"Return target nonland permanent you don't control to its owner's hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d75b9c82-1b49-4c3e-a1b5-aeef57d6644b","metadata":{"source_printing_ids":["1fadf1e3-4f4f-4f58-b8a9-11e14bb550f8","205c4689-8b02-4d40-9274-3c1fcafa8b82","2064a0d6-3739-4466-9657-be694c0eb6e1","268f6afc-bf16-4ca7-a986-945a95d3bffc","45617b0f-fdac-4747-b2d3-d571b717008f","631a15c2-0a6d-4859-91e9-a08a7e756054","7810a95a-e1e1-4655-a508-dfbc83d4d527","c77ebe57-ea56-4300-b293-6260c4c01a43","dfb7c4b9-f2f4-4d4e-baf2-86551c8150fe","ee3bd03a-f296-479a-bd92-af7c55e594c4","f9baef6e-a086-41d4-a20e-486f01d72406","ff08e5ed-f47b-4d8e-8b8b-41675dccef8b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","C14","CMM","EA3","MM3","PRM","RTR","RVR","SLD","SOA"],"rulings":[{"date":"2024-01-12","text":"Because a spell with overload doesn't target when its overload cost is paid, it may affect permanents with hexproof or with protection from the appropriate color."},{"date":"2024-01-12","text":"If you are instructed to cast a spell with overload \"without paying its mana cost,\" you can't choose to pay its overload cost instead."},{"date":"2024-01-12","text":"If you don't pay the overload cost of a spell with overload, that spell will have a single target. If you pay the overload cost, the spell won't have any targets."},{"date":"2024-01-12","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an overload cost), add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare","mythic"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"dalkovan encampment":{"name":"Dalkovan Encampment","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control a Swamp or a Mountain.\n{T}: Add {W}.\n{2}{W}, {T}: Whenever you attack this turn, create two 1/1 red Warrior creature tokens that are tapped and attacking. Sacrifice them at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WheneverEvent","trigger":{"mode":"YouAttack","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":null,"constraint":null,"condition":null,"batched":false}},"effect":{"kind":"Spell","effect":{"type":"Token","name":"Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Warrior"],"colors":["Red"],"keywords":[],"tapped":true,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}{W}, {T}: Whenever you attack this turn, create two 1/1 red Warrior creature tokens that are tapped and attacking. Sacrifice them at the beginning of the next end step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control a Swamp or a Mountain.","condition":{"type":"UnlessControlsSubtype","subtypes":["Swamp","Mountain"]},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"33a90122-7280-4481-9b97-5879194cae40","metadata":{"related_token_ids":["0639a7f1-e1a9-5c70-9d2f-e43e36448115"],"source_printing_ids":["5af006f6-135e-4ea0-8ce4-7824934e87da","98ad5f0c-8775-4e89-8e92-84a6ade93e35"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Activating Dalkovan Encampment’s last ability creates a delayed triggered ability that will trigger each time you declare at least one creature as an attacker during a declare attackers step this turn. (This usually only happens once per turn, but effects like that of All-Out Assault’s last ability might cause it to happen more than once.) This ability will trigger even if Dalkovan Encampment is no longer on the battlefield. It won’t trigger if you don’t declare any creatures as attackers."},{"date":"2025-04-04","text":"You must already control a Swamp or Mountain as Dalkovan Encampment enters for it to enter untapped. If it enters at the same time as a Swamp or Mountain when you control no other Swamps or Mountains, it will enter tapped."}],"rarities":["rare"]},"dark confidant":{"name":"Dark Confidant","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2068185c-1b50-47d0-aa3f-bf505d199428","metadata":{"source_printing_ids":["05cf51d8-9f91-42ff-99e9-4397f2251c20","2520ab23-a068-4462-b261-2754409b4108","378df0f4-5043-461f-8705-9a2c0c3acd43","4c008ad2-ad33-46ee-a3f1-af85368c8734","537ba5f0-2931-46e6-bb32-d947a3588d20","62895ba2-49d9-4c6e-8545-687cc6c8ef0a","6c821158-f71a-48f9-b6b4-b0e605f22bec","888597ce-c780-461b-a619-32c14636fc76","94f7a441-bf2d-46fb-a7b6-9bd6137f86d9","b0d88239-43dc-46b8-8d46-626e2f8f1070","c74e9388-460d-4dbf-934e-f3ecb48af6e8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","FIN","G11","J25","MM2","MMA","PFIN","PRM","RAV","RVR","SCH"],"rulings":[{"date":"2020-08-07","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2025-06-06","text":"If a card in a player's library has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["rare","mythic"]},"dark tutelage":{"name":"Dark Tutelage","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"0c6ce7c9-316b-4171-a8fa-ca26af1eecb7","metadata":{"source_printing_ids":["9ec3dd9f-3969-4fd7-97f7-e9868eb19a64"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["M11","WOT"],"rulings":[{"date":"2010-08-15","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2010-08-15","text":"If the revealed card has no mana symbols in its upper right corner (because it's a land card, for example), its mana value is 0."},{"date":"2010-08-15","text":"The mana value of the revealed card is determined solely by the mana symbols printed in its upper right corner. The mana value is the total amount of mana in that cost, regardless of color. For example, a card with mana cost {3}{U}{U} has mana value 5."}],"rarities":["rare"]},"darkstar augur":{"name":"Darkstar Augur","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bat","Warlock"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Offspring {B} (You may pay an additional {B} as you cast this spell. If you do, when this creature enters, create a 1/1 token copy of it.)\nFlying\nAt the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Offspring":{"type":"Cost","shards":["Black"],"generic":0}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.175a: When this permanent enters, if its offspring cost was paid, create a token that's a copy of it, except it's 1/1.","constraint":null,"condition":{"type":"AdditionalCostPaid"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"67d2a021-a042-4e5f-b6e4-39cb35514794","additional_cost":{"type":"Optional","data":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":0}}}},"metadata":{"related_token_ids":["66c5362f-7915-51e3-b392-ce1205324ba5"],"source_printing_ids":["1c603751-1e2b-4c8e-a8d2-5c0876e7254f","8e9abfd1-59ba-46f4-ad1d-cf0e125dd4b9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"Any “enters” abilities of the copied creature will trigger when the token enters. Any “as [this creature] enters” or “[this creature] enters with” abilities of the copied creature will also work."},{"date":"2024-07-26","text":"If a card in a player’s library has {X} in its cost, X is 0 for the purpose of determining its mana value."},{"date":"2024-07-26","text":"If the spell is countered, the offspring ability will not trigger, and no token will be created."},{"date":"2024-07-26","text":"If the spell resolves but the creature with offspring leaves the battlefield before the offspring ability resolves, you’ll still create a token copy of it."},{"date":"2024-07-26","text":"In the rare case where the creature doesn’t have the offspring ability when it enters, the ability won’t trigger even if you paid the offspring cost."},{"date":"2024-07-26","text":"In the rare case where the original creature is copying something else when the offspring ability resolves, the token enters as whatever that creature copied, except it’s a 1/1."},{"date":"2024-07-26","text":"Many creatures with offspring abilities have other abilities that refer to them as “this creature” rather than referring to them by name. This difference is for clarity purposes and does not change the function of any of these abilities."},{"date":"2024-07-26","text":"The token copies exactly what was printed on the original creature and nothing else, except it’s a 1/1 (unless that creature is copying something else; see below). It doesn’t copy whether that creature is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any non-copy effects that have changed its types, color, or so on."},{"date":"2024-07-26","text":"The token created by the offspring ability isn’t “cast”, so abilities that trigger when a creature spell is cast won’t trigger for the copy."},{"date":"2024-07-26","text":"You can pay an offspring cost only once as you cast a spell with offspring. You can’t try to pay it multiple times to get more token copies."}],"rarities":["rare"]},"darksteel colossus":{"name":"Darksteel Colossus","mana_cost":{"type":"Cost","shards":[],"generic":11},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":11},"toughness":{"type":"Fixed","value":11},"loyalty":null,"defense":null,"oracle_text":"Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)\nIndestructible (Damage and effects that say \"destroy\" don't destroy this creature.)\nIf Darksteel Colossus would be put into a graveyard from anywhere, reveal Darksteel Colossus and shuffle it into its owner's library instead.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible","Trample"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Owner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If ~ would be put into a graveyard from anywhere, reveal ~ and shuffle it into its owner's library instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"scryfall_oracle_id":"1b09d0cf-403c-4a15-aeee-602a1bdaf0c1","metadata":{"source_printing_ids":["44012fb2-9dbc-408a-b84b-1302b442f699","5a3aa1ce-8757-4541-8ac7-1e7e203b60fc","70197723-c61b-4600-b61d-41380c8f3067","8b5341ab-85a6-44b2-b738-1110e699c02b","cbc27b24-f085-48b0-8757-cd11fbf25b91"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DST","FDN","M10","PW24","SLD"],"rulings":[{"date":"2013-07-01","text":"Lethal damage, damage from a source with deathtouch, and effects that say \"destroy\" won't cause a creature with indestructible to be put into the graveyard. However, a creature with indestructible can be put into the graveyard for a number of reasons. The most likely reasons are if it's sacrificed or if its toughness is 0 or less. (In these cases, of course, Darksteel Colossus would be shuffled into its owner's library instead of being put into its owner's graveyard.)"}],"rarities":["rare","mythic"]},"daxos of meletis":{"name":"Daxos of Meletis","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Daxos can't be blocked by creatures with power 3 or greater.\nWhenever Daxos deals combat damage to a player, exile the top card of that player's library. You gain life equal to that card's mana value. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"TriggeringPlayer"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast that spell"}],"duration":null,"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, exile the top card of that player's library. You gain life equal to that card's mana value. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast that spell.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"GE","value":{"type":"Fixed","value":3}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 3 or greater."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"4cf10cb6-b082-4c0d-89e9-43cd39716201","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6bb68644-e99d-4ecb-a804-8d4ad1c3325d","d2eca63b-7fb2-4a69-84dd-aa0a038a2f8a","ed3f19aa-1131-467f-8ae5-065e14aeb153"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C18","NCC","THS"],"rulings":[{"date":"2013-09-15","text":"Daxos doesn't change when you can cast the exiled card. For example, if you exile a creature card without flash, you can cast it only during your main phase when the stack is empty."},{"date":"2013-09-15","text":"If Daxos is blocked by a creature, raising that creature's power to 3 or greater won't change or undo the block."},{"date":"2013-09-15","text":"If the exiled card is a land card, you won't gain any life and you won't be able to play the land."},{"date":"2013-09-15","text":"You must pay all costs to cast the exiled card. You may pay alternative or additional costs. If the card has any mandatory additional costs, you must pay those."}],"rarities":["rare"]},"day of black sun":{"name":"Day of Black Sun","mana_cost":{"type":"Cost","shards":["X","Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each creature with mana value X or less loses all abilities until end of turn. Destroy those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"modifications":[{"type":"RemoveAllAbilities"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"lose all abilities"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"TrackedSet","id":0},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Each creature with mana value X or less loses all abilities until end of turn. Destroy those creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc857129-533c-41d1-8e8b-1c0443030d69","metadata":{"source_printing_ids":["d0e24797-3e45-4c2b-b4b0-1ef44d42eaee","f42f6bd4-dc1d-4b5f-9489-2cb109a68904"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PSPL","PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"If a creature with an ability that triggers when that creature dies or leaves the battlefield loses that ability and is then destroyed, that ability will not trigger. Those types of triggers need to exist on the battlefield in order to work. Any abilities that trigger when a creature card is \"put into the graveyard from anywhere\" would still trigger, because those abilities function from the graveyard, where the card is a new object that still has the ability."}],"rarities":["rare"]},"daybreak ranger":{"name":"Daybreak Ranger","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Archer","Ranger","Werewolf"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals 2 damage to target creature with flying.\nAt the beginning of each upkeep, if no spells were cast last turn, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithKeyword","value":"Flying"}]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 2 damage to target creature with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if no spells were cast last turn, transform ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"SpellsCastLastTurn"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"280624aa-5f9a-48fd-85ea-815c96c747b3","metadata":{"source_printing_ids":["25b54a1d-e201-453b-9173-b04e06ee6fb7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"transform","printings":["ISD"],"rulings":[{"date":"2016-07-13","text":"For more information on double-faced cards, see the Shadows over Innistrad mechanics article (http://magic.wizards.com/en/articles/archive/feature/shadows-over-innistrad-mechanics)."}],"rarities":["rare"]},"dead reckoning":{"name":"Dead Reckoning","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may put target creature card from your graveyard on top of your library. If you do, Dead Reckoning deals damage equal to that card's power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may put target creature card from your graveyard on top of your library. If you do, ~ deals damage equal to that card's power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2a4b77f0-81ac-48a6-961b-bd63e99f74cf","metadata":{"source_printing_ids":["ad16a3b8-e99e-47ed-92ce-ef42310f9f46"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["WWK"],"rulings":[{"date":"2010-03-01","text":"Dead Reckoning deals damage equal to the power the creature card had while it was in your graveyard. This could matter if that card is something like Lord of Extinction or Tarmogoyf whose power is determined by a characteristic-defining ability that checks the contents of your graveyard."},{"date":"2010-03-01","text":"If the targeted creature card is an illegal target as Dead Reckoning resolves (because it’s no longer in your graveyard, perhaps), you can’t choose to put it on top of your library. No damage will be dealt."},{"date":"2010-03-01","text":"If the targeted creature is an illegal target as Dead Reckoning resolves (because it’s no longer on the battlefield, perhaps), you may still put the targeted creature card from your graveyard on top of your library. No damage will be dealt."},{"date":"2010-03-01","text":"You must choose two targets as you cast Dead Reckoning: a creature card in your graveyard and a creature on the battlefield. If you can’t, then you can’t cast the spell."}],"rarities":["common"]},"deadly brew":{"name":"Deadly Brew","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player sacrifices a creature or planeswalker of their choice. If you sacrificed a permanent this way, you may return another permanent card from your graveyard to your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Graveyard"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"CostPaidObjectMatchesFilter","filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Each player sacrifices a creature or planeswalker of their choice. If you sacrificed a permanent this way, you may return another permanent card from your graveyard to your hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"b831d3f8-07ce-4172-ba29-213cac414c9a","metadata":{"source_printing_ids":["3e5493c3-0be2-467c-82f0-3ee1ca909d0c","4cd4d5a4-4342-49fb-b1e4-7d08e6cf5376","87d33e48-90fc-4aac-b09a-68050bc053b5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","SOC","STX"],"rulings":[{"date":"2021-04-16","text":"First the active player chooses which creature or planeswalker they'll sacrifice, then each other player in turn order does the same, knowing choices made before their choice. Then all those permanents are sacrificed simultaneously."},{"date":"2021-04-16","text":"If you cast Deadly Brew and control any creatures or planeswalkers as it resolves, you must sacrifice one of them."},{"date":"2021-04-16","text":"You cannot return the same permanent card that you sacrificed."},{"date":"2021-04-16","text":"You choose which permanent card you're returning to your hand, if any, as Deadly Brew resolves, after permanents are sacrificed."}],"rarities":["uncommon"]},"deadshot":{"name":"Deadshot","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target creature. It deals damage equal to its power to another target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target creature. It deals damage equal to its power to another target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"711c10cb-7a85-417d-be24-79d4e4a89993","metadata":{"source_printing_ids":["55d212c5-1642-456f-829f-57f68a2116b6","ad82258b-3856-49ee-9acd-926feb15e070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["TMP","TPR"],"rulings":[{"date":"2004-10-04","text":"Deadshot can target a creature which is already tapped as its first target, and it will still damage the second target. This is because it taps that creature as an effect, not as a cost."}],"rarities":["uncommon","rare"]},"death":{"name":"Death","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target creature card from your graveyard to the battlefield. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to the battlefield. You lose life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"d476f4b3-db63-4756-ab76-4b35f63c2825","metadata":{"source_printing_ids":["2424f2c4-366b-42cf-bf4b-a8a5bfdd2c4b","7ab75cdb-93a1-4f78-b404-37566295c321","e16d52ca-f8de-4852-9bff-9d208e5f678f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["AA2","APC","DDJ","DMR","F06","PRM"],"rarities":["uncommon"]},"death watch":{"name":"Death Watch","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, its controller loses life equal to its power and you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, its controller loses life equal to its power and you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6f5b6cba-3b57-4e6a-afa7-0cb62e5cc7d4","metadata":{"source_printing_ids":["0e939d8f-6989-4884-989b-9cba566c9963"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["VIS"],"rarities":["common"]},"death's caress":{"name":"Death's Caress","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"aac711d1-2fa0-42f9-9eda-a1642f3ff016","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","line_index":0}],"metadata":{"source_printing_ids":["0643fb9a-8284-4dfc-836a-c2c69ef09f32"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["DKA"],"rulings":[{"date":"2011-01-22","text":"Check the creature as it last existed on the battlefield to determine if it was a Human. If it was, use its toughness as it last existed on the battlefield to determine how much life is gained."},{"date":"2011-01-22","text":"If the target creature isn’t on the battlefield or is otherwise an illegal target when Death’s Caress tries to resolve, Death’s Caress doesn’t resolve and none of its effects will happen. You won’t gain any life."},{"date":"2013-07-01","text":"If Death’s Caress resolves but the target creature isn’t destroyed, perhaps because it has indestructible or it regenerated, you still check if it’s a Human. If so, you’ll gain life equal to its toughness."}],"rarities":["common"]},"delif's cone":{"name":"Delif's Cone","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}, Sacrifice this artifact: This turn, when target creature you control attacks and isn't blocked, you may gain life equal to its power. If you do, it assigns no combat damage this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"when","description":"when target creature you control attacks and isn't blocked"},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"AssignNoCombatDamage","affected":{"type":"ParentTarget"},"modifications":[{"type":"AssignNoCombatDamage"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":"{T}, Sacrifice ~: This turn, when target creature you control attacks and isn't blocked, you may gain life equal to its power. If you do, it assigns no combat damage this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"8af33199-d3ad-44fe-8ee0-abbe36a2278b","metadata":{"source_printing_ids":["262b8788-c5a0-4c8e-9d58-b769b1b0a2ff"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FEM"],"rulings":[{"date":"2004-10-04","text":"If you use the ability after blockers are declared, it won’t trigger at all. So you want to use it before blockers are declared."},{"date":"2004-10-04","text":"This card has an activated ability that creates a triggered ability which watches the target creature."},{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."}],"rarities":["common"]},"delirium":{"name":"Delirium","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during an opponent's turn.\nTap target creature that player controls. That creature deals damage equal to its power to the player. Prevent all combat damage that would be dealt to and dealt by the creature this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"CombatDamage"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a00e5eb6-b916-4cd6-8ff2-c02f4929abc7","casting_restrictions":[{"type":"DuringOpponentsTurn"}],"metadata":{"source_printing_ids":["c52981ea-1173-4f4b-a929-705a11c6e381"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"Tapping the creature is part of the effect and not the cost, therefore you can cast this targeting a tapped creature."}],"rarities":["uncommon"]},"delver of secrets":{"name":"Delver of Secrets","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery card is revealed this way, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Instant","Sorcery"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery card is revealed this way, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"edd531b9-f615-4399-8c8c-1c5e18c4acbf","metadata":{"source_printing_ids":["11bf83bb-c95b-4b4f-9a56-ce7a1816307a","6904ea20-e504-47da-95a0-08739fdde260","871c4ccc-5a14-4583-b4c7-6f2d2aeb8253","888fbfaf-dbf9-4045-a79e-d436ef75b3cf","a808459c-f086-4cb6-a53e-4b9e196c1000","a992bbe3-c389-4a4a-927b-dfc01a4cd9be","abff6c81-65a4-48fa-ba8f-580f87b0344a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["DBL","INR","ISD","MID","SLD","V17"],"rulings":[{"date":"2011-09-22","text":"You may reveal the card even if it's not an instant or sorcery. Whether or not you reveal it, the card stays on top of your library."}],"rarities":["common","uncommon","rare"]},"demanding dragon":{"name":"Demanding Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, it deals 5 damage to target opponent unless that player sacrifices a creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":5},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals 5 damage to target opponent unless that player sacrifices a creature of their choice.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":1},"payer":{"type":"Player"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c8f1e3bd-bbf0-4750-b054-03553fc61850","metadata":{"source_printing_ids":["31b73282-6207-4207-8b9c-86a8f9a263a2","35f32486-8292-4372-a898-a38c92262a5d","4d8a5bab-813a-488a-ab65-3286582ef595","f97d0541-f04f-44a6-a20f-4d909ccc90ca"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","M19","PLST","PM19","SCD"],"rarities":["rare"]},"desert":{"name":"Desert","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Desert"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{T}: This land deals 1 damage to target attacking creature. Activate only during the end of combat step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 1 damage to target attacking creature. Activate only during the end of combat step.","target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":null}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"195107ad-879d-4b02-a44a-a3ba70fedf88","metadata":{"source_printing_ids":["201155ea-f474-4e13-acda-cb071a6ca977","c74e13eb-6f82-4db1-9d0d-8310f48d9f6d","f5566c7e-7486-4237-a6e4-f7e641e11b22","fb89de70-d0e6-49ec-8aa9-1d31d3df1646"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","ARN","F08","PLST","PRM","SPG","TSB","V12"],"rulings":[{"date":"2004-10-04","text":"The ability can be used on any player's attacking creatures. This includes your own and creatures in an attack you are not involved in (for multiplayer games)."},{"date":"2017-04-18","text":"Desert is a land subtype with no special meaning. It doesn't grant the land an intrinsic mana ability. Other cards may care about which lands are Deserts."},{"date":"2024-04-12","text":"The end of combat step happens after combat damage is dealt. You can't use Desert to destroy an attacking creature before it has a chance to deal combat damage."}],"rarities":["common","uncommon","special"]},"devour flesh":{"name":"Devour Flesh","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice, then gains life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"player":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target player sacrifices a creature of their choice, then gains life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6c40f825-836e-4b76-8e43-267b4abf013b","metadata":{"source_printing_ids":["01565263-f30d-4cc4-9c5b-4973f3300290","88c42ebd-114a-430d-b3a4-ff2fb3093bf5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GTC","PIO"],"rulings":[{"date":"2013-01-24","text":"Devour Flesh targets only a player. It doesn’t target any creatures. The target player chooses which creature to sacrifice when the spell resolves. That player can sacrifice only a creature they control."},{"date":"2013-01-24","text":"The amount of life gained is equal to the creature’s toughness as it last existed on the battlefield."}],"rarities":["common"]},"devour in shadow":{"name":"Devour in Shadow","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. It can't be regenerated. You lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. It can't be regenerated. You lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9086d8ff-e375-4149-996d-2a88a7596c1c","metadata":{"source_printing_ids":["98c80584-b7b5-4dcd-8a00-812b9dd9b1b9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["5DN"],"rarities":["uncommon"]},"devour intellect":{"name":"Devour Intellect","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target opponent discards a card. If mana from a Treasure was spent to cast this spell, instead that player reveals their hand, you choose a nonland card from it, then that player discards that card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"ParentTargetController"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"SelfObject","metric":{"type":"FromSource","source_filter":{"type":"Typed","type_filters":[{"Subtype":"Treasure"}],"controller":null,"properties":[]}}}},"comparator":"GT","rhs":{"type":"Fixed","value":0}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target opponent discards a card. If mana from a Treasure was spent to cast this spell, instead that player reveals their hand, you choose a nonland card from it, then that player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"abf8264e-d020-4939-8092-83469b1a2244","metadata":{"source_printing_ids":["13c34f2d-2eac-4241-8b23-9cab3268c254"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rarities":["common"]},"dig up":{"name":"Dig Up","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {1}{B}{B}{G} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nSearch your library for a [basic land] card, [reveal it,] put it into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Black","Black","Green"],"generic":1}}],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a card, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ae96fe7e-8d89-4f44-9cc4-3c9b124fdc4b","metadata":{"source_printing_ids":["078d0194-0137-45cd-977a-eefae67f9bca","5f5eff40-7e26-44a8-bd7a-d7906945a31e","8f14c947-2452-4fd6-8f1a-391cf5898100","a7f02f41-19b4-49b2-89fa-5b0de2011519"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PLST","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"If you paid the cleave cost, you must put a card into your hand as Dig Up resolves (assuming there is at least one card in your library)."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"diplomatic relations":{"name":"Diplomatic Relations","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Vigilance"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +1/+0 and gains vigilance"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"57b75be4-9229-4a48-a59e-a0f812f38637","metadata":{"source_printing_ids":["143e5853-9a31-4c8d-b21d-5ef120eb6952","e0a104c5-61fb-4733-97ab-a31a15a49443"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE"],"rarities":["common"]},"dire tactics":{"name":"Dire Tactics","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. If you don't control a Human, you lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. If you don't control a Human, you lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"0c8cb2ec-5b58-497c-a6e7-2d25512d5a44","metadata":{"source_printing_ids":["e0e3974e-3753-4f25-8930-6d96b40332ce"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO"],"rulings":[{"date":"2020-04-17","text":"Use the exiled creature’s toughness as it last existed on the battlefield to determine how much life you lose."},{"date":"2020-04-17","text":"Whether you control a Human is checked only after exiling the target creature. If that creature had exiled a Human you controlled until that creature left the battlefield, that Human will return to the battlefield in time to be counted."}],"rarities":["uncommon"]},"divination":{"name":"Divination","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw two cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"273b339c-964b-4a18-8eb5-ceb8abcdfd9e","metadata":{"source_printing_ids":["1252243c-34e3-447b-b323-fffcbe128278","3102cec9-1cdc-4946-a2dd-caf04eaa8b97","4a1340f1-85a4-4551-9871-bb00db6d97a8","65b9964e-cfe0-4400-b903-3f590889f88d","95d1e5bd-9360-4ba5-83b5-38a9bf8bb5b9","a3c573ab-9013-4c2b-a039-ce5b20dba264","ae04d500-5b2d-4661-bbd2-66cf29456b2b","bfdc821e-0e4b-43ff-86d6-134ac0b4e958","c7f9daf0-dbfd-45b2-be35-9c2de9d1a56e","cb3b35b8-f321-46d8-a441-6b9a6efa9021","ddd1187d-f43f-4508-b312-7af0bb8b9789"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BNG","CN2","DKA","DOM","M10","M12","M13","M14","M15","M19","PLST","PS11","XANA"],"rarities":["common"]},"divine offering":{"name":"Divine Offering","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"231f8edb-4ea1-44be-8794-b76a31462dfc","metadata":{"source_printing_ids":["3b1201ef-1a8c-4b29-be7b-2ff7c755c839","4b84697e-d72d-4169-bf16-753144da281f","5c53562e-6b8f-484d-a083-2c635c2f222b","6d88ecf6-3e94-45fb-a109-cf143fe0f2e3","726294f3-c69a-4ea7-ad43-4f3b298e3b93","787e34ed-26a2-44d8-a542-34186148dc8c","7f30b7cb-b93a-450b-96f4-de2e132e65db","9371c4aa-424f-4b89-9f73-239a9e4f8a9d","993f038a-e222-490f-8a8c-dbebd945bf44","9c78c2f3-2f40-48ad-9dc4-55d1fa399a56","e0a2bab3-0096-4010-ba90-146d8f05c444","fe7c7a65-5a96-4986-877b-b34583092bb6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["5ED","BCHR","CHR","LEG","MBS","ME4","MIR","PTC"],"rulings":[{"date":"2004-10-04","text":"If the target artifact becomes illegal before resolution, you do not gain any life."},{"date":"2013-07-01","text":"If Divine Offering resolves, but the artifact regenerates or has indestructible, you'll still gain the life."}],"rarities":["common"]},"domri's ambush":{"name":"Domri's Ambush","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"a481f910-59a8-48b0-a8e4-c24675e1a67d","metadata":{"source_printing_ids":["b0dcae59-e9be-45a8-8ed8-5b47309bb716"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["WAR"],"rulings":[{"date":"2019-05-03","text":"If either target is an illegal target as Domri’s Ambush tries to resolve, the creature you control won’t deal damage."},{"date":"2019-05-03","text":"If the creature you control is an illegal target as Domri’s Ambush tries to resolve, you won’t put a +1/+1 counter on it. If that creature is a legal target but the other target isn’t, you’ll still put the counter on the creature you control."},{"date":"2019-05-03","text":"You can’t cast Domri’s Ambush unless you choose both a creature you control and a creature or planeswalker you don’t control as targets."}],"rarities":["uncommon"]},"doom blade":{"name":"Doom Blade","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target nonblack creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"59e7f2ae-4535-4191-98be-3e65b6b2befa","metadata":{"source_printing_ids":["077d5ca8-2a94-4d79-9314-c5ca2aa4d14b","176cdb4b-6ad4-4991-8456-28579640063d","3da9358b-cfe4-4e95-9a9e-a236d6373dcf","685a74bb-f158-4d0e-b840-222ecbf107d4","6e19acff-f3dd-417a-a9ab-ea3e36c1ba61","75d96a37-bdbe-46ae-926f-8742699a0b20","7a06a6a8-34ad-464f-8311-eea6eada332e","7e89b4da-a095-4790-b1b7-2369fa221aa4","90699423-2556-40f7-b8f5-c9d82f22d52e","d21c3c86-adb0-4e79-aac5-297f2b729825","de576989-5a76-4dc4-b67a-25dd0be3cceb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMD","DDR","E01","E02","GN3","IMA","M10","M11","M12","M14","P11","PLST","PRM","SLD","STA"],"rarities":["common","uncommon","rare"]},"doomed traveler":{"name":"Doomed Traveler","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature dies, create a 1/1 white Spirit creature token with flying.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":["White"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, create a 1/1 white Spirit creature token with flying.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a30907c0-fbde-4fd3-a8c7-f304305fcea7","metadata":{"related_token_ids":["308a0f75-96d0-5730-b82b-98562a86e78d","4e0e7748-abc8-5a7b-ab2f-483c152fa372","4eabae94-60df-5ef5-857d-33b3d02d09d0","5bb80cf6-edae-5967-8e02-a2692efe9268","a86a71b8-5cf1-5e5c-bd54-c78752372371","aef0ca69-5e0e-5874-b13b-1b4c657a8c2e","afdf1b42-a3f9-50a2-bdc1-3fdb2f1992ad","ce2518f9-9b10-5646-b0c0-66fe6e097d24","d91b25f6-927e-58c1-86ab-57716579c95d","eb7e80a0-86fa-5946-9ef0-f72f36f86387"],"source_printing_ids":["1bbfd61b-fba3-4826-817a-e0eed7b8eda0","1fba63ba-4585-4c2b-9fef-9738852f4efb","32f2065f-1aff-4d6c-af4b-2c2cfb2e0595","35c69ff9-00f1-4c65-9f73-90775bf9885a","52c3f3f5-47b7-46bf-a5a8-b7a79f41236e","5642cdda-789f-4125-a9ff-7c445bb51950","5a4573af-feba-4c9d-b24b-3d15888a5ce2","652c3bbb-cac8-47ad-81de-41e954e17a29","86f7fae8-a03a-4535-83c1-cece267fedec","8a03d414-bff9-4aba-8b0a-0ed57982251e","9c5b6837-2381-4563-861c-73ef3b5341cd","9e578da8-0ae7-494f-acf3-40732e338742","a8ed737f-dbda-455c-a240-5fca57caeb64","ab2ff619-b82a-45c1-b25a-5b6ece2afdc4","c843ccbe-df68-4cc1-b403-124afb037e0c","e98c3007-c45f-4502-ae4b-693bd64f23ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","BBD","CLU","CMR","CN2","CNS","DDK","DDQ","E01","IMA","ISD","J21","J22","PLST","SIS"],"rarities":["common"]},"doomgape":{"name":"Doomgape","mana_cost":{"type":"Cost","shards":["BlackGreen","BlackGreen","BlackGreen"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":10},"toughness":{"type":"Fixed","value":10},"loyalty":null,"defense":null,"oracle_text":"Trample\nAt the beginning of your upkeep, sacrifice a creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, sacrifice a creature. You gain life equal to that creature's toughness.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ab94d8f7-f811-436a-9a22-9a12bd929e98","metadata":{"source_printing_ids":["173fd1c6-ffd9-424f-ad65-90b193edbe00","4e991cd5-8abe-46c0-8731-a58a4b4e5c92","702da51f-c4ec-4073-bee8-f8423f70b163"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDJ","EVE","PLST"],"rulings":[{"date":"2008-08-01","text":"If you have no other creatures to sacrifice, you’ll have to sacrifice Doomgape itself. You’ll gain life equal to its toughness."}],"rarities":["rare"]},"doors of durin":{"name":"Doors of Durin","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you attack, scry 2, then you may reveal the top card of your library. If it's a creature card, put it onto the battlefield tapped and attacking. Until your next turn, it gains trample if you control a Dwarf and hexproof if you control an Elf.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Hexproof"}],"condition":{"type":"IsPresent","filter":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample if you control a Dwarf and hexproof"}],"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":true,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, scry 2, then you may reveal the top card of your library. If it's a creature card, put it onto the battlefield tapped and attacking. Until your next turn, it gains trample if you control a Dwarf and hexproof if you control an Elf.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"d82c77a1-2b81-415d-9f18-47e059c15e01","metadata":{"source_printing_ids":["066abb77-5f77-4897-9ab5-16c247e8e80a","25e2fd90-95b0-4b12-846c-80bb979f0724","8ebd8813-4aaf-48bf-9243-3ec4099b8372","ec674497-2793-48f1-b7fd-6bbde96bda10"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["LTR","PLTR"],"rulings":[{"date":"2023-06-16","text":"If the creature put onto the battlefield this way is a Dwarf and/or Elf, Doors of Durin will see it when checking whether you control a Dwarf or Elf."}],"rarities":["rare"]},"doran, besieged by time":{"name":"Doran, Besieged by Time","mana_cost":{"type":"Cost","shards":["White","Black","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Druid"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Each creature spell you cast with toughness greater than its power costs {1} less to cast.\nWhenever a creature you control attacks or blocks, it gets +X/+X until end of turn, where X is the difference between its power and toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"AttacksOrBlocks","execute":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Difference","left":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Recipient"}}},"right":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Recipient"}}}}},"toughness":{"type":"Quantity","value":{"type":"Difference","left":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Recipient"}}},"right":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Recipient"}}}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control attacks or blocks, it gets +X/+X until end of turn, where X is the difference between its power and toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature spell you cast with toughness greater than its power costs {1} less to cast."}],"replacements":[],"color_override":["Black","Green","White"],"color_identity":["Black","Green","White"],"scryfall_oracle_id":"dd35a377-0865-4b25-bd0f-aaead29a9f0e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["568aa70a-6765-486a-bd37-5d38b16c46de","9f0a1644-58bb-4826-9832-0ffc372fac1e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL","PECL"],"rulings":[{"date":"2025-11-17","text":"Doran's first ability applies only to generic mana in the total cost of creature spells you cast with toughness greater than their power."},{"date":"2025-11-17","text":"The value of X is calculated only once, as Doran's last ability resolves."},{"date":"2025-11-17","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as a flashback cost), add any cost increases (such as kicker costs), then apply any cost reductions (such as that of this ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."},{"date":"2025-11-17","text":"To find the difference between a creature's power and its toughness, subtract the smaller of those two numbers from the larger one. For example, the difference between the power and toughness of a 3/5 creature is 2. The difference between the power and toughness of a 5/3 creature is also 2."}],"rarities":["rare"]},"dovescape":{"name":"Dovescape","mana_cost":{"type":"Cost","shards":["WhiteBlue","WhiteBlue","WhiteBlue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({W/U} can be paid with either {W} or {U}.)\nWhenever a player casts a noncreature spell, counter that spell. That player creates X 1/1 white and blue Bird creature tokens with flying, where X is the spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Bird","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Bird"],"colors":["White","Blue"],"keywords":["Flying"],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"TriggeringPlayer"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts a noncreature spell, counter that spell. That player creates X 1/1 white and blue Bird creature tokens with flying, where X is the spell's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"d9f4af37-c85e-44ab-9fea-3c67e2f3cf27","metadata":{"related_token_ids":["26ea98f8-3e82-5523-92a6-09df8b92e271"],"source_printing_ids":["8ebc97bd-508f-4af5-a308-46cb1f256534","b6e3d6e6-ac17-4d73-acac-089442de4af6","e2bd6ecd-a786-4c83-99c5-50515a691417"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS","GK2","SLD"],"rulings":[{"date":"2006-05-01","text":"If a split card is cast, Dovescape makes tokens equal to the mana value of the half that was cast."},{"date":"2006-05-01","text":"The Bird tokens are created even if the spell isn't countered by Dovescape's ability. This may happen because the spell can't be countered, because it's already been countered, or because it's otherwise been removed from the stack by the time Dovescape's ability resolves."}],"rarities":["rare"]},"dread fugue":{"name":"Dread Fugue","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {2}{B} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nTarget player reveals their hand. You choose a nonland card from it [with mana value 2 or less]. That player discards that card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":2}}]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals their hand. You choose a nonland card from it with mana value 2 or less. That player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals their hand. You choose a nonland card from it. That player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"efe4194a-b3c5-4308-abfe-553e035f5e64","metadata":{"source_printing_ids":["0ad4c472-b8ce-4ae0-a6f0-726ea74722c5","ef8a7485-1630-40f4-8e70-3abd297e8983"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["uncommon"]},"dredger's insight":{"name":"Dredger's Insight","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever one or more artifact and/or creature cards leave your graveyard, you gain 1 life.\nWhen this enchantment enters, mill four cards. You may put an artifact, creature, or land card from among the milled cards into your hand. (To mill four cards, put the top four cards of your library into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more artifact and/or creature cards leave your graveyard, you gain 1 life.","constraint":null,"condition":null,"batched":true},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":4},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, mill four cards. You may put an artifact, creature, or land card from among the milled cards into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3f21c1c6-7992-4036-ad3e-b599153e54fe","metadata":{"source_printing_ids":["148400a0-7819-4551-9815-9357eed1db4d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT"],"rarities":["uncommon"]},"dromoka's command":{"name":"Dromoka's Command","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Prevent all damage target instant or sorcery spell would deal this turn.\n• Target player sacrifices an enchantment of their choice.\n• Put a +1/+1 counter on target creature.\n• Target creature you control fights target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"AllDamage","damage_source_filter":{"type":"And","filters":[{"type":"ParentTargetSlot","index":0},{"type":"Or","filters":[{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]}]},{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]}]}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"subject":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"3bd8ea71-cbcc-4659-b9a8-88cf27ee12d8","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Prevent all damage target instant or sorcery spell would deal this turn.","Target player sacrifices an enchantment of their choice.","Put a +1/+1 counter on target creature.","Target creature you control fights target creature you don't control."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["1437f747-51b7-4fe1-bd98-282a27c3470f","43571705-6d53-4ec1-9159-c9c98771b3b6","4e5d0d2a-4984-47f9-b791-4055c8298ac1","df1e43a8-0adc-4e26-bc56-6b914bd35838","f356a294-a032-4457-b891-09806fab050a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","DTK","HA5","MOC","PDTK","PLST"],"rulings":[{"date":"2015-02-25","text":"Although most instants and sorceries that cause damage to be dealt are the sources of that damage, a few cause other objects to deal damage (for example, spells that cause creatures to fight). The first ability of Dromoka's Command won't prevent damage caused by those other sources."},{"date":"2015-02-25","text":"As the spell resolves, follow the instructions of the modes you chose in the order they are printed on the card. For example, if you chose the second and fourth modes of Ojutai's Command, you would gain 4 life and then draw a card. (The order won't matter in most cases.)"},{"date":"2015-02-25","text":"If a Command is copied, the effect that creates the copy will usually allow you to choose new targets for the copy, but you can't choose new modes."},{"date":"2015-02-25","text":"If all targets for the chosen modes become illegal before the Command resolves, the spell won't resolve and none of its effects will happen. If at least one target is still legal, the spell will resolve but will have no effect on any illegal targets."},{"date":"2015-02-25","text":"You can choose a mode only if you can choose legal targets for that mode. Ignore the targeting requirements for modes that aren't chosen. For example, you can cast Ojutai's Command without targeting a creature spell provided you don't choose the third mode."},{"date":"2015-02-25","text":"You can target any player with the second ability, including one that doesn't control an enchantment."},{"date":"2015-02-25","text":"You choose the two modes as you cast the spell. You must choose two different modes. Once modes are chosen, they can't be changed."}],"rarities":["rare"]},"dryad arbor":{"name":"Dryad Arbor","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land","Creature"],"subtypes":["Forest","Dryad"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"(This land isn't a spell, it's affected by summoning sickness, and it has \"{T}: Add {G}.\")","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green"],"scryfall_oracle_id":"e996cd67-739c-40f4-b276-0042acf26c71","metadata":{"source_printing_ids":["42852efb-6ab1-42cf-8678-8154f29039bd","5c4fb7f9-a551-4253-a46e-f6284d355388","7d131beb-9458-4ad4-8074-85e116a3d24d","8cee476d-42e1-4997-87af-73e18f542167","bb3a843b-2dea-4b44-be74-c09c18b9b969","e3ddbebf-72cd-4d1b-ba0d-d94934654ab7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC","FUT","MB2","PLST","SLD","TSR","V12"],"rulings":[{"date":"2011-09-22","text":"If Dryad Arbor is changed into another basic land type (such as by Sea's Claim), it continues to be a creature and a Dryad."},{"date":"2013-06-07","text":"Although originally printed with a characteristic-defining ability that defined its color, this card now has a color indicator. This color indicator can't be affected by text-changing effects (such as the one created by Crystal Spray), although color-changing effects can still overwrite it."},{"date":"2021-03-19","text":"Dryad Arbor is played as a land. It doesn't use the stack, it's not a spell, it can't be responded to, it has no mana cost, and it counts as your land play for the turn."},{"date":"2021-03-19","text":"Due to its color indicator (appearing to the left of its type line), Dryad Arbor is green. Color indicators apply in all zones, not just the battlefield."},{"date":"2021-03-19","text":"Forest is a land type and Dryad is a creature type."},{"date":"2021-03-19","text":"If Dryad Arbor is changed into another basic land type, it continues to be a green Dryad creature."},{"date":"2021-03-19","text":"If a Dryad Arbor gains flash, or you have the ability to play Dryad Arbor as though it had flash (due to Teferi, Mage of Zhalfir or Scout's Warning, for example), you can ignore the normal timing rules for when during your turn you can play a land, but not any other restrictions. You can't play Dryad Arbor during another player's turn, and you can't play Dryad Arbor if you don't have any land plays remaining."}],"rarities":["uncommon","rare"]},"durkwood tracker":{"name":"Durkwood Tracker","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{G}, {T}: If this creature is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{G}, {T}: If ~ is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9216c2e5-4cfe-4945-b45f-20a1e0d308a0","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"{1}{G}, {T}: If this creature is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals da","line_index":0}],"metadata":{"source_printing_ids":["b49f5835-c933-4ba7-a3c9-34f4eb01f00d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TSP"],"rulings":[{"date":"2006-09-25","text":"If Durkwood Tracker has left the battlefield before the ability resolves, the ability doesn’t do anything. If the targeted creature has left the battlefield before the ability resolves, the ability doesn’t resolve."}],"rarities":["uncommon"]},"duskmantle seer":{"name":"Duskmantle Seer","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your upkeep, each player reveals the top card of their library, loses life equal to that card's mana value, then puts it into their hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each player reveals the top card of their library, loses life equal to that card's mana value, then puts it into their hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"d8d9c7e2-8ae7-4e1c-9859-bb3b85a48117","metadata":{"source_printing_ids":["4946e4f9-aab3-4f81-af44-f6b03cd07dc8","4d6d4280-4a45-4e77-a33e-58955d096adc","63711861-87e0-4a63-8b7b-f834aa5f3f18","9c58a1e6-be79-4eb3-94a9-d94b40a7cb15"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C18","CLU","CN2","GTC"],"rulings":[{"date":"2013-01-24","text":"The cards put into hands this way are not “drawn.” For example, you couldn’t reveal a card with miracle put into your hand this way (but it also won’t count as the first card you’ve drawn this turn either)."},{"date":"2013-01-24","text":"The loss of life is simultaneous. If this causes both players to end up at 0 or less life, the game will be a draw. In a multiplayer game, players with 0 or less life will lose the game."}],"rarities":["rare","mythic"]},"earthbender ascension":{"name":"Earthbender Ascension","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, earthbend 2. Then search your library for a basic land card, put it onto the battlefield tapped, then shuffle.\nLandfall — Whenever a land you control enters, put a quest counter on this enchantment. When you do, if it has four or more quest counters on it, put a +1/+1 counter on target creature you control. It gains trample until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 2. Then search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"quest","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"quest"}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, put a quest counter on ~. When you do, if it has four or more quest counters on it, put a +1/+1 counter on target creature you control. It gains trample until end of turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f8966fd5-2926-4ba0-b7d6-cfea40cd4e05","metadata":{"source_printing_ids":["590a58ab-5e98-4031-8aa6-ce396dc1429f","826b4f26-419a-4d74-8c70-275555092095"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"The land that the first ability searches for is not on the battlefield when you select targets for earthbend, so it cannot be the land that you earthbend."}],"rarities":["rare"]},"earthbending lesson":{"name":"Earthbending Lesson","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Lesson"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Earthbend 4. (Target land you control becomes a 0/0 creature with haste that's still a land. Put four +1/+1 counters on it. When it dies or is exiled, return it to the battlefield tapped.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":4},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":"Earthbend 4.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e113f0f-4469-4276-82e1-0a804f3de444","metadata":{"source_printing_ids":["eccd63b3-3a3a-4661-9d6e-fb8152429bdb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TLA"],"rarities":["common"]},"earthbending student":{"name":"Earthbending Student","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior","Ally"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, earthbend 2. (Target land you control becomes a 0/0 creature with haste that's still a land. Put two +1/+1 counters on it. When it dies or is exiled, return it to the battlefield tapped.)\nLand creatures you control have vigilance. (Attacking doesn't cause them to tap.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 2.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature","Land"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Vigilance"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Land creatures you control have vigilance."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8f8fd2ba-df0e-49bd-a916-cc4f50b9fa24","metadata":{"source_printing_ids":["1f068ce9-f4c2-4d40-bfa3-7f21f6d3b0b7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TLE"],"rarities":["uncommon"]},"effie, fast learner":{"name":"Effie, Fast Learner","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Survivor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist\nSurvival — At the beginning of your second main phase, if Effie is tapped, put a +1/+1 counter on each tapped creature you control. Then seek a Survivor card with mana value less than or equal to the number of tapped creatures you control.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Seek","filter":{"type":"Typed","type_filters":[{"Subtype":"Survivor"}],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}}}}]},"count":{"type":"Fixed","value":1},"destination":"Hand","enter_tapped":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PostCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your second main phase, if ~ is tapped, put a +1/+1 counter on each tapped creature you control. Then seek a Survivor card with mana value less than or equal to the number of tapped creatures you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"SourceIsTapped"},"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"b0509fea-4850-4434-95f6-733fcfdd03bd","brawl_commander":true,"is_commander":true,"legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDSK"]},"eladamri, korvecdal":{"name":"Eladamri, Korvecdal","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elf","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may cast creature spells from the top of your library.\n{G}, {T}, Tap two untapped creatures you control: Reveal a card from your hand or the top card of your library. If you reveal a creature card this way, put it onto the battlefield. Activate only during your turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Controller"},"card_filter":{"type":"Any"},"count":null},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},{"type":"Tap"},{"type":"TapCreatures","count":2,"filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{G}, {T}, Tap two untapped creatures you control: Reveal a card from your hand or the top card of your library. If you reveal a creature card this way, put it onto the battlefield. Activate only during your turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Cast","alt_cost":null}},"affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast creature spells from the top of your library."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9aff3d55-e25d-4f06-a783-c3aa9eb9fd50","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["86029eaa-b5d3-40ba-8eba-6e6002ea4325","89e17861-e0e6-4660-8705-6c71f10d1f19","cc45370c-79f4-428b-ac65-8397e1190cfd","dfdabdda-bd46-4ea2-8b37-5d7f6cec6aff"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Because you never \"cast\" a land card, Eladamri, Korvecdal doesn't allow you to play a land creature (such as Dryad Arbor) from the top of your library."},{"date":"2024-06-07","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast a spell from the top of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2024-06-07","text":"You can look at the top card of your library whenever you want (with one restriction; see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2024-06-07","text":"You must pay all costs and follow all timing rules for spells cast from the top of your library this way."}],"rarities":["mythic"]},"eldrazi temple":{"name":"Eldrazi Temple","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{T}: Add {C}{C}. Spend this mana only to cast colorless Eldrazi spells or activate abilities of colorless Eldrazi.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}},"restrictions":[{"SpellTypeOrAbilityActivation":"Colorless Eldrazi"}]},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}{C}. Spend this mana only to cast colorless Eldrazi spells or activate abilities of colorless Eldrazi.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7fab8d65-af51-47d3-8f10-2676bf6e8ba3","metadata":{"source_printing_ids":["00372c7a-2e83-4a26-9642-0d092dfcf861","1ab30d54-6043-4361-b221-268813f06a72","315924c9-77e3-405b-9bbf-852ed563c6e3","4f0ee055-1b1e-4ffa-9eb5-9ce7e8965f71","c42049e2-fe4e-4fe9-9599-faf1af50b97d","cbab7e1f-305e-4733-aa70-b27285740925","e9cb2f3d-0ad8-4d5a-a51d-e161ec311b09"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DDP","EOS","M3C","MM2","PLST","ROE","SLD"],"rulings":[{"date":"2016-04-08","text":"The mana generated by the last ability can’t be spent to activate abilities of Eldrazi sources that aren’t on the battlefield."}],"rarities":["uncommon","rare"]},"electrosiphon":{"name":"Electrosiphon","mana_cost":{"type":"Cost","shards":["Blue","Blue","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. You get an amount of {E} (energy counters) equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainEnergy","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. You get an amount of {E} equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"bff9105f-d8d4-4412-88d9-c9697581ebe9","metadata":{"source_printing_ids":["5f388077-d7a5-41a2-a9e9-4c3a5f7c6b48","8377fce8-edc8-4926-bf75-57162ff6df9f","b7af3801-d036-4395-8c39-1f46e7de9b7a","c17762d3-b7d2-43c9-9983-046b9ec1d5df"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Energy counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Energy counters aren’t mana. They don’t go away as steps, phases, and turns end, and effects that add mana “of any type” can’t give you energy counters."},{"date":"2024-03-08","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell’s mana value."},{"date":"2024-03-08","text":"If a spell or ability with one or more targets states that you “may pay” some amount of {E}, and each permanent that it targets has become an illegal target, the spell or ability won’t resolve. You can’t pay any {E} even if you want to."},{"date":"2024-03-08","text":"If an effect says you get one or more {E}, you get that many energy counters. To pay one or more {E}, you lose that many energy counters. You can’t pay more energy counters than you have. Any effects that interact with counters a player gets, has, or loses can interact with energy counters."},{"date":"2024-03-08","text":"Keep track of how many energy counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine. (At higher levels of tournament play, dice may not be allowed for tracking counters that players have.)"},{"date":"2024-03-08","text":"Some spells and abilities that give you {E} may require targets. If each target chosen is an illegal target as that spell or ability tries to resolve, it won’t resolve. You won’t get any {E}."},{"date":"2024-03-08","text":"Some triggered abilities state that you “may pay” a certain amount of {E}. You can’t pay that amount multiple times to multiply the effect. You simply choose whether or not to pay that amount of {E} as the ability resolves."},{"date":"2024-03-08","text":"Some triggered abilities that state that you “may pay” a certain amount of {E} describe an effect that happens “If you do.” In that case, no player may take actions to try to stop the ability’s effect after you make your choice. If the payment is followed by the phrase “When you do,” then you’ll choose any targets for that reflexive triggered ability and put it on the stack before players can take actions."},{"date":"2024-03-08","text":"{E} is the energy symbol. It represents one energy counter."}],"rarities":["rare"]},"electryte":{"name":"Electryte","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Trilobite","Beast"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to defending player, it deals damage equal to its power to each blocking creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Blocking"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":null,"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to defending player, it deals damage equal to its power to each blocking creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5ff0c25f-4593-460b-9d7f-d9c37f135a18","metadata":{"source_printing_ids":["85c3d04f-4010-4db3-9e4e-afa8116b263d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["USG"],"rarities":["rare"]},"elemental spectacle":{"name":"Elemental Spectacle","mana_cost":{"type":"Cost","shards":["Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Vivid — Create a number of 5/5 red and green Elemental creature tokens equal to the number of colors among permanents you control. Then you gain life equal to the number of creatures you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Elemental","power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"types":["Creature","Elemental"],"colors":["Red","Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"DistinctColorsAmongPermanents","filter":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Vivid — Create a number of 5/5 red and green Elemental creature tokens equal to the number of colors among permanents you control. Then you gain life equal to the number of creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dd963396-3f81-49ad-a68e-87b9764d7ac5","metadata":{"related_token_ids":["c42bd713-6c59-5321-86a6-83cd1416b195"],"source_printing_ids":["6251ca05-7eae-493c-ade3-8a5ebabfe43d","b012cbef-c9bc-41ac-8318-f1687340c5fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ECC"],"rarities":["rare"]},"elusive otter":{"name":"Elusive Otter","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Otter"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)\nCreatures with power less than this creature's power can't block it.","non_ability_text":null,"flavor_name":null,"keywords":["Prowess"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures with power less than ~'s power can't block it."}],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"54175132-2c44-4749-8dfd-d08dcc63e4b3","metadata":{"source_printing_ids":["bc9bdf96-3e3b-4dca-aae2-e81d4cbeafe8","bdb79d68-c3af-4091-b7db-005247191da8","c5a61619-f951-42ff-8246-c51ee5dc18c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["PWOE","SOC","WOE"],"rulings":[{"date":"2023-09-01","text":"If some of the creatures are illegal targets as Grove's Bounty tries to resolve, the original distribution of counters still applies and the counters that would have been put on illegal targets are lost."},{"date":"2023-09-01","text":"You choose how the counters will be distributed as you cast Grove's Bounty. Each target must receive at least one +1/+1 counter."},{"date":"2023-09-01","text":"You compare Elusive Otter's power to the power of any creature trying to block it only as blockers are assigned. Once Elusive Otter has been legally blocked by a creature, changing the power of either creature won't change or undo the block."},{"date":"2025-06-06","text":"An adventurer card uses only its non-Adventure characteristics in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Jidoor, Aristocratic Capital is a colorless Town land card whose mana value is 0. It can't be the target of Sorceress's Schemes, which reads in part \"Return target instant or sorcery card from your graveyard or exiled card with flashback you own to your hand.\""},{"date":"2025-06-06","text":"An effect may refer to a card, spell, or permanent that \"has an Adventure.\" This refers to a card, spell, or permanent that has an adventurer card's set of alternative characteristics, even if they're not being used and even if that card was never cast as an Adventure."},{"date":"2025-06-06","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2025-06-06","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may play it using its primary characteristics. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to play that card from exile later."},{"date":"2025-06-06","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to play it with its primary characteristics."},{"date":"2025-06-06","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to play the copy as a permanent."},{"date":"2025-06-06","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2025-06-06","text":"If an effect refers to a card, spell, or permanent that has an Adventure, it won't find an instant or sorcery spell on the stack that's been cast as an Adventure."},{"date":"2025-06-06","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2025-06-06","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if you control Traveling Chocobo (\"You may play lands and cast Bird spells from the top of your library.\") and Jidoor, Aristocratic Capital is on top of your library, you can play Jidoor, Aristocratic Capital, but you can't cast Overture."},{"date":"2025-06-06","text":"When playing a card as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The resulting spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2025-06-06","text":"You must still follow any timing restrictions and permissions for the card you play from exile. In the case of any of the five lands in this release, you'll be able to play it only during your main phase while the stack is empty and only if you have an available land play remaining."}],"rarities":["rare"]},"embiggen":{"name":"Embiggen","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Until end of turn, target non-Brushwagg creature gets +1/+1 for each supertype, card type, and subtype it has.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectTypelineComponentCount","scope":{"type":"Recipient"}}}},"toughness":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectTypelineComponentCount","scope":{"type":"Recipient"}}}},"target":{"type":"Typed","type_filters":["Creature",{"Non":{"Subtype":"Brushwagg"}}],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Until end of turn, target non-Brushwagg creature gets +1/+1 for each supertype, card type, and subtype it has.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8b7335e2-0e79-4406-84c1-d6b707cb72c3","metadata":{"source_printing_ids":["1b759c27-9fb6-4c23-adc1-f6d3f3a0eb52","22f31b7e-fb62-4bec-b726-4da344d2ab82"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["UNF"],"rulings":[{"date":"2022-10-07","text":"All subtypes count, including those that aren’t creature types. Good news for the Artifact Creature — Treasure Dogs out there."},{"date":"2022-10-07","text":"Brushwaggs know what they did."},{"date":"2022-10-07","text":"The bonus is calculated as Embiggen resolves. After that point, the bonus doesn’t change no matter what happens to the creature’s types."},{"date":"2022-10-07","text":"Token is not a type, supertype, or subtype, so it won’t ever count toward Embiggen’s effect."}],"rarities":["common"]},"emeritus of truce":{"name":"Emeritus of Truce","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, target player creates a 1/1 white and black Inkling creature token with flying. Then if an opponent controls more creatures than you, this creature becomes prepared. (While it's prepared, you may cast a copy of its spell. Doing so unprepares it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Inkling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Inkling"],"colors":["White","Black"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Player"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BecomePrepared","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}}},"comparator":"GT","rhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player creates a 1/1 white and black Inkling creature token with flying. Then if an opponent controls more creatures than you, ~ becomes prepared.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e6c41473-2398-4888-9f0c-467dce7c39a4","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["9869a753-5e41-4098-ab41-e75b4396ec50","bfd607c0-7ed7-4a4e-abdd-508080f40ef2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["mythic"]},"emissary green":{"name":"Emissary Green","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Advisor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever Emissary Green attacks, starting with you, each player votes for profit or security. You create a number of Treasure tokens equal to twice the number of profit votes. Put a number of +1/+1 counters on each creature you control equal to the number of security votes.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Vote","choices":["profit","security"],"per_choice_effect":[{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"VoteCount","choice_index":0}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"VoteCount","choice_index":1}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"starting_with":"You","voter_scope":{"type":"AllPlayers"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, starting with you, each player votes for profit or security. You create a number of Treasure tokens equal to twice the number of profit votes. Put a number of +1/+1 counters on each creature you control equal to the number of security votes.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c43e7fa5-ff93-42d9-af79-ee417a8e41a7","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["e1712205-f6a6-5ffa-befc-9becced0337f"],"source_printing_ids":["323e9430-b87c-4b02-9ade-c4c65343147b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLU"],"rulings":[{"date":"2024-02-02","text":"Abilities that trigger \"whenever players finish voting\" trigger once all players have voted or once all secret votes are revealed, but they won't go on the stack until the current spell or ability finishes resolving."},{"date":"2024-02-02","text":"Each player must vote for one of the available options. They can't abstain."},{"date":"2024-02-02","text":"In the case of non-secret voting, votes are cast in turn order, and each player will know the votes of players who voted beforehand."},{"date":"2024-02-02","text":"No player votes until the spell or ability resolves. Any responses to that spell or ability must be made without knowing the outcome of the vote."}],"rarities":["rare"]},"enduring tenacity":{"name":"Enduring Tenacity","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Snake","Glimmer"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever you gain life, target opponent loses that much life.\nWhen Enduring Tenacity dies, if it was a creature, return it to the battlefield under its owner's control. It's an enchantment. (It's not a creature.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, target opponent loses that much life.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Animate","power":null,"toughness":null,"types":["Enchantment"],"remove_types":["Creature"],"target":{"type":"None"}},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield under its owner's control. It's an enchantment.","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"98e698ae-1a69-469c-9cfb-0e3fedeb71d4","metadata":{"source_printing_ids":["59b698d6-4107-45d3-bc27-fb0746b7f91a","5d2d0033-1a73-4927-93a9-76d00ae7c6a8","d5756d4b-3068-412c-8643-880d3459151e","e74a0fbc-7150-4c44-983f-ac31e74644fd"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"A token that's a copy of Enduring Tenacity won't return to the battlefield when its last ability resolves."},{"date":"2024-09-20","text":"Each creature with lifelink dealing combat damage causes a separate life-gaining event. For example, if two creatures you control with lifelink deal combat damage at the same time, Enduring Tenacity's first ability will trigger twice and you may choose a different opponent for each trigger. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, planeswalkers, and/or battles at the same time (perhaps because it has trample or was blocked by more than one creature), the ability will trigger only once."},{"date":"2024-09-20","text":"If a nontoken permanent that's a copy of Enduring Tenacity dies while it's a creature, it will return to the battlefield as an enchantment when its last ability resolves. It won't have any card types other than enchantment."},{"date":"2024-09-20","text":"If an ability triggers whenever an opponent loses life and its effect causes you to gain life, such as the ability of Exquisite Blood, this will loop until either you win the game or a player takes an action to break the loop."},{"date":"2024-09-20","text":"If you gain an amount of life \"for each\" of something, that life is gained as one event and Enduring Tenacity's first ability triggers only once."},{"date":"2024-09-20","text":"In a Two-Headed Giant game, life gained by your teammate won't cause Enduring Tenacity's first ability to trigger, even though it caused your team's life total to increase."},{"date":"2024-09-20","text":"Snake and Glimmer are both creature types. Enduring Tenacity won't have those creature types when its last ability returns it to the battlefield because it won't be a creature."}],"rarities":["rare","mythic"]},"energy tap":{"name":"Energy Tap","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature you control. If you do, add an amount of {C} equal to that creature's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Untapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature you control. If you do, add an amount of {C} equal to that creature's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"106ae855-574b-411d-8689-cbb9eeb4f602","metadata":{"source_printing_ids":["37e69940-bdc8-48ff-a296-540343910adf","84aec48a-0b5e-4528-b52b-8d5a52384155","9f67692d-9df6-4841-a36b-26c28110b63b","de4b2432-3431-4867-a9e0-3b99eb2ccb43"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["4BB","4ED","LEG","PZ2","REN"],"rarities":["common"]},"engulfing slagwurm":{"name":"Engulfing Slagwurm","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wurm"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature blocks or becomes blocked by a creature, destroy that creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Blocks","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"ParentTarget"},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ blocks or becomes blocked by a creature, destroy that creature. You gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0340cfcb-fc96-40d2-8175-31a0093615bb","metadata":{"source_printing_ids":["8aeabc4a-7b4f-4e3d-bcc7-423bb703563a","9180de1c-27ad-48f1-b9c1-2008623911d0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["J22","SOM"],"rulings":[{"date":"2011-01-01","text":"As each ability resolves, the amount of life you gain is equal to the appropriate creature’s current toughness (if it’s somehow still on the battlefield), or its toughness as it last existed on the battlefield (in all other cases)."},{"date":"2011-01-01","text":"Engulfing Slagwurm’s ability triggers and resolves during the declare blockers step. Creatures destroyed this way will not deal combat damage."},{"date":"2011-01-01","text":"Even if the ability of an attacking Engulfing Slagwurm destroys each creature blocking it, Engulfing Slagwurm won’t deal combat damage to the player or planeswalker it’s attacking unless it somehow gains trample."},{"date":"2011-01-01","text":"If Engulfing Slagwurm’s ability resolves and the other creature is not destroyed (perhaps because it has already left the battlefield or it regenerates), you’ll still gain life equal to that creature’s toughness."},{"date":"2011-01-01","text":"If your Engulfing Slagwurm blocks or becomes blocked by multiple creatures, its ability triggers that many times. Each trigger will be associated with a specific creature. You choose which order to have the abilities resolve."}],"rarities":["rare"]},"enlightened tutor":{"name":"Enlightened Tutor","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for an artifact or enchantment card, reveal it, then shuffle and put that card on top.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Any"},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for an artifact or enchantment card, reveal it, then shuffle and put that card on top.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c5229c17-b7be-4b05-b683-f2277edc4849","metadata":{"source_printing_ids":["0760068d-71c2-4b38-9f66-4454875de27e","0c9ebec9-3474-4062-9607-2e2a72f78299","1c9675fb-1a89-420f-aea8-50e0642f549c","7e3637e8-586d-4828-b2e3-781f31f18754","8ecea08d-7d65-4d61-a34d-2f8976af5f5e","a40e9086-5fe0-4b31-bb66-f29f78ddf7eb","c48e6462-638f-4642-bba4-1bf68c1fcd0f","cbac1d27-15e2-4e2f-82ab-625a16e096cb","e869da95-2c47-4796-aadc-50652ebb4d03","f690bd2a-e565-4316-8312-3d0386c8ba36"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["6ED","DMR","EMA","J20","MIR","PAL00","PLST","PRM","TD0","TLE","WC00"],"rulings":[{"date":"2016-06-08","text":"The \"shuffle and put the card on top\" is a single action. If an effect causes the top card of the library to be face up, the second card down is not revealed."}],"rarities":["uncommon","rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":true}},"entering":{"name":"Entering","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a creature card from a graveyard onto the battlefield under your control. It gains haste until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a creature card from a graveyard onto the battlefield under your control. It gains haste until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":true}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"043370fd-9cfe-47ce-8019-e915cee1ae95","metadata":{"source_printing_ids":["66724f4e-59dd-4c70-b09b-49947320e6d1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PDGM","PRM"],"rarities":["rare"]},"erratic explosion":{"name":"Erratic Explosion","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's mana value to that permanent or player. Put the revealed cards on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"TrackedSet","id":0},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. ~ deals damage equal to that card's mana value to that permanent or player. Put the revealed cards on the bottom of your library in any order.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"8e560a3a-c81b-43b3-b622-5c66ef655647","metadata":{"source_printing_ids":["14c5e0aa-d491-4caf-86c7-555ee1bb637b","4c6da251-bf6c-4847-88a7-ee1cba30596d","9f608a7e-5555-4554-a6e7-fe00e0bbe753"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","PC2","PCA","PLST"],"rulings":[{"date":"2004-10-04","text":"If all your cards are lands, no damage is dealt."}],"rarities":["common"]},"esper terra":{"name":"Esper Terra","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment","Creature"],"subtypes":["Saga","Wizard"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI, II, III — Create a token that's a copy of target nonlegendary enchantment you control. It gains haste. If it's a Saga, put up to three lore counters on it. Sacrifice it at the beginning of your next end step.\nIV — Add {W}{W}, {U}{U}, {B}{B}, {R}{R}, and {G}{G}. Exile Esper Terra, then return it to the battlefield (front face up).\nFlying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"add","description":"Add {W}{W}, {U}{U}, {B}{B}, {R}{R}, and {G}{G}"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 4","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":4},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":["Green","Red"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"54ca5904-9099-497a-9684-101656025487","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0502c627-9f63-5b1e-b7ba-1809eefc0580"],"source_printing_ids":["0cf789e7-045c-4ad1-abc3-23eabda54f02","fbd447aa-588d-4c4d-925e-a7d3bdf6a65c","fe0aa7d7-73e7-4c8c-92b5-b923817ce461"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["FIN","PFIN"],"rarities":["mythic"]},"essence backlash":{"name":"Essence Backlash","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target creature spell. Essence Backlash deals damage equal to that spell's power to its controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target creature spell. ~ deals damage equal to that spell's power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"f51ed0b4-c144-458e-b97c-618b9e1cf25d","metadata":{"source_printing_ids":["a98609dc-ea90-4c7e-a191-5e5d0ba16847"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["RTR"],"rulings":[{"date":"2012-10-01","text":"Abilities that change the power of a creature (such as the one of Collective Blessing) affect only creatures on the battlefield. They won’t change a creature spell’s power on the stack."},{"date":"2012-10-01","text":"Essence Backlash can target a creature spell that can’t be countered. If Essence Backlash resolves, it won’t counter the spell but it will still deal damage."},{"date":"2012-10-01","text":"If the creature’s power is * and it has an ability defining its power, use that ability to determine its power."}],"rarities":["common"]},"essence warden":{"name":"Essence Warden","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Shaman"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6ca2a89e-7032-4864-b4e9-66f3178f90ab","metadata":{"source_printing_ids":["31ca84d1-30a6-432b-966c-089fb6652a89","48431d2f-4011-48d2-b556-2078c1a45d85","ab9b05fc-2884-4c0f-95ce-37cfffa902c5","da2a65d6-0887-4fe8-a6e6-909208fddd90","dd7e6400-5302-450b-8f22-4b67c8043063","ff09be4d-bbcc-4c25-9df2-b3df07fca955"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["C14","CMA","DDH","LTC","PLC","PLST","PRM"],"rulings":[{"date":"2025-01-24","text":"If this creature enters at the same time as one or more other creatures, its ability will trigger for each of those other creatures. "}],"rarities":["common"]},"evelyn, the covetous":{"name":"Evelyn, the Covetous","mana_cost":{"type":"Cost","shards":["BlueBlack","Black","BlackRed"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Vampire","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhenever Evelyn or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.\nOnce each turn, you may play a card from exile with a collection counter on it if it was exiled by an ability you controlled, and you may spend mana as though it were mana of any color to cast it.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"collection","count":{"type":"Fixed","value":1},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"Permanent","granted_to":0,"frequency":"OncePerTurn","mana_spend_permission":"AnyTypeOrColor"},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"Other":"LinkedCollectionCounterPlayPermission"},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Once each turn, you may play a card from exile with a collection counter on it if it was exiled by an ability you controlled, and you may spend mana as though it were mana of any color to cast it."}],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"4ab6f615-1f04-4ed2-88b2-49faa8356dd0","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Flash\nWhenever Evelyn or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.\nOn","line_index":0}],"metadata":{"source_printing_ids":["7abd914b-4f66-4b80-8249-86f2e77f0452","bf30b561-7ae6-4423-9184-6574e68f9038","c0dad61f-36cd-46af-82b7-a02e04efd676"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PSNC","SNC"],"rarities":["rare"]},"execute":{"name":"Execute","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target white creature. It can't be regenerated.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasColor","color":"White"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target white creature. It can't be regenerated.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"24d2cbf6-6268-4da3-8413-6c76679576fe","metadata":{"source_printing_ids":["333123bc-fb66-4b5a-bf55-045d2906c8c3","35119276-d461-4eb2-8b1b-fa73639fe1de","751e73d4-7e1c-48fd-8b6d-b66a2105a742","875500ff-bb15-4634-be05-0171cb0ac412","ee0ecbc8-767b-475c-bb74-2abc0da5d745"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","9ED","ODY"],"rarities":["uncommon"]},"exhibition tidecaller":{"name":"Exhibition Tidecaller","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Djinn","Wizard"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Opus — Whenever you cast an instant or sorcery spell, target player mills three cards. If five or more mana was spent to cast that spell, that player mills ten cards instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":10},"target":{"type":"ParentTarget"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"TriggeringSpell","metric":{"type":"Total"}}},"comparator":"GE","rhs":{"type":"Fixed","value":5}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell, target player mills three cards. If five or more mana was spent to cast that spell, that player mills ten cards instead.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d32c9439-4c97-412b-83cc-6d9acb48be3c","metadata":{"source_printing_ids":["44304d28-94da-4226-b713-b2c3a4b67e49","a58c364e-d0c5-41b9-8c8b-2e5a99468cc7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PSOS","SOS"],"rarities":["rare"]},"exile":{"name":"Exile","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target nonwhite attacking creature. You gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"~","description":"~ target nonwhite attacking creature"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ target nonwhite attacking creature. You gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8c91d50b-bf58-4d06-b3b7-4b6db867bfce","metadata":{"source_printing_ids":["108b85ff-ed03-4b3e-872f-1cad1a27b930","91212440-32f0-424f-a843-22eb23d012c8","9f717f8f-e1fc-480a-8dec-fb88814091ea","af72824b-6c9c-4435-81db-0ef9b09270fb","bf6e3ca4-5b56-40bb-bec7-c92fc7eb50d2","cba8fb8d-fdde-4e4b-9dc7-feaecf8ed222"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["6ED","ALL","ME1","PLST","VMA","WC97"],"rarities":["common","rare"]},"exotic pets":{"name":"Exotic Pets","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create two 1/1 blue Fish creature tokens with \"This token can't be blocked.\" Then for each kind of counter among creatures you control, put a counter of that kind on either of those tokens.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Fish","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Fish"],"colors":["Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"for","description":"for each kind of counter among creatures you control"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put a counter of that kind on either of those tokens"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Create two 1/1 blue Fish creature tokens with \"~ can't be blocked.\" Then for each kind of counter among creatures you control, put a counter of that kind on either of those tokens.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"497cb281-e057-42fc-937d-512855b74159","metadata":{"related_token_ids":["5cd0f0ce-7820-5507-b6db-8ceb32d7830e"],"source_printing_ids":["902f1ed8-5c10-45e4-8f2f-182e800faab4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["SNC"],"rarities":["uncommon"]},"exploration":{"name":"Exploration","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play an additional land on each of your turns.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"MayPlayAdditionalLand","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play an additional land on each of your turns."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0c2841bb-038c-4fbf-8360-bc0a1522b58d","metadata":{"source_printing_ids":["1c3fc61c-c26e-47f3-a1eb-f6f10f8469e2","2b20d3e1-62ef-44db-8109-a33d4fa3e7f1","2f09e451-0246-45a2-8bfd-07d3c65ddfe6","5b372045-a4a0-44c8-96ec-1e201d61ed26","ce4c6535-afea-4704-b35c-badeb04c4f4c","d1cbcd04-aabf-420e-9bc8-4270f78e25d7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","AA3","CNS","DMR","PRM","USG"],"rulings":[{"date":"2022-12-08","text":"Exploration’s ability is cumulative with other effects that allow you to play additional lands, including ones created by other Explorations you control."}],"rarities":["rare"]},"explosive revelation":{"name":"Explosive Revelation","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Explosive Revelation deals damage equal to that card's mana value to that permanent or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Any"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. ~ deals damage equal to that card's mana value to that permanent or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"49f01296-7b30-4d84-bfa3-6ed58cd23a33","metadata":{"source_printing_ids":["d7a38cd0-2cd3-436d-bb44-79778d5808ad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ROE"],"rulings":[{"date":"2010-06-15","text":"If all the cards in your library are land cards, you’ll reveal all of them, then arrange them in your library in whatever order you like. No damage is dealt."},{"date":"2010-06-15","text":"If the targeted permanent or player is an illegal target by the time Explosive Revelation resolves, the spell doesn’t resolve. You won’t reveal any cards from your library."},{"date":"2010-06-15","text":"Once you start revealing cards from your library, it’s too late for players to respond. If you target a creature, for example, its controller can’t wait to see how much damage will be dealt to it before casting a damage prevention spell, activating a regeneration ability, sacrificing it for some benefit, or anything else. Any such actions must be done before Explosive Revelation starts to resolve."}],"rarities":["uncommon"]},"fable of the mirror-breaker":{"name":"Fable of the Mirror-Breaker","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Create a 2/2 red Goblin Shaman creature token with \"Whenever this token attacks, create a Treasure token.\"\nII — You may discard up to two cards. If you do, draw that many cards.\nIII — Exile this Saga, then return it to the battlefield transformed under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin Shaman","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Goblin","Shaman"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, create a Treasure token.","constraint":null,"condition":null,"batched":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"UpTo","max":{"type":"Fixed","value":2}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c0957e5e-c71b-439c-931c-9f55d2f76ace","metadata":{"related_token_ids":["54edcc8d-dc97-5a6e-b42b-00d63b81e738","ebb9c0a4-c359-58de-b739-03fddd775dfa","fe4dffe8-dc27-5c0d-aaa3-589a15e78f55"],"source_printing_ids":["0b696cd1-0d72-4df5-bacc-dc77e62f9a13","24c0d87b-0049-4beb-b9cb-6f813b7aa7dc","6dee0388-a78d-4b3c-a0c5-25655e14115e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["NEO","PNEO","PRM","SCH"],"rulings":[{"date":"2022-02-18","text":"A transforming double-faced card enters the battlefield with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or you cast it transformed, in which case it enters with its back face up."},{"date":"2022-02-18","text":"Any enters-the-battlefield abilities of the copied creature will trigger when the token enters the battlefield. Any “as [this permanent] enters the battlefield” or “[this permanent] enters the battlefield with” abilities of the copied creature card will also work."},{"date":"2022-02-18","text":"Each face of a transforming double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a transforming double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2022-02-18","text":"Each transforming double-faced card in this set is cast face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2022-02-18","text":"If Reflection of Kiki-Jiki's ability creates multiple tokens due to a replacement effect (such as the one Doubling Season creates), you'll sacrifice each of them."},{"date":"2022-02-18","text":"If a copied creature is a token that isn't a copy of something else, the copy copies the original characteristics of that token as stated by the effect that created it."},{"date":"2022-02-18","text":"If a copied creature is copying something else, the token you create will use the copiable values of the target creature. In most cases, it will just be a copy of whatever that creature is copying."},{"date":"2022-02-18","text":"If another creature becomes a copy of, or enters the battlefield as a copy of, the token, that creature will copy the creature card the token is copying, except it will also have haste. However, you won't sacrifice the new copy at the beginning of the next end step."},{"date":"2022-02-18","text":"If the copied creature has {X} in its mana cost, X is 0."},{"date":"2022-02-18","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter the battlefield at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Azusa's Many Journeys, the chapter III ability will cause it to be exiled and then remain in exile."},{"date":"2022-02-18","text":"The back face of a transforming double-faced card usually has a color indicator that defines its color."},{"date":"2022-02-18","text":"The mana value of a transforming double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2022-02-18","text":"The token created by Reflection of Kiki-Jiki copies exactly what was printed on the original creature (except that the copy also has haste) and nothing else (unless it's copying a creature that's a token or that's copying something else; see below). It doesn't copy whether the creature is tapped or untapped, whether it has any counters on it or Auras and/or Equipment attached to it, or any non-copy effects that changed its power, toughness, types, color, and so on. Most notably, if the target creature isn't normally a creature, the copy won't be a creature."}],"rarities":["rare"]},"fblthp, the lost":{"name":"Fblthp, the Lost","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Homunculus"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When Fblthp enters, draw a card. If it entered from your library or was cast from your library, draw two cards instead.\nWhen Fblthp becomes the target of a spell, shuffle Fblthp into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"Or","conditions":[{"type":"ZoneChangeObjectMatchesFilter","origin":"Library","destination":"Battlefield","filter":{"type":"Any"}},{"type":"CastFromZone","zone":"Library"}]}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card. If it entered from your library or was cast from your library, draw two cards instead.","constraint":null,"condition":null,"batched":false},{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"When ~ becomes the target of a spell, shuffle ~ into its owner's library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ba5a7ac0-b625-42e9-af05-2680a01a95ed","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0b168b85-323c-4d95-80a5-851988522606","52558748-6893-4c72-a9e2-e87d31796b59","597a8a8f-84ff-4041-9c99-938454a47951","69c00ed3-cd79-4921-a6cd-a6b7f89eb53c","79b2c547-0d9e-4fd7-a399-347ad908c70b","f7308076-755c-4508-8920-5a6641a17a8a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PWAR","RVR","SLD","TSR","WAR"],"rulings":[{"date":"2021-03-19","text":"Fblthp's last ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2021-03-19","text":"Fblthp's last ability triggers only if it's on the battlefield when it becomes the target of a spell."},{"date":"2021-03-19","text":"If an effect exiles Fblthp from your library and then lets you cast that card, it's cast from exile, not from your library."},{"date":"2021-03-19","text":"If the spell that targets Fblthp has no other targets, it won't resolve (because it no longer has a legal target after Fblthp has gotten totally lost in your library)."},{"date":"2021-03-19","text":"There's normally no way to cast Fblthp from your library or to have it enter the battlefield from your library. You'll have to use other effects to find Fblthp for the bonus card draw."}],"rarities":["rare","special"]},"feed the swarm":{"name":"Feed the Swarm","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature or enchantment an opponent controls. You lose life equal to that permanent's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":"Opponent","properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature or enchantment an opponent controls. You lose life equal to that permanent's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5825997b-10d7-4a36-972c-a80ddd90b8ed","metadata":{"source_printing_ids":["029e2a27-46f2-44fa-ac7c-462c69feab95","0be3e9b2-db8f-4b1f-8f22-e2e897ed83d6","0c8edbe0-cc47-4c83-89be-b2e10c996665","1d0ce1dd-befa-428b-b7e9-2c71e328f8b1","1fd9c17b-0cbb-49b7-8fb8-6a6f319f6a05","2246c098-1071-4cc3-a60a-802406e2827b","2aa3218c-c1ca-487a-8acc-fc8554fdd5a6","57a77cbc-cbe9-44b4-9651-6967a02c7e75","5f782dca-4e1b-4b02-81c7-9df633053e78","7d95a0e0-d609-451b-b045-85990eede219","840d02c6-3d9c-47cd-9307-978d03380d0f","97ba4f5c-6336-49ed-bea4-90b745276284","9f48e48d-6bc5-4f9c-9c3e-457cf6632cf5","a3bad7f1-0b02-4499-a2e2-4625d01e3710","a776f96b-01bf-430a-b1ad-9f4651070610","c5ca70f4-2fb2-4e0b-b1d6-c9220766807f","e66d4541-160c-4137-98e7-0eaa692c7d7a","ee24a696-77ce-41d7-86cd-5999f879134b","f6b2eba7-862a-4efd-9f65-065fb2070855","f86c30e0-35f3-4da8-a28c-722254b1bbe4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BRC","C21","CLB","CMM","DSC","FDN","LCC","LTC","MAR","MIC","NCC","OMB","OTC","PLST","SCD","SLD","SOA","TDC","TLE","VOC","WHO","ZNR"],"rulings":[{"date":"2024-11-08","text":"If a permanent on the battlefield has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2024-11-08","text":"If the target permanent is an illegal target by the time Feed the Swarm tries to resolve, the spell doesn't resolve. You don't lose any life. If the target is legal but not destroyed (most likely because it has indestructible), you do lose life."},{"date":"2024-11-08","text":"The amount of life you lose is determined by the permanent's mana value as it last existed on the battlefield."}],"rarities":["common","rare"]},"felling blow":{"name":"Felling Blow","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"fbfa19ca-98bb-4c7d-a04e-920a8aafb031","metadata":{"source_printing_ids":["96948ae3-b15d-4d6d-aa73-9f52084cd903"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN"],"rulings":[{"date":"2024-11-08","text":"As Felling Blow tries to resolve, if either creature is an illegal target, the creature you control won't deal damage. If the creature you control is a legal target but the other creature isn't, your creature will still get a +1/+1 counter."},{"date":"2024-11-08","text":"You can't cast Felling Blow unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"feral encounter":{"name":"Feral Encounter","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top five cards of your library. You may exile a creature card from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card this turn. At the beginning of the next combat phase this turn, target creature you control deals damage equal to its power to up to one target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":5},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"TrackedSet","id":0},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top five cards of your library. You may exile a creature card from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card this turn. At the beginning of the next combat phase this turn, target creature you control deals damage equal to its power to up to one target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5a8196ef-24ee-40b6-97d1-8a2257180f86","metadata":{"source_printing_ids":["794c5066-724b-4f94-aa6e-7b0690dd706e","de21251f-40bf-4f7e-9e85-9033207a788f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PWOE","WOE"],"rulings":[{"date":"2023-09-01","text":"Casting Feral Encounter doesn't require any targets. As you put the delayed triggered ability on the stack at the beginning of the next combat phase this turn, you choose the target creature you control and up to one target creature you don't control."},{"date":"2023-09-01","text":"If you cast Feral Encounter and no combat phases occur later in that turn, the delayed triggered ability won't trigger."}],"rarities":["rare"]},"fierce retribution":{"name":"Fierce Retribution","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {5}{W} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy target [attacking] creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["White"],"generic":5}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target attacking creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"83094dd2-b8e9-4753-a8a0-657b446def60","metadata":{"source_printing_ids":["394651de-0fe7-412d-a2bb-de7982516374","485bd8e4-563b-43fa-b56e-21ba1462012d","92270719-352d-426f-b498-fbeaf8fd087b","9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","OTP","PLST","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["common","uncommon"]},"fiery encore":{"name":"Fiery Encore","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card, then draw a card. When you discard a nonland card this way, Fiery Encore deals damage equal to that card's mana value to target creature or planeswalker.\nStorm (When you cast this spell, copy it for each spell cast before it this turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Discard a card, then draw a card. When you discard a nonland card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"921e7f6b-bf49-46f1-9fdd-b0e5fde5a5a1","metadata":{"source_printing_ids":["3bdc3066-de4a-4cc8-9086-f90f55ba8ff5","ae544d03-2d12-4994-b573-424c41ecc91d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","PRM"],"rulings":[{"date":"2021-04-16","text":"Each copy will resolve one at a time. As each copy resolves, if you discarded a nonland card, the reflexive triggered ability triggers and you pick a target to be dealt damage. That ability will resolve before you deal with the next copy of Fiery Encore."},{"date":"2021-04-16","text":"Each copy you create because of storm will cause your magecraft abilities to trigger."},{"date":"2021-04-16","text":"If you have no cards in hand as Fiery Encore resolves, you won’t be able to discard a card, but you will draw a card. No damage will be dealt."}],"rarities":["rare"]},"final parting":{"name":"Final Parting","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for two cards. Put one into your hand and the other into your graveyard. Then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Any"},"count":{"type":"Fixed","value":2},"reveal":false,"split":{"primary_destination":"Hand","primary_count":1,"rest_destination":"Graveyard"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Search your library for two cards. Put one into your hand and the other into your graveyard. Then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a5852994-d816-4e62-8a03-254223714544","metadata":{"source_printing_ids":["94f24b7c-4952-4abc-aaba-22a529012468","de8803f6-9efa-4323-b8c5-29bdd5a48f9a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DOM"],"rarities":["uncommon"]},"flamethrower sonata":{"name":"Flamethrower Sonata","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card, then draw a card. When you discard an instant or sorcery card this way, Flamethrower Sonata deals damage equal to that card's mana value to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"Opponent","properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Discard a card, then draw a card. When you discard an instant or sorcery card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"8a9fe2dd-50a7-4010-96ba-df4dec265e16","metadata":{"source_printing_ids":["77e7417d-36b9-4a47-b6d2-aa589711a5ba","87463b68-3642-41c7-a11c-67d524759b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["PRM","PSTX","STX"],"rarities":["rare"]},"flickerwisp":{"name":"Flickerwisp","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Exile","destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b23a3d30-6b8e-4aad-890f-db0c3af43ace","metadata":{"source_printing_ids":["42de427f-d93f-42f3-9045-ced35031e871","5bb3cb5c-8d66-4f5e-a9a9-917e6045f024","5f0ed8ee-d6ea-469c-a575-6643d3995f54","6931aad2-aa2c-4069-9e5a-2566b9f3eae4","6f84f0ae-ee67-490b-9424-60ee2acb4a12","a595d04e-4cdb-49d1-a323-7b6d1e3ccbe9","b6501e4e-8188-44ed-b661-55fe32bc7fec","d319c24e-ce54-4e1f-96cc-488adc377015","d332f494-386c-4aaa-9854-d78e75a91e81","dcfcf9a7-bad6-4240-8e43-a6a81fc4fbd0","e89b5a38-e43a-4a3a-ad9d-e2c55d2126f4","edacc6f3-e105-4648-8dcc-a5c54c7ad043","f6cccf30-2025-49bb-9b1e-240bbef03f27"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","2XM","AA3","C13","C14","CMA","CMR","E01","EVE","KHC","MM3","MMA","PLST","PRM","TD0","TSR"],"rulings":[{"date":"2021-03-19","text":"Auras attached to the exiled permanent will be put into their owners' graveyards. Equipment attached to the exiled permanent will become unattached and remain on the battlefield. Any counters on the exiled permanent will cease to exist. Once the exiled permanent returns, it's considered a new object with no relation to the object that it was."},{"date":"2021-03-19","text":"If a token is exiled this way, it will cease to exist and won't return to the battlefield."},{"date":"2021-03-19","text":"If the permanent that returns to the battlefield has any abilities that trigger at the beginning of the end step, those abilities won't trigger that turn."},{"date":"2021-03-19","text":"The exiled card will return to the battlefield at the beginning of the end step even if Flickerwisp is no longer on the battlefield."}],"rarities":["uncommon","special"]},"floodpits drowner":{"name":"Floodpits Drowner","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nVigilance\nWhen this creature enters, tap target creature an opponent controls and put a stun counter on it.\n{1}{U}, {T}: Shuffle this creature and target creature with a stun counter on it into their owners' libraries.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"stun"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}{U}, {T}: Shuffle ~ and target creature with a stun counter on it into their owners' libraries.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"stun","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, tap target creature an opponent controls and put a stun counter on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"43c69d19-c06c-470a-bdba-a0335ff2d655","metadata":{"source_printing_ids":["a6a62aa3-8edb-4000-8ebd-15ec4b00eed7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"If the target creature is an illegal target as Floodpits Drowner's last ability tries to resolve, it won't resolve and none of its effects will happen. Floodpits Drowner won't be shuffled into its owner's library."}],"rarities":["uncommon"]},"foot chopper":{"name":"Foot Chopper","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this Equipment enters, create a 1/1 black Ninja creature token, then attach this Equipment to it.\nEquipped creature has flying.\nWhenever equipped creature deals combat damage to a player, you may sacrifice it. If you do, draw cards equal to its power.\nEquip {2}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"sub_ability":null,"duration":null,"description":"Equip {2}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Ninja","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Ninja"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Attach","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 black Ninja creature token, then attach ~ to it.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"TriggeringSource"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"AttachedTo"},"description":"Whenever equipped creature deals combat damage to a player, you may sacrifice it. If you do, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature has flying."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"1eed017a-342a-47a8-9395-890ef0bd1eb2","metadata":{"related_token_ids":["c54d9de8-d09a-51f5-b98e-9a0853bcd8a9"],"source_printing_ids":["f43fa5c7-51e6-4824-95f8-837ccc77a6ce"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TMC"],"rulings":[{"date":"2026-01-27","text":"Use the sacrificed creature's power as it last existed on the battlefield to determine how many cards to draw with Foot Chopper's third ability."}],"rarities":["rare"]},"force of despair":{"name":"Force of Despair","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If it's not your turn, you may exile a black card from your hand rather than pay this spell's mana cost.\nDestroy all creatures that entered this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnteredThisTurn"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures that entered this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"0f2d038e-6dab-4352-9ba7-ed9e063bb304","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"Black"},{"type":"InZone","zone":"Hand"}]}},"condition":{"type":"Not","condition":{"type":"IsYourTurn"}}}],"metadata":{"source_printing_ids":["8f497b0d-4448-4201-bd55-c147da1a216d","cbb2277d-ce6a-4c28-b868-c3d48beae7da"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH1","SLD","SLP"],"rulings":[{"date":"2019-06-14","text":"Force of Despair destroys all permanents that entered the battlefield this turn and are currently creatures. It doesn’t matter whether they were creatures as they entered the battlefield."}],"rarities":["rare"]},"forest":{"name":"Forest","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Forest"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {G}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b34bb2dc-c1af-4d77-b0b3-a0fb342a5fc6","metadata":{"source_printing_ids":["0000419b-0bba-4488-8f7a-6194544ce91e","0031d026-9e9a-46f6-8204-1acfee8b8809","006e0990-0596-4537-aced-51ac499938af","00bbaefd-e7dc-4870-ad9c-e94e27de3860","00feb2af-b363-4377-98b1-6a07df7f1acd","0120879f-df13-4583-b260-0fc298518f16","01838859-51ef-474a-9653-23dd37eed1d6","0301f00e-481d-4dbc-8fda-528d9d4ba848","03be40e3-b7d7-43ee-a526-5d56fa429ffa","04c4a529-2345-412d-a2c6-7cd9499f031c","04db1116-3819-4a57-a001-dfa7578f0f12","04dcdbcd-2c5e-4733-a4c4-c5a345e9206a","04eb20ea-1784-475e-a612-48057e5578c1","053f294b-7acb-4c1a-8d7c-e8f891df9a46","0560b5ed-821a-479f-91fb-98ade4a8d470","05683891-cdd4-4401-b7d5-0ef17e79c699","060fa791-ccae-42df-b01c-2d4446d78422","07264de1-4322-4adb-8f08-c0aa236747c7","072ba526-01bf-4488-a936-cf42ffc842c5","07531062-8a83-4716-8416-11565908143f","07eb0e22-1e19-46e0-913e-94ccbf858bb9","081c1f03-3251-42dc-b356-3454ebdabc2e","097f0f7a-0a2d-47bc-8c9c-aaad0a9d8f19","09b123bf-9e10-493a-818d-df5f2393159f","09bf63e1-fe77-4d5e-b557-13eecfbc42b4","0a45560e-ce25-45a5-aa43-aa33d1964cd8","0a854256-e8f3-4715-aec2-3af3b8e8fd28","0ae275b5-fdf8-4590-8848-432a06ce19bf","0b43815e-8b8a-4745-bdf3-f72c8d60c48c","0b741c86-a563-4180-a857-7850de6ee366","0cb7637e-785d-4716-ad06-9e786e037537","0cdbb450-4b80-4f81-9992-ee8fbeeb1857","0d5bd3e1-45ef-43b7-8796-6085842278df","0d6250d3-728b-4412-8efc-911bb6f5e910","0da5fbc2-24ad-4520-a60a-436d3a485fec","0f341b39-ac40-436b-967c-568265354886","102c2350-4929-4c81-8823-4b3e62e22dd4","1069841a-0642-4fb6-b831-d45ff7fda3af","10b3dce8-9c28-41f6-823f-a7d64dd9e33a","10e2588b-7781-418c-abc8-08601fbb2336","117ab60a-b888-4585-b0c6-769d387069f7","119c4d73-5b71-446a-a739-25d494591aa1","11c7c34c-eb81-412e-9030-f048435cbfbc","11d5ee25-43d7-4930-90a2-ba74b9cc69c9","122b5548-5ff5-43e4-b799-75c709b1c32d","12495cfa-ab19-4e9e-a49e-a94499f664a2","12a035fe-8847-4678-84f7-01bac77ae011","1345293f-e71e-4754-bf88-b3c8b9824ab3","13635ba7-0635-4c16-9e14-444470e06287","1428575c-f18e-41a0-b58a-259d2feafd06","146b803f-0455-497b-8362-03da2547070d","14c94463-31e8-4a2e-b879-d096a27cc60e","150d0710-9ecb-4187-a0f8-a70b330c8879","151fc328-0951-47fb-be07-dc4187a5c0be","158aaaad-a217-490a-8a90-31ce592ad742","15b3f35e-451e-4de6-a4f7-249287566964","1676702c-523a-4e57-9cb3-171405cab782","16f52885-1f01-4f06-90a8-1a0ecf291ab5","172e55c6-b797-4b49-94f1-cc93e4f5b939","17393110-c57e-487b-b07e-dc21a164efa7","174cb9a0-afa3-4f45-b317-238fa9d4f55f","1813119b-8604-4cd2-b731-957b5f1bb4ea","1814fc7a-0f2a-407c-9d71-e7a7339ce82c","1841ca54-d7d5-4c02-9c8b-5f59dce33a6b","184a9654-ce17-4378-b52b-fb6efbbf042f","18f4e594-01e5-40ae-903c-f55aad740de0","1908f8d2-95df-44e3-8943-568c596cd8aa","192ac805-deb4-4275-8473-01b5abb7b385","19e71532-3f79-4fec-974f-b0e85c7fe701","1a13a86b-c4c5-4a7a-9e01-8669e9ed6557","1a181800-f5ef-4019-b93d-35d8f1dbf953","1a1b6004-6dda-4495-85f7-eb8fa29873e9","1a1b7277-0c09-42ab-aa6b-542a1e402580","1a26154f-dfe5-481d-acdd-237ea08f069a","1a51949e-9031-4700-8366-a307e8f012fe","1abe7f25-71c5-4fd2-8696-0a4ce8c4b0b6","1b20aa40-2b88-4cac-ad15-f730fde60643","1bd51a22-3e0d-4826-aab7-0adbfce4478a","1c01e4ce-5d77-4bbb-9df8-39cd3a2f9e6e","1ce914d7-6a13-4f00-b8b4-05cdd410f32b","1d416790-fca9-42ab-b211-bae68858a614","1d91255d-e3d1-412b-8031-994779372496","1db496f2-6b64-4d9c-baac-b3788c632629","1def1ac1-652c-4160-9092-46549e577570","2036f825-ef57-4a40-b45f-0668d9c8ec6a","207879b4-f92a-4331-88f3-05f532a8a8e8","208014f4-eed8-4856-a9d9-dbac10c4aa6a","21a19869-85a8-4334-af5e-8d38d08955da","23b6b5a9-b564-4b18-a3e0-b9d5aec7f680","23c9425a-2093-40c1-b3a9-a882d80cf198","23e1c12f-6c6b-4e44-8fbc-e6703ffe2843","24788990-42ff-4b2b-8d01-fa2d0ec66a03","249104ba-65fc-42d6-ad8b-d97640545d89","24e71c1f-5ca9-450a-8a0f-39a03a275e97","253f6297-e76c-4003-8ddf-3fb5f2072384","2581a074-00ab-4a2d-8699-25dcd8c76393","276fa731-45b3-4418-b9c9-8543e238d55d","279ebd05-229a-4a4a-a1c0-c5f24d16dee3","283d6124-1678-46b1-a12a-69644c689e29","2950dace-a653-47e4-a80a-a3de5db8d491","2968cde0-300e-4f59-859f-a7fc189f8943","2a0bc8e3-b106-43bb-acf6-885328d24a65","2a10ed4f-2c9a-424d-bcca-730af7727854","2a4c27b7-9695-479f-a5b6-bae63a76629e","2a7aba60-d300-4c33-9e1e-846d6167dc50","2a9e6cdc-f92f-497c-8cd9-b69586098512","2b101184-71b2-4400-a5dc-4113df5a4f12","2b176d24-a4d6-489e-af69-4547693e7de1","2b86b3a4-981e-497a-b78b-30b2dbc5ea7a","2b90e88b-60a3-4d1d-bb8c-14633e5005a5","2bbc9c84-348b-40f5-ab3d-bbe8c27529a4","2c2fc9f7-21af-4416-abf5-6fcb4f543680","2c8c30af-055a-4921-99a8-f99c472c7315","2ccc7cf2-c9ed-4505-9341-7b8dcf10590f","2d3a6ecf-323d-4650-aabf-92995e3c72c6","2dbc8240-d0a1-439c-a909-95b937d70494","2e3019bf-c69e-4c61-b3d1-a8c4967031bb","2f5b488e-d725-4ef7-90f4-71091325c0b6","2f60db2d-7594-43af-8554-ba54e9023306","2fafd821-5bb3-4083-bf3b-ecc4cf6c7468","2fb2b4a1-e744-4d55-abf9-d96b5533ecae","2fd47e30-2ab0-452d-ac51-fa182c2b00fc","2fdf7380-56cb-4d34-ad05-43029341a57a","3041d539-4f15-4836-a215-afa19a5cc23f","30a4d3de-e004-4a15-9f45-4d50813de533","30c96a89-32e3-4412-9e79-51411362b9d5","314b835b-b03e-43fe-b924-67139e2f266a","3156ba12-cf21-48a5-aa08-74b447cafc2c","318b15ea-80b9-48df-b010-aa1aabcf51ea","31d44ab0-ca04-4b92-bbfd-587640db5552","32411c3a-da2b-4316-9848-971e90951303","32636e80-9455-43c8-b55f-dfa2d7b7465b","3279314f-d639-4489-b2ab-3621bb3ca64b","329ae876-a7ed-43e4-9ed9-ac71191ba8d2","32af9f41-89e2-4e7a-9fec-fffe79cae077","32df22d3-9b65-4b43-80d9-e4c43575ec74","3391932f-2e4f-4686-af14-67e2c31f8538","3394d804-c0e5-4901-a8ff-c1a765cc1e21","340238b7-60ce-48d1-bb73-2925df7853a3","341b05e6-93bb-4071-b8c6-1644f56e026d","34cc6a36-b551-40c7-b081-53beffbca235","34f9571c-b61c-4bc7-ac98-f6c80c47ea7d","34fa98a0-5dce-4914-a827-964c4a596ed5","35724a5c-e91a-4ff8-b404-057976a858c8","35e8b186-ea04-4895-b5b2-f02e9c848c97","36105ded-e343-4dca-84b5-afb1fd34e2da","36454f7f-0b60-451e-9b4f-2cb4c8ccc9c2","366105ea-c720-4524-8fc3-dbe82291e255","368be73f-24d2-44db-a55e-d04176db3142","36b3ffbd-3f3e-4fca-80c2-94f9fdc198a5","3758e2e6-3147-4b4f-82a7-491c963c0fa8","37876a70-a403-4d59-83cb-e1df8688e61c","37a8d9ff-291a-4862-b2e8-3db520cc9ae4","37d580df-2340-45e4-afee-c1f0313b9965","37f8d695-a3e4-4707-9db9-886849ce4c42","3812e162-3511-4988-b2a1-3bc6945ac45b","38382bb9-3b8e-4819-9998-55dbf1ab0fd7","384cbc4a-c955-45df-98fd-d448e574c130","393d66f7-7dbf-4a92-912f-377f99c8f164","398ee871-7b30-4e8c-b0d0-b85e0a37d3b1","3a11f9c9-267a-4913-97f7-78c372fe211e","3a1e5ef3-790d-4f45-a264-157448bab2e8","3a7a2a54-47e1-4694-b4f6-b7d659bb2b1f","3a9ea6ee-0150-40f1-baa3-fe637128be2f","3b1153ac-e4de-43a4-ae39-ca22a4f571da","3b84ec1e-ccce-4b8b-9302-b26f84cfa469","3c5c5d09-6f93-44f5-894d-4c7be40bb006","3ca33d91-3c1a-4351-9d9d-d46a6e3de084","3cf23791-1b15-43ee-b81a-5fe068709bc1","3cfbcefd-8b2d-4b9e-a11a-18274c3a8dd2","3d08f6a6-316d-45d8-aabe-1760a20903ac","3d365b22-2304-4f20-86f9-9560f59546f1","3dc61690-30c6-4374-8777-e1802e9e164c","3e5342f9-3f91-48e4-bfd1-49fbf9ca89cf","3e574ee5-d33d-4054-9884-fdb5fe9d73bd","3ee0a9b2-5570-44f0-bc66-6ed7677ce2e2","3efeaa30-9db9-4e68-a658-9064d6e67516","3f0218be-4a5e-40d2-ad76-b4bf12392fc6","3f72315b-4c5c-45c2-a5af-30fcfe28bb95","3f7f206a-7b5e-4fd5-8c9e-d665ac3f7dea","4016e556-5597-440d-b737-b419acb4e44e","40a62202-82ef-48fc-a28d-ff37d1af4cbc","40d4cf1d-6101-40e7-8e0a-a6ad5bd5d3fc","4118a9af-0aa0-439e-a92e-39f7c04469b7","412103f2-fdc1-4205-8f96-831186b58513","41f774cc-ac13-4bc6-967c-af09358a8da4","42154a89-c12a-48fa-8eb4-1185b5df1b38","42352899-f2f2-4dea-863b-8d685e63b454","42b8aa7c-0195-4ce9-9de4-4e6d780455aa","42d36c04-c238-412a-97de-63fc92840c1e","42efdb6a-1c54-497a-9058-af4256241649","439d196c-551e-4e38-8dbf-65b328d50df6","43b3be4a-973d-4aeb-a94e-37e2710ac178","43e7e6ec-9bfe-4062-a538-2a748d2eed1f","450d2a6a-0576-44c3-ba66-3a64f5e65fcf","451c256a-1f0e-4e57-9667-5b8cb2f18ff0","45adf695-69f3-4d71-a0dd-70d302e2a119","46196e8f-9339-4f00-b9cf-cab8f9abc80e","46c661a6-322a-4460-9d75-a2c95d1a49de","46e93212-da68-48f8-9aeb-ee5eb92e9a54","47c223fa-8173-4da2-abb0-753ffb4fc51c","47ccb7e9-3fb2-4460-b0c4-e07e3186ce66","48764854-d268-462d-a016-27329c8f062d","48811e13-5774-4da1-95ec-6ea5dc4976ad","491b26e4-1d52-457c-a00c-bdee127f8a97","49e54f0b-9ba7-4004-ba7b-682a6cb91c42","4ae04d52-92c0-493a-b677-2aa9e79bd30a","4b535df5-f79c-4ab5-9b2f-cbbb5adad70a","4c08f11e-0f3f-464e-abe9-20f18de237d8","4ce08c3b-3d08-446e-9f78-4ec22e9308db","4d1e4241-42ef-4b51-8f9b-2ab6aca31dbb","4d8edfee-7837-450a-bcf3-a7bb25670056","4dea3762-c6ae-4304-aee4-6c3f56685319","4e57a496-09ce-4c2d-9a00-0c359d01e78e","4e811a02-b749-4aed-ac7f-47957b770020","4ebd9027-5b48-42c0-9533-afe50bb101e6","4ec9b7c6-bdee-434c-bea9-1b68bee01301","4f15b112-500e-42ad-bdaa-5dadcd4351e1","4fa690e4-dbc8-4490-8958-6eb323a05daa","4fce7045-4572-4e9e-8853-2a5dcfc989ac","4fd257a5-439d-4ef8-9cc9-9741e99a04e3","5029a818-e076-4ae3-a246-693ec7615e15","5131ab8d-c884-4430-8059-9e3e1d16c747","51a55233-2e1a-4515-8fd1-354605c0c36b","52097f6a-58d3-4176-b3bf-dc94f44adf30","5257440c-ab4e-4b9e-a694-f7ff54feaa1b","52c21f91-6679-4adb-baf2-b06cf505150c","53f45c42-b2c7-4464-b708-d11c654a9ce7","543aeea7-23c1-4c7c-a377-f39c94846b5e","556ad17c-fb91-4cbc-a69c-1d36fabbada3","55b781ec-abed-41e1-85de-a60f6ac9e87e","55b9e2db-d37e-4a87-ae5a-88a8e45d7419","562b16ae-8ae7-4b2d-9098-bf3ff1429f7b","56835242-ce4b-433e-8c8b-a2749eab59de","56972713-71b5-4319-a091-706e161c198d","56afe767-c967-4094-8d60-165bc7d11ab1","56caba21-b773-4245-b3f8-3ae62725c14f","5832fffe-1f69-44b7-832b-58f064753141","586ad230-fb4b-4b34-8d5c-633726496634","59f95235-3ca9-47d7-be6a-aebfb29fcbbd","5a0df6e1-1945-49e0-8960-e7022d81cc4f","5ab2fcc5-7207-4c53-aadc-4359d5abdebf","5ac2dbbc-8bf4-45fd-a5c1-7597c885fc6b","5b5277ee-f1e0-4777-9011-d7a23c855919","5c284c81-195b-49e5-bfdd-3e0447103469","5c6b733c-b67f-472b-aea3-c59e1f78dc55","5d206442-eb93-4dc8-ae59-5b72777c961e","5dda1113-352c-471a-a7e0-a9a3cb3f19c5","5f533364-0f91-4e49-aaeb-83c4c1f6d316","5f608a10-6bd4-4579-a08a-f7e2da383794","5fca5dbb-8d5e-4471-94f6-e0944cf60ed2","6194850b-d70a-4f3e-be3e-bfb23ce1170b","61d81153-4eca-4475-82dc-5d8bc1343432","62131862-1256-4082-a83d-a0048714acb1","633eb269-916e-4d79-821e-1f304283416c","642102a2-abde-4e76-a6d6-08f7befe1196","643dbf69-1e84-4037-b582-f825e4e6c78e","6472e2a6-287f-4e7c-ad85-1454e40d4a46","650e47f3-476f-4b32-b892-c1a01335d0fe","6527c8ce-4a63-45f2-ae8e-c651e8713716","657c597e-2a5a-4b6f-9a4e-e6df84e28ad9","659a7d45-af0d-4a4a-a878-e8e40b732bfa","65aa4dcf-6e3a-4381-b5f6-5056d741ff67","65e8080f-9e4a-4fad-9ea3-09d5e0e1c816","6714be9d-8ab0-426a-be2b-c0606306ba76","673141ec-826f-4132-8282-d499990495a7","6744c441-42b3-48b2-af06-1e27ec776d97","679aa578-3b31-4b07-98b3-e00777506e32","67becef5-cd70-4fe9-b8a3-1bff2ea04ab4","68d6d1f1-2a7c-41cb-82b6-020209aff5d6","69557258-2441-4ca5-993a-8d7afb51ad3d","695de19e-801f-4f08-b44c-b0726e4aced0","6a0715a0-dce2-427d-964c-0e179309499d","6af0c659-f182-4ad4-bca7-e6c3377f808d","6b667225-a808-43e9-955e-6c4e7ecd53f2","6c39da1f-64f0-45d7-8a50-092caf2ac8f8","6cb33c43-4f6e-4052-91f0-ca9bf8db5fec","6cb8f264-cc26-476e-a3b7-53638dce7395","6cdc5ca9-6d01-4ee3-8117-3c1e74320553","6cdee883-2002-43c7-a0fd-29e7ada26963","6d3a661e-d890-4211-bc9c-8266001ebfba","6efcdb56-3f56-46dc-9309-9f5be3100f32","6f1c8cb0-38eb-408b-94e8-16db83999b3b","6fb07e09-bff6-45fd-b408-fd957f69a994","706be1bd-720d-4e74-b71f-568081afcab1","7104a533-42df-4430-87dc-e0adeb7f2320","715c6de3-5f4a-483f-9b73-ddb23207c0f4","7193cf41-e5c1-4060-a3e3-89f4d71e323b","722111d4-99f4-463b-b232-96821c18f189","7272906c-14f2-4e06-bbea-b461369e151a","72bac71a-c326-4640-bdf8-43682f59060b","72d8d9bd-b8c0-4628-bb19-6867336df7a8","73029d4b-f073-4df0-a6cc-8014284a1ced","73626fd3-0339-4351-99fc-c0507c6bab05","73a0bbd4-a420-4a90-9f20-ec0ad7e97537","743f283c-8aae-44ab-b245-c239feb23c16","74ef8358-9812-4d40-9532-d667513d7701","75d5a81e-1efc-46f3-b169-0422cbc8cd5e","76349ec5-a7ad-45cf-a6b8-1f71d7e6f74d","76426cae-c1da-41f0-afe2-1c860b41dfc2","768c4d8f-5700-4f0a-9ff2-58422aeb1dac","76d62e37-c8ab-4768-9be2-24546d5ded8c","771e307c-b2e3-47ac-aac2-59f0c3542fa6","776470f5-3a47-475b-a599-cb5fee156593","777e868d-cb88-4b8e-99d1-12ff67f5eae2","77aec0b2-30f2-4f35-a9a3-24d87795d177","782a3732-8577-4cfa-a2db-0f707735fa47","79053ce4-62d4-416c-b001-93740521fd07","794b8b40-8cab-413d-8638-011bf769f2e2","7974535c-d99b-4d69-a21d-63359e40d385","798b4f41-1e33-4da6-99c1-de926297c073","79a5c57d-aca1-4951-adb6-a2f508d43071","79bf50f3-2838-4908-8004-847ccb296fe0","7a3b0668-0a4c-489f-aa2b-4faa8ef3e429","7a80d346-84e3-4eaf-9635-09da472475d8","7ac34881-de32-42c7-af60-f992638e1da2","7ade2cdc-9625-427b-92b2-9596ac48904b","7ae6380e-b1b6-4a5a-a8d9-7cdf8eab3557","7aed6d9c-d6c6-4df3-bfae-3e0f90cd5589","7afdc917-ec37-4e03-853f-36cfe90053d9","7b042a72-c37a-487f-99cc-2c9d86b729c4","7b0af992-80e0-4ac6-a828-5eaac47eaff6","7b6c2532-be5a-4f1f-893c-36bcda2a699d","7b794c4e-573a-4401-95e1-46323261cd96","7bba93b9-5825-476e-afc9-325ad233bb4a","7c4bfc1c-20d5-40f4-8863-c69a89872159","7c507a5b-f981-4881-8c51-6c5379dfea70","7ca91ba8-c08d-4239-b9f2-d6c960466456","7cf3e898-2013-458b-b68d-def49b575dcc","7d727860-3573-4b5e-88d1-b226b85fc662","7d850739-d53e-48bc-8628-830aa74ab60c","7df94d2c-7c1f-4461-8f70-c2bd4ebb95be","7e33e540-2828-46ad-a441-366552843d9c","7e6151d4-5129-4631-84a1-5cffc551c1e9","7e703632-5ed0-4509-a12b-594269f865f1","7eee631d-de1e-4c6f-b60e-0e97a5e99fe6","7eef5e5c-27be-45f2-a9c8-4e0a65c984d4","7f087727-bbd5-4fb0-b604-82acffa02fea","7f79d663-b278-4611-ace1-e178a701b622","80716ed1-8d0e-44e6-8b18-606e80d22181","8097c9ce-8fe9-4150-9810-52f6c92c6099","8100bceb-ffba-487a-bb45-4fe2a156a8dc","8126b842-ea58-4988-8b3f-0394cf766b91","815261f8-daaa-4d76-86d9-d2801eb3f1f7","818442df-fb81-4f1c-bcf2-fbd6b05912ed","8335b9f1-e726-423b-8ba7-6151448ab3fd","835a4eed-a308-428d-ac85-e385b5d47d8e","836f0207-228e-4812-bc5b-ee22cd5fd51e","839f63ad-476a-4344-b6c3-911c1075c2b8","83caa371-9c1d-46c7-a7c9-abcaa71ebc57","845057a1-4da1-4a32-9bb2-bbf8502acd37","849969bd-60ec-4e91-9d14-3a50b0346ca9","84b87daf-c5e2-46fd-bb25-731e14fd3c8c","85a1b232-92ab-4829-9af3-26b280507dc0","88adbda4-7818-4888-a908-de6073bd0152","88c672dd-60a5-4dd3-8b9b-6aada8fd145d","88d0aca2-874c-4d91-8fe9-f8355d71aeb2","88e1bf57-cb14-4dfe-abb1-d8ed9c051f1a","88f06e37-f113-4865-9ad9-13483dd15084","894f5b1f-be1f-43e0-800a-e4808c8f467a","89ad91fc-50c2-44e0-b88e-2c13610377f9","8a73d19b-72e3-4944-ac20-5b4c7b54c2aa","8b42bde8-16c1-4804-8353-091aedde486f","8b712739-df44-4c23-b076-0fb778aa6dc4","8be6c40e-5669-417e-a655-b32b5f2bfd11","8c13cafb-3078-4856-a5b0-c38aace8a34a","8c48b157-1ecb-41e9-9697-7e2c75b22975","8c70181e-7b28-46b1-a51a-ba99e58e8566","8dc0660e-6fe0-48b9-aba0-0e7a72ea4afd","8e17db23-a8ca-416e-b978-1eae852c6690","8e3e83d2-96ba-4d5c-a1ed-6c08a90b339c","8e9ac507-7c8f-431f-8d1a-220ceeacf871","8f0fa40d-c6a6-4e2a-9121-4ea6fc8ed5d5","8f8f85ed-29ed-44f4-837a-0c6ef1e44f04","900eedf8-71b0-4b82-9709-019018bc29fe","909968b4-1b44-45af-8c24-ed477d039237","90db81be-753b-4d0e-9d66-9292364d2a60","913e6724-4860-4795-a079-f8141e25f225","91c4bd58-d32b-4d6b-b0e0-9be09c9e50dc","925e07e8-a897-443f-8962-ef11fc41002a","92af153b-5cc6-4130-8694-dcdb1fd45cdc","92c9e16d-525b-4ba9-890d-fa2719206ba0","92e67efe-cc8a-4132-9019-26ddfc72a735","92fa2676-1103-498c-a4f7-37a25e4a5643","9397010b-6116-4612-993a-11ec2a5d3115","93a889c2-9b8f-46cb-b2ed-c9c3d0336370","941546b8-8540-40dd-bacc-9b11f3d63033","95dfef30-acca-4b15-a05e-d33289055218","96c7dee9-118c-4c16-a63e-46c5b042503f","9730c936-a1fc-484d-a9ce-a91804a84609","977ec5e4-3b44-4359-9ab8-4e25e2a9ec86","97d3093b-4f83-41fb-9290-757a3b2fa468","98548336-f0f6-47ce-8ed6-977c8c8150af","98c4806b-a31a-4026-9876-eab4d0d1694b","990f4974-fcef-46d1-8baa-6a215f7f3292","99eb81c1-0607-456b-8030-e6110776e0e2","99fe8645-9bb9-40ce-aace-94c2942b3ff6","9a028172-c148-46fa-9afa-c5fdc7f9ba9e","9a667819-0b08-4044-b731-09d3bc41e2b9","9bac6e97-f2c6-444b-a811-66b30fafb744","9c0cd5d3-a53f-4241-b2d0-888e4c768ab3","9c301150-16a8-4ce3-818c-16d6fb0df1b7","9c348494-f60c-4bd1-9077-bff24f2e634b","9cbaa22a-d679-48ef-805a-d09d6f1091aa","9d12fcc7-93e4-4bc6-be4e-b383b0e75f7e","9d94fa1c-48d1-48bc-b725-5c11a158507b","9e0d673b-cd7d-4d8f-8c62-63c79531ff85","9ef5814d-2535-4bb9-95f4-f7e547a211dc","9f104987-f678-4ba4-b7f5-69ae7fdc01a3","9f9e911e-7e12-4d99-806c-5cfba19ea8f3","9fc29dea-b48c-4363-8f17-da0413a49a92","9ff9fe02-124c-4d5c-8526-a763272e05f4","a06a2952-8a9a-4f9c-a113-c24144619781","a0ae7a81-9a61-4112-af22-369c525b2eb1","a1dff5ca-1589-4baa-8dd7-447e82e24dc3","a1f48b35-5fe1-4090-ae9d-11955ee8099b","a305e44f-4253-4754-b83f-1e34103d77b0","a3209b22-56af-45ac-9224-67574c035638","a38e4ee7-6965-4e12-95d4-c9de1dbb014c","a49ff824-f9a6-457a-b1ff-c06b246d06d9","a4c99f1b-f304-42d5-bbea-32283b01d43b","a4df3e89-610c-4f42-a93a-e694342307cc","a4f7ca58-e8db-49f5-954a-c4f83fcb44b3","a5a56694-71fe-4174-8eea-5ab832d6caf6","a5f2462f-b308-480c-a371-a1eea95a6509","a63eab07-46e5-4b75-954f-b5a9f1f451cd","a6712361-976a-4ef9-bae9-48505344904e","a69545e9-7219-43f1-8a31-5035d87dca68","a7279281-42d5-4226-b841-f1f4deff919b","a793d3b8-aa7a-4679-ae28-e0ca2f265b1f","a7cdabc9-39d6-4380-8e14-e7792d7463dd","a80ca452-06d2-44ba-9ef6-9fe4b7dd81dd","a8990632-f055-4583-ae85-5ac742549b61","a8ba6d68-19da-4b85-9852-681c0fc1e400","a90b184d-70ac-4e67-b09b-3f20da560687","a9305b9c-63af-49a3-97c2-0b3597555cc2","a940a241-4efd-42f7-a670-2c4fed4755bb","a9d61651-349e-40d0-a7c4-c9561e190405","aa35174e-c0c8-4643-bc32-9a7b7c7e7d00","aa36a925-9be7-45ba-bf55-30f9a25c09c1","aab1cc13-8959-4914-afe8-58daf9529f61","aad57826-fe67-4d8f-b22d-49078804ae1a","ab82f8e3-6f48-4974-bb5c-39feddc51344","ab8affbb-d2a2-436b-bbc2-9e8b6cf0d2c4","ac82d07b-f8f2-4cdd-b799-98d4dc228e5c","acc778ae-a2d0-493f-963d-e946bd7cacd9","ad8ff40e-2d40-4557-8209-d2c84eb4ccf2","ad96467f-b418-4030-9b1b-7e95d36dd154","ade29c12-43f6-473d-bcc8-1e3f2cf4ee8f","ae21165c-cc6d-45cc-b5c1-97b73e85dddd","ae3eea1d-4d57-4aee-9ebe-a8eb594d319b","aea5c36b-c107-4daf-bedb-507b4cd64724","aec41fec-d146-40cc-8d9f-633e913f3ab3","aec7e0c1-672f-4a79-97f8-b6d5ccb3355c","af042ca5-da40-498b-a7dc-87ab41863ddc","af8a605e-73a6-4666-ae08-ec6e9845e629","afa69d38-3344-425e-88ff-0155d8bfc1f0","b0b6e3d0-bbb0-4fa3-8c01-9e2926fed10f","b0c1b0c3-a5a2-4273-93e9-24ccc0964c20","b1350577-c7eb-4d1d-afa3-874199b7d17d","b1f909e5-f993-467d-be46-10d8a67ee9f4","b275edcf-51dc-4dba-be25-875356a05074","b2f44732-17a2-4871-a968-53a32018ba8b","b346b784-7bde-49d0-bfa9-56236cbe19d9","b361b42d-401f-440a-bae9-35338b5dde0e","b38c68a5-86eb-4fb2-8a43-4a7d63195462","b38ce16b-3258-4019-9e86-156e4738aa89","b3a37f57-5d3e-488e-a909-f53bd4c2576b","b3adc4ec-2e2d-443d-aac1-e1f1733dca92","b3ed8a17-ce32-4100-8ffc-fb8af1c35142","b4075bbc-dbad-4a1e-a992-70aed713a459","b4321609-4f11-4066-9820-cbb483e9214a","b43297de-7378-474f-a85f-910fa7cbb4f4","b460f5f7-c7c9-400c-8419-23d614f45bf9","b49e6028-cb92-4a8a-8e85-4c403f55f61c","b4dd7a8a-a560-481a-a16e-dc60cdb440bb","b4ee8330-f1bf-460b-9345-00d08665e9cf","b52ff177-bafe-4e0a-a6c3-2cf012b1319f","b548b48c-a004-4f17-90d6-1ef5b9769e38","b59a8070-3bbd-4b81-855c-1c31486ff496","b5a922eb-49c7-45f0-92bc-671d7a8758f4","b5b4e14a-ab24-4740-b727-165ee9d22e99","b606f644-1728-4cb3-90ed-121838875de1","b6424d21-d852-4af5-96d7-cda2ba0e5912","b69adddd-3626-45d6-8100-26cf1f314d00","b6a46b11-3225-45aa-b54e-4d19d81b51cf","b6e049ae-bb12-41af-bbe4-ceded30bad67","b6e1c2e9-5572-4242-985d-f509d628092b","b6ec4ded-7c8d-416a-9a12-3e5d6c91ac93","b70e30de-fc01-4512-b218-a1411cb50789","b7209ed0-c0ff-458f-8f79-259955d29e01","b742ffa7-915f-45ce-b3f2-8391723bb34c","b763764f-efb0-48c6-b353-1831164c2db5","b794073f-4188-45c9-9e65-c9d7f2ecc24b","b81b803f-e065-4f79-b5e4-e45fb1815443","b8a081ef-a2d4-4989-8b06-721f8b2c9798","b977e434-3540-42a2-9a1c-5433d36d09cd","b9be1afc-eb3d-46ba-a645-ab2f33264f36","b9cf9a4b-be51-4f5d-ac0e-e4f79bbfaecd","ba2a4cbb-f325-4178-80db-7090f5672414","ba9f4afb-b884-4d63-9342-b6b938ea32a5","baad690f-4087-4ae9-8e32-9987d33c74ec","baf8a774-65f3-431e-b084-328ff1000895","bb0e5fc9-1b11-45c0-a0c7-668507cfabfb","bb6b3f80-20bf-4693-b106-cfb31a3d7f83","bb758bb6-99a7-47c2-80c2-47a56a7a4b33","bbbeb57d-5fa0-4ff7-b5e8-caafc139669b","bc476125-60d0-4a3a-bcf8-6e2e09d11179","bc9f3d1b-bb3a-4a78-9031-ed439212a48b","bd712cf8-d5aa-439f-8030-db612bf6d0b1","bdbce923-c05e-4554-8c4c-5c4e6d791856","bddc66f7-4e94-4857-ba7d-6b0083d0bfa0","be13351c-ca20-410c-8959-bbaa59816002","be4de4aa-721a-4d1f-aa7e-78beb1fe4681","be72862d-d71e-4b18-98a6-59019399f631","bf0b0bfa-5d1b-4783-b187-7aea8405e6bd","bf8bd63e-303e-402c-9ad2-4f6e55ed0e14","bfa98b17-c660-4cbf-a385-c2cb6a67254d","c086cb5e-3146-4a41-a471-fcbbf8fa4e09","c0e38987-e257-4da0-b270-bc48404947cd","c10cf58b-e01e-413e-979b-c6fe9e93100b","c151d945-7da0-4ab8-b0db-e41d10c0eb91","c1629dba-02af-4586-ba59-58faac7cf59b","c1973049-2d42-4091-9703-189ba374254d","c1c2a41c-e974-4c14-8d01-d278ecdb31bc","c1e46627-3cf3-4aca-97ba-80f9e919608c","c1e70a49-ca99-416d-be0a-0a064da44b62","c2b534b1-2d78-4de3-afc8-8bdd6ee6da82","c318bae5-5d3f-4e91-adfe-13c182511ef7","c38eb2f7-def3-4884-8825-56b8b8884f11","c46df0e0-648d-4dc9-a2c7-ac96125ba77c","c4be31c4-9cb3-4a07-865b-5621127df660","c4fec728-8e3f-427d-81ab-e06114910223","c52038c8-5bba-4d8e-845f-30af44300acc","c53e6980-5d2f-42d2-a98e-49c9c8779dcb","c5c95d38-c135-4059-9379-051b2dd33f9c","c5cbd941-53ab-4b02-b96c-a9af7767e606","c6d6876e-7d83-44bd-b721-5070f4087325","c726424a-3336-4e15-9055-4a26371df361","c75b7404-ae5a-4921-b70b-775deeb2c984","c8179106-e5d7-457a-9250-70df980b38ce","c8c84076-d503-48df-9b6c-9d4a835501b6","c8f06046-45c4-424b-8846-e0cd152f84b9","c931df5b-650a-4640-b4fa-7c883db1aed9","c9421f47-6b69-4ac1-97e3-ca0f55cd4076","c983df8f-4945-4587-ab14-79a8e30a924a","c9a8b574-280b-452a-98c9-cd775650d59c","ca6a30d9-0cee-40d0-85b5-3b3d366de5c1","cadcd72e-90ca-4cfc-a181-742e35c4a8ed","cbe793e4-c034-4a22-929d-d743c0255bf1","cc1aebd0-9b96-4ff9-b3d0-888fec778898","cc485069-e081-4e83-bbad-d5faf7a5bd03","cc5e6286-2ceb-40eb-8998-7787dd02ace5","cc8d9951-2a9e-44a6-a572-309c855f3124","cdfeb531-daac-4d64-858f-6db7d82d2b93","ce27a3ec-4652-4bf8-9f06-281f53dd966c","cee97ab6-8e81-4396-a788-db0ed0da62d2","cef7ba3a-0269-4a4b-8833-7e9e5f66013a","cf6a3ff8-5153-4616-9c3f-b71966754b52","cfacc498-f089-4ae4-8ce8-697cc671f445","cfff8acb-e330-4819-a7e4-eec27645cba2","d06fbe79-9a99-485a-b363-42b47c47a2ce","d17befb9-992d-4b30-a3fc-bbbf8839f6a9","d1d15705-981c-44db-9070-592dbeace299","d2196228-d6a4-4d9f-baf5-b7bfa3bb5ba6","d232fcc2-12f6-401a-b1aa-ddff11cb9378","d35801ab-e484-44cb-b9ec-80723cb25bc7","d4558304-7c17-4aa0-bd50-cdd95547f1a7","d65f7c03-647f-4e5a-98b1-1faa3d330e7b","d85892ae-dacd-4a55-a557-9db3c16017c7","d8a67bf6-818b-4afe-af15-3d955dc5e884","d8ecd546-2638-4338-86b5-59ab3f1303a3","d93b2614-5b15-4705-8665-fb4677f1ac45","d949485e-5188-49f4-9d30-5e135532d445","d99d5685-538d-4e6a-809b-3ebeab634363","da462ed3-c8f5-409e-bdc8-53e36a4961dd","da9e7ddc-cf71-4751-b8cf-133077687946","daff5153-cdb8-4ed2-b17e-7ee2aa689da0","dc20a07e-5f92-49c2-9c97-d5eda536d3f6","dc477b44-a7b3-4dda-b897-6f164e28541b","dcf26dff-a7f2-4873-99a6-e3cd6dfc1654","dd3cb353-050f-4eee-85bd-37bfd678446c","dd5acc74-456a-4299-8316-58c0ced0d628","dd98de13-d556-4cf3-99f3-d1c0db85cb3f","ddb35995-0298-4281-88d1-2531c93a4916","ddfcde62-1b20-48ce-8ba0-7929edcd26fc","ddfd1469-94b9-4964-ada6-4fb43b0b9282","ddfd1de7-60d3-4bf3-8909-8f4fa5045479","de0c00b6-098b-4d0e-abd4-4e12db32e024","de0da109-d1fd-447f-9684-5425f5a7d22d","de3b7f6f-58ed-4d7c-84f8-79f7989649bf","dee4121a-cd1f-4124-8242-f0eae8ef6580","dfaf517f-86a1-45eb-bd71-e0bffb610396","dfba6253-3958-43fc-b132-34a1efa45268","e0230af7-0edf-4f76-af57-44cd4ebad552","e0486be6-fc22-41b1-a7f9-a0311866ceca","e0ce5575-2d62-43c9-9c4b-fca4aff6ae4d","e0e0ad7b-dcbd-4a9b-8691-6f171425fa0b","e160ed28-7752-486e-85bb-bbff03642c67","e2ef9b74-481b-424b-8e33-f0b910f66370","e36b8794-c117-4d3d-bcde-39a3ae436f1e","e3bc9d0c-0d86-44a4-a548-a2054361a4ed","e40144ed-fe92-4fc0-8f88-9be7ff3b7051","e43b0df9-317f-4c1c-a7e3-51e81acf3bf1","e4508384-7c5b-4189-80e6-1fc8a0fd4692","e4c83b60-3d49-4fdc-a6b7-06d1a0c4a126","e52fa771-eaff-48e0-8c23-d118dc4b3438","e630a714-3c2a-4c0b-9ad5-a8d45fa0c01b","e6850740-6219-4f82-a705-2e7b20ede751","e6b72db4-03c0-43f9-9e9c-d49ac0ac7eb7","e6e08185-e901-4552-974d-a81766b4fa16","e7059825-0844-4271-89e8-645e2f515b59","e76f1045-8355-48a8-8e0d-eed17bf4ff6c","e797e006-7379-45c2-a4b7-d0ef133379df","e7f57347-7206-4a2f-a41b-0612d456cd30","e84c0880-728d-4ac2-b685-4f18f66c24db","e84c1369-68a2-4e67-979f-64decb6133a1","e8760175-e9bb-4ef9-87ca-591d1edd5163","e8e9959a-b422-4906-8d35-8b05c5dd6de1","e955ba85-fbe5-41e1-acf4-edea058dd135","e99aacd5-c692-4de8-b565-d5092598295d","e9f26305-2f99-43f2-8059-9694ad89cec6","ea3cc8ba-ab54-46d3-9c3a-91678fd8d381","ea47bbb0-6d4e-4744-94f7-0763ddc4313d","ea556a69-c487-45ca-8f60-7e89407ec7b7","eae0bd2b-6875-4823-b596-f5c7c0a0809e","eafbf7cc-f20c-49d3-85ff-406dd32f6444","eb61e54a-646b-4c0a-88fe-f55d514202aa","ec8de02c-7954-4424-8b95-a21d8e104bd4","ecd6d8fb-780c-446c-a8bf-93386b22fe95","ed189e2b-a4e5-493b-9085-a5aae892e5a8","ed22c591-19f4-4096-a08c-5523a26b307c","ed4addef-4649-401f-9810-c331ffeb8cf6","ed6ff6d7-b976-413b-b433-8ebd2f3c2a54","edb2bf35-efe6-4ad4-bf6e-55848ba71dfe","edc50993-1fd4-4dba-9d2f-ae7a18559829","ee05a26d-b872-4d49-9860-2fd982b3662f","ee1ebe0b-995f-4239-aad3-bfe471a88b6e","ee56689a-da7b-4cd7-8767-e3f514b6db9e","ee856e7a-37ee-435c-80e8-d0ac6f15892f","eea3cb6c-57b5-4ea5-8639-30d39962df2d","eeacc55d-d548-498a-8bc6-ac1ddcade841","ef37620d-4fa4-4d2f-a668-7b1e556b3b04","f0001e85-68ed-4a76-bcdb-dd57f507a6b6","f00849dd-c1ba-4171-a503-603fe77c0a43","f0c560c6-ac9f-40e9-bb23-d308a0123563","f0ca4b9f-4ee6-4ad8-a95f-326ada9de3cd","f13b34d7-e2a6-4cbc-9d5f-b6fe05a1c701","f1488e6b-f677-44c5-8ff3-6a2f9bdb28c2","f169dfb2-e4c8-46e9-8591-e51bb82da082","f20c89d9-71c9-45f5-a9cb-6e253b0a7cca","f2864a75-2945-4467-be00-3b4b71831f4f","f2bc8f49-6b8f-4466-908c-c6ff3e5c8c32","f30f54e8-eba3-4412-a805-3a834922c260","f373e6a7-319a-481b-8bf3-5f4e5d229456","f3ae3313-19c7-4a76-aea3-a19bacf5f6f8","f6302ae7-0947-4a8d-ace4-5e6741aea9ba","f6cc1b2e-945c-4d44-b973-3a299325e756","f6e1cd0b-1f50-4a56-b015-269e3a95051d","f754ff0d-fbbb-47d0-82d1-9eef034d602e","f791876a-f3fb-45b8-90a9-af846d8b8f74","f7cf3bbf-acc0-4fe7-a631-aca698190ce2","f7f865d8-fced-4763-b73e-fd40e9387e45","f82d0a1c-5812-4254-a000-e4ff9aece3d9","f8772631-d4a1-440d-ac89-ac6659bdc073","f8a0a7be-a72e-4eeb-82f8-c0eeb0e94148","f8f03bb2-313e-4688-945f-052eed678174","f8f694e1-f9c9-428e-a85c-d09b3474c79b","f9078bad-f202-469d-bdc0-359304f0b048","f954219a-fd4b-4fb1-945f-7950efc1d975","f9fe7b4b-fcd1-499b-bbb0-e13eb1ce0398","fb62605c-a58e-4e53-8336-b2bee316b5a6","fbdcbd97-90a9-45ea-94f6-2a1c6faaf965","fc141ede-0aec-48af-a24e-237fdc16cb7f","fd1b6c5c-4585-47c1-82eb-a324189f3ebd","fd638d4c-c064-44aa-9a9b-86c0dd1c4728","fe2e6db4-94a4-4fa9-be52-1ec235d2b137","ff4c78b4-7178-4a60-ba22-086fb18146df"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD1","DDD","DDE","DDG","DDH","DDJ","DDL","DDM","DDO","DDP","DDR","DDS","DDU","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","EVG","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","GVL","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PELP","PF19","PF20","PGPX","PGRU","PIP","PL25","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC04","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"frenzy sliver":{"name":"Frenzy Sliver","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"All Sliver creatures have frenzy 1. (Whenever a Sliver attacks and isn't blocked, it gets +1/+0 until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddKeyword","keyword":{"Frenzy":1}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Sliver creatures have frenzy 1."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d512d4ae-5db3-4fe5-8017-6a942004712d","metadata":{"source_printing_ids":["d796119a-f1eb-4de9-a9ca-d322017e9c5e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FUT","H09"],"rulings":[{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."},{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn’t provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it’s no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."}],"rarities":["common"]},"frontier siege":{"name":"Frontier Siege","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of each of your main phases, add {G}{G}.\n• Dragons — Whenever a creature you control with flying enters, you may have it fight target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each of your main phases, add {G}{G}.","constraint":{"type":"OnlyDuringYourMainPhase"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"subject":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control with flying enters, you may have it fight target creature you don't control.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4cfaa5cf-cc3d-49a7-9544-38a8bb7e9ec1","metadata":{"source_printing_ids":["25b37249-bf5c-48ad-a5ea-c7538cc46929","5e7ee5ff-eabc-4947-b5fe-2647c7e2eb82","62d6b939-8331-49d2-a59a-3054c7b0f353","a474981a-581a-49c0-a036-87afaaeea7ef","f419710e-3a73-4db0-bf2e-e76730f22c4d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF","SCD","TDC"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"For the \"Dragons\" ability, you decide whether the creature with flying will fight the target creature you don't control as the ability resolves."},{"date":"2014-11-24","text":"The \"Khans\" ability triggers at the beginning of both your precombat main phase and your postcombat main phase. Unused mana is lost at the end of each step and phase."},{"date":"2014-11-24","text":"The words \"Khans\" and \"Dragons\" are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. \"[Anchor word] — [Ability]\" means \"As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].\" Notably, the anchor word \"Dragons\" has no connection to the creature type Dragon."}],"rarities":["rare"]},"frostcliff siege":{"name":"Frostcliff Siege","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Jeskai or Temur.\n• Jeskai — Whenever one or more creatures you control deal combat damage to a player, draw a card.\n• Temur — Creatures you control get +1/+0 and have trample and haste.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, draw a card.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Jeskai"},"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Trample"},{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"ChosenLabelIs","label":"Temur"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control get +1/+0 and have trample and haste."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Jeskai","Temur"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Jeskai or Temur.","condition":null,"destination_zone":"Battlefield"}],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"e7af31ff-fa1b-4225-b3bc-fde80ac72d0a","metadata":{"source_printing_ids":["a750aabb-9788-494a-841f-bf75717970a7","b32ab782-5f99-489c-895a-49c5c5ea249d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"If you chose Jeskai and creatures you control deal combat damage to multiple players at the same time, Frostcliff Siege’s ability will trigger once for each player dealt combat damage this way."},{"date":"2025-04-04","text":"If you somehow control Frostcliff Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"future sight":{"name":"Future Sight","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Play with the top card of your library revealed.\nYou may play lands and cast spells from the top of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"RevealTopOfLibrary":{"all_players":false}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Play with the top card of your library revealed."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Play","alt_cost":null}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands and cast spells from the top of your library."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"93a0e938-b916-47ec-9803-369e885e253c","metadata":{"source_printing_ids":["0856f657-6664-4e33-8615-e005cb211baf","1075fe05-de20-42f2-bd5f-e67f6c40b428","639cb483-ffe2-4abc-a050-5cdc8aebd5a2","688bd665-4948-4961-aec5-f17782257f9b","82117419-4d97-4ac6-abb9-316fc6460ddf","c37c7dfa-3ef3-4958-9b54-e96c7483f054","fdf3b52f-edcd-429d-9a65-703bbd97cb5e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["DDM","EMA","MB2","MH1","ONS","PRM","SLD","VMA"],"rulings":[{"date":"2019-06-14","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability (most likely because that top card is the card you're playing), the new top card won't be revealed until you finish doing so."},{"date":"2019-06-14","text":"If the top card of your library is a land, you may play that land only if you have any available land plays."},{"date":"2019-06-14","text":"The top card of your library isn't in your hand, so you can't suspend it, cycle it, or activate any of its abilities."},{"date":"2019-06-14","text":"You must follow the normal timing permissions and restrictions for the top card of your library and pay its costs. If the card has alternative or additional costs, you may pay those. If the card has any mandatory additional costs, you must pay those."}],"rarities":["rare"]},"gargantuan gorilla":{"name":"Gargantuan Gorilla","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ape"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, you may sacrifice a Forest. If you sacrifice a snow Forest this way, this creature gains trample until end of turn. If you don't sacrifice a Forest, sacrifice this creature and it deals 7 damage to you.\n{T}: This creature deals damage equal to its power to another target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to another target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":7},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, you may sacrifice a Forest. If you sacrifice a snow Forest this way, ~ gains trample until end of turn. If you don't sacrifice a Forest, sacrifice ~ and it deals 7 damage to you.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8314bdf5-1539-4215-949e-f46584cb43bb","metadata":{"source_printing_ids":["09635727-dd96-4a4f-b225-e410c4053499","49f367c2-f47e-43e1-9936-4324be664475"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ALL","ME1"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."}],"rarities":["rare"]},"garruk relentless":{"name":"Garruk Relentless","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"When Garruk has two or fewer loyalty counters on him, transform him.\n[0]: Garruk deals 3 damage to target creature. That creature deals damage equal to its power to him.\n[0]: Create a 2/2 green Wolf creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Garruk deals 3 damage to target creature. That creature deals damage equal to its power to him.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Wolf"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":0},"sub_ability":null,"duration":null,"description":"[0]: Create a 2/2 green Wolf creature token.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":{"Unknown":"When Garruk has two or fewer loyalty counters on him"},"execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When Garruk has two or fewer loyalty counters on him, transform him.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"7cec9021-6f25-4fd8-b40e-adf4ffd3a7b8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["826738d7-4d93-5ba8-bd2d-ea8a6a986e20","838671eb-24c5-5246-b969-5190055b6e1c","9138077f-b563-55d5-a333-de099c084a2b","b0a9bf0e-8389-50f0-b7d3-23d8ca0ad8de","b101956b-c0f9-5be5-9133-a39b3fd24f40","b573ea1a-b988-52ca-b27c-d0b1f2a3cf61","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["6897514f-e396-46d6-91e3-158366c741bb","9c60d186-5c1e-4a74-80b7-0c60a6e5e79f","b4160322-ff40-41a4-887a-73cd6b85ae45","c340ad6b-aa09-4d12-a947-33b29b875158","ed8e75d9-dede-447f-a50c-c87165e436f8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["INR","ISD","PLST","SIS","SLD","V17"],"rulings":[{"date":"2011-09-22","text":"Garruk Relentless's first ability is a state-triggered ability. It triggers once Garruk has two or fewer loyalty counters on him and it can't retrigger while that ability is on the stack."},{"date":"2011-09-22","text":"Only creatures you control when the third ability of Garruk, the Veil-Cursed resolves will receive the bonus. Creatures that enter or that you gain control of later in the turn won't be affected."},{"date":"2011-09-22","text":"The number of creature cards in your graveyard is counted when the third ability of Garruk, the Veil-Cursed resolves. Once the ability resolves, the bonus doesn't change if that number changes later in the turn."},{"date":"2011-09-22","text":"The second ability of Garruk, the Veil-Cursed doesn't target a creature. However, when that ability resolves, you must sacrifice a creature if you control one."},{"date":"2011-09-22","text":"You can't activate a loyalty ability of Garruk Relentless and later that turn after he transforms activate a loyalty ability of Garruk, the Veil-Cursed."},{"date":"2011-09-22","text":"You don't add or remove loyalty counters from Garruk Relentless when he transforms into Garruk, the Veil-Cursed. In most cases, he'll have one or two loyalty counters on him."}],"rarities":["mythic"]},"garruk, apex predator":{"name":"Garruk, Apex Predator","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":"5","defense":null,"oracle_text":"[+1]: Destroy another target planeswalker.\n[+1]: Create a 3/3 black Beast creature token with deathtouch.\n[−3]: Destroy target creature. You gain life equal to its toughness.\n[−8]: Target opponent gets an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Destroy another target planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Beast","power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"types":["Creature","Beast"],"colors":["Black"],"keywords":["Deathtouch"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 3/3 black Beast creature token with deathtouch.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Destroy target creature. You gain life equal to its toughness.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddPower","value":5},{"type":"AddToughness","value":5},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +5/+5 and gains trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.","constraint":null,"condition":null,"batched":false,"attack_target_filter":"Player"}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\""}],"duration":null,"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":{"type":"Loyalty","amount":-8},"sub_ability":null,"duration":null,"description":"[−8]: Target opponent gets an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ef9a8bdc-3361-440d-89f6-0bf5ff7a09e8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["1f94e698-6428-5165-9437-8a45a5d824f4","84ecd3c1-7f96-5664-918b-4c56b9a780b6","f397d1d6-306e-5622-9a70-1df7f74e9239"],"source_printing_ids":["07dd9bfc-b6d2-493d-b825-941556018dbd","3ebd3fd3-d629-4e14-876f-55342a3a97d2","543515aa-4b8c-437c-89aa-56dd57a4a6d5","a3957b43-4d7e-41f9-b7a1-6f57d6603ab8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M15","M3C","MED","PIO","PS14"],"rulings":[{"date":"2014-07-18","text":"If you activate the third ability, and the target creature is an illegal target when the ability tries to resolve, it won’t resolve and none of its effects will happen. You won’t gain any life."},{"date":"2014-07-18","text":"The emblem is owned and controlled by the target of the ability that created it. In a multiplayer game, if Garruk’s owner leaves the game, the emblem does not."},{"date":"2014-07-18","text":"The emblem’s ability won’t trigger if a creature attacks a planeswalker."},{"date":"2014-07-18","text":"The first ability can target and destroy a Garruk planeswalker controlled by another player."}],"rarities":["mythic"]},"garruk, the veil-cursed":{"name":"Garruk, the Veil-Cursed","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"[+1]: Create a 1/1 black Wolf creature token with deathtouch.\n[−1]: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle.\n[−3]: Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Wolf"],"colors":["Black"],"keywords":["Deathtouch"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 1/1 black Wolf creature token with deathtouch.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":{"type":"Loyalty","amount":-1},"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−1]: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"CostXPaid"}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"CostXPaid"}}},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample and get +X/+X"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Loyalty","amount":-3},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[−3]: Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Green"],"color_identity":["Black","Green"],"scryfall_oracle_id":"7cec9021-6f25-4fd8-b40e-adf4ffd3a7b8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["826738d7-4d93-5ba8-bd2d-ea8a6a986e20","838671eb-24c5-5246-b969-5190055b6e1c","9138077f-b563-55d5-a333-de099c084a2b","b0a9bf0e-8389-50f0-b7d3-23d8ca0ad8de","b101956b-c0f9-5be5-9133-a39b3fd24f40","b573ea1a-b988-52ca-b27c-d0b1f2a3cf61","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["6897514f-e396-46d6-91e3-158366c741bb","9c60d186-5c1e-4a74-80b7-0c60a6e5e79f","b4160322-ff40-41a4-887a-73cd6b85ae45","c340ad6b-aa09-4d12-a947-33b29b875158","ed8e75d9-dede-447f-a50c-c87165e436f8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["INR","ISD","PLST","SIS","SLD","V17"],"rarities":["mythic"]},"gatta and luzzu":{"name":"Gatta and Luzzu","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen Gatta and Luzzu enters, choose target creature you control. If damage would be dealt to that creature this turn, prevent that damage and put that many +1/+1 counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"ParentTarget"},"scope":"AllDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Ref","qty":{"type":"EventContextAmount"}},"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, choose target creature you control. If damage would be dealt to that creature this turn, prevent that damage and put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c01d6fde-1bd2-4412-932a-9bc97d4e5aef","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4742c222-1f29-4e1a-a545-798d175255ca","ff6b510b-a425-48c8-b67e-276fba2f0ef0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"If damage that can't be prevented is dealt to the target creature after Gatta and Luzzu's last ability resolves, you still put that many +1/+1 counters on it."}],"rarities":["rare"]},"gaze of pain":{"name":"Gaze of Pain","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a target creature. If you do, it assigns no combat damage this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"AssignNoCombatDamage","affected":{"type":"ParentTarget"},"modifications":[{"type":"AssignNoCombatDamage"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a target creature. If you do, it assigns no combat damage this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"b3a479d4-3e36-496b-abf8-b83231628d76","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a ","line_index":0}],"metadata":{"source_printing_ids":["48401643-ec4b-444a-8f9a-1a5ea471ff4a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ICE"],"rulings":[{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."}],"rarities":["common"]},"gemstone caverns":{"name":"Gemstone Caverns","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this card is in your opening hand and you're not the starting player, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.\n{T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"BeginGame","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["luck",{"type":"Fixed","value":1}]]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":"If this card is in your opening hand and you're not the starting player, you may begin the game with ~ on the battlefield with a luck counter on it. If you do, exile a card from your hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"luck"}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If ~ has a luck counter on it, instead add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"c0adbddc-b070-4c5f-afe0-0474c72a9251","metadata":{"source_printing_ids":["302603c5-ced4-4ad9-801f-be5eb75096cd","7f273641-c5f3-48bc-b89e-3cff52d26a0b","8f8f02f1-ccb6-48b6-ae4e-adc4fe721606","94d74254-4750-4fb3-9e53-473a5f98b315","ad361175-1127-40e5-8990-24e651fc2a4d","bcfba3c1-b17b-4c09-94af-eb14bf2c1f77"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["EOS","LTC","PLST","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"A player's \"opening hand\" is the hand of cards the player has after all players have taken mulligans. If players have any cards in hand that allow actions to be taken with them from a player's opening hand, the starting player takes all such actions first in any order, followed by each other player in turn order. Then the first turn begins."},{"date":"2021-03-19","text":"If multiple Gemstone Caverns are put onto the battlefield under a single player's control before the game begins, the \"legend rule\" won't put the extras into that player's graveyard until just before the starting player gets priority during the game's first upkeep step. There's no opportunity to tap the extras for mana."}],"rarities":["rare","mythic"]},"ghastly death tyrant":{"name":"Ghastly Death Tyrant","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beholder","Skeleton"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, choose one —\n• Disintegration Ray — Destroy target enchantment an opponent controls. You lose life equal to its mana value.\n• Death Ray — Creatures you control gain deathtouch until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"modal":{"min_choices":1,"max_choices":1,"mode_count":2,"mode_descriptions":["Disintegration Ray — Destroy target enchantment an opponent controls. You lose life equal to its mana value.","Death Ray — Creatures you control gain deathtouch until end of turn."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"mode_abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"Opponent","properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Deathtouch"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain deathtouch"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"ccd248ec-1029-47cd-b6b4-876505efd9dd","metadata":{"source_printing_ids":["564728ed-dbf0-471c-a34a-5bd3b486b7e5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["CLB"],"rarities":["common"]},"ghostly prison":{"name":"Ghostly Prison","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":2},"scaling":{"type":"PerAffectedCreature"},"defended":"Player"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e828b189-0e8f-43b8-b909-4c23e742e028","metadata":{"source_printing_ids":["00e7e279-c11b-4978-b75e-9912d08590d2","0736e2ae-92dd-458b-a42a-d41abe14b27a","1132a103-3dd7-4a17-afdc-27200b8cfbfc","1a43d9e8-3320-4873-b322-b323c792ce5e","33d9f600-095e-4f3c-bec0-177e8aeb2422","6ef870ec-5dc4-4d50-8d8f-31839758fa57","8169d44d-b15a-47e0-b417-24f2f4945d0f","82d7de2b-c909-48dc-9ab7-c4a8328e37bb","c601064b-9edd-4c7b-aea2-782ae63851ce","da3b83cb-f778-4096-9022-b1d6637354ff","daeca212-3a70-470e-a934-9cd7e0ebf7eb","e1f723a8-0be9-4270-b451-a52d6b2fda4e","eea3623d-1d39-4045-acdb-f0fb184ccbc8","f4cfcecf-621f-4664-9b1f-65ce4f0f8ab0","f66cce50-ce75-4fa4-9d2d-85694e5938cf","fdb77ed7-ee6e-4198-b724-774e0f4874ed"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","C19","C21","CHK","CMD","CN2","F10","KHC","MKC","ONC","PC2","PCA","PLST","PRM","PZ1","SLD","SOC","SPG","TD0","TDC","VOC"],"rulings":[{"date":"2007-02-01","text":"In the Two-Headed Giant format, you still only have to pay once per creature."},{"date":"2014-02-01","text":"Unless some effect explicitly says otherwise, a creature that can't attack you can still attack a planeswalker you control."}],"rarities":["uncommon","rare"]},"giada, font of hope":{"name":"Giada, Font of Hope","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying, vigilance\nEach other Angel you control enters with an additional +1/+1 counter on it for each Angel you already control.\n{T}: Add {W}. Spend this mana only to cast an Angel spell.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]},"restrictions":[{"SpellType":"Angel"}]},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}. Spend this mana only to cast an Angel spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[{"type":"Another"}]},"description":"Each other Angel you control enters with an additional +1/+1 counter on it for each Angel you already control.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"48e6d3d8-2f27-4017-acdd-40bce8cdbc02","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0b235e9f-a8a6-45d7-b301-bc6db752dda8","637ed447-aade-4fd8-8787-2330436c750f","724c26fb-6908-47e3-bc81-6c369b043d3c","80798911-6cb6-4b67-90b9-0fb83685ea92","89e2d714-2070-434a-9a81-276e72594e06","8ae6fc26-cfad-4da8-98d9-49c27c24d293","bae077bd-fc8d-44d7-8c75-8dc8699c168e","c78b6d2e-29dd-4659-a162-3de5910ce948","d0a98f22-b1ea-4ccb-8782-bf488bcd069b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J25","PFDN","PLST","PSNC","PWCS","SLD","SNC"],"rulings":[{"date":"2024-11-08","text":"\"Each Angel you already control\" means each Angel you control other than the Angel entering, including Giada. It doesn't matter if some or all of the Angels on the battlefield entered after Giada did."}],"rarities":["rare"]},"giant killer":{"name":"Giant Killer","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Peasant"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{1}{W}, {T}: Tap target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{W}, {T}: Tap target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"91e71279-c9d2-4873-916a-59da03a65741","metadata":{"source_printing_ids":["75754468-2850-42e6-ab22-61ff7b9d1214","cdbd2541-71a3-4945-8a9d-db9e59c86784","d0960ccb-6952-4398-aa94-816e6fb04c2d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["ELD","PELD","PLST","PRM"],"rulings":[{"date":"2019-10-04","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Giant Killer is a white creature card whose mana value is 1. It can't be the target of the triggered ability of Mystic Sanctuary."},{"date":"2019-10-04","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2019-10-04","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to cast it as a permanent later."},{"date":"2019-10-04","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to cast it as a permanent spell."},{"date":"2019-10-04","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to cast the copy as a permanent."},{"date":"2019-10-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2019-10-04","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2019-10-04","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if Giant Killer is exiled with the last ability of Vivien, Champion of the Wilds, you can't cast it as Chop Down."},{"date":"2019-10-04","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2019-10-04","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you'll be able to cast it only during your main phase while the stack is empty."}],"rarities":["rare"]},"giggling skitterspike":{"name":"Giggling Skitterspike","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Toy"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nWhenever this creature attacks, blocks, or becomes the target of a spell, it deals damage equal to its power to each opponent.\n{5}: Monstrosity 5. (If this creature isn't monstrous, put five +1/+1 counters on it and it becomes monstrous.)","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[{"kind":"Activated","effect":{"type":"Monstrosity","count":{"type":"Fixed","value":5}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":5}},"sub_ability":null,"duration":null,"description":"{5}: Monstrosity 5.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"Blocks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ blocks, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"Whenever ~ becomes the target of a spell, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"ca02cb31-9850-48bf-bc8d-ed86a4d4d4f7","metadata":{"source_printing_ids":["a7360ffb-5a45-490f-9adf-d540a404e64d","fba20e7e-9581-4a9b-bdda-5c85d3450d4c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC"],"rulings":[{"date":"2024-09-20","text":"If Giggling Skitterspike is no longer on the battlefield when its second ability resolves, use its power as it last existed on the battlefield to determine how much damage it deals."},{"date":"2024-09-20","text":"Monstrous isn't an ability that a creature has. It's just something true about that creature. If the creature stops being a creature or loses its abilities, it will continue to be monstrous."},{"date":"2024-09-20","text":"Once a creature becomes monstrous, it can't become monstrous again. If the creature is already monstrous when the monstrosity ability resolves, nothing happens."}],"rarities":["rare"]},"gimbal, gremlin prodigy":{"name":"Gimbal, Gremlin Prodigy","mana_cost":{"type":"Cost","shards":["Green","Blue","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Gremlin","Artificer"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Artifact creatures you control have trample.\nAt the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Gremlin","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Gremlin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"ObjectCountDistinct","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Token"}]},"qualities":["Name"]}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature","Artifact"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Artifact creatures you control have trample."}],"replacements":[],"color_override":["Green","Red","Blue"],"color_identity":["Green","Red","Blue"],"scryfall_oracle_id":"e7441404-71ff-449e-812b-18cd52eabb98","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["ab813dd4-69b7-5723-b719-22eaecd6cbee"],"source_printing_ids":["30cd6ab7-7235-427e-bc92-c9fe6032ffa1","4a9aa899-752b-4106-89ba-9475ee777d41","f4cc58af-1226-4e6b-8f46-d46f3c3068eb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC"],"rulings":[{"date":"2023-04-14","text":"A token’s name is its subtypes plus the word “Token” unless it’s copying another object or it was given a specific name by the effect that created it. For example, the tokens created by Gimbal’s last ability are named “Gremlin Token.” These tokens have the same name as the 2/2 red Gremlin creature tokens created by Release the Gremlins."},{"date":"2023-04-14","text":"To determine the number of differently named artifact tokens you control, count each artifact token you control once, but only if its English name isn’t exactly the same as another artifact token you’ve already counted this way."}],"rarities":["mythic"]},"gisa, glorious resurrector":{"name":"Gisa, Glorious Resurrector","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"If a creature an opponent controls would die, exile it instead.\nAt the beginning of your upkeep, put all creature cards exiled with Gisa onto the battlefield under your control. They gain decayed. (A creature with decayed can't block. When it attacks, sacrifice it at end of combat.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Exile","destination":"Battlefield","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"ExiledBySource"}]},"enters_under":"You"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Decayed"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain decayed"}],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, put all creature cards exiled with ~ onto the battlefield under your control. They gain decayed.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Destroy","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"description":"If a creature an opponent controls would die, exile it instead.","condition":null}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f1354b1b-896c-4492-b0c0-3dd07c6d3917","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["63461076-a13d-488d-bd82-ceac441341c8","7473f95a-b004-41ad-9729-0242c8b2a5ee","ed32d175-2120-42b3-85f8-d8869f37efd4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID","PMID"],"rulings":[{"date":"2021-09-24","text":"Because creatures controlled by opponents aren't dying due to Gisa's replacement effect, any \"when [this creature] dies\" triggered abilities those creatures have won't trigger."},{"date":"2021-09-24","text":"Decayed does not create any attacking requirements. You may choose not to attack with a creature that has decayed."},{"date":"2021-09-24","text":"Decayed does not grant haste. Creatures with decayed that enter the battlefield during your turn may not attack until your next turn."},{"date":"2021-09-24","text":"Decayed represents a static ability and a triggered ability. \"Decayed\" means \"This creature can't block\" and \"When this creature attacks, sacrifice it at end of combat.\""},{"date":"2021-09-24","text":"Gisa does not grant haste to the creatures that are returned to the battlefield, so you normally won't be able to attack with them the turn they are returned."},{"date":"2021-09-24","text":"If a creature your opponent controls would die and more than one effect would cause it to be exiled, that opponent chooses which one to apply. If the creature is exiled due to some other replacement effect, it will not be returned to the battlefield with Gisa."},{"date":"2021-09-24","text":"Once a creature with decayed attacks, it will be sacrificed at end of combat, even if it no longer has decayed at that time."}],"rarities":["rare"]},"glacierwood siege":{"name":"Glacierwood Siege","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Temur or Sultai.\n• Temur — Whenever you cast an instant or sorcery spell, target player mills four cards.\n• Sultai — You may play lands from your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":4},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell, target player mills four cards.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Temur"},"batched":false}],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Sultai"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Temur","Sultai"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Temur or Sultai.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"295a831c-490e-42ba-afc1-dab3524a4f0c","metadata":{"source_printing_ids":["0f37fad7-2385-409b-8375-fa5dfbcad833","6626cc5e-3a9f-4832-a88a-abf6466e2bae"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Glacierwood Siege’s Sultai ability doesn’t allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2025-04-04","text":"Glacierwood Siege’s Sultai ability doesn’t change the times when you can play those land cards. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."},{"date":"2025-04-04","text":"If you somehow control Glacierwood Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"glistener elf":{"name":"Glistener Elf","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Elf","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)","non_ability_text":null,"flavor_name":null,"keywords":["Infect"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9d95d173-5c7f-4e0c-bcdc-9b90fcd7339b","metadata":{"source_printing_ids":["2de77e7b-5599-470a-b2ed-14b9bfc900e0","8b94f4c6-b518-43b3-be52-e889d1f3ea38","97685645-43ab-4dd3-926a-f7439d7a31e6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["F12","NPH","PRM","SLD"],"rarities":["common","rare"]},"glowing one":{"name":"Glowing One","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Mutant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever this creature deals combat damage to a player, they get four rad counters.\nWhenever a player mills a nonland card, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":4},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they get four rad counters.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player mills a nonland card, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b30eae2a-bc1c-45a3-93ae-e1c30d26797c","metadata":{"source_printing_ids":["a1e36b92-aa88-4536-aebc-7e84a10d73fe","b8b3537a-e44a-47ff-9687-c2172738aeed"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they’ll mill as many cards as they can."},{"date":"2024-03-08","text":"If a player is instructed to mill more than one card, Glowing One’s last ability will trigger once for each nonland card they mill during that instruction. For example, a player with four rad counters will mill four cards at the beginning of their precombat main phase. If all four of those cards are nonland cards, Glowing One’s ability triggers four times."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don’t go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger “whenever one or more nonland cards are milled” will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is “At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.”"}],"rarities":["uncommon"]},"gluntch, the bestower":{"name":"Gluntch, the Bestower","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Jellyfish"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, choose a player. They put two +1/+1 counters on a creature they control. Choose a second player to draw a card. Then choose a third player to create two Treasure tokens.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":{"ChosenPlayer":{"index":0}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":1}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":2}},"properties":[]},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, choose a player. They put two +1/+1 counters on a creature they control. Choose a second player to draw a card. Then choose a third player to create two Treasure tokens.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"0222dc7c-459b-4909-a037-72b2eb248599","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["7fb44e8f-f3f6-5834-b4ef-a0249adacc31"],"source_printing_ids":["3836d7e5-98cd-4f1e-9a66-150b80cd0325","3b3e889a-5865-4464-9923-bffa25c50cd2","836e3cf0-7335-481d-a9df-386cb1371657"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","PCLB"],"rulings":[{"date":"2022-06-10","text":"All three players must be different players, although any one of them can be you. If there are only two players in the game, you won't choose a third player, and no one will create Treasure tokens."},{"date":"2022-06-10","text":"The first chosen player gets to choose which creature they will place the counters on."},{"date":"2022-06-10","text":"You may choose a player who doesn't control any creatures as the first chosen player."}],"rarities":["rare"]},"goblin anarchomancer":{"name":"Goblin Anarchomancer","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Each spell you cast that's red or green costs {1} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"AnyOf","props":[{"type":"HasColor","color":"Red"},{"type":"HasColor","color":"Green"}]}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each spell you cast that's red or green costs {1} less to cast."}],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"e9319f13-1f2b-429c-9d61-e58a3cbec86a","metadata":{"source_printing_ids":["633a3423-501d-4b22-95a6-743233be521e","8f60c234-fbfc-4ecf-a678-fc52efbc20cf","f7f07a80-05b5-4108-9e68-f8da05866acc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["J21","MH2"],"rulings":[{"date":"2021-06-18","text":"A spell that's both red and green costs {1} less to cast."}],"rarities":["common"]},"goblin chainwhirler":{"name":"Goblin Chainwhirler","mana_cost":{"type":"Cost","shards":["Red","Red","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"First strike\nWhen this creature enters, it deals 1 damage to each opponent and each creature and planeswalker they control.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Fixed","value":1},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"Opponent","properties":[]}]},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals 1 damage to each opponent and each creature and planeswalker they control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0342b085-be20-475a-bc38-59b9cb6012e8","metadata":{"source_printing_ids":["5f173ff2-3d45-4015-8660-fbec7ca1bce9","8bdb2883-3cfd-4fb0-9f99-6a57277f7fe4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DOM","PDOM","PLST"],"rulings":[{"date":"2018-04-27","text":"If the damage Goblin Chainwhirler would deal to a player is prevented, it still deals 1 damage to that player’s creatures and planeswalkers."},{"date":"2018-04-27","text":"In a Two-Headed Giant game, the Goblin Chainwhirler’s last ability causes the opposing team to lose 2 life."}],"rarities":["rare"]},"goblin crash pilot":{"name":"Goblin Crash Pilot","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Pilot"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature crews a Vehicle, that Vehicle gains haste until end of turn. At the beginning of the next end step, sacrifice that Vehicle. When you sacrifice a creature this way, it deals damage equal to its power to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Crews","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ crews a Vehicle, that Vehicle gains haste until end of turn. At the beginning of the next end step, sacrifice that Vehicle. When you sacrifice a creature this way, it deals damage equal to its power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"62741e6b-9412-4272-8b92-72e2e9162ce6","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDFT"]},"goblin morale sergeant":{"name":"Goblin Morale Sergeant","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Haste\nEnlist\nWhenever Goblin Morale Sergeant enlists a nontoken creature, you may conjure a duplicate of that creature into the top five cards of your library at random. The duplicate perpetually gets +1/+0 and gains haste.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Haste"],"abilities":[],"triggers":[{"mode":{"Unknown":"Whenever ~ enlists a nontoken creature"},"execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"conjure","description":"conjure a duplicate of that creature into the top five cards of your library at random"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"The duplicate perpetually gets +1/+0 and gains haste"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enlists a nontoken creature, you may conjure a duplicate of that creature into the top five cards of your library at random. The duplicate perpetually gets +1/+0 and gains haste.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48481142-181d-4e46-8643-0775f03d6f94","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDMU"]},"goblin piker":{"name":"Goblin Piker","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"50608184-90d3-43d2-a221-deb186c78323","metadata":{"source_printing_ids":["083ec3e7-950c-4e9d-aba5-02ed13d723f0","32c86887-678a-4ba5-b0bb-243f4015ad80","85516547-2c1a-432b-9fc5-8d2c91156c77","90fffa95-95c8-47b5-a196-431f731781e6","cb3e1685-a34d-43fc-986f-442523cc0631","ceae72d6-f2a2-4345-822d-6a7c2409a237"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["10E","9ED","DPA","M10","M11","M12","P02","PS11"],"rarities":["common"]},"goblin sleigh ride":{"name":"Goblin Sleigh Ride","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control climbs into Goblin Sleigh Ride. You slide them on their merry way. If the creature stayed on, it deals damage equal to its toughness to each other creature touched during the slide.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"target","description":"Target creature you control climbs into ~"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"you","description":"You slide them on their merry way"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target creature you control climbs into ~. You slide them on their merry way. If the creature stayed on, it deals damage equal to its toughness to each other creature touched during the slide.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"22eee71d-135b-4e18-b00f-f3be4fa42f4d","metadata":{"source_printing_ids":["464ff1cb-3731-4e72-8a70-fbe7043e12ce"]},"legalities":{},"printings":["HHO"],"rarities":["mythic"]},"goblin tinkerer":{"name":"Goblin Tinkerer","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Artificer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{R}, {T}: Destroy target artifact. That artifact deals damage equal to its mana value to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{R}, {T}: Destroy target artifact. That artifact deals damage equal to its mana value to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0afc2d2f-4fdb-440f-9c35-45bf103c0437","metadata":{"source_printing_ids":["e6529852-8b3e-4a70-a4a1-029e012231c6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ATH","MIR"],"rarities":["common"]},"golbez, crystal collector":{"name":"Golbez, Crystal Collector","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever an artifact you control enters, surveil 1.\nAt the beginning of your end step, if you control four or more artifacts, return target creature card from your graveyard to your hand. Then if you control eight or more artifacts, each opponent loses life equal to that card's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Surveil","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an artifact you control enters, surveil 1.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"ScopedPlayer","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":8}},"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you control four or more artifacts, return target creature card from your graveyard to your hand. Then if you control eight or more artifacts, each opponent loses life equal to that card's power.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"533d5bf9-0912-451f-a3f4-3842b0a75b1d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["849f5716-7211-4e93-a220-f88d49f937f4","95822b03-a49b-4a77-a257-fe0527088177","db013d39-3681-4ed0-8671-d1d2452df9de","de4c9b6b-27be-45b6-9642-49471aaddcb9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Golbez, Crystal Collector's last ability checks at the moment it would trigger to see if you control four or more artifacts. If you don't, the ability won't trigger at all. If it does trigger, the ability will check again as it tries to resolve. If you don't control four or more artifacts at that time, the ability won't resolve and none of its effects will happen."},{"date":"2025-06-06","text":"If the target creature card is an illegal target as Golbez, Crystal Collector's last ability tries to resolve, it won't resolve and none of its effects will happen. Opponents won't lose life even if you control eight or more artifacts."}],"rarities":["rare"]},"grab the reins":{"name":"Grab the Reins","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Until end of turn, you gain control of target creature and it gains haste.\n• Sacrifice a creature. Grab the Reins deals damage equal to that creature's power to any target.\nEntwine {2}{R} (Choose both if you pay the entwine cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Entwine":{"type":"Cost","shards":["Red"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"3ceda405-8175-416a-beda-9a95f5acc60c","modal":{"min_choices":1,"max_choices":2,"mode_count":2,"mode_descriptions":["Until end of turn, you gain control of target creature and it gains haste.","Sacrifice a creature. ~ deals damage equal to that creature's power to any target."],"allow_repeat_modes":false,"entwine_cost":{"type":"Cost","shards":["Red"],"generic":2},"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["570fa211-e937-4ad7-bc72-60f8adc3203d","be4fff3d-4267-404f-a62f-744fa396af17","d74d181c-6783-4472-a3b9-2f6780e2b89b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","MRD","PLST"],"rulings":[{"date":"2004-12-01","text":"If you cast this with Entwine, you don’t get priority in the middle of resolution. You can’t steal something, do anything (like attack with it), and then sacrifice it."},{"date":"2004-12-01","text":"If you choose the “sacrifice a creature” mode, you choose the target of the damage on announcement, but don’t choose what to sacrifice until resolution. You must sacrifice a creature when Grab the Reins resolves, even if you don’t want to. If you don’t control any creatures at that time, Grab the Reins deals no damage."},{"date":"2004-12-01","text":"If you pay the entwine cost, you can sacrifice the creature you gain control of with Grab the Reins."}],"rarities":["uncommon"]},"gran-gran":{"name":"Gran-Gran","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Peasant","Ally"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever Gran-Gran becomes tapped, draw a card, then discard a card.\nNoncreature spells you cast cost {1} less to cast as long as there are three or more Lesson cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Taps","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ becomes tapped, draw a card, then discard a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":[{"Subtype":"Lesson"}],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":3}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Noncreature spells you cast cost {1} less to cast as long as there are three or more Lesson cards in your graveyard."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"0259a9ed-0558-4183-b737-871ed5573c32","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["fa434b41-e5f7-4989-865a-95db67b05cb1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PW25","TLA"],"rulings":[{"date":"2025-10-02","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["uncommon"]},"grave researcher":{"name":"Grave Researcher","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Warlock"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, surveil 1. Then if there are three or more creature cards in your graveyard, this creature becomes prepared. (While it's prepared, you may cast a copy of its spell. Doing so unprepares it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Surveil","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BecomePrepared","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":["Creature"],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":3}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, surveil 1. Then if there are three or more creature cards in your graveyard, ~ becomes prepared.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6cb8b8c4-0674-4f14-9d89-010969fbb80e","metadata":{"source_printing_ids":["1d12804c-dda0-4dae-9eb8-f670e72c17e7","8b1e10e8-ea14-4761-910b-4072e2a18456"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["rare"]},"gray ogre":{"name":"Gray Ogre","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ogre"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"83c8a3a6-2e1a-4e26-8847-6d066f42d906","metadata":{"source_printing_ids":["11bf2cc0-799f-4eb8-b338-ed7543f469e7","41023495-d3cb-4cb0-b95c-f717480a76a5","4d195ba7-ce24-405a-b201-de85f5cb843f","65e4f0ee-4bbc-4786-bd0e-72e5101d016e","73ae5276-b607-4f23-a9d2-e8cc7b8e3693","ba8d7da8-41a4-43a8-a16e-31914b6d3147","c2353776-6cc8-4cb3-9608-6ed4aa5bdd1b","e26041ad-b326-40e6-a7fd-eacfcb0ab17e","e2e956a7-3ed1-4cbb-a6fd-123453360058","f165ed5e-ccaf-43d4-9a07-1e6bb609fe59"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","FBB","LEA","LEB","SUM"],"rarities":["common"]},"greater good":{"name":"Greater Good","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice a creature: Draw cards equal to the sacrificed creature's power, then discard three cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1},"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Sacrifice a creature: Draw cards equal to the sacrificed creature's power, then discard three cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dc0593c2-ccb4-4648-a592-c5bcd121dc72","metadata":{"source_printing_ids":["046aff0b-fa01-4a2d-a030-021a7ad01e60","12befd35-2dc6-4852-a153-75b553042643","153d7669-9063-4fc2-b53b-480b0e741f3f","4c73ca01-d8ea-4cd2-af60-b260030967b2","6378a9f5-9fe4-4e41-9bde-4eb4081bfdc4","a327e66f-0cd7-46f7-b20f-35c5084b158c","cf97573c-65e3-4eec-92af-c364c1cbceea","debe9258-209a-44cb-99e9-49affd02aa32","e845f300-6a98-4057-9003-885185f30923","f935e21d-f20c-4f73-92b6-e2e2ea8841af"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","9ED","AFC","BBD","BLC","J14","MB2","PRM","SLD","USG"],"rulings":[{"date":"2020-08-07","text":"If you don't have three cards in hand when instructed to discard three cards, you discard your hand."},{"date":"2020-08-07","text":"Use the sacrificed creature's power as it last existed on the battlefield to determine how many cards you draw."},{"date":"2020-08-07","text":"You draw and discard cards all while Greater Good's ability is resolving. Nothing can happen between the two, and no player may choose to take actions."}],"rarities":["rare"]},"green sun's zenith":{"name":"Green Sun's Zenith","mana_cost":{"type":"Cost","shards":["X","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for a green creature card with mana value X or less, put it onto the battlefield, then shuffle. Shuffle Green Sun's Zenith into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},{"type":"HasColor","color":"Green"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":true},"duration":null,"description":"Search your library for a green creature card with mana value X or less, put it onto the battlefield, then shuffle. Shuffle ~ into its owner's library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0d96b60b-a060-48ee-bb83-93f1c4a10669","metadata":{"source_printing_ids":["01794178-cf41-454c-ac37-1d8b18e42db2","02335747-54e3-4827-ae19-4e362863da9b","586fdc7a-add9-4ed6-88f6-188061647c31","70291c7b-a86f-4466-8502-c28765a89b2a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","EMA","MBS","PRM","SPG","V13"],"rulings":[{"date":"2011-06-01","text":"If this spell doesn't resolve, none of its effects occur. In particular, it will go to the graveyard rather than to its owner's library."},{"date":"2016-06-08","text":"If Green Sun's Zenith is countered, none of its effects will happen. Notably, it will be put into its owner's graveyard rather than shuffled into its owner's library."},{"date":"2016-06-08","text":"If you own Green Sun's Zenith, but an opponent casts it (due to Knowledge Pool's effect, for example), that opponent searches their library for an appropriate creature card, then shuffles that library. That opponent then shuffles Green Sun's Zenith into your library. You won't shuffle any library in this case."},{"date":"2016-06-08","text":"In most cases, if you own Green Sun's Zenith and cast it, you'll shuffle your library twice. In practice, shuffling once is sufficient, but effects that care about you shuffling your library (like Psychogenic Probe, for example) will see that you've shuffled twice."}],"rarities":["rare"]},"gregor, shrewd magistrate":{"name":"Gregor, Shrewd Magistrate","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Advisor"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Skulk (This creature can't be blocked by creatures with greater power.)\nWhenever Gregor, Shrewd Magistrate deals combat damage to a player, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Skulk"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"0b64da77-ca1c-427b-b48b-b919f0fe08e9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6e5df29a-af3b-4acc-8312-f2024ab039e0","88818c8b-dfd8-4aa6-b7bb-1c8e67d01c48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD","SLX"],"rarities":["mythic"]},"greven, predator captain":{"name":"Greven, Predator Captain","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Phyrexian","Human","Warrior"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nGreven gets +X/+0, where X is the amount of life you've lost this turn.\nWhenever Greven attacks, you may sacrifice another creature. If you do, you draw cards equal to that creature's power and you lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, you may sacrifice another creature. If you do, you draw cards equal to that creature's power and you lose life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"LifeLostThisTurn","player":{"type":"Controller"}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +X/+0, where X is the amount of life you've lost this turn."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"b22f4797-c74f-4d95-9528-c16c2bc4c05b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["bda22fc3-31a5-451a-9a8b-372884f7bc61"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"A player loses life if they're dealt damage or if they pay life."},{"date":"2019-08-23","text":"Greven checks for how much life you lost, not how much your life total has changed. If you lost 4 life but also gained 6 life, you still lost 4 life and Greven gets +4/+0."},{"date":"2019-08-23","text":"The sacrificed creature's power and toughness are determined by its last known information before it left the battlefield."},{"date":"2019-08-23","text":"You sacrifice a creature (or choose not to), draw cards, and lose life all while Greven's triggered ability is resolving. Nothing can happen in between, and no player may choose to take actions."}],"rarities":["mythic"]},"grim contest":{"name":"Grim Contest","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"3b78f940-f840-4d4d-a09b-147202963367","metadata":{"source_printing_ids":["24c44722-c65a-41ae-92a9-9c9d7d759a8e","eb7de65d-d4d6-4090-b749-6bd44bd47568"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["FRF","PLST"],"rulings":[{"date":"2014-11-24","text":"If either target is an illegal target as Grim Contest tries to resolve, neither creature will deal or be dealt damage."}],"rarities":["common"]},"grim feast":{"name":"Grim Feast","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, this enchantment deals 1 damage to you.\nWhenever a creature is put into an opponent's graveyard from the battlefield, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, ~ deals 1 damage to you.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever a creature is put into an opponent's graveyard from the battlefield, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"331233ba-0ddc-4cb2-b3b7-1b782e03529f","metadata":{"source_printing_ids":["a69dc4ac-7354-465e-b859-d8556f3b1498"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"It affects all opposing players in a multiplayer game."}],"rarities":["rare"]},"grisly spectacle":{"name":"Grisly Spectacle","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonartifact creature. Its controller mills cards equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature",{"Non":"Artifact"}],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonartifact creature. Its controller mills cards equal to that creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"8c83d21a-6138-409f-8e00-75dcd14388e2","metadata":{"source_printing_ids":["3ce3816e-0f81-40b6-a592-ba2c65243c6d","434fec21-1338-4f5b-91aa-91be81bf6e5c","b61df7bd-6a9b-42e9-9d27-12777afc39c5","c26d0f6e-e7bd-4206-a0da-1c9c203a73f2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["DDM","GTC","IMA","MM3"],"rulings":[{"date":"2017-11-17","text":"If the creature is an illegal target when Grisly Spectacle tries to resolve, it won’t resolve and none of its effects will happen. The creature’s controller won’t put any cards into their graveyard."},{"date":"2017-11-17","text":"Use the creature’s power the last time it was on the battlefield to determine how many cards its controller puts into their graveyard."}],"rarities":["common"]},"grizzly bears":{"name":"Grizzly Bears","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bear"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"14c8f55d-d177-4c25-a931-ebeb9e6062a0","metadata":{"source_printing_ids":["10c845b8-40f1-44df-9e91-dab7606f6271","16e12ae6-6e75-4786-b881-f1b890363a0b","1df4c9a2-8d26-4075-8ee1-b5b848ef5e31","1f7ae6c7-3c87-43c3-beee-894b289ad03f","38fc72de-2093-477b-b39e-696339d2fdbc","409f9b88-f03e-40b6-9883-68c14c37c0de","5b8dadf2-d31a-4b24-a9a7-f7f511ba2867","66e3de06-572e-48c5-888b-2dac7fa9d0d0","68d8ad43-adea-47e8-9d9e-e14c2ad41489","72d5d8b0-e22d-4bb3-9e36-5038601d22f7","886959ca-83fd-4b50-a99a-08ef0c5415db","94a39e27-d1d7-486c-8f1e-4a0a1c8b5dce","a0264440-2325-4143-87a7-2af5a6b2a2f9","aea4f90b-f21b-4acd-934f-406eae274bcf","bf11596e-e798-4126-b56c-e23a1ca2a25d","ce2d603a-3231-4a8c-bf39-1617586ea870","d74cce44-b54b-4922-9cea-f3fda725d24f","dc37da73-0d9b-4b17-854f-517674fc0c97","e7aa2b93-0a84-4318-bf2d-58164f0a846f","e8d7845a-f0de-4fd3-9f78-3236b22a305e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","8ED","9ED","CED","CEI","FBB","ITP","J21","LEA","LEB","POR","RQS","S99","SUM"],"rarities":["common"]},"grove's bounty":{"name":"Grove's Bounty","mana_cost":{"type":"Cost","shards":["X","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Distribute X +1/+1 counters among any number of target creatures you control. (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"Distribute X +1/+1 counters among any number of target creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"distribute":{"type":"Counters","data":"P1P1"},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"54175132-2c44-4749-8dfd-d08dcc63e4b3","metadata":{"source_printing_ids":["bc9bdf96-3e3b-4dca-aae2-e81d4cbeafe8","bdb79d68-c3af-4091-b7db-005247191da8","c5a61619-f951-42ff-8246-c51ee5dc18c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["PWOE","SOC","WOE"],"rarities":["rare"]},"guardian of new benalia":{"name":"Guardian of New Benalia","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhenever this creature enlists a creature, scry 2.\nDiscard a card: This creature gains indestructible until end of turn. Tap it.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain indestructible"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false},"sub_ability":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Discard a card: ~ gains indestructible until end of turn. Tap it.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":{"Unknown":"Whenever ~ enlists a creature"},"execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enlists a creature, scry 2.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"33747a34-79cc-446f-8718-b499bd497687","metadata":{"source_printing_ids":["43da76ee-fec3-4b2e-915d-10cf8d518d2c","d75168c8-6798-46cd-8dd7-22115203cb2b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"Guardian of New Benalia's second ability triggers whenever its controller taps another creature for Guardian of New Benalia's enlist ability."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may activate Guardian of New Benalia's last ability even if it's already tapped. You may also activate that ability multiple times in the same turn, even if Guardian of New Benalia already has indestructible."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["rare"]},"hada spy patrol":{"name":"Hada Spy Patrol","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Rogue"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Level up {2}{U} ({2}{U}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 1-2\n2/2\nThis creature can't be blocked.\nLEVEL 3+\n3/3\nShroud (This creature can't be the target of spells or abilities.)\nThis creature can't be blocked.","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":["Blue"],"generic":2}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":1,"maximum":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":2},{"type":"SetToughness","value":2}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":1,"maximum":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 1-2 / 2/2"},{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"Shroud"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 3+ / 3/3 / Shroud (~ can't be the target of spells or abilities.)"}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8db3152a-11b1-4c59-a745-1c40a9b235b7","metadata":{"source_printing_ids":["905f1b28-8d53-4163-9118-414dad789509","b3aeb6af-1727-4fa9-938f-13962efadd74","cfe2d590-e94f-4aa3-804c-9b6e4618bf10"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","CMA","PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature's level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler's power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature's power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler's power or toughness to a specific value, including the effects from a level symbol's ability, apply in timestamp order. The timestamp of each level symbol's ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler's printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don't overwrite any other abilities it may have. In particular, they don't overwrite the creature's level up ability; it always has that."}],"rarities":["uncommon"]},"halana and alena, partners":{"name":"Halana and Alena, Partners","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ranger"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"First strike (This creature deals combat damage before creatures without first strike.)\nReach (This creature can block creatures with flying.)\nAt the beginning of combat on your turn, put X +1/+1 counters on another target creature you control, where X is Halana and Alena's power. That creature gains haste until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Reach"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put X +1/+1 counters on another target creature you control, where X is ~'s power. That creature gains haste until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"b347be2d-9aa1-42a9-b652-8fb032832f09","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["597e70d7-843c-4588-9b51-f2b9b5f5a1e6","608fa232-f5fe-4c58-9efe-fb780f454b19","87684bef-8ef9-4709-a50e-fa5ff2f67acc","b649f459-c9dc-495d-8703-b685996bb80c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","FDN","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"If Halana and Alena's power is somehow negative at the time its triggered ability resolves, you will put no counters on that creature. The effect doesn't remove counters from that creature or give it -1/-1 counters."}],"rarities":["rare"]},"harold and bob, first numens":{"name":"Harold and Bob, First Numens","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance, reach\nWhen Harold and Bob dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'\" Harold and Bob loses all other abilities.","non_ability_text":null,"flavor_name":null,"keywords":["Reach","Vigilance"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"grants":[{"type":"RemoveAllAbilities"},{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":3},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Unimplemented","description":"Enchanted Forest has '{T}"},"sub_ability":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"'","description":"'"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'\" ~ loses all other abilities.","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d0ecea04-9768-4b09-8718-dd59135251e3","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4d5f93d2-2edc-4a97-9a51-b276d1706e7d","8b7dc266-d38e-479c-a978-0c4bfd6e7370","8e0d4d40-9fd6-4550-a7c8-45aaf5a7e17f","d730ac69-20ec-4ef3-85ee-a5fd24e5f277"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"A token that's a copy of Harold and Bob won't return to the battlefield from its owner's graveyard."},{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a nontoken permanent that's a copy of Harold and Bob dies while it's a creature, it will return to the battlefield as an Aura with only the abilities granted by the effect that returned it to the battlefield. It will also retain its name, colors, and supertypes, but it will be an Aura enchantment with no other types or subtypes."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they'll mill as many cards as they can."},{"date":"2024-03-08","text":"If there's nothing for Harold and Bob to legally enchant, it remains in its owner's graveyard instead of returning to the battlefield."},{"date":"2024-03-08","text":"If you control Harold and Bob, you'll return it to the battlefield when it dies while it's a creature. It doesn't matter who owns the card. You'll choose which Forest you control it will enchant as it returns to the battlefield."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They're not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don't go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger \"whenever one or more nonland cards are milled\" will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is \"At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.\""}],"rarities":["rare"]},"harvest season":{"name":"Harvest Season","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for up to X basic land cards, where X is the number of tapped creatures you control, put those cards onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}}}},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for up to X basic land cards, where X is the number of tapped creatures you control, put those cards onto the battlefield tapped, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ec6d52f9-1c8f-48da-951c-be8d7813c7be","metadata":{"source_printing_ids":["326b5fad-bb8d-4019-84a8-1a319a14962e","8d4329d0-f4ae-41c8-9b21-0957ba9f53fc","bb18e745-a925-477f-a50f-3ec7fba22d88"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["AKH","KHC","PAKH","SCD"],"rarities":["rare"]},"heal the scars":{"name":"Heal the Scars","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Regenerate target creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Regenerate","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Regenerate target creature. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cc65a99f-ac7f-4ded-bb00-a5daf51e4bcd","metadata":{"source_printing_ids":["b802a7fe-9c8b-4bc3-95d8-4a5dafcf2c75"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW"],"rulings":[{"date":"2007-10-01","text":"You gain the life when Heal the Scars resolves, not when the creature actually regenerates."}],"rarities":["common"]},"healing technique":{"name":"Healing Technique","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Demonstrate (When you cast this spell, you may copy it. If you do, choose an opponent to also copy it. Players may choose new targets for their copies.)\nReturn target card from your graveyard to your hand. You gain life equal to that card's mana value. Exile Healing Technique.","non_ability_text":null,"flavor_name":null,"keywords":["Demonstrate"],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. You gain life equal to that card's mana value. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"},"copier":"Opponent"},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.144a: Demonstrate — the chosen opponent copies the spell and may choose new targets for that copy","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.144a: Demonstrate — you may copy this spell (you may choose new targets); if you do, a chosen opponent also copies it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Stack"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.144a: Demonstrate — when you cast this spell, you may copy it; if you do, a chosen opponent also copies it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"1b99c32d-1d02-410e-84bf-9db2ca05f576","metadata":{"source_printing_ids":["207a9a0c-4cae-4f96-ac41-3a7d501c6cd1","33897125-a1df-4d7a-a45a-9c049cb662f6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","PRM"],"rulings":[{"date":"2021-04-16","text":"If the spell requires targets, you choose the target of the original spell as you cast it. If you create a copy of the spell, you may choose new targets for the copy as you create that copy. Similarly, the opponent you chose to create a copy may choose new targets for that copy as it’s created. In other words, your opponent will know the targets of your original spell and your copy when choosing the new targets, if any, for their copy."},{"date":"2021-04-16","text":"If you cast the spell and choose not to copy it, no opponent will get to copy it either."},{"date":"2021-04-16","text":"If you copy a spell with demonstrate, you then immediately choose an opponent. If they copy the spell, it goes on top of the stack."},{"date":"2021-04-16","text":"This means that if you cast a spell with demonstrate and both you and an opponent copy it, the opponent’s copy will resolve first, then your copy will resolve, and finally the original spell will resolve."},{"date":"2021-04-16","text":"You choose whether to make a copy as the demonstrate ability resolves. This happens before the original spell resolves. Your copy goes on the stack above the original spell."}],"rarities":["rare"]},"heart-piercer manticore":{"name":"Heart-Piercer Manticore","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Manticore"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may sacrifice another creature. When you do, this creature deals damage equal to that creature's power to any target.\nEmbalm {5}{R} ({5}{R}, Exile this card from your graveyard: Create a token that's a copy of it, except it's a white Zombie Manticore with no mana cost. Embalm only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Embalm":{"type":"Mana","data":{"type":"Cost","shards":["Red"],"generic":5}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["White"]},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":5}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may sacrifice another creature. When you do, ~ deals damage equal to that creature's power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"253bec96-108c-4880-9c04-8bc99ceafa64","metadata":{"related_token_ids":["47635113-9ce7-50f1-a67f-b169c6de1444","d221c39f-0f44-5d8b-a246-e5bb061b466a"],"source_printing_ids":["0c4b41be-793c-4dcc-9c0d-16fbdfece30b","6cd213a1-92f6-49dd-9ea9-41a00879faaa","dd64160a-96e0-4593-ba42-c5e8bbfa0b15"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","C19","PAKH","PIO"],"rulings":[{"date":"2017-04-18","text":"For each card with embalm, a corresponding game play supplement token can be found in some Amonkhet booster packs. These supplements are not required to play with cards with embalm; you can use the same items to represent an embalmed token as you would any other token."},{"date":"2017-04-18","text":"Heart-Piercer Manticore features a new style of triggered ability. When it enters the battlefield, its triggered ability goes on the stack without a target. While that ability is resolving, you may sacrifice a creature. If you do, a second ability triggers and you pick a target that will be dealt damage. This is different from other abilities that say \"If you do . . .\" in that players may cast spells and activate abilities before a creature is sacrificed and then again after the creature is sacrificed but before damage is dealt."},{"date":"2017-04-18","text":"Heart-Piercer Manticore's damage-dealing ability triggers only when you sacrifice a creature as a result of the instruction of its triggered ability. It won't trigger if you sacrifice a creature for any other reason."},{"date":"2017-04-18","text":"If the card copied by the token had any \"when [this permanent] enters the battlefield\" abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities that the token has copied will also work."},{"date":"2017-04-18","text":"The sacrificed creature's last known existence on the battlefield is checked to determine its power."},{"date":"2017-04-18","text":"The token copies exactly what was printed on the original card and nothing else. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-04-18","text":"The token is a Zombie in addition to its other types and is white instead of its other colors. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."},{"date":"2017-04-18","text":"You can't sacrifice multiple creatures to deal damage multiple times."},{"date":"2017-07-14","text":"If a spell or ability puts a creature card with embalm into your graveyard during your main phase, you'll have priority immediately after that spell or ability resolves. You can activate the creature card's embalm ability before any player can exile it with an effect, such as that of Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"Once you've activated an embalm ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."}],"rarities":["uncommon","rare"]},"hellhole rats":{"name":"Hellhole Rats","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Rat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Haste\nWhen this creature enters, target player discards a card. This creature deals damage to that player equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player discards a card. ~ deals damage to that player equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"7491e0bf-8335-44e4-8e05-b9a737a0f2e7","metadata":{"source_printing_ids":["6e1eb937-21d4-44b1-85e7-b95995865f44"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rarities":["uncommon"]},"hexbane tortoise":{"name":"Hexbane Tortoise","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Turtle"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ward {2} (Whenever this creature becomes the target of a spell or ability an opponent controls, counter it unless that player pays {2}.)\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist",{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f3b4097f-b84f-4645-81f1-018366e40eeb","metadata":{"source_printing_ids":["acd5a635-bcf5-4a05-b00b-bf40322823fe"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"hide":{"name":"Hide","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target artifact or enchantment on the bottom of its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":"Put target artifact or enchantment on the bottom of its owner's library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["White","Red"],"color_identity":["Black","Red","White"],"scryfall_oracle_id":"60e59923-ecd9-457e-b772-693138e05ab2","metadata":{"source_printing_ids":["ac347ec8-4537-4cdf-aeff-44da1f7be01b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["rare"]},"hidetsugu and kairi":{"name":"Hidetsugu and Kairi","mana_cost":{"type":"Cost","shards":["Blue","Blue","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Ogre","Demon","Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen Hidetsugu and Kairi enters, draw three cards, then put two cards from your hand on top of your library in any order.\nWhen Hidetsugu and Kairi dies, exile the top card of your library. Target opponent loses life equal to its mana value. If it's an instant or sorcery card, you may cast it without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"count":{"type":"Fixed","value":2},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw three cards, then put two cards from your hand on top of your library in any order.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Sorcery"]},"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, exile the top card of your library. Target opponent loses life equal to its mana value. If it's an instant or sorcery card, you may cast it without paying its mana cost.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"18591d9e-c9f5-4ae8-aee1-8580bc8fa600","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["76dd881d-6e12-4c90-a198-1d7ec61924b6","81039daf-0d54-4474-a833-fa287ec10cf9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MOM","PMOM"],"rulings":[{"date":"2023-04-14","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2023-04-14","text":"If you cast a card “without paying its mana cost,” you can’t pay any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, those must be paid to cast the card."},{"date":"2023-04-14","text":"The last triggered ability targets the opponent. If that player is an illegal target as the ability tries to resolve, the ability won’t resolve and none of its effects will happen. You won’t exile a card."},{"date":"2023-04-14","text":"The two cards you put on top of your library can be from the three you just drew or ones that were already in your hand."},{"date":"2023-04-14","text":"You choose whether or not to cast the instant or sorcery card as the last triggered ability resolves. If you do, you do so as part of the resolution of that ability. You can’t wait to cast it later in the turn. Timing restrictions based on the card’s type are ignored."}],"rarities":["rare"]},"hill giant":{"name":"Hill Giant","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"342199e0-15b6-4824-83da-25caef2592b3","metadata":{"source_printing_ids":["07724b6b-73e6-43b9-980f-149047c8e786","0ddb98e8-13fe-4786-83f7-b72c56db135a","14c2be6a-9ca6-4d3a-8dd0-db4ea40799f8","14e3b4bd-f3db-49a9-8a67-6ea6a3cd320d","1a318a0e-bc0e-4539-8096-ee0c8cffdb58","4905e98f-0c5a-4ec7-b85b-dc2c3549d5d0","4bb9d069-1163-46bd-9a71-21c05898330e","58968ba0-77a4-49fe-aa1d-0dc8a1db4923","59dda501-27e0-49e9-95cf-e36d8cdd0ec3","6ac25236-c2f2-48df-8dbb-d4f9ce790cfb","833128ae-927e-4767-8937-19d4ef789a58","c350b2af-8610-43c7-90b6-4ee806999d45","c987a3ec-a775-4140-ad49-18025e59dc3d","caa75eaf-948f-4503-962d-95b0321b36d9","ccc3b385-f51c-45b3-afb1-321f892afc96","df03759e-17a0-4191-bd4d-e823846924ce","e7ea1719-2bed-46f4-bb14-e3a4c87ce50a","f3afb143-fd69-4197-96f4-62d5d90a894c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","7ED","8ED","9ED","CED","CEI","DPA","FBB","ITP","LEA","LEB","POR","PS11","RQS","SUM"],"rarities":["common"]},"hit":{"name":"Hit","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices an artifact or creature of their choice. Hit deals damage to that player equal to that permanent's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"TargetPlayer","properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices an artifact or creature of their choice. ~ deals damage to that player equal to that permanent's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"2554a591-8592-4a9f-a4dc-eb9a7e6dc3eb","metadata":{"source_printing_ids":["b44c30a9-1af4-4287-a809-d2de4e8b4070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"hoard-smelter dragon":{"name":"Hoard-Smelter Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\n{3}{R}: Destroy target artifact. This creature gets +X/+0 until end of turn, where X is that artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{R}: Destroy target artifact. ~ gets +X/+0 until end of turn, where X is that artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cf9db2be-3c95-45a2-ab85-694e3bd3bf1d","metadata":{"source_printing_ids":["2f4c5867-73c4-4e10-bbf5-6a69df879547","8492c80b-c38a-44b0-b2a4-9292077a74c7","89713cd7-430e-44ac-9a81-0f4285f2981f","b4487bbe-2bc4-48d9-8a6f-9b0c7555fb47","d5eb5f59-1d0c-402a-8b06-108bf1dc8b4e","fcdd1d89-719d-4552-aeae-499c09b2ec6e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C14","C21","CM2","SCD","SOM"],"rulings":[{"date":"2011-01-01","text":"If the mana cost of a permanent includes {X}, that X is considered to be 0."},{"date":"2011-01-01","text":"If the targeted artifact is an illegal target by the time the activated ability resolves, the ability doesn't resolve. Hoard-Smelter Dragon won't get the bonus."},{"date":"2013-07-01","text":"If the activated ability resolves but the targeted artifact isn't destroyed (perhaps because it has indestructible or it regenerates), Hoard-Smelter Dragon will still get the bonus."}],"rarities":["rare"]},"hollowmurk siege":{"name":"Hollowmurk Siege","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Sultai or Abzan.\n• Sultai — Whenever a counter is put on a creature you control, draw a card. This ability triggers only once each turn.\n• Abzan — Whenever you attack, put a +1/+1 counter on target attacking creature. It gains menace until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a counter is put on a creature you control, draw a card. This ability triggers only once each turn.","constraint":{"type":"OncePerTurn"},"condition":{"type":"ChosenLabelIs","label":"Sultai"},"batched":false},{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Menace"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain menace"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, put a +1/+1 counter on target attacking creature. It gains menace until end of turn.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Abzan"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Sultai","Abzan"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Sultai or Abzan.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"31061e34-042e-40c3-99ab-752795ab4324","metadata":{"source_printing_ids":["5ac0e136-8877-4bfc-a831-2bf7b7b5ad1e","bd9a6427-09cc-4ddf-88a6-fc23498a7c08"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"An ability that triggers when counters are put on a permanent will trigger if that permanent somehow enters the battlefield with those counters."},{"date":"2025-04-04","text":"If you somehow control Hollowmurk Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"horrid shadowspinner":{"name":"Horrid Shadowspinner","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Horror"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nWhenever this creature attacks, you may draw cards equal to its power. If you do, discard that many cards.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, you may draw cards equal to its power. If you do, discard that many cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"5fcbb5d3-71d1-4946-b806-ba6376338eba","metadata":{"source_printing_ids":["62b69aaf-0aae-4f6e-a27f-0129882dfe1d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"The number of cards you discard is equal to Horrid Shadowspinner's power at the time you chose to draw cards, even if another effect changed the number of cards you drew or in the unusual case where Horrid Shadowspinner's power has changed since you chose to draw cards."}],"rarities":["uncommon"]},"hotel of fears":{"name":"Hotel of Fears","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Spacecraft"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, exile the top card of your library. You lose life equal to its mana value. You may play that card this turn.\nPraise Him — Whenever chaos ensues, choose a color. Put X +1/+1 counters on target creature you control, where X is your devotion to that color. Then sacrifice another creature. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of your library. You lose life equal to its mana value. You may play that card this turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Color","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Devotion","colors":{"type":"ChosenColor"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever chaos ensues, choose a color. Put X +1/+1 counters on target creature you control, where X is your devotion to that color. Then sacrifice another creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"79d3e356-9eb9-49bb-b4ba-f4f71876869e","metadata":{"source_printing_ids":["8b164271-6438-4135-b7a9-8573c3921052"]},"legalities":{},"printings":["WHO"],"rarities":["common"]},"huatli's final strike":{"name":"Huatli's Final Strike","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"20acb8df-2ea0-48b0-8dcf-54dd0e1f8db8","metadata":{"source_printing_ids":["1247a5fa-b50a-4ab1-96ca-dbeb45bd0b56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI"],"rarities":["common"]},"huge truck":{"name":"Huge Truck","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Vehicle"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Beeeeeeep, Beeeeeeep, Beeeeeeep — Whenever another creature you control becomes the target of a backup ability, Huge Truck permanently gains all of the backup abilities shared this way.\nCrew 1","non_ability_text":null,"flavor_name":null,"keywords":[{"Crew":{"power":1,"once_per_turn":null}}],"abilities":[],"triggers":[{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"~","description":"~ permanently gains all of the backup abilities shared this way"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackAbility","tag":{"type":"Backup"}},"description":"Whenever another creature you control becomes the target of a backup ability, ~ permanently gains all of the backup abilities shared this way.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1fc6eb23-45ab-42fd-820e-b5dd5dbaef80","metadata":{"source_printing_ids":["19720530-eaf8-4252-9ded-a3b7dc6e19e4"]},"legalities":{},"printings":["UNK"],"rarities":["rare"]},"hunter's edge":{"name":"Hunter's Edge","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7b428e94-8428-455f-b555-f648fcdd2127","metadata":{"source_printing_ids":["5c19ddf0-b0fb-4cb6-adfc-2158b5e801aa","7c08c80f-f27c-4e3a-b048-143aea740096","a4ed63b0-35dc-4f05-82ca-8efc1f247ce4","e3ba254e-84bb-4d5c-8372-66f73e556b39"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","M21","PLST"],"rulings":[{"date":"2020-06-23","text":"If either creature is an illegal target as Hunter's Edge tries to resolve, the creature you control won't deal damage."},{"date":"2020-06-23","text":"If the creature you don't control is an illegal target as Hunter's Edge tries to resolve but the creature you control is a legal target, you just put a +1/+1 counter on the creature you control."},{"date":"2020-06-23","text":"You can't cast Hunter's Edge unless you choose both a creature you control and a creature you don't control as targets."}],"rarities":["common"]},"hunter's insight":{"name":"Hunter's Insight","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. Whenever that creature deals combat damage to a player or planeswalker this turn, draw that many cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WheneverEvent","trigger":{"mode":"DamageDone","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"valid_source":{"type":"ParentTarget"},"description":null,"constraint":null,"condition":null,"batched":false}},"effect":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. Whenever that creature deals combat damage to a player or planeswalker this turn, draw that many cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cf8a0782-f545-445e-abac-d9063dad696b","metadata":{"source_printing_ids":["4e1448cf-3ddc-437b-a21e-4f4086492ec6","8c7549c2-7f66-4fdc-9852-6796292c6a85","a85d0ca4-551c-4e23-b35b-e49b89ce86bd","b2fb825e-0c93-4555-9f6e-9b9d21566c2a","c12cf74d-aad9-41d8-959e-66557c39204d","de399acd-e792-4f4a-8025-434f1080c0fc","e4044a9f-43bd-4c32-9d53-29a27ad9be80","f68090b1-77f0-49e7-8f2b-e78ce3cf8c86"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C20","CMM","CMR","JMP","M12","MAR","NEC","OMB","SCD"],"rarities":["uncommon","rare"]},"hunter's mark":{"name":"Hunter's Mark","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This spell costs {3} less to cast if it targets a blue permanent you don't control.\nThis spell can't be countered.\nTarget creature you control gets +1/+1 until end of turn. Then it deals damage equal to its power to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+1 until end of turn. Then it deals damage equal to its power to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":3},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Permanent"],"controller":"Opponent","properties":[{"type":"HasColor","color":"Blue"}]}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {3} less to cast if it targets a blue permanent you don't control."},{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7def9bfe-6a59-4300-8134-fce7508dca38","metadata":{"source_printing_ids":["62023c58-8b94-4a81-a259-a047e1edd342","6f5fdac5-c40b-43b5-b9f1-cf9bfa1664c9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","PLST"],"rarities":["uncommon"]},"ian the reckless":{"name":"Ian the Reckless","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever Ian the Reckless attacks, if it's modified, you may have it deal damage equal to its power to you and any target. (Equipment, Auras you control, and counters are modifications.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, if it's modified, you may have it deal damage equal to its power to you and any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0727ce6a-aae2-4ddc-9e6c-b18011c5bd37","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Whenever Ian the Reckless attacks, if it's modified, you may have it deal damage equal to its power to you and any target. (Equipment, Auras","line_index":0}],"metadata":{"source_printing_ids":["4cd46b6a-eb20-4ffa-94e0-47d1d2d46087","6be12244-5e1f-4e5e-bd4b-ac0bcd74724b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"If Ian the Reckless isn’t modified when it attacks, its ability won’t trigger at all. When its ability tries to resolve, if it isn’t modified at that time, the ability won’t resolve."},{"date":"2024-03-08","text":"If Ian the Reckless leaves the battlefield before its last ability resolves, as long as it was modified when it was last on the battlefield, use its power as it last existed on the battlefield to determine how much damage that ability deals."}],"rarities":["uncommon"]},"ichor wellspring":{"name":"Ichor Wellspring","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters or is put into a graveyard from the battlefield, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from the battlefield, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"5b5ef43b-13fd-4461-8d2d-18be65e9a790","metadata":{"source_printing_ids":["03c16dfb-7e7a-4372-a1e2-8eb06d890c5c","1a5313e8-b7d1-49c7-81de-4da99ba9733f","1ccdb407-ac8f-4736-89d3-ab0d086096ea","2d1ea522-a0f6-45a8-8985-6fcca95d60cc","537721ab-088f-4dbd-b984-67f68eaaf3cf","6ce84c30-5d59-4f0d-af44-96b993f3902f","7b35f405-b48a-4514-a1b4-379f3226e878","94de25aa-d29a-45c9-8c4d-1ac27eb6a914","eab0d19f-1df7-48a9-bd39-3d8c26ae7bb6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","BRC","BRR","C14","C16","C21","CM2","DDU","HA5","J21","MBS"],"rulings":[{"date":"2011-06-01","text":"The ability will trigger when Ichor Wellspring is put into a graveyard from the battlefield, even if the ability that triggered when it entered hasn't resolved yet."}],"rarities":["common","uncommon"]},"ignite memories":{"name":"Ignite Memories","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player reveals a card at random from their hand. Ignite Memories deals damage to that player equal to that card's mana value.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"None"},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals a card at random from their hand. ~ deals damage to that player equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5f186092-0f87-4a0f-ac45-fff5359c93ae","metadata":{"source_printing_ids":["2f7b7831-27a1-4c0a-8ed1-6dddf2754d65"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TSP"],"rulings":[{"date":"2022-12-08","text":"A copy of a spell can be countered like any other spell, but it must be countered individually. Countering a spell with storm won't affect the copies."},{"date":"2022-12-08","text":"Spells cast from zones other than a player's hand and spells that were countered are counted by the storm ability."},{"date":"2022-12-08","text":"The copies are put directly onto the stack. They aren't cast and won't be counted by other spells with storm cast later in the turn."},{"date":"2022-12-08","text":"The triggered ability that creates the copies can itself be countered by anything that can counter a triggered ability. If it is countered, no copies will be put onto the stack."},{"date":"2022-12-08","text":"You may choose new targets for any of the copies. You can make different choices for each copy."}],"rarities":["uncommon"]},"ikra shidiqi, the usurper":{"name":"Ikra Shidiqi, the Usurper","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Snake","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever a creature you control deals combat damage to a player, you gain life equal to that creature's toughness.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":["Menace",{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever a creature you control deals combat damage to a player, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"a1a1761c-88e5-40b4-ba4c-60735c054b09","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0fb98089-11b8-4afd-9724-e488d864b4dc","460165df-32db-4773-805e-edd6f18af5d6","8f2abcc3-dc33-4b9d-a372-1d936e954f94","a6fd7a8c-e0cd-4fb5-b492-8f3ef7579682","fa39bace-fc76-478d-b8f7-db75a59091fd"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","CM2","CMR","PLST","PRM","PZ2","TDC"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"The amount of life you gain is determined as Ikra Shidiqi's triggered ability resolves. If that creature is no longer on the battlefield, use its toughness as it last existed on the battlefield to determine how much life to gain."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["mythic"]},"imp's mischief":{"name":"Imp's Mischief","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Change the target of target spell with a single target. You lose life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeTargets","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"HasSingleTarget"}]}]},"scope":{"type":"Single"},"forced_to":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Change the target of target spell with a single target. You lose life equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"30ec73ad-c7a1-4527-8dc6-44bdd65b9ba6","metadata":{"source_printing_ids":["0eb0e8e7-266f-441e-b1cd-12b8ec3f7d71","22ec70a6-40b7-41da-a6c0-c140cadf5509","41137be4-cfc2-40dc-873a-b9a63d0d8ea6","d46c03ac-5efb-4d5d-9987-aa5e4da0a9c4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","OTP","PLC"],"rulings":[{"date":"2004-10-04","text":"If there is no other legal target for the spell, this does not change the target."},{"date":"2004-10-04","text":"Once the spell resolves, the new target is considered to be targeted by the deflected spell. This will trigger any effects which trigger on being targeted."},{"date":"2004-10-04","text":"The target of a spell that targets another spell on the stack can be changed to any other spell on the stack, even if the new target will resolve before the spell does."},{"date":"2004-10-04","text":"This does not check if the current target is legal. It just checks if the spell has a single target."},{"date":"2004-10-04","text":"This only targets the spell being changed, not the original or new target of the spell it is affecting."},{"date":"2004-10-04","text":"You can choose to make a spell on the stack target this spell (if such a target choice would be legal had the spell been cast while this spell was on the stack). The new target for the deflected spell is not chosen until this spell resolves. This spell is still on the stack when new targets are selected for the spell."},{"date":"2004-10-04","text":"You can't make a spell which is on the stack target itself."},{"date":"2004-10-04","text":"You choose the spell to target on announcement, but you pick the new target for that spell on resolution."},{"date":"2024-04-12","text":"If a spell targets multiple things, you can't target it with Imp's Mischief, even if all but one of those targets have become illegal."},{"date":"2024-04-12","text":"You don't choose the new target for the spell until Imp's Mischief resolves. You must change the target if possible. However, you can't change the target to an illegal target. If there are no legal targets to choose from, the target isn't changed. It doesn't matter if the original target has somehow become illegal itself."}],"rarities":["rare"]},"induce paranoia":{"name":"Induce Paranoia","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. If {B} was spent to cast this spell, that spell's controller mills X cards, where X is the spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ManaColorSpent","color":"Black","minimum":1},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. If {B} was spent to cast this spell, that spell's controller mills X cards, where X is the spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Blue"],"scryfall_oracle_id":"ec9475f8-235a-4c85-9b96-9c2085a9b732","metadata":{"source_printing_ids":["bc462b75-8b08-47a3-be22-d7b5c062ec5b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["RAV"],"rarities":["common"]},"inevitable betrayal":{"name":"Inevitable Betrayal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Suspend 3—{1}{U}{U} (Rather than cast this card from your hand, pay {1}{U}{U} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, you may cast it without paying its mana cost.)\nSearch target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[{"Suspend":{"count":3,"cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1}}}],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"time","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1}},{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"MatchesCardCastTiming"}],"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"time","count":1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: At the beginning of your upkeep, if this card is suspended, remove a time counter from it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"time"},"minimum":1},"batched":false},{"mode":"CounterRemoved","execute":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"SelfRef"},"without_paying_mana_cost":true,"mode":"Cast","driver":"DuringResolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: When the last time counter is removed from this card, if it's exiled, you may play it without paying its mana cost.","constraint":null,"condition":null,"counter_filter":{"counter_type":"time","threshold":0},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue"],"color_identity":["Blue"],"scryfall_oracle_id":"aa5e9269-b1db-4bf0-a548-24f999f60e44","metadata":{"source_printing_ids":["28c015a6-dc4c-49f6-8d39-4c7b598e5a61","71725895-38cd-4017-bbf0-0b7dc9b5db60","9efc8ce5-d9b3-4808-8297-f9a0a4db79c1","adb9a0f9-0af6-42ac-9e42-f315f4882939"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH2","PMH2","PRM","SLD"],"rulings":[{"date":"2021-06-18","text":"You may fail to find a creature card in your opponent's library. This may be because they don't have any creature cards, or it may be because you simply don't like any of the creature cards they do have."},{"date":"2024-02-02","text":"A card with no mana cost can't be cast normally; you'll need a way to cast it for an alternative cost or without paying its mana cost, such as by suspending it."},{"date":"2024-02-02","text":"Cards exiled with suspend are exiled face up."},{"date":"2024-02-02","text":"Due to a recent rules change to suspend, you are no longer required to cast the suspended card as the second triggered ability of suspend resolves. Instead, as the second triggered ability resolves, you may cast the card. Timing permissions based on the card's type are ignored. If you don't cast the card, it remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"Exiling a card with suspend isn't casting that card. This action doesn't use the stack and can't be responded to."},{"date":"2024-02-02","text":"If a card with no mana cost is given an alternative cost equal to its mana cost (by Snapcaster Mage, for example), that cost cannot be paid and the card cannot be cast this way."},{"date":"2024-02-02","text":"If an effect refers to a \"suspended card,\" that means a card that (1) has suspend, (2) is in exile, and (3) has one or more time counters on it."},{"date":"2024-02-02","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-02-02","text":"If the first triggered ability of suspend (the one that removes time counters) is countered, no time counter is removed. The ability will trigger again at the beginning of the card's owner's next upkeep."},{"date":"2024-02-02","text":"If the second triggered ability is countered, the card can't be cast. It remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"If the spell requires any targets, those targets are chosen when the spell is finally cast, not when it's exiled."},{"date":"2024-02-02","text":"If you cast a card \"without paying its mana cost,\" such as with suspend, you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those if you want to cast the card."},{"date":"2024-02-02","text":"Suspend is a keyword that represents three abilities. The first is a static ability that allows you to exile the card from your hand with the specified number of time counters (the number before the dash) on it by paying its suspend cost (listed after the dash). The second is a triggered ability that removes a time counter from the suspended card at the beginning of each of your upkeeps. The third is a triggered ability that gives you the option to cast the card when the last time counter is removed."},{"date":"2024-02-02","text":"The mana value of a spell cast without paying its mana cost is determined by its mana cost, even though that cost wasn't paid."},{"date":"2024-02-02","text":"When the last time counter is removed, the second triggered ability of suspend (the one that lets you cast the card) triggers. It doesn't matter why the last time counter was removed or what effect removed it."},{"date":"2024-02-02","text":"You can exile a card in your hand using suspend any time you could cast that card. Consider its card type, any effects that modify when you could cast it (such as flash) and any other effects that stop you from casting it (such as from Meddling Mage's ability) to determine if and when you can do this. Whether you could actually complete all steps in casting the card is irrelevant. For example, you can exile a card with suspend that has no mana cost or that requires a target even if no legal targets are available at that time."}],"rarities":["rare"]},"infernal reckoning":{"name":"Infernal Reckoning","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target colorless creature. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"ColorCount","comparator":"EQ","count":0}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target colorless creature. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"32aa920c-0d91-4bc9-803c-d13857688d10","metadata":{"source_printing_ids":["4e291f27-d74f-48e7-bcb4-ddcc558c2211"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M19","PM19"],"rulings":[{"date":"2018-07-13","text":"If the creature’s power is negative, you don’t lose or gain life."},{"date":"2018-07-13","text":"The amount of life gained is equal to the power of the creature as it last existed on the battlefield."}],"rarities":["rare"]},"infesting radroach":{"name":"Infesting Radroach","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect","Mutant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nThis creature can't block.\nWhenever this creature deals combat damage to a player, they get that many rad counters.\nWhenever an opponent mills a nonland card, if this creature is in your graveyard, you may return it to your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"get","description":"get that many rad counters"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they get that many rad counters.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TriggeringSource"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":"Opponent","properties":[]},"origin":null,"destination":null,"trigger_zones":["Graveyard"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an opponent mills a nonland card, if ~ is in your graveyard, you may return it to your hand.","constraint":null,"condition":{"type":"SourceInZone","zone":"Graveyard"},"batched":false}],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"064f371c-e4f2-423b-9f35-443191dfbb4c","metadata":{"source_printing_ids":["5b51b691-e226-44c9-b7cb-26f19c060597","b18a4355-5645-4af3-a16a-7fe49d0d5aab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If Infesting Radroach is milled at the same time an opponent mills a nonland card (for example, because of the activated ability of Raul, Trouble Shooter), Infesting Radroach's ability will trigger."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they'll mill as many cards as they can."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They're not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don't go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger \"whenever one or more nonland cards are milled\" will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is \"At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.\""}],"rarities":["uncommon"]},"insectile aberration":{"name":"Insectile Aberration","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Insect"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue"],"color_identity":["Blue"],"scryfall_oracle_id":"edd531b9-f615-4399-8c8c-1c5e18c4acbf","metadata":{"source_printing_ids":["11bf83bb-c95b-4b4f-9a56-ce7a1816307a","6904ea20-e504-47da-95a0-08739fdde260","871c4ccc-5a14-4583-b4c7-6f2d2aeb8253","888fbfaf-dbf9-4045-a79e-d436ef75b3cf","a808459c-f086-4cb6-a53e-4b9e196c1000","a992bbe3-c389-4a4a-927b-dfc01a4cd9be","abff6c81-65a4-48fa-ba8f-580f87b0344a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["DBL","INR","ISD","MID","SLD","V17"],"rarities":["common","uncommon","rare"]},"interpret the signs":{"name":"Interpret the Signs","mana_cost":{"type":"Cost","shards":["Blue"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Scry 3, then reveal the top card of your library. Draw cards equal to that card's mana value. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom and the rest on top in any order.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Scry 3, then reveal the top card of your library. Draw cards equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"834554f6-3b65-44fd-b1d1-8495b740dbfc","metadata":{"source_printing_ids":["42dbf049-5c02-4038-86de-fa6b5110cf7e","5fc72645-d2c3-40cd-81d7-77142e495c8d","696f2da6-3943-4555-9610-e6b925b3d6bc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["CMR","J22","JOU"],"rulings":[{"date":"2020-11-10","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2020-11-10","text":"If you reveal a card with mana value 0, such as a land card, you won't draw any cards. Otherwise, the card you revealed will be the first card you draw."}],"rarities":["uncommon"]},"invisible stalker":{"name":"Invisible Stalker","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Rogue"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)\nThis creature can't be blocked.","non_ability_text":null,"flavor_name":null,"keywords":["Hexproof"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"1a137a67-4156-45c8-aae9-838f688e12bd","metadata":{"source_printing_ids":["0013620d-8e17-4246-86bf-71eafd51b806","14d265aa-c1d8-4faa-b282-5c273ab725fd","965cd5d9-4216-486f-9fa0-7e821327b5e8","eb9dbad5-7df6-4f78-b809-d6043bf15d4b","f0b2a762-486a-474b-8abc-6a10fced63f5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["ISD","PLST","SIS","ZNC"],"rarities":["uncommon"]},"invoke calamity":{"name":"Invoke Calamity","mana_cost":{"type":"Cost","shards":["Red","Red","Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their mana costs. If those spells would be put into your graveyard, exile them instead. Exile Invoke Calamity.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"FreeCastFromZones","count":2,"max_total_mv":6,"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"zones":["Graveyard","Hand"],"exile_instead_of_graveyard":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their mana costs. If those spells would be put into your graveyard, exile them instead. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_constraints":[{"type":"TotalManaValue","comparator":"LE","value":{"type":"Fixed","value":6}}],"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5b3f041e-ad4a-47ea-bdc4-1be2353f2e18","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their ma","line_index":0},{"type":"SwallowedClause","detector":"Condition_If","description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their ma","line_index":0}],"metadata":{"source_printing_ids":["12af2504-ff1c-4361-a428-be9d1d35899f","99ff8eec-5510-4c57-91c1-ec380fdd7f8e","fe666c86-6734-4c47-9244-bcd26b54068d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NEO","PNEO","PRM"],"rulings":[{"date":"2022-02-18","text":"If the spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-02-18","text":"If you cast a spell without paying its mana cost, you can't choose to cast it for any alternative costs. You can, however, pay any additional costs. If the spell has any mandatory additional costs, you must pay those."},{"date":"2022-02-18","text":"Invoke Calamity looks for the mana values and types of the spells on the stack, not the mana values and types of the cards in your graveyard. Notably, this means that you may cast the back face of a modal double-faced card or either face of a split card as long as the spells you are casting are either instants or sorceries and together have a total mana value of 6 or less."},{"date":"2022-02-18","text":"The spells are cast one after the other during the resolution of Invoke Calamity. The one you cast second will be the first one to resolve."}],"rarities":["rare"]},"iridescent vinelasher":{"name":"Iridescent Vinelasher","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard","Assassin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Offspring {2} (You may pay an additional {2} as you cast this spell. If you do, when this creature enters, create a 1/1 token copy of it.)\nLandfall — Whenever a land you control enters, this creature deals 1 damage to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Offspring":{"type":"Cost","shards":[],"generic":2}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, ~ deals 1 damage to target opponent.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.175a: When this permanent enters, if its offspring cost was paid, create a token that's a copy of it, except it's 1/1.","constraint":null,"condition":{"type":"AdditionalCostPaid"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4f8c4927-46c2-4c18-b5af-c6288dbaff6d","additional_cost":{"type":"Optional","data":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}}}},"metadata":{"related_token_ids":["c39bbf40-9bf9-5400-8be3-0fb961f0a643"],"source_printing_ids":["859e34b4-6762-465f-a5c7-24e42e112fbe","b2bc854c-4e72-48e0-a098-e3451d6e511d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"Any \"enters\" abilities of the copied creature will trigger when the token enters. Any \"as [this creature] enters\" or \"[this creature] enters with\" abilities of the copied creature will also work."},{"date":"2024-07-26","text":"If the spell is countered, the offspring ability will not trigger, and no token will be created."},{"date":"2024-07-26","text":"If the spell resolves but the creature with offspring leaves the battlefield before the offspring ability resolves, you'll still create a token copy of it."},{"date":"2024-07-26","text":"In the rare case where the creature doesn't have the offspring ability when it enters, the ability won't trigger even if you paid the offspring cost."},{"date":"2024-07-26","text":"In the rare case where the original creature is copying something else when the offspring ability resolves, the token enters as whatever that creature copied, except it's a 1/1."},{"date":"2024-07-26","text":"Many creatures with offspring abilities have other abilities that refer to them as \"this creature\" rather than referring to them by name. This difference is for clarity purposes and does not change the function of any of these abilities."},{"date":"2024-07-26","text":"The token copies exactly what was printed on the original creature and nothing else, except it's a 1/1 (unless that creature is copying something else; see below). It doesn't copy whether that creature is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any non-copy effects that have changed its types, color, or so on."},{"date":"2024-07-26","text":"The token created by the offspring ability isn't \"cast\", so abilities that trigger when a creature spell is cast won't trigger for the copy."},{"date":"2024-07-26","text":"You can pay an offspring cost only once as you cast a spell with offspring. You can't try to pay it multiple times to get more token copies."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"island":{"name":"Island","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Island"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {U}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"b2c6aa39-2d2a-459c-a555-fb48ba993373","metadata":{"source_printing_ids":["000f1f50-08e5-4d83-8159-98f06a0e2279","001eb913-2afe-4d7d-89a1-7c35de92d702","00c74207-577c-4eab-9759-4cab76c17f2c","017fb3fc-433e-4853-bbac-99fa04b40233","029540f9-9a19-4b1e-a61a-30813fd8cdd0","0298749b-089e-49b9-8c89-02431a3d6457","03438868-e177-46af-9ae8-edc4a991f18c","03f845b1-3b8a-4387-aae3-fd497acf193c","040ed422-663a-4b6c-bdcd-09092f1c9004","0473605a-6c6a-433e-b828-933544472a3d","0480b669-e72b-4b21-b0f3-09d78abe421c","04d4230f-f024-4e5e-9054-0d32dace05cd","0563dcbc-59da-468a-97ed-37cd5e36d14a","0600d6d5-f6a1-47c3-a898-733fab10bbf5","0630ac22-7c1a-4eac-aa5e-f9e505797952","0677e507-f690-44a1-8ed1-6808cbcd4e7c","069b4d6c-7542-4a42-8822-031f02131033","0830bbcf-ee78-4f8a-bc6c-547be3a9fc4c","086d6aed-1f7e-4a80-8d66-01d995f344ed","09376cac-44bd-42c4-9c07-9e4d6c972a64","09df589a-61b9-4f73-ab34-0ba3bd52c084","0a4717cd-f9a7-4386-9091-d25218e23d79","0a6f4848-85b9-4770-9820-516e2a295284","0ac65c53-7b35-4ba0-9344-b311eee087cd","0aea8148-43a7-45dc-84b1-8636cdb50412","0b9bbc32-a89a-4bed-ab52-ac6569ec74ce","0b9dbac5-56e5-4054-9b58-7fa5de30487d","0ba4f2b6-d802-44c7-8a4d-4e5b26a26292","0bafd3f5-7d14-49a0-afa6-57843956d027","0c4eaecf-dd4c-45ab-9b50-2abe987d35d4","0c88a936-b745-402b-9eda-f9a18342698e","0ce67a27-aa80-46ac-955a-8fea336995d9","0d0f2d84-bf11-4d39-8510-84a14e9f0c23","0d6106c1-dc27-48bc-a808-8be4a2c3a617","0da4d5c0-7ad2-446d-b49e-5ee446bb23cd","0e443748-edf1-4499-9507-3649dd57ee95","0efe151b-d819-4c6a-95b5-e1361170bcf3","0f66d573-5da4-4b3c-ab06-bb330cff2c9a","10125dab-fe82-4796-b5db-3bd6ad389e1d","105b2118-b22c-4ef5-bac7-836db4b8b9ee","106a5332-0104-4ec9-9e1f-806381ae4cad","10acd444-4264-41fb-87f4-9cac4fdeeaad","10b0f911-7193-446a-b4d7-66bb34be7933","11d4b4bd-270e-4f8e-a93e-1321794f950a","1227d128-dd6c-4b18-96bd-b498dcd00e68","123368da-1d72-45e1-bd07-4b3a506012d1","125e4610-9bdc-4ee2-8aac-26cbdee13046","12b2aae2-a0b4-4c52-8a43-a4155527bae9","12dd90bb-b5d1-47a3-b566-3407db04dd55","12ebd9c8-6587-456e-aba9-7aad1c2a09ea","13d88f06-276b-41d4-a4c3-d904f93ea403","14c426b1-16cd-402f-a348-85d0139d4bdd","14fcdc57-12e2-429b-8916-4df752e462d4","15303b22-ddf0-488d-b07e-a118f35ef00f","155e3f97-531a-4336-af16-e0f738ebb85e","15973a22-cf86-447d-94ef-d62ac824aa49","15be7923-6efc-4650-b8d1-f61cb33ef81d","172bb1b6-08c3-4ffd-b26d-b1c77dba06c3","17e2b637-72b1-4457-aaba-66d51107be4c","17fefdc7-2f7c-4a63-8683-3dff21b4bb76","189a09b8-46d2-4ef6-b7cc-9e510d1ea0b8","196a004a-ec08-4e1b-8eeb-2ad766fccd25","197080a9-ebb5-4a8b-81f8-0368c5bba35a","197f5bd0-5ab3-4bf4-b20e-1389c0e9527a","19803b7c-9c97-4672-930d-1837647a1bc9","1a25a714-c7f3-4697-8b69-8f966b4d370a","1a9798d6-34b3-4438-992d-d3616a7c8536","1afa60b6-cd0d-4c23-af81-88049ea45475","1b82c807-dbda-42b3-a1a1-0c4ef72f1683","1ba4b3ad-1aef-44d3-889a-aedd9e070975","1c9f55eb-2c9e-4bc7-a67c-ab2eeb127201","1cb1ac28-ee04-4892-97ea-2cfdebbafcad","1d018af9-dd14-46fa-8fd5-226defc9698f","1d433685-601d-4da2-9e4c-796646003ffe","1d603978-3877-454e-8910-53a4cc95431d","1d8ff00f-62cc-4f71-b360-865ab2ac2599","1dac3bfe-884b-4875-bc7d-df564eb014cd","1e571f07-167f-4a7d-8f98-0c98d7d15e81","1ecabe5d-f3a3-415f-896f-662b97b00217","1f3d1731-bd87-474b-b111-927390ef86c1","1f83a756-e520-4f72-932c-73fa6ee10500","1fddf4cb-0680-4bc7-8bb3-cb15268aff46","1ff6acc9-581c-468f-894d-41f725da7f33","2039d727-3bb6-4a76-89ca-159ecf10cad8","206d619e-d5b3-4f3b-b999-3995b483c918","20b4cbcc-c394-4be3-8072-8893b48c866d","20f2e8cb-cf20-479d-9297-46618d09c19f","21135bb8-07a8-4451-8d3b-5e2747d3d3ff","212e84a3-e028-42a6-a639-f42b64ab7015","217064fb-6dee-406e-b1e2-455dfccc6438","2177da89-184b-4ecd-ae08-a074ac4862e1","2184c71a-b944-490e-ae2e-539bac3c0e57","21b99a83-bfe4-4149-b626-269953c5ac51","21d03913-c905-439c-a603-7d7fae6b9cd9","21e00fd6-2d12-4ad0-aa8b-21622490a730","21e41579-5cbf-41c8-ac1b-e6256220087d","21f655c7-d473-40a6-8d22-7c2c5fc9d85a","222c52bd-b4fe-4cc6-ac86-2a93c7ca9e38","22578bc8-10c6-4598-82bc-70e970a8f518","22f6e971-349d-498b-ae01-ab81ce21772c","22f920a5-74ea-4b94-8822-5867e6d5017a","232d56d0-1df6-4517-bbe9-9bd7ef12de15","23300152-6da8-4444-b368-1fb00e74a4b2","23635e40-d040-40b7-8b98-90ed362aa028","23e3ed2c-342b-44aa-8e3e-0c53602397c3","24295928-6414-4992-9dac-06021a304742","246c1f79-bdd9-4a77-b481-02e81cf0b5aa","24a05fd8-7579-4343-ae57-ea384994d8ac","24aa9fd2-54d9-40d9-9279-abd5bd6ff727","24f308d7-afc6-43a0-8433-d9d5404eab49","24ffadeb-cf20-4da9-a140-1fdcc7484c7a","25934479-a47e-45b8-bc35-fc4b659b0d68","259cb11a-32f7-4483-a859-a26313c62610","26b02969-1959-4422-8e10-63ffb23192a2","275415c2-1740-4ff3-8c57-57977b414d46","278f5152-012a-4852-b081-0cbf9149a7f0","27de7298-d069-4652-8513-50406ba4a151","27e01339-0c2e-4e2f-b1c5-e46030016d5b","27e879fe-a79b-427f-9901-c989fa73e234","28347f33-bfd5-48fd-ab10-228dfad1669d","28a0a9ae-a1ae-41da-8308-d49e4afca3c1","28da317c-8512-4342-9be5-d14b87a509c7","2995e06d-8145-485e-aeed-3da27a07545b","29bfbf3e-3a6c-40d4-8e1b-255f429de6cc","29d575fc-037b-421a-a205-12d492e9361e","2a9db98e-9f1d-4139-95c5-49f9d17a2107","2b3a671c-8b0b-45ea-9d65-095c19174e88","2bd41018-2eb1-4aac-a5dc-1f95ae6a46de","2bf6f14a-99d1-4abd-b36f-a5819718a43f","2d1f5b46-7217-4d43-aaa7-29ff2f7777fb","2d3da4bf-1a5a-42a7-bd36-f1ca080c8a5a","2dcdcb91-bf08-4f40-9391-2824e905d5d4","2e19f6dd-9eed-4656-b8c7-e64b61446d7f","2e9d8487-5e73-4d14-bea7-8c7eee6acc80","2ef2c956-cf03-462c-8981-ae80edfc0c5a","2f3edb9a-de7c-445a-a32b-25bd9fd97c91","2fb9ecfd-8025-48c0-a306-b4deebde2949","2fc04e1e-6a14-41cc-9fff-6dcd92cc6a3b","2fdcf679-4269-4ed9-84f1-1ac7a513f475","30fa28f3-0a91-48c5-9433-4da6e223011c","3114ce5d-c99c-4c60-b088-48ec440eafdb","31915934-1e12-49ad-a745-30e1106b4eff","3220f1ba-748e-4e74-89e9-0a2d137c100e","3310cdcb-7906-4f86-829e-4383c59fbcbf","3352b213-4ebc-4b4c-ae75-f256fbb33d95","338e5b63-1fee-4a7c-af9b-483d383f79b7","33a05f9a-1285-4d14-b827-8b81968e09df","33fde066-56c4-4c73-a41e-b1804cde0402","34052c96-229b-47c3-ada8-b79e622de846","347e00db-abcf-4053-aa27-4a5b42e1da55","34ec0f4f-e6f7-4a49-81a3-a1fbad102a9d","35c20f8b-6ad1-4aa2-94d3-7bd42562a1ac","36e062ec-df51-40c0-ad8a-2ee1cb8f8f17","373b4f66-a815-413e-9b9b-663b3a49d3eb","37736b90-7ecd-4b74-aeb6-50d3a81bc31d","385695a4-b811-4c79-860a-9f0aca4edbc8","38e083ce-0f15-4ff0-8af1-747565f2d0d8","39180d5d-9e76-4ea3-a906-aeb28974e7a6","39c7b858-61e1-43ea-95b6-2a0079a802d2","3aba057e-11db-432b-a39c-a2845868bccd","3ae471f9-f463-4918-9980-18c97b6f1b6d","3b1238c4-dc34-488f-ad4a-308f584d4d75","3bc773e7-ee87-4462-9745-1e62458e45ed","3c4debf2-c04a-488e-8d5a-221a5eb14597","3cda6712-1730-48a0-b86d-2e7765e3db74","3e7d8ebd-7481-48b5-84bb-b747a8a612c1","3f02cfaf-1c0b-4168-a809-ea9541bf62b2","3f891c3f-82e2-4f9d-ae4b-443fce0bdd71","3fe9f351-5d3b-4614-bc3f-6859b5a0bce7","407d609b-ac1f-4644-ba8d-259938745007","408eb23f-13fa-4f98-b316-18e3057f9136","40c840af-9a13-4716-8458-09071239cc26","40e3bf00-84cc-498c-b214-1052b4904d92","40eb7b85-8c0f-4311-85f3-11bcb45ba0b6","4134cd82-6e48-4fc0-bcb4-1e3af369ef82","4146a316-c409-4121-931f-1d3b5ae63675","41829a8c-5ab2-4c44-bf6a-09bad991ab78","42044efb-b6a8-46c3-90dc-b7a745e819e5","4208e66c-8c98-4c48-ab07-8523c0b26ca4","4237eaa8-1169-47b2-9009-ac529831a36e","423927e6-2419-4d88-b0c4-425e5cac1a3f","42a272ca-98a7-4887-b6b7-903a1adc33e0","43297ca7-846c-4bc4-a347-997279bc73d6","434dc08b-0f4f-4230-bd39-7dc1c9d9cd1e","437d6d2d-2eee-4917-b16b-1b0df759ade0","43ced659-7870-40b4-80e1-2f0d46e35c87","44b34fc0-dc7b-4823-9ff1-5e1e84016204","454f304a-971d-418c-9645-d1678996f3cb","45950695-2973-4c58-94f7-2d950c55865e","46255a65-b735-4888-85db-3ab2ab3d903c","46848fc2-ba58-4738-b4ce-0399d9053f48","46d76200-cd39-4abd-9e7c-546bd58de5ae","478100da-a66a-47e0-ab15-54dc3398740f","4782f218-ec9f-4f59-bb97-ec315960fdd1","48b51501-d3b3-480f-9bcb-e66420c4db06","48d19385-02f2-4f45-b148-81993bcd00e9","49050cb4-1d8b-4f2f-ba48-206a107eb09c","49797974-2760-4ed7-b2ae-08bc21fa803a","49fb2a1e-9995-49c3-bfc7-7f392c95e16a","4a3e7218-0454-4489-ab2d-02900f490fe4","4a88705a-ab94-4e29-b556-e8f7ae1183fb","4ab864fb-ac47-4dcb-95a8-26174a20afe3","4ad74ee8-5b41-445d-9a5b-f9a755bb1590","4b10739a-0ebd-432a-b346-385726b453a7","4b2ad5b3-7257-4521-8916-6b1cbfb89e27","4c23ffd3-dcee-4b29-99f0-4502c19f0947","4c4845cc-77d8-4f87-8424-e2371bbb72da","4c799192-43bb-4c25-ab4f-b1d4ef0df660","4dc3a90f-23c4-4c54-8825-32cb17977b48","4df5e502-45b6-474c-ad1f-c66c346b3573","4e8958d4-067b-4815-a128-5d1577b94173","4ee1fe3a-8a5c-4198-b352-9958bc75e364","4eea2b47-130a-4bd0-b936-981bee1ebe8c","4f058a5c-b9fd-4b3c-908f-41a2a4f788fa","4f307e72-f33e-4fb1-b15f-a46ab389c20f","4f60ca04-0b6e-4e8b-b3b1-8f68fe692d1c","4f8d16ec-cba6-43b7-be97-5ab184941e29","50128873-7c99-4dfe-8c5c-e6e114ffbd5c","504e3d36-abe3-480f-b42d-b9ae7c63fc0a","51487402-2a52-4117-ba88-327e863e5f56","51852e9d-9183-4f9a-a724-cb60cf677e38","527f36a0-80b8-4492-b1c3-20a34953ceb7","542a895f-11af-4534-b9b3-e1a3e77fabca","54591ec7-94a1-470c-927a-788b6a514444","54693eb8-bd68-4781-a60f-113adf947d5d","547890ff-69b6-48e0-98f6-1fbca5d353e8","547f89f2-30a0-493a-914e-6251d2574099","54c33392-c382-4e8b-812e-8b2c64cdbe8e","54ddd3aa-593c-4adb-b591-33c15d02131c","551f905b-4ce0-4071-a721-7e51be14d114","560c7de9-0046-4a76-a41a-fa1c3ef92f04","5679b9cc-5fee-49bb-8378-09e4943c42c0","56ac969e-289f-4242-8845-c91c23af2bfe","572167d5-59b6-46fb-bb60-27fb6c5bf2bc","5754638d-14ce-452d-bb45-d1d8f1151a96","575a9059-5cdc-41ac-be5c-a6e797c4ffbb","57bafa39-b8c3-4d8f-b8dc-9f76c5edca47","57d9b053-ed45-41f3-a0ab-0a08c41f587a","582b124a-c145-463a-900d-f0e5b4a3db10","58651bbd-b3df-4b9c-b515-28d778cc2f7f","5885738f-a51d-418c-b194-0ba8ef6af556","589524db-68b9-46eb-a8ab-55986f37fbed","589a324f-4466-4d4a-8cfb-806a041d7c1f","592a619f-1236-4085-b7e1-c093ce13f1a4","5a8e9b9e-4947-4b6a-b21b-6fe009760fc5","5a96f344-4940-47d1-99fd-0a489b33d25b","5aaba7cd-c1dc-49cf-8d63-8bb3594a6541","5af6a3cb-69da-4f7a-9b40-533bc86acb1d","5bae77e8-1230-4a6e-8c75-c99d2741a509","5c6322d4-52bf-471a-a5b2-8329ef4be39a","5c7f7338-8edc-4579-b92f-86b02527682c","5cde9dcf-f0b4-4e76-ac4e-d4a8ac355fbe","5cf3685e-0ed3-4dc3-9033-8faa10b17c27","5d01acc2-bafa-47c9-92ff-b737f1f31f16","5d141922-570d-4652-9620-2b53eb68294a","5d301d65-e81b-4750-bd26-9a6e5e386dc5","5e185e19-0692-4f09-bb99-1b864bfbb479","5e6e59d7-5038-46b4-9f60-3d9d0cbf0a4e","5e981028-21b0-4505-9662-6d61cccf9cab","5e9ec30b-2c02-4c00-b769-2f68b864261a","5fe96819-5ff8-4940-86d5-b93ac2865379","6069a210-3639-407e-b72e-950eb05856ef","60e6b919-e7c0-4844-a65c-d8b83b3e5287","61a25790-29ac-4fc6-afd8-9c4063f4284d","61a467ab-4460-4e5e-94c1-8150bfe0c954","61c20adf-5564-4516-9dd7-ee3a213be025","6245d2f8-8ef0-4d2a-9abb-99839dc3abf0","6317711a-83fc-4f6e-87d2-a147b34275ec","638b123a-b3d6-40da-ba0f-e1558e0345bf","64398521-073f-4835-b6ca-801bf8965466","64daf0ac-678b-4683-9351-a6daf9c9f849","64e7580a-92bd-4b50-84fc-ee42e47c9014","64ff74a8-e1e8-41ec-98fc-1529f4075074","6561fc02-ce9f-4c3f-a6cd-01260cb0b565","65e20596-3f28-42a7-a25c-53104f395176","671516eb-b088-4a15-aec9-1781ca016e11","68271f76-eaf9-44cc-bb3d-5c56f36e9af9","685141d2-e5cd-4e54-b6ab-a2c1beb5ea05","68a50ced-f89d-4636-a681-8c1de18ee712","68dbf10c-a813-4f76-9066-b3cdd9cfd5d4","6908b583-4a52-4819-82a3-9db9c860aeb6","69436d3d-3714-4020-b7e0-5c9b1fa5d5c1","695f7519-b011-4a86-9226-80c2d9747a42","6a3c7c06-76e4-487d-a63f-4aed3bbb4638","6b62f26c-d875-43ff-bb27-71305f3994df","6bf7b441-34e9-4a0e-bc78-61ed9b077d1c","6d74e713-11f7-4341-9b22-5300a4587a51","6d8f64a6-ba1b-4cd9-8cf9-15f394f9524b","6db95283-d7c2-4182-b461-7317eba75f8a","6de31cb8-94d1-43fa-ba65-1b225420b3b7","6e5e3819-3d75-40d4-9a93-1147834dfd69","6e7e21cb-0116-416d-9d60-b6ca75b90223","6e8878ab-4f77-4645-bec7-44cece5996dd","6e8c0e52-8482-4c33-bc5d-26eaad922e72","6f534ddc-f610-45cd-84dc-bb6df6c5a84f","6fbf2762-1e9c-4d7c-84d0-8561d9a41735","7014b9fc-a906-4ffd-a482-22ba8dbe3b4a","7059baa6-351a-42ec-966f-5741cfcd6371","70c60105-d32e-4e53-b408-aeba336d8e24","70ccecd0-2c10-4146-a560-254809593155","71207752-0d8a-4ab5-be64-cca600608e76","712dc7d6-5543-49fd-bafa-5ffb6c2bb0ce","7132999f-6e2d-4689-8131-7b12076a348d","73014252-76c1-4554-bd1a-c01ec5342dde","7330a921-c6ba-4944-856a-2a9e7434286b","738b5e11-1761-49f1-8a41-fc190f9a63b8","739aaaac-c424-4ea7-a084-62a6fc0438b0","75edde64-3589-424d-bfe1-714c4eaba019","76313c69-8ec7-49e3-a34e-ade26097284c","7646a5be-ae69-4d31-b576-64263ae5ff09","7692114d-2614-47fd-8716-0cd325a9f19f","76b4a655-0051-47c6-a683-c4c3f56e45fc","76c343f5-6955-4ba2-a435-36d55182d1dd","772b4f6b-dc2b-4247-8f55-f37608d75725","776912e7-fa16-4d71-b830-0a5d35f38297","77b88bb8-6bd9-4632-b937-89468fcb5e6a","77c8ea02-9aff-4007-ab11-99847a1834d3","77ea783b-adaa-47be-9918-ca2f161c5d9e","7869f14e-d1d5-4a99-bc2c-f3a0d63077a5","78732e7f-421d-43e8-8f43-341bb01e993e","7880b12e-948b-4f3a-bb0b-604e3dd66f78","78d37787-be3a-4ed3-94b8-e675f2beecf0","78f35064-c662-48ff-a2a9-d26f594500f5","78f5de3d-bcfb-40d3-985a-ff99c573c28c","79df5b20-9e04-4b71-b39a-3142306719f9","79f7e513-94c5-46c9-9df2-1f5d51feb5a6","7a3c4a9d-48db-474f-aeb6-8b4fa08ce6fa","7ab67bc5-1c52-40df-8db0-2bf254f334cf","7abc7b3d-c0cb-438f-b9a9-a1f785cb1c9b","7b42e33d-e4d2-4106-8150-50b3fac2ba7e","7bf0bc4a-75a8-463b-9e96-a8607fc93102","7c029c9c-ff40-467b-98c0-38ac601b98c3","7cee75b2-ca71-4d98-841d-796cbcedfb43","7e0c8a05-aa2b-49b9-9a87-b13d7810a320","7e3d29f4-0a66-42af-9b77-7e65fc04fda6","7e659905-5f87-4181-8fc8-59ab2138b7fc","7e68108b-ad0c-44bf-aace-8ee2240a2325","7f0a1a30-8bef-4297-b566-d5f6b4d277a1","7f4cc1dc-7785-4375-a37c-8b2aaae91945","7f8d3740-40e9-40d4-833e-8f191a43ed14","80784e7c-2939-4233-9953-87370f85a3ae","80b3c994-e943-406d-a02d-d7cc4ebc6bba","81368899-5fef-4f10-80ea-b282eca0f42f","81a585d9-abf8-41ff-b6f6-c9396d36906b","8221d15c-c993-4345-a6bb-6a7d215e3273","82f11c42-9d67-4833-9519-e165e6a7e9c4","83415cd2-7805-450b-be38-99ca0cbb4fea","836f371b-34f5-40e8-a806-e457841e5bc7","839e97b5-c04d-4088-af4e-fa64f4575e51","8490261d-4246-4232-b7fc-23204c14a7b5","849a217f-d532-4a7c-bcbf-d127641f6edf","855eabf3-1113-410c-b30c-41a94456e408","858bcecd-9010-49b9-aaa0-f9bd54a65724","87b61f89-c947-45a0-95a3-7a07b55e2c9a","886eae6e-ced2-4d94-96fa-9bb5385b06f4","8956b4c4-3703-433f-b147-a1f67e728017","899f42b3-2f7a-4d85-8883-ceae911473a9","89f8c7cf-6705-4ff7-8aa8-113c1400ffda","8a2d0438-6681-40e4-8786-04af3d4a169a","8a3fc29c-f5cb-49b9-aabf-a5fef97e7a7e","8a5328db-c55a-488d-b085-fcfa7be184ca","8ab4a950-c558-42fc-ad9b-ce72b7dff817","8b20beee-87c8-45f7-8d3f-088937724fb8","8b8d9fae-a2a8-425a-8b82-34aa8e3eef06","8bafc217-3d83-4551-b2e3-3494ec14b2f9","8c1482b0-9792-4c58-a075-26e8f485f78b","8c8f9a84-2126-4564-9ec9-554cc88e1c63","8c933f03-f1ec-4a82-ba32-b169e97e639b","8ca139d8-08a1-45d4-be9d-2ee5c9b3de43","8cf86c2b-f3f5-45e7-8fa5-da279f652e32","8cf9b48e-cf58-43a9-94ff-2d50846c3386","8d04a06f-06a7-410d-a714-3b8b96ee3319","8dc3bd34-4d12-4728-a53a-b5ae434d74b0","8dc5e0d9-1c8f-4d38-9915-40469988983d","8dd1b4d2-ccf0-498d-81e0-c9d755f5eb13","8e25b6dd-5292-4d0e-b8c6-3cf6678b0cd4","8e4ce9ff-c295-475b-b9fa-88ed65a84f35","8e862d50-8fa5-4b6e-af19-a161dc4c251d","8eae091d-8bd3-44d0-a083-6b4078303bc3","8f21ed59-a8c8-46fc-ac20-2b351fffd36c","8fee8302-39ca-43c3-b139-62e591559306","90520e73-5c7e-4735-a16d-f737e1a230cf","90a57c0e-fa61-45ef-955d-d296403967d5","91595b00-6233-48be-a012-1e87bd704aca","91890c11-b139-474d-b12d-6afd6b7e6aee","91be4db0-7cb3-4202-939b-cb7a26e90019","91e11224-b281-4d51-a960-c7804f6738f4","920abf92-da69-4ff0-9b4a-571e1567f254","9248aaae-57bb-4b30-87ab-f4dda6b96525","92724530-9c7a-44ab-9381-ee56bfccb641","92daaa39-cd2f-4c03-8f41-92d99d0a3366","92e3d45d-8c6e-430a-82d3-86f66286735d","930f3d56-d159-4a9d-a2c3-672feb10adce","937250fe-bcad-4ff8-9406-286a69db7e0a","93e5562a-3cb4-47c0-8270-9af79414f1c1","947702ca-d065-4368-9f26-f859d4642cb6","94de0250-53a6-45c8-85a7-a473f271102e","9526c2b3-f2a2-41ae-89d4-8d276193f43f","956fd08b-d403-4565-84b3-e3ca0132ea89","95d781a5-2f5e-499f-b210-c4a5c50a180c","95ef40f4-7d88-4fb6-bfdd-8d07c96e4ff8","9602f66f-1a77-486a-835f-ddb1d50e6a08","966ac118-6d94-4f3b-9873-7a2440ab92d9","96ad5cbb-b64e-4e18-9aa0-ac076d4b2448","96cb4d9d-4f2b-4f60-b48f-749747aa7c15","988bfa94-0c83-4057-a0c7-0ad885b8919c","98d84005-faac-4e02-9fea-40757b43cf03","99702ff6-e496-422a-aa62-ec933110acf7","99d0c827-4e12-4a44-b309-1b50539dc39e","9a15b06c-8a5c-4e19-887e-e7daf6f653b9","9a38509a-2b74-42a0-af91-ed453e463b95","9a5235cd-5d25-498d-8e36-7a7c0791f212","9ae96b4b-7568-4463-b26c-a567e4a418d7","9b0bfe70-e584-42f2-9a32-984c17ba6d1a","9b33841e-7006-41d4-98b0-313ab151c9ec","9b717e59-7f94-4ccb-8374-f65ea2dd9e58","9b982a48-7e67-496b-b24b-fa9d131f5bb0","9bdd8409-7309-4239-a0f0-39755506610a","9c010ca5-b609-4ae9-8c23-adf5723a9daa","9c0f350d-13ec-4e13-9c4c-1d6bfb9aa0b3","9d075fae-ecd8-44b2-ac24-087afb26a9fa","9d5ab443-b415-45e5-a9f7-539a5299bf27","9db3309e-2893-4a39-876f-fd68ea057e22","9db3bac6-81c9-4bb5-aca6-371cec8efa0d","9dcfcd37-7c54-415e-86d0-6763bd71e209","9e70c602-cb80-472b-9c8d-9625de084fe7","9f2c1082-43bb-41fe-be85-f7153d098eb4","9fc35243-3801-4c02-a8df-2ccf6ea71a17","a000777b-e8fe-4fd6-a455-01bc9056a873","a22426c4-914a-4e0b-a28a-b8573b63e320","a24e28a0-a10f-4324-b008-09564e85573e","a2722f0b-db7d-423a-a91d-c72ef595cc32","a2e22347-f0cb-4cfd-88a3-4f46a16e4946","a2f2b747-a8b8-454c-9f04-b30693f1ec1a","a35d9548-f495-43ef-af66-e13a84c1f12a","a3795f0c-e978-428f-b6b8-c226b58951c8","a39fc1e0-caf0-4cfa-bbf2-fea7ca32c00d","a3a5521a-f9c3-4996-af49-98aaf82afc04","a4369a59-5a39-40f7-b97b-763b575203aa","a45610b3-9e9b-4ef9-aab2-426f85a6cce3","a45827e8-d4b9-4a42-8516-22560568e678","a5b0a88d-7049-4206-8085-4a68ab0bfd81","a5df5731-c9ce-417a-ae07-0359f4e1a989","a5f9dab5-4b13-4a98-8a64-76e69f0ba511","a61c4c14-e45d-45a8-87c7-fec98d46ee79","a624d656-207d-4e73-b615-59e7cf64ad64","a63bc639-5518-4103-8290-c781a6f53f81","a6459577-6834-4f4e-ad7d-a506bef1d372","a64934a3-7eba-4a31-9e7a-dc3e8815d46c","a735e9b5-1231-4aa9-9eb3-c83037b849f2","a76f785d-1972-4bd6-8a43-848d51068712","a785f977-0635-4a20-ab8f-eab79659d16e","a796d1c4-71af-432c-bb1a-df00252554d0","a880c1ee-01e0-479f-a1c3-2739da8ac6b9","a9eebf59-25ec-448f-b7a6-df9a1ecad3a2","aa03a3b5-cdc3-40cc-bd45-69ad65809d2f","aa336b4a-7d69-43d1-b08e-8e1610721279","aa9f8662-8294-4924-a4c0-e26b709ea4a6","aaa212be-1db5-4493-86c8-c01d29348e31","ab1c5293-873e-469c-a538-de236467d0e6","ac1a989a-38d4-4225-a41f-37d54f2f42ae","ac28037a-461b-4fb3-9feb-d3eb739da995","ac928336-f534-4682-a952-c536a1b14e1e","ac97baa8-5e57-45b6-9c64-cb9ce4806294","acd6be3f-745c-41ad-95c9-1db66ba56be2","acf7b664-3e75-4018-81f6-2a14ab59f258","ae010a36-b802-473f-837f-3c1a68a19596","aedefd13-4a00-4b8c-b955-ced6e73b46fe","aeee2369-117c-41f7-a437-805b24d1406b","af9ffcc0-ca8a-43ad-8e9e-31e5b94dd6e6","afb31304-eff0-44f9-b240-b7fa631ea4ce","affd8e02-5bae-447a-8621-d8fcfeff7135","b047f821-e82f-437c-8f36-6fff0c59f8b0","b0559d67-e151-4c6b-b8eb-5e9b5603f487","b06bbd6e-eb0d-45fc-88ef-0e085d6505ef","b0b4e347-90ad-43c7-a236-3ee4d887f069","b0beccf0-eea9-4339-b6c5-00761551c193","b0da67fb-1cb2-4105-ab5c-b7c680b8116c","b22fb908-e616-48ce-a388-46eabe26221a","b294323b-d7a2-4d82-bf99-b388edcb7d32","b29cf026-521f-4345-a885-da27f7981759","b2d83856-2201-4c30-bfcf-9cab62545201","b300be80-6618-4284-b5c3-95c1ab373e6f","b345e3ba-a370-4fdf-855d-2f0707133706","b38e48ff-17c8-470c-ba8b-966da1777e77","b3a5eda4-6339-4303-97ef-c5a467585949","b3f9ffc8-8115-4858-bd71-deaca9889f72","b487e4c0-1135-46f4-807d-cab3f1743132","b4a728fd-e564-4a7c-9dde-e3e8b70c1f68","b59cd300-c4f3-4ba6-8018-134eaf6a399c","b5a4dfac-2a47-48be-8611-d7f69e261c60","b6189c28-8d64-4d54-b399-7cf2cb6e3cd5","b642de4b-9314-4fc7-8714-7567ed348766","b6549f83-e3da-4df2-a1e4-f01773607d56","b658883a-d0f2-4824-8176-ec03a8924824","b74648fc-587c-4d20-9432-58465bd7dca9","b7ea4e7c-c393-4ef3-9ce8-84f5199f44fe","b82c12c2-2ebf-470b-b0d2-92ccc5faa056","b92ec9f6-a56d-40c6-aee2-7d5e1524c985","b9b62f53-0fde-488b-bdac-986a870ff6cb","ba30bfc3-5aec-480d-a80a-fe71b098b14b","bb15b40c-9795-42ae-9f88-8b8023b6c010","bb695ab9-72dc-4b07-b42d-e2109a5254b6","bbeca27a-6c5b-40b9-83a4-a3a2096ff6f8","bbf69bc5-8ee3-4b17-a3b1-51e35dd2d0dc","bc6ea08d-7991-4a57-a1e3-abd508426970","bc7c07a5-d9a7-4fc5-ad03-572ab40f6a7d","bcddeb71-3109-4a08-852f-b437c0a0c4ab","bd07b50a-0bd7-49fa-9ada-96a8f96a62cc","bd081bbf-8e82-405c-a522-f826fa0a6e1d","bd4b4da4-83f6-4280-880b-b6033308f2a2","bdb63d4b-0bca-4b8e-bed0-0dc29ad0bac3","be02bac6-4e21-48d7-a7cc-50415c81f031","be0f315e-6a42-4913-af21-93eb50c66d63","be169f8c-6472-40ec-9b4a-0edcb63e9e2f","be2319a6-d089-4d13-8a7b-3552e654cdc5","bec6fced-62bb-4a99-9ea1-374056b5781b","bec8018f-a12c-4adf-9735-c2093298062d","bed99c19-6452-4258-8369-41d17387062a","bf35ed4f-fa34-4fd6-b7d8-3c4aeda1e9ea","bf964c1b-941f-4a02-895b-0608bddc1ce7","bff33e91-8e52-43f2-b8ae-603b456b08fc","bffca348-2af9-44bb-815f-f7f7240ac975","c0229fef-746c-417a-beb9-150f286da14a","c0a03261-6766-47e6-ba81-c6c58618939d","c0a612c4-b4ac-4dd2-a06e-92516599fafd","c0e4f4d9-6168-4f83-b632-c369d2d6c256","c1cf7cd5-3c25-4760-b783-36e7827154e2","c234458f-1b0a-47a2-9cee-b6920e1ad54e","c2a51829-8319-4271-93b2-a7a635b30e80","c3020976-1654-45c4-bbf1-972a22d79859","c3130653-6ca2-4d7c-ac58-7cfb9257278c","c3b28bdb-e0d1-4d24-8199-8cd7ac12c30f","c3ddcce6-2f0f-4450-9aac-58b89ddc2e50","c4555e99-7f95-4c76-914f-0a42d49975cd","c4a837f2-dbb0-435f-adf9-7632b97f94ab","c4ec37bf-80bd-4f51-a79e-9c20e4048a00","c5258f33-02c6-4b45-b4de-4429b4508924","c559fc49-54f3-426f-b2d2-525790a249a5","c727a648-3ad1-428e-902f-52ad6a6f1c4c","c8820e22-44ee-4ccf-a1fb-f93d98b8b494","c8a516f8-861b-4c3b-9d9b-0adc04ec689f","c8c61b0c-408a-4ba5-9a1c-5208b5f7f8d0","c96f9fb6-ef52-43f9-a458-8602a7c83333","c9c9ea23-93c5-4aae-9786-3b3c03a07778","ca98e0fb-5f07-40c8-9958-84379bcdc35c","cc8e63b9-f3d1-4d53-873e-7c2af8cfd2c7","cca2b9b7-9c12-488d-8f8b-540249d0d350","cd2f1d4f-562c-4a21-b3da-c84fae471104","cd86b167-3fc8-4e5a-9e21-b4ce5a7a05cd","cf1bec1a-72cd-4a1f-8386-a228fbbdc04d","cf258641-b73c-4813-8a23-da47cf79eca5","cfb83039-9a06-4d79-abcc-6f36eec6f29e","cfc571d7-d34f-4898-803a-f4a73c867f86","cff1e8ef-4856-46c0-a72c-83a8b4d34238","d0561d43-cda2-4497-ae19-b1968db179e0","d07d1982-56ff-47ef-87aa-62978f1fcf30","d0a2259b-9ee8-42d7-92c0-d9421dd196e5","d0c5cf64-9844-4b5b-8e6b-b97c50cce053","d0e6b214-520d-4830-8d73-09fd2fdd8e69","d1324c9b-9164-4536-98f0-abf5a67ffa51","d13bb767-1123-48d2-960f-b90b6db3f6ed","d1fe1dbb-4552-418f-b919-1e30261a2e1f","d20af588-2ce3-4e5a-9ab3-949401ead071","d2748f53-0d81-4656-8e4b-5f0128215879","d2814990-4c7a-44ae-8d76-157156aa79bb","d3a9df3b-b542-4915-96ac-0c9027f6870a","d3b7f1bb-b47d-4096-b17a-db0587f566c6","d3e979da-a83e-4ba8-b875-d358bc66678c","d4302a8a-573e-416e-a9f4-f27110cc994a","d4f54250-74a9-4f77-bf60-bf13585c1a1b","d5170ce9-2463-4fec-945b-6c2f23eb7e22","d59cb0b5-fd4f-4dde-a69f-7ca6aa12b89f","d61c6c6c-319f-4636-8482-26b6909f7b8e","d660512c-8ebc-4d65-9590-700894cbb5d8","d6a5ba11-3156-4a0c-958d-5756e18b767b","d714d196-8cbc-4b53-8219-21044a017bce","d7d7f6bf-051c-45a4-b19e-2a50bbd6398e","d7dc37c4-c96b-4682-9746-e1220cbc4a84","d851b88b-6ce6-4889-83c2-e191307bcee6","d894c61a-4062-442e-8ead-5197c3bffd00","d9553285-366e-41c1-9ccd-455497cbedae","d9d3088a-adf1-41b4-9115-6c68d5f8e855","da1218e0-8c75-4f8e-b317-051ce84949a5","daceddb4-5282-46cd-8e2b-cad5e5625a54","dad64d3a-1868-4404-8692-d3c54071140d","db6c8056-f155-434c-a4cb-a532a4707245","db9ee4f9-ca54-4cc1-ac2e-2a2ef5eea9ce","dbce0da1-9c0c-42b8-aac6-7925d663ee6b","dc1d6d81-d825-446c-a862-c9b517837801","dd5b22ec-847a-46bd-828e-be6059b4faec","ddcc2609-59ba-4eca-8b90-993cab90364a","de27b4bc-5e6d-4f0c-9116-df26042d9503","de46f610-fab8-4819-b86a-d1defed319a1","de6d4527-a88e-4001-b8a7-53db87784c8f","debfbf48-bb06-4405-a97b-8249dacdffa0","df18762d-9980-4344-9d4f-e9d2cd8e0456","df84bf1b-8698-4c3e-baa9-926f0efc6a12","e070e97c-142a-4d5d-ae89-c0c6d85a97ac","e08915c9-78ff-450b-a47f-0c9678d16bbd","e0bf27bd-ebd8-40bf-9e8a-8ccde26bd1ec","e0eac72f-915b-41a2-a9cf-1707b65d9ac9","e0fbcf00-be89-472e-af7d-495c4550d10d","e0fedd66-e547-492c-ad0d-9c7b527bdd17","e160cb2a-1d8a-47cb-b136-8347eaab67d7","e1d10d9c-8771-4870-aebf-e767d0fada32","e1e33a2f-0018-4278-83c4-50ed83f009c3","e2140fd0-4367-4ac6-b42c-7041b9f1d92e","e24d0c78-4df5-4cc9-8b9e-65b969c5babd","e306586a-427f-45b7-9e3b-cd9157cec07f","e32a5e25-8e85-474e-ab32-ab28898ac87a","e3a0c382-23c4-44a5-a689-1f65fed388b7","e3de0391-c658-4dab-bef1-2aaf4eae7720","e4f4b3e7-7c8e-42c9-895d-4c8b802ed4f7","e5fdeb2c-afb8-4850-bcdc-86283ffa3486","e62d51cd-0377-4896-bba1-dee62b9279dc","e67477a4-6878-4356-8037-807f41590ad1","e6cd2ccc-3148-4507-856d-55140c54d09d","e905b6c5-1874-4d3b-8181-bc4bfab73bd7","e906bdc0-3b04-46ed-a162-92a366319cbf","e91f9c5d-bad6-4c29-b755-d81aa704cf53","e9c266e3-d403-434a-b645-dcb9cf441680","ea01e610-43b8-44a3-9480-14f92f68a0b5","ea2e4498-a91e-48b0-b14f-a7917241160b","eba0c7c5-ed63-41a5-93e1-a979a6f983b9","ebbaf2e2-b4af-4a84-ab27-d8a6b40c9552","ec2a9aea-86f9-4324-a7d9-7530e1cdc54d","ec2bacc7-22b2-4f71-b7d7-bb4bb46d6eda","ec7661ef-9119-4fe3-8363-b0c3b1d75cd7","ed2cfa62-c972-4373-b405-a075697d009c","ed351e4f-7ee7-4e84-a69d-02b59cebd180","ed74e8a1-5636-4d96-aff4-4674494c5e00","ee9eea62-2bdf-4b71-8655-0ba275fc8adf","eee75629-86b4-40b0-884a-22646ebf6e27","eeecf096-87dd-4dcb-953f-700445bf3f3a","ef2d6fc9-ddad-4dd2-b218-afa1a5449b7e","ef57bbe1-8507-4284-8d08-6b10b7894f96","efd42c61-1e41-4df9-aa70-a39cc20dff51","efd86f2a-bd28-4731-838d-78e67be8b49e","f0578f26-1396-4e1d-9986-8fc6c55aeb66","f10e5b17-6099-445d-9a7b-484eeff7cea8","f12c5ae3-8c55-4bd9-a64f-3960d45c0563","f15e81c7-38fd-402b-bd49-68869fe7142c","f1c49677-840f-409f-8af2-033989f6b774","f23b716f-51b2-402a-9a69-de190d3f6411","f2562487-95fd-48ad-adb8-3f87d49f1584","f3448b8b-8baf-492a-a1d6-4bb676c43cab","f398f676-f079-44b9-a6c4-5a9d5dd6bbdc","f3d3de4f-dfef-4c04-a297-4fd90884087e","f3df2707-e262-470a-a91e-7e588da90ce6","f49aa320-797b-4608-acda-f68ef21d1c0d","f4cd8b2b-76f1-4444-8f6a-c904adf36d55","f52db5b6-59bb-4215-9bdb-ba3dde3e5e4b","f53ed206-8ec4-46a6-8603-c819682e1433","f5e8da7b-f565-403b-9603-5f53cd3be8fe","f670e5e4-721b-422a-b10e-09bb742cbc4b","f7919aa3-044d-42b2-800f-a6e3226efe77","f7b92adb-a384-4e03-8ba7-1e41b9fb2516","f7c81707-adf0-48fd-8720-25db4d21b0b2","f7f7921f-96cc-4174-a40d-ec96427a8c98","f8123a70-0c28-4e8b-9e13-d6b5c7eb54f4","f82b281f-d3c7-4eb8-9a10-b4808ca6cfcd","f849f726-c6a2-400d-9b90-fe050f8ef5eb","f8a3c4a0-892d-4e74-bb21-00786705766e","f8c2f901-7d7b-47ec-a3d4-96ddcbd9218c","f9369d0a-87c0-4c29-b43c-cd45c007f8d6","f96b4124-ebc2-443c-981d-9869b5a3fcf3","f9c4ab8b-9f84-4b92-a114-93b082c15080","f9cba2b8-d865-46e8-81f1-752598a0d729","fa2a8e84-2a04-444a-8551-5f2931f4a711","fa641d46-d002-4903-af72-e96971f558bc","fa6f05fa-30e4-4b2c-9641-8a5847b59d65","faca8395-8228-40ea-b638-000a494a8b55","fb839476-63ba-4e17-b97d-4bc282a85648","fc8c4d2d-416c-4b8b-b46d-0e11f0e8245d","fc9a66a1-367c-4035-a22e-00fab55be5a0","fd1b9e7c-09d0-4907-9f48-34289f3cd2cc","fe5f01e9-f85f-41e8-9527-88f76e7bfc02","fe7f4393-38f9-43b5-873b-58246183b874","fe9d36d3-9373-407c-91fd-975d8ee9e4fe","fea43ef7-99c5-40b6-9a59-9661b3b710cf","ff3ffe47-53a3-42ec-ae89-afc79793380d","ff68b640-e194-4894-b9c0-76ed619c764d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD2","DDE","DDF","DDH","DDI","DDJ","DDM","DDN","DDO","DDQ","DDS","DDT","DDU","DFT","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","JVC","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL02","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PELP","PF19","PF20","PGPX","PGRU","PIP","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC04","WC97","WC98","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"jace, the mind sculptor":{"name":"Jace, the Mind Sculptor","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Jace"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"[+2]: Look at the top card of target player's library. You may put that card on the bottom of that player's library.\n[0]: Draw three cards, then put two cards from your hand on top of your library in any order.\n[−1]: Return target creature to its owner's hand.\n[−12]: Exile all cards from target player's library, then that player shuffles their hand into their library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Dig","player":{"type":"Player"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":{"type":"Loyalty","amount":2},"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+2]: Look at the top card of target player's library. You may put that card on the bottom of that player's library.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"count":{"type":"Fixed","value":2},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[0]: Draw three cards, then put two cards from your hand on top of your library in any order.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"destination":null},"cost":{"type":"Loyalty","amount":-1},"sub_ability":null,"duration":null,"description":"[−1]: Return target creature to its owner's hand.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZoneAll","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-12},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−12]: Exile all cards from target player's library, then that player shuffles their hand into their library.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"7f77a84e-5a4b-4834-aefa-3cecc175ae8e","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["0e606072-a3aa-4300-ba90-ec92a721fa76","3a1a1910-9587-481c-9e5c-5eb0c3b098c6","97c67e86-5aa5-4136-a15c-c0c5704e2b94","9d20e671-9b41-4591-b1ef-2a297411beb7","a5d1f66f-75b5-4a9b-8b98-f237f065de9c","c057dc0d-4017-4e60-9c5e-45fc569a8d31","c8817585-0d32-4d56-9142-0d29512e86a9","cbe639bb-5797-4bec-b55b-aed296337e92","e1fcd832-bbc6-4fb3-92f1-cd307fb0bca5","ec386bc3-137b-49b5-8380-8daff470f0bc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","A25","BLC","EMA","MED","PRM","SLD","V13","VMA","WWK"],"rulings":[{"date":"2020-08-07","text":"If the target player for Jace's last ability has no cards in hand, that player shuffles nothing into their library, and that player's library will remain empty. That player won't lose the game until they try to draw from the empty library."},{"date":"2020-08-07","text":"You draw three cards and put two cards back all while Jace's second ability is resolving. Nothing can happen between the two, and no player may choose to take actions."}],"rarities":["mythic"]},"jace, wielder of mysteries":{"name":"Jace, Wielder of Mysteries","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Jace"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"If you would draw a card while your library has no cards in it, you win the game instead.\n[+1]: Target player mills two cards. Draw a card.\n[−8]: Draw seven cards. Then if your library has no cards in it, you win the game.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mill","count":{"type":"Fixed","value":2},"target":{"type":"Player"},"destination":"Graveyard"},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Target player mills two cards. Draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":7},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-8},"sub_ability":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−8]: Draw seven cards. Then if your library has no cards in it, you win the game.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would draw a card while your library has no cards in it, you win the game instead.","condition":{"type":"OnlyIfQuantity","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}}}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"5277a68e-1ceb-4b40-8e10-3d0564f5d7be","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["1f13face-aa33-4f57-ad06-5313b4834e02","6adb7d73-4482-4930-8497-cffd169b57e2","6dece604-04f2-48ac-8e6c-ef850c0db190","79b2d33b-2689-4d03-b297-a196b376804d","802d126d-f56c-4990-ba85-9ecbe41f5c9a","d50eb8cf-dc8d-4c7e-bff7-db9254ff8a90"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PRM","PWAR","SLD","WAR"],"rulings":[{"date":"2019-05-03","text":"Follow the instructions in the order listed on Jace’s first loyalty ability: if you target yourself, you’ll put the top two cards of your library into your graveyard and then draw a card."},{"date":"2019-05-03","text":"If for some reason you can’t win the game (because your opponent controls Platinum Angel, for example), you won’t lose for having tried to draw a card from a library with no cards in it. The draw was still replaced."},{"date":"2019-05-03","text":"If the target player is an illegal target when Jace’s first loyalty ability tries to resolve, it doesn’t resolve. You won’t draw a card."},{"date":"2019-05-03","text":"If two or more players control Jace, Wielder of Mysteries and each player is instructed to draw a number of cards, first the player whose turn it is draws that many cards. If this causes that player to win the game instead, the game is immediately over. If the game isn’t over yet, repeat this process for each other player in turn order."},{"date":"2019-05-03","text":"If your library has fewer than seven cards in it while resolving Jace’s last ability, and Jace has already left the battlefield, you’ll draw as many cards as you can and then win the game before state-based actions would cause you to lose the game for trying to draw from an empty library."}],"rarities":["rare"]},"jackal pup":{"name":"Jackal Pup","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Jackal"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature is dealt damage, it deals that much damage to you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to you.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"993e41e6-0643-4a1f-8ada-b7a4aae486d9","metadata":{"source_printing_ids":["3707ab74-9aec-4d30-86e0-ffa5f72d5b4f","58dc5b2d-12a1-4eba-803e-0f0dfa290672","86c86925-a78f-4696-98aa-477a7602276b","9d8743b2-30e3-4d15-89fc-72974747aec5","bb02ff74-e73f-467e-ac26-429d279a8e95"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["A25","F01","PD2","PLST","PRM","TMP","WC98","WC99"],"rarities":["common","uncommon"]},"jenova, ancient calamity":{"name":"Jenova, Ancient Calamity","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Alien"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, put a number of +1/+1 counters equal to Jenova's power on up to one other target creature. That creature becomes a Mutant in addition to its other types.\nWhenever a Mutant you control dies during your turn, you draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put a number of +1/+1 counters equal to ~'s power on up to one other target creature. That creature becomes a Mutant in addition to its other types.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Mutant"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a Mutant you control dies during your turn, you draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"9370f6bf-d6a0-4c5b-828f-7229f563cc07","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["22dd493f-e481-4563-8f87-c5bdbfd54fdd","534f98ee-7bc2-44d6-b49f-f57c051807d5","9f80efa6-769f-4205-b69e-9cf0e78b7bcd"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"If Jenova dies at the same time as one or more Mutants you control, its last ability will trigger for each of those Mutants (including itself if it somehow became a mutant)."},{"date":"2025-06-06","text":"If Jenova isn't on the battlefield at the time its first ability resolves, use Jenova's power as it last existed on the battlefield to determine how many counters to put on the target creature."},{"date":"2025-06-06","text":"Use the power of the Mutant that died as it last existed on the battlefield to determine how many cards to draw with Jenova's last ability."}],"rarities":["rare"]},"joel, resolute survivor":{"name":"Joel, Resolute Survivor","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Survivor"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever a creature token dies, put a +1/+1 counter on Joel and draw a card. This ability triggers only once each turn.\nPartner—Survivors (You can have two commanders if both have this ability.)","non_ability_text":null,"flavor_name":null,"keywords":["Menace",{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Token"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature token dies, put a +1/+1 counter on ~ and draw a card. This ability triggers only once each turn.","constraint":{"type":"OncePerTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"64611260-c9f7-4375-b67a-f88fee6d3bff","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["713ab02f-cd48-420d-a2fe-ef460e6ce2d2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD"],"rarities":["mythic"]},"judge unworthy":{"name":"Judge Unworthy","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target attacking or blocking creature. Scry 3, then reveal the top card of your library. Judge Unworthy deals damage equal to that card's mana value to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Blocking"}]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target attacking or blocking creature. Scry 3, then reveal the top card of your library. ~ deals damage equal to that card's mana value to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9d687287-7b3f-48c8-b5df-0d7550b9ad66","metadata":{"source_printing_ids":["46b0f9cb-f848-460e-94cc-d85b23133d6e","ce06e910-e130-4975-92db-1399ff3d44b7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FUT","TSR"],"rulings":[{"date":"2021-03-19","text":"Destroying a blocking creature won't cause any of the creatures it was blocking to become unblocked. They won't deal combat damage to the defending player or planeswalker (unless they have trample)."},{"date":"2021-03-19","text":"If the target creature is an illegal target by the time Judge Unworthy tries to resolve, the spell doesn't resolve. You don't scry 3 or reveal any card."}],"rarities":["common"]},"judgment of alexander":{"name":"Judgment of Alexander","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Prevent all damage that would be dealt to you this turn by sources your opponents control. Whenever damage from a creature is prevented this way, each commander creature you control deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Controller"},"scope":"AllDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"eb226c0d-a71b-4f9c-9fce-47d61dcfa8f8","metadata":{"source_printing_ids":["2327bf49-348c-44e5-9a6b-97ef1c810079"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rarities":["rare"]},"kaervek the merciless":{"name":"Kaervek the Merciless","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever an opponent casts a spell, Kaervek deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, ~ deals damage equal to that spell's mana value to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"c7b72d38-0aa0-4e17-9dd5-9276d7cb21ec","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["298d3b70-f858-4138-97e4-1442a5b6afb6","444fa5a5-b5b0-4555-bd69-67c1c0cbf317","4e9a163e-7896-47bf-9b9b-dcf011402ce7","95c5bd95-b483-4dfb-9010-cfee47d22468","d9b8259d-0bfa-4327-ac91-157c0b9e7dfb","df111928-8f05-460c-989b-6cfc5cf5cd0f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2X2","ARC","DSC","SCD","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"Alternative costs, additional costs, and cost reductions don't change a spell's mana value. Its mana value is still based on its mana cost."},{"date":"2021-03-19","text":"An ability that triggers when a player casts a spell resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2021-03-19","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."}],"rarities":["rare"]},"kaervek's purge":{"name":"Kaervek's Purge","mana_cost":{"type":"Cost","shards":["X","Black","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature with mana value X. If that creature dies this way, ~ deals damage equal to the creature's power to the creature's controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"daa86c76-aacb-4244-9639-81f758c634b2","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the","line_index":0}],"metadata":{"source_printing_ids":["7a42ef95-92ec-40fe-ab30-a476f012a525"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["uncommon"]},"kaito, bane of nightmares":{"name":"Kaito, Bane of Nightmares","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Kaito"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"Ninjutsu {1}{U}{B} ({1}{U}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nDuring your turn, as long as Kaito has one or more loyalty counters on him, he's a 3/4 Ninja creature and has hexproof.\n[+1]: You get an emblem with \"Ninjas you control get +1/+1.\"\n[0]: Surveil 2. Then draw a card for each opponent who lost life this turn.\n[−2]: Tap target creature. Put two stun counters on it.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ninjutsu":{"type":"Cost","shards":["Blue","Black"],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Ninja"}],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Ninjas you control get +1/+1"}],"triggers":[]},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: You get an emblem with \"Ninjas you control get +1/+1.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Surveil","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"OpponentLostLife"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Surveil 2. Then draw a card for each opponent who lost life this turn.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"stun","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−2]: Tap target creature. Put two stun counters on it.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":4},{"type":"AddSubtype","subtype":"Ninja"},{"type":"AddType","core_type":"Creature"},{"type":"AddKeyword","keyword":"Hexproof"}],"condition":{"type":"And","conditions":[{"type":"DuringYourTurn"},{"type":"HasCounters","counters":{"type":"OfType","data":"loyalty"},"minimum":1}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, as long as ~ has one or more loyalty counters on him, he's a 3/4 Ninja creature and has hexproof."}],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"fa43077b-5d8b-4fb1-8dda-2a9185e6715e","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["14901700-881a-4c79-b162-aeeb1579757e","55a14f30-4ff9-4472-90a6-c3139f1c18e5","79d24cf8-107e-4b5b-a4f5-a7498647abef","a7927a69-62a9-4f69-923d-f651bb03a7b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"Although Kaito enters attacking when his ninjutsu ability resolves, he was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2024-09-20","text":"As you activate Kaito's ninjutsu ability, you reveal Kaito from your hand and return the attacking creature. Kaito isn't put onto the battlefield until the ability resolves. If Kaito leaves your hand before then, he won't enter at all."},{"date":"2024-09-20","text":"If an opponent lost life this turn and subsequently lost the game, Kaito's fourth ability still counts that player when determining how many cards to draw."},{"date":"2024-09-20","text":"If at least one creature in combat has first strike or double strike, you can activate Kaito's ninjutsu ability during the first-strike combat damage step. In that case, Kaito will deal combat damage during the regular combat damage step, even if he has first strike."},{"date":"2024-09-20","text":"Kaito enters attacking the same player, planeswalker, or battle the returned creature was attacking. This is a rule specific to ninjutsu; in other cases, when a creature is put onto the battlefield attacking, that creature's controller chooses which player, planeswalker, or battle it's attacking."},{"date":"2024-09-20","text":"Kaito's fourth ability cares whether opponents lost life this turn, not how their life totals changed. For example, an opponent who gained 2 life and lost 1 life in the same turn still lost life that turn."},{"date":"2024-09-20","text":"Kaito's second ability causes him to stop being a planeswalker during your turn as long as he has at least one loyalty counter on him. While he's a creature, damage dealt to him won't cause loyalty counters to be removed. You can still activate Kaito's loyalty abilities."},{"date":"2024-09-20","text":"One or more stun counters on a permanent create a single replacement effect that stops the permanent from untapping. That effect is \"If a permanent with a stun counter on it would become untapped, instead remove a stun counter from it.\""},{"date":"2024-09-20","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. If you wait until after the declare blockers step, because all combat damage is dealt at once, Kaito won't normally deal combat damage."},{"date":"2024-09-20","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."}],"rarities":["mythic"]},"kamahl's will":{"name":"Kamahl's Will","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one. If you control a commander as you cast this spell, you may choose both instead.\n• Until end of turn, any number of target lands you control become 1/1 Elemental creatures with vigilance, indestructible, and haste. They're still lands.\n• Choose target creature you don't control. Each creature you control deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1},{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Indestructible"},{"type":"AddKeyword","keyword":"Haste"},{"type":"AddType","core_type":"Creature"},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddSubtype","subtype":"Elemental"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become 1/1 Elemental creatures with vigilance, indestructible, and haste"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"They're still lands"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"a32860dd-e8df-4a3c-bdc2-948dcd07cf9a","modal":{"min_choices":1,"max_choices":1,"mode_count":2,"mode_descriptions":["Until end of turn, any number of target lands you control become 1/1 Elemental creatures with vigilance, indestructible, and haste. They're still lands.","Choose target creature you don't control. Each creature you control deals damage equal to its power to that creature."],"allow_repeat_modes":false,"constraints":[{"type":"ConditionalMaxChoices","condition":{"type":"Static","condition":{"type":"ControlsCommander","ownership":"Any"}},"max_choices":2,"otherwise_max_choices":1}],"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["51fe007f-fddf-4b3a-b336-0a88df95cb14","f5c98793-8bc0-419b-a1a9-7360f370bcdf"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"A land that becomes a creature because of the first mode will retain any other supertypes, card types, subtypes, and abilities it had."},{"date":"2020-11-10","text":"Even though the card is named after a specific character, controlling any commander will satisfy its condition."},{"date":"2020-11-10","text":"If some but not all of the targets become illegal, Kamahl's Will will resolve but have no effect on illegal targets. If the target of the second mode becomes illegal, no damage will be dealt."},{"date":"2020-11-10","text":"If you choose both modes, the effects happen in the listed order. The lands will become 1/1 creatures in time to deal damage to the target of the second mode."},{"date":"2020-11-10","text":"Once you've announced that you're casting a spell, players can't take any actions until you've finished doing so. Notably, opponents can't try to remove your commander to change how many modes you may choose."},{"date":"2020-11-10","text":"Once you've chosen both modes for the spell, it doesn't matter whether you continue to control a commander. This is true even if you somehow no longer control a commander as you finish casting the spell."},{"date":"2020-11-10","text":"The commander you control doesn't have to be your commander."},{"date":"2020-11-10","text":"There's no extra bonus if you control more than one commander."}],"rarities":["rare"]},"karplusan yeti":{"name":"Karplusan Yeti","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Yeti"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d84884-4a58-4187-aa5c-20b39b379590","metadata":{"source_printing_ids":["6ad95118-104c-41d4-a393-941e7b97fd8e","7dd9b214-d9fe-4c2e-b45b-7145ad98c408","f2a0535c-36d0-4e77-bf59-9c7a6c9b2ddb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["9ED","ICE"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."}],"rarities":["rare"]},"keeper of secrets":{"name":"Keeper of Secrets","mana_cost":{"type":"Cost","shards":["Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"First strike, haste\nSymphony of Pain — Whenever you cast a spell from anywhere other than your hand, this creature deals damage equal to that spell's mana value to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Haste"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"NotEquals","data":"Hand"},"description":"Whenever you cast a spell from anywhere other than your hand, ~ deals damage equal to that spell's mana value to target opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"23f86ee2-b1e3-45c2-bfd5-044919033922","metadata":{"source_printing_ids":["4fe408aa-14d9-4afd-abfe-b5156c5341b7","6277a423-3aae-4e9d-82d2-f3ca98f1cdad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rarities":["rare"]},"kefka, dancing mad":{"name":"Kefka, Dancing Mad","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"During your turn, Kefka has indestructible.\nAt the beginning of your end step, exile a card at random from each opponent's graveyard. You may cast any number of spells from among cards exiled this way without paying their mana costs. Then each player who owns a spell you cast this way loses life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"Opponent"},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ExiledBySource"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false,"target_selection_mode":{"type":"Random"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, exile a card at random from each opponent's graveyard. You may cast any number of spells from among cards exiled this way without paying their mana costs. Then each player who owns a spell you cast this way loses life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":{"type":"DuringYourTurn"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, ~ has indestructible."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"fe5690d3-547b-4ce9-8e94-77fdc0e9c5c6","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["21cfc161-11b8-4253-a872-3b08a13b6991","76f9dd01-0adb-4dbd-9930-fb6546e569ab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"Cards you choose not to cast this way (or can't cast this way) remain in exile."},{"date":"2025-06-06","text":"If a spell you cast has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2025-06-06","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, those must be paid to cast the spell."},{"date":"2025-06-06","text":"You cast the spells one at a time, choosing modes, targets, and so on. The last spell you cast will be the first one to resolve."},{"date":"2025-06-06","text":"You choose which spells to cast (if any) as Kefka's last ability resolves. You can't wait to cast them later in the turn. Timing restrictions based on their types are ignored."}],"rarities":["rare"]},"keldon flamesage":{"name":"Keldon Flamesage","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist\nWhenever this creature attacks, look at the top X cards of your library, where X is this creature's power. You may exile an instant or sorcery card with mana value X or less from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, look at the top X cards of your library, where X is ~'s power. You may exile an instant or sorcery card with mana value X or less from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card without paying its mana cost.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0efedec3-b57c-4395-ad72-19d79560c99f","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Enlist\nWhenever this creature attacks, look at the top X cards of your library, where X is this creature's power. You may exile an instant o","line_index":0}],"metadata":{"source_printing_ids":["710d2a3c-63a7-4e33-9ae3-21fb6b3d8326","9dacef18-5c0d-4c99-8273-1f9c896552bf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"If Keldon Flamesage leaves the battlefield in response to its triggered ability, use its power as it last existed on the battlefield to determine the value of X."},{"date":"2022-09-09","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-09-09","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as a kicker cost. If the card has any mandatory additional costs, you must pay those to cast the spell."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["rare"]},"kindle the carnage":{"name":"Kindle the Carnage","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card at random. If you do, Kindle the Carnage deals damage equal to that card's mana value to each creature. You may repeat this process any number of times.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"random":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Discard a card at random. If you do, ~ deals damage equal to that card's mana value to each creature. You may repeat this process any number of times.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"repeat_until":{"type":"ControllerChoice"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6562f141-7f57-4218-b873-f2fc0211e124","metadata":{"source_printing_ids":["4b5dfa91-8f93-41b7-95e9-3374550f1617"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rulings":[{"date":"2006-05-01","text":"A creature that’s been dealt lethal damage by an iteration of this effect will remain on the battlefield and be dealt more damage by any further iterations. After you stop, all creatures that have been dealt lethal damage are put into their owners’ graveyards at the same time."},{"date":"2006-05-01","text":"A single regeneration shield is sufficient to save a particular creature, no matter how many instances of damage are on it."},{"date":"2006-05-01","text":"All the damage has the same source. However, each iteration of this process is a separate instance of damage. An effect that prevents damage the “next time” this card would deal it will prevent damage from only one iteration."},{"date":"2006-05-01","text":"Any damage prevention or regeneration abilities must be activated before Kindle the Carnage starts resolving in order to have any effect. You can’t wait to see which (if any) cards are discarded."},{"date":"2006-05-01","text":"You decide whether to repeat the process after each iteration. In other words, you discard a card, see what it is, Kindle the Carnage deals damage, then you decide whether to continue. If so, you discard a card, see what it is, Kindle the Carnage deals damage, then you decide whether to continue, and so on."}],"rarities":["uncommon"]},"knockout maneuver":{"name":"Knockout Maneuver","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control, then it deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Put a +1/+1 counter on target creature you control, then it deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7e4931f4-f518-4200-aad4-4ac8acf202e5","metadata":{"source_printing_ids":["9d218831-2a41-46a3-8e9d-93462cae5cab"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["SOA","TDM"],"rulings":[{"date":"2025-04-04","text":"If either creature is an illegal target as Knockout Maneuver resolves, the creature you control won't deal damage. If the creature you control is an illegal target, you won't put a +1/+1 counter on it even if it's still on the battlefield."},{"date":"2025-04-04","text":"You can't cast Knockout Maneuver unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"kodama of the east tree":{"name":"Kodama of the East Tree","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Reach\nWhenever another permanent you control enters, if it wasn't put onto the battlefield with this ability, you may put a permanent card with equal or lesser mana value from your hand onto the battlefield.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}},"Reach"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}}},{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another permanent you control enters, if it wasn't put onto the battlefield with this ability, you may put a permanent card with equal or lesser mana value from your hand onto the battlefield.","constraint":null,"condition":{"type":"Not","condition":{"type":"PlacedByAbilitySource"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cb1afab6-b9c8-4b9c-840b-24106523a783","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2ee1d489-0980-444e-8b07-107be791b76e","896f357e-38e6-4259-91bc-1c2e7119d1d5","af5105ee-09e2-4344-ab39-00f0e9034c47"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC","CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If a permanent or a permanent card in your hand has {X} in its mana cost, {X} is considered to be 0."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["rare"]},"kozilek's command":{"name":"Kozilek's Command","mana_cost":{"type":"Cost","shards":["X","Colorless","Colorless"],"generic":0},"card_type":{"supertypes":[],"core_types":["Kindred","Instant"],"subtypes":["Eldrazi"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Target player creates X 0/1 colorless Eldrazi Spawn creature tokens with \"Sacrifice this token: Add {C}.\"\n• Target player scries X, then draws a card.\n• Exile target creature with mana value X or less.\n• Exile up to X target cards from graveyards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Eldrazi Spawn","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"types":["Creature","Eldrazi","Spawn"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"owner":{"type":"Player"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice ~: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"2f2c549d-0293-4b9d-b9a8-ff392800f3a5","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Target player creates X 0/1 colorless Eldrazi Spawn creature tokens with \"Sacrifice ~: Add {C}.\"","Target player scries X, then draws a card.","Exile target creature with mana value X or less.","Exile up to X target cards from graveyards."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"related_token_ids":["05897422-e2c4-5f20-93af-97fe0ba44515"],"source_printing_ids":["92585587-cfdc-406a-9114-4f6dd8802c37"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"If a creature has {X} in its mana cost, X is 0 when determining its mana value."},{"date":"2024-06-07","text":"If all of Kozilek's Command's targets are illegal as it tries to resolve, it will do nothing. If at least one target is still legal, it will resolve and do as much as it can."},{"date":"2024-06-07","text":"Kindred is a card type that allows noncreature cards to have creature types. For example, Echoes of Eternity is an Eldrazi (although not a creature) while on the battlefield and an Eldrazi card (although not a creature card) in zones other than the battlefield."},{"date":"2024-06-07","text":"While it appears only on cards that already have other card types, kindred is a card type and will be counted by effects that refer to the number of card types among cards in a zone."}],"rarities":["rare"]},"krark's thumb":{"name":"Krark's Thumb","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would flip a coin, instead flip two coins and ignore one.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"CoinFlip","execute":{"kind":"Spell","effect":{"type":"FlipCoins","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"win_effect":null,"lose_effect":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would flip a coin, instead flip two coins and ignore one.","condition":null,"valid_player":"You"}],"color_override":null,"scryfall_oracle_id":"a97c8482-775c-4f11-9872-25b4f9bfcb1a","metadata":{"source_printing_ids":["78a5d49a-747e-4ec8-a20a-ca917c315774","9f63277b-e139-46c8-b9e3-0cfb647f44cc","d011d66d-7d27-4305-8a1b-7b5c24169769"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MRD","PLST","SLD"],"rulings":[{"date":"2004-10-04","text":"If you and your opponent both flip at the same time, you can see your opponent's result before choosing which result to keep."},{"date":"2019-01-25","text":"If an effect tells you to flip more than one coin at once, this replaces each individual coin flip. For example, if an effect tells you to flip two coins, you don't flip four coins and ignore any two; you flip two coins, flip two coins, and then ignore one flip from each pair of flips. You will know the results of all simultaneous flips before choosing which to ignore."}],"rarities":["rare"]},"krark-clan ironworks":{"name":"Krark-Clan Ironworks","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice an artifact: Add {C}{C}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice an artifact: Add {C}{C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"68e1f7e0-a9b3-437f-8086-0c0cb85f2880","metadata":{"source_printing_ids":["8b85524c-76dd-46cb-b716-2d954f329bbb","c60174d6-1f9d-4870-b3db-34d6fcb3f6ab","d43f43f4-5551-4fe8-bff9-c72ad76008fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"banned","oathbreaker":"legal","vintage":"legal"},"printings":["5DN","MB2","SLC","WC04"],"rarities":["uncommon"]},"krosan verge":{"name":"Krosan Verge","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped.\n{T}: Add {C}.\n{2}, {T}, Sacrifice this land: Search your library for a Forest card and a Plains card, put them onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Land",{"Subtype":"Forest"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Plains"}],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":2},"reveal":false,"selection_constraint":{"type":"MatchEachFilter","filters":[{"type":"Typed","type_filters":["Land",{"Subtype":"Forest"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Plains"}],"controller":null,"properties":[]}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{2}, {T}, Sacrifice ~: Search your library for a Forest card and a Plains card, put them onto the battlefield tapped, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"d9a10971-f32b-4978-952d-fed0a5bc9e36","metadata":{"source_printing_ids":["00a8776a-58f2-4a42-8919-2dd255f3f577","00a9814a-51f7-43b4-8835-91309b0c9d31","083fd5cb-0a26-4549-b054-3148d92e0ce9","0992a101-775e-4950-b4be-1b2dec96674f","15f70ddb-3b08-44fb-8060-37e429a15feb","19fc5bec-f877-430c-8e83-e6c5fe97f3c4","22bf947c-41c0-44b1-a9bb-f1327a4b6dd1","5ca98bdb-8e5f-439f-8c5a-3562c268e767","79ca6f07-7a41-464e-814f-eeaae048d95d","7b5ca583-38f2-4692-a29c-326510be5bb8","81e39f87-86ad-4960-afb9-b9328be2a26b","8d6adf14-e1ee-4248-bad2-67f209e686f6","95f96865-2dac-4011-9b3e-e2e7d962a9c5","bae25abc-22c2-436d-9e08-f123543a0911","d94c0ed8-a4f0-48ab-809e-5976fd87b97a","dabcee54-dda3-4208-81a8-e1ae3f79acf5","ea793198-7768-4844-98d2-cc6fba11a32d","f0c6047f-c246-4c9c-bee0-de2d5f13d475","f11d1a77-db1f-4ca0-a8ad-de85bc05b1dc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ARC","C16","C17","C18","C19","C20","CMM","DMC","JUD","MIC","MKC","MOC","ONC","OTC","PC2","PCA","PLST","PRM","PZ1","WC03","WOC","ZNC"],"rarities":["uncommon"]},"kutzil's flanker":{"name":"Kutzil's Flanker","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen this creature enters, choose one —\n• Put a +1/+1 counter on this creature for each creature that left the battlefield under your control this turn.\n• You gain 2 life and scry 2.\n• Exile target player's graveyard.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Put a +1/+1 counter on ~ for each creature that left the battlefield under your control this turn.","You gain 2 life and scry 2.","Exile target player's graveyard."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"mode_abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"ZoneChangeCountThisTurn","from":"Battlefield","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Exile","target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ba557e19-a409-4c02-a9ac-a8fb77762e43","metadata":{"source_printing_ids":["685b735e-52a6-4fd6-a12e-d059c13d4afc","d1201811-54ab-4c4e-b6e1-19b0d07e5ede"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rarities":["rare"]},"laboratory maniac":{"name":"Laboratory Maniac","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"If you would draw a card while your library has no cards in it, you win the game instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would draw a card while your library has no cards in it, you win the game instead.","condition":{"type":"OnlyIfQuantity","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}}}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"aa286dd5-aa19-446d-9003-684d81eb57ca","metadata":{"source_printing_ids":["1e9e13cf-4cb4-41f3-88e0-6836a16e905b","27a15b64-ea6a-4234-b26c-9dd3bdc14b98","2e1c7054-d6a7-4962-804d-c470bb8e39d3","39b475ec-e63c-4fb2-b83e-b1c858003137","51b080d5-ae4b-4d5e-acf2-c51695d8750a","5840b48c-7a14-481e-9d21-0c68aee16020","608567fd-9f94-4058-831a-77cb6019ef02","7a5be94c-08b8-4964-a79d-e22ea6e94be8","809205f3-acf5-4244-b360-09ce4ba76795","8b7cc0cc-3414-40b9-91da-80a435a457fc","d15bd831-aa75-42c1-905c-6e8cc644c7fc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","INR","ISD","PLST","SLD","TSR","UMA"],"rulings":[{"date":"2021-03-19","text":"If for some reason you can't win the game (because your opponent has cast Angel's Grace this turn, for example), you won't lose for having tried to draw a card from a library with no cards in it. The draw was still replaced."},{"date":"2021-03-19","text":"If two or more players each control a Laboratory Maniac and each player is instructed to draw a number of cards, first the player whose turn it is draws that many cards. If this causes that player to win the game instead, the game is immediately over. If the game isn't over yet, repeat this process for each other player in turn order."}],"rarities":["uncommon","rare","special"]},"lagonna-band storyteller":{"name":"Lagonna-Band Storyteller","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Advisor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may put target enchantment card from your graveyard on top of your library. If you do, you gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may put target enchantment card from your graveyard on top of your library. If you do, you gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0d208c1e-c273-437f-9aea-136400e450e1","metadata":{"source_printing_ids":["c3a87498-2c2c-411a-aa71-d594b2c6cb26"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["THB"],"rulings":[{"date":"2020-01-24","text":"If a card in a player’s graveyard has {X} in its mana cost, X is considered to be 0."}],"rarities":["uncommon"]},"lammastide weave":{"name":"Lammastide Weave","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana value.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardName","persist":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana value.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"74250f3e-ad88-486f-a10a-90d9a2f0097f","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana val","line_index":0}],"metadata":{"source_printing_ids":["667fd7ab-de75-48e7-8d4b-a96130ae4666"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LRW"],"rarities":["uncommon"]},"lathiel, the bounteous dawn":{"name":"Lathiel, the Bounteous Dawn","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Unicorn"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nAt the beginning of each end step, if you gained life this turn, distribute up to that many +1/+1 counters among any number of other target creatures.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}}},"distribute":{"type":"Counters","data":"P1P1"},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, if you gained life this turn, distribute up to that many +1/+1 counters among any number of other target creatures.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"d3c56fc4-3611-41b1-952e-4c5311b1510b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["00e84208-b622-424d-b9b7-2f093e75c593","29d3484f-abd1-43fe-99f8-e0fa0a7b6692","4dfebabf-64b7-4bf8-adbd-838807c05cb0","913752eb-b446-41f8-9914-f78f981b042b","c27205fe-136a-4d3c-88f3-ae83af3ebd42","fb721716-1027-4c2c-a156-30fb6a939e82"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMR","MUL","PRM"],"rulings":[{"date":"2020-11-10","text":"As each end step begins, if you haven't gained life that turn, Lathiel's triggered ability won't trigger at all. If it does trigger, you choose the targets and how the +1/+1 counters will be distributed as you put the ability on the stack. Each target must receive at least one +1/+1 counter."},{"date":"2020-11-10","text":"Gaining more life in response to the triggered ability won't change how many counters will be distributed, nor will it change the distribution."},{"date":"2020-11-10","text":"If some, but not all, of the creatures are illegal targets as the triggered ability tries to resolve, the original distribution of counters still applies and the counters that would have been put on illegal targets are lost. If all of the creatures are illegal targets, the ability won't resolve."},{"date":"2020-11-10","text":"The triggered ability will consider the total amount of life you've gained that turn, not how your life total has changed. For example, if you start the turn at 10 life, then gain 5 life, and then lose 7 life, you'll distribute five +1/+1 counters, even though your life total is now lower than it was at the beginning of the turn."},{"date":"2020-11-10","text":"You may choose no targets if you want. In that case, no +1/+1 counters are put on any creature."}],"rarities":["rare"]},"lavinia, azorius renegade":{"name":"Lavinia, Azorius Renegade","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Each opponent can't cast noncreature spells with mana value greater than the number of lands that player controls.\nWhenever an opponent casts a spell, if no mana was spent to cast it, counter that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"ProhibitActivity","source":0,"affected_players":{"type":"OpponentsOfSourceController"},"expiry":{"type":"EndOfTurn"},"activity":{"type":"CastSpells","spell_filter":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, if no mana was spent to cast it, counter that spell.","constraint":null,"condition":{"type":"ManaSpentCondition","text":"no mana was spent to cast it"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"81ba3a33-0e04-4f68-9a42-1dd717733b57","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"DynamicQty","description":"Each opponent can't cast noncreature spells with mana value greater than the number of lands that player controls.\nWhenever an opponent cast","line_index":0}],"metadata":{"source_printing_ids":["0010b841-c857-4335-aac3-d3b4bab00c7b","197bf3f4-c0df-4082-97a1-902ceabbdd3f","4a234375-c9cc-4471-9993-1f775950a056","4bee8ea6-8903-4bed-977b-b6c2cd0126f9","a00c0cbc-e2e5-43bf-bfaa-355229181393","b96ef600-a96c-4563-bc4e-157ea62d14d4","c497d496-1232-4614-93b0-9864fa93c29f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MB2","PRM","PRNA","RNA","RVR","SLD","TSR"],"rulings":[{"date":"2021-03-19","text":"Effects that modify or replace the cost to cast a spell (such as flashback or casting a spell without paying its mana cost due to suspend) don't affect the spell's mana value, so they won't change whether Lavinia's first ability restricts that spell from being cast."},{"date":"2021-03-19","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."},{"date":"2021-03-19","text":"If an effect allows a player to cast a spell without paying its mana cost, that player can't choose to cast it and pay its mana cost unless another rule or effect allows that player to cast it that way. However, if that spell also has additional costs that require mana, paying that mana will stop Lavinia's last ability from triggering."},{"date":"2021-03-19","text":"Players may cast spells that they know Lavinia's second ability will counter. Any abilities that trigger when spells are cast will trigger and resolve if appropriate, and any effects that count spells cast will count those spells if appropriate."}],"rarities":["rare","special"]},"lecturing scornmage":{"name":"Lecturing Scornmage","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warlock"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Repartee — Whenever you cast an instant or sorcery spell that targets a creature, put a +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell that targets a creature, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"29c23fd7-0ac4-46af-8ecd-92b726575252","metadata":{"source_printing_ids":["ad07091e-8c24-43af-8ce8-031847bcaf30"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["SOS"],"rarities":["uncommon"]},"leyline of the void":{"name":"Leyline of the Void","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this card is in your opening hand, you may begin the game with it on the battlefield.\nIf a card would be put into an opponent's graveyard from anywhere, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"BeginGame","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"If this card is in your opening hand, you may begin the game with it on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Owned","controller":"Opponent"}]},"description":"If a card would be put into an opponent's graveyard from anywhere, exile it instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f4e32fc1-1b8d-441e-8e76-71f19f98e925","metadata":{"source_printing_ids":["04d5d429-e0c6-42cc-a477-da7dabb1c295","186eea73-46c5-4532-ac94-326db7d6f0cb","37dfe8b8-b39e-4e70-9e5b-be42c93b4f70","9a6b4431-7f2f-4dea-ba90-ea80d56b39bd","aeaa3aff-608d-4723-bb7c-8daedebe9f36","b30a559e-79f9-479e-8ef1-65fb91b9507d","e012d4f3-c387-4910-981b-7532fd355296"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","GPT","M11","M20","MB2","PDSK","PM20","TSR","WOT"],"rulings":[{"date":"2024-09-20","text":"A player's \"opening hand\" is the hand of cards the player has after all players have taken mulligans. If players have any cards in hand that allow actions to be taken with them from a player's opening hand, the starting player takes all such actions first in any order, followed by each other player in turn order. Then the first turn begins."},{"date":"2024-09-20","text":"If your opponent discards a card while you control Leyline of the Void, abilities that check whether a card is discarded (such as Hollow One, or a madness ability of the discarded card) still work, even though that card never reaches that player's graveyard. In addition, spells or abilities that check the characteristics of the discarded card can find that card in exile."},{"date":"2024-09-20","text":"Tokens can still die while Leyline of the Void is on the battlefield."},{"date":"2024-09-20","text":"While Leyline of the Void is on the battlefield, nontoken creatures your opponents control won't die. They'll be exiled instead. Abilities that would trigger when those creatures die won't trigger."}],"rarities":["rare","special"]},"lie in wait":{"name":"Lie in Wait","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target creature card from your graveyard to your hand. Lie in Wait deals damage equal to that card's power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to your hand. ~ deals damage equal to that card's power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"4dc0831a-0eb1-4f7d-9591-6e670e180116","metadata":{"source_printing_ids":["96fff22c-282b-4849-82ce-890013b53262"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TDM"],"rulings":[{"date":"2025-04-04","text":"Use the power of the card in the graveyard to determine how much damage Lie in Wait deals to the target creature."},{"date":"2025-04-04","text":"You can’t cast Lie in Wait unless you choose a creature card in your graveyard and a creature on the battlefield as targets."}],"rarities":["uncommon"]},"life":{"name":"Life","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"All lands you control become 1/1 creatures until end of turn. They're still lands.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1},{"type":"AddType","core_type":"Creature"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become 1/1 creatures"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"They're still lands"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"All lands you control become 1/1 creatures until end of turn. They're still lands.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"d476f4b3-db63-4756-ab76-4b35f63c2825","metadata":{"source_printing_ids":["2424f2c4-366b-42cf-bf4b-a8a5bfdd2c4b","7ab75cdb-93a1-4f78-b404-37566295c321","e16d52ca-f8de-4852-9bff-9d208e5f678f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["AA2","APC","DDJ","DMR","F06","PRM"],"rulings":[{"date":"2022-12-08","text":"A noncreature permanent that becomes a creature can attack, and its {T} abilities can be activated, only if its controller has continuously controlled that permanent since the beginning of their most recent turn. It doesn't matter how long the permanent has been a creature. Notably, if you turn a land into a creature on the turn it entered the battlefield, you won't be able to tap it for mana."},{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Lands that become creatures retain any other supertypes, card types, subtypes, and abilities they have."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"lifeblood hydra":{"name":"Lifeblood Hydra","mana_cost":{"type":"Cost","shards":["X","Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Hydra"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Trample\nThis creature enters with X +1/+1 counters on it.\nWhen this creature dies, you gain life and draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"gain","description":"gain life"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life and draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"CostXPaid"}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with X +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b14d05c0-fe10-4079-a90e-0aea1a8fd375","metadata":{"source_printing_ids":["2b726c03-07e8-4a9b-bdac-dc50218626a3","3431a77c-2027-406b-9230-5d0f8837af62","4d01469a-d085-4797-95ba-b2877c039469","5514bc19-5b1b-420b-ab43-fde15a4ee446","a7b51f51-45ee-4b73-9550-c1104b0eb628"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C14","CMA","CMM","SOC"],"rulings":[{"date":"2014-11-07","text":"Use Lifeblood Hydra's power when it died (including any +1/+1 counters it had) to determine how much life to gain and how many cards to draw."}],"rarities":["rare"]},"lightning bolt":{"name":"Lightning Bolt","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Lightning Bolt deals 3 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 3 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4457ed35-7c10-48c8-9776-456485fdf070","metadata":{"source_printing_ids":["0277c0b1-da97-49c1-a539-7fbaa1f77419","02e20655-321c-4194-ab72-b4a5473238d1","0f29ea1f-a226-4ec4-8297-109e2f2b5c69","24484578-7885-4125-b95f-e677d970a5a1","27740ea5-79c8-420f-bc49-6d5eac58dac5","310de1ef-f1b6-4b61-9d6c-6b70382a7f95","32a180dd-9641-4546-8940-9b21084f0c71","3c738171-d0dc-4cc2-8af8-1d306143db37","435589bb-27c6-4a6d-9d63-394d5092b9d8","45184cd7-b037-4a85-a063-e622ca928d17","4dbd1cd7-521d-4a59-af53-e5cae451712f","4f43c378-9e6a-4ece-9c24-5dc08c977746","54199d7c-02f8-4ff0-9e43-e7bf66ef9715","54be73dd-cb3b-411b-8f48-d12ca5183dee","5a763474-5ce9-48cc-aaf8-8ca363df4430","5fbb6751-1072-4fc0-8b54-836d05950914","677da834-7f4a-4f60-9151-de7ddcf29622","6881d7c8-5bb7-4f8c-9f03-50fb1309d9c8","6ab06973-6440-4b12-8947-8c412500fa41","6fb94c1b-8002-4d79-add0-c4dfef9019ee","719d571c-0740-4212-86c2-e9ef38516f6c","77c6fa74-5543-42ac-9ead-0e890b188e99","9521375e-0bc1-45ef-b513-6d332a25f9d2","9809473d-f793-476f-ae7e-e535b6725d65","988cd919-146e-4212-b0e4-146b87f806bd","996a81ae-0c2d-4e74-b018-5f0ec0fcfbd3","a6de74d2-0668-49c6-a385-bf706bfed8f7","ae5f9fb1-5a55-4db3-98a1-2628e3598c18","b5d3dcab-2260-479d-9ef6-dfb92d4f6061","bde26955-6de3-4212-9e1a-5e11f73ebf44","c3eb3895-b64c-46ab-b704-3c46963920ba","c69f668b-cf28-495a-bbe1-24e9d0089fa1","c8c8390f-4072-454f-8dc4-174919187a47","cb9b9a9d-ae4c-4e04-bf9d-cae48f01292c","ccee0b4c-0cb0-4c0f-8ddc-bc74b8b97273","ce711943-c1a1-43a0-8b89-8d169cfb8e06","d573ef03-4730-45aa-93dd-e45ac1dbaf4a","dc12105d-7536-429b-9510-4f56bfc0c497","df77bf7d-546a-416b-a2fe-8038a4125af5","e3285e6b-3e79-4d7c-bf96-d920f973b122","e768c957-3a1f-42f5-853a-96942f645df5","edd88c4f-58bd-4920-b41f-037462b54915","f11b8d24-375d-40dc-8497-c1ee779e156a","f29ba16f-c8fb-42fe-aabf-87089cb214a7","f58dba4f-1abb-47a3-a684-29c32bab95c0","fc8f431d-b7eb-4848-99dd-a5f896248145","fcf2ea50-44af-46d7-80c9-36fc18606748","ff1b8fc5-604a-4449-a73d-861e53642a70"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","2X2","30A","3ED","4BB","4ED","A25","ATH","BTD","CED","CEI","CLB","CLU","E01","FBB","FCA","GN3","HBG","J21","JGP","JMP","LEA","LEB","M10","M11","ME1","MM2","OLGC","P09","P10","PD2","PF19","PF25","PLST","PRM","PTC","PW26","SLD","SLP","STA","SUM","TD0","TLE"],"rarities":["common","uncommon","rare","mythic"]},"liliana, dreadhorde general":{"name":"Liliana, Dreadhorde General","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Liliana"]},"power":null,"toughness":null,"loyalty":"6","defense":null,"oracle_text":"Whenever a creature you control dies, draw a card.\n[+1]: Create a 2/2 black Zombie creature token.\n[−4]: Each player sacrifices two creatures of their choice.\n[−9]: Each opponent chooses a permanent they control of each permanent type and sacrifices the rest.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Zombie","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Zombie"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 2/2 black Zombie creature token.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":2}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each player sacrifices two creatures of their choice.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},{"kind":"Activated","effect":{"type":"ChooseAndSacrificeRest","categories":["Artifact","Battle","Creature","Enchantment","Land","Planeswalker"],"chooser_scope":"EachPlayerSelf","choose_filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"sacrifice_filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-9},"sub_ability":null,"duration":null,"description":"[−9]: Each opponent chooses a permanent they control of each permanent type and sacrifices the rest.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5e958212-6a5b-4288-8d31-f1572619d7dc","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["87201137-39ed-586a-985a-90821d3de996","bdd2e8d4-e586-513b-a7d4-399f1417b85b","ce24f27b-16b5-596b-b810-805a9384991b","e4911e26-9c57-527c-a129-d01d7cce54c2","e8918ec2-32fe-5ef5-a5aa-5c578794d5f3"],"source_printing_ids":["06bcf9ac-f0f7-405b-960b-ebf15b2640a7","199e3667-33be-415f-8f10-1c42a78d7637","4b3c833d-b03e-4aee-8f62-1828081511ff","7a097413-b77c-45e8-a4ac-5b2dc1d34e16","ba461127-2220-4274-81cb-423a1700c9eb","cb28d217-795e-4320-a032-cd713f7ecc8a","d75ebba8-34ca-47a0-bf13-8318ad73b343"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","PFDN","PRM","PWAR","PWCS","RVR","SLD","WAR"],"rulings":[{"date":"2024-01-12","text":"As Liliana's last ability resolves, the next opponent in turn order (or, if it's somehow an opponent's turn, that opponent) makes all of their choices for it, then each other opponent in turn order does the same, knowing the choices made before them. Then all the unchosen permanents are sacrificed at the same time."},{"date":"2024-01-12","text":"As Liliana's second loyalty ability resolves, first the player whose turn it is chooses two creatures they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen creatures are sacrificed at the same time. If any player can choose only one creature, that player does so."},{"date":"2024-01-12","text":"If Liliana dies at the same time as one or more creatures you control, her first ability triggers for each of those creatures."},{"date":"2024-01-12","text":"If Liliana somehow becomes a creature and dies, her first ability will trigger."},{"date":"2024-01-12","text":"The permanent types are artifact, creature, enchantment, land, and planeswalker. Supertypes, like legendary, aren't permanent types."},{"date":"2024-01-12","text":"While making choices for Liliana's last ability, if a permanent has more than one permanent type, it can count for any of them. For example, you could choose an artifact creature as the artifact you're sparing, another creature as the creature, and an enchantment creature as the enchantment. Similarly, you could choose an enchantment creature as both the creature and the enchantment that you're sparing, even if you control another creature and/or another enchantment."}],"rarities":["mythic"]},"liliana, waker of the dead":{"name":"Liliana, Waker of the Dead","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Liliana"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Each player discards a card. Each opponent who can't loses 3 life.\n[−3]: Target creature gets -X/-X until end of turn, where X is the number of cards in your graveyard.\n[−7]: You get an emblem with \"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":3},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},{"type":"ScopedPlayerMatches","filter":{"type":"Opponent"}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[+1]: Each player discards a card. Each opponent who can't loses 3 life.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},{"kind":"Activated","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"GraveyardSize","player":{"type":"Controller"}}}}},"toughness":{"type":"Quantity","value":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"GraveyardSize","player":{"type":"Controller"}}}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-3},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[−3]: Target creature gets -X/-X until end of turn, where X is the number of cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":true},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Command"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-7},"sub_ability":null,"duration":null,"description":"[−7]: You get an emblem with \"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e0df8e2a-96d2-4e4d-b065-aa2e162abbfe","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["a2edac86-02d4-4201-9b72-2ec64f163a72","e329a3e2-6702-4758-8aac-c3017e77b619","e8dd3fda-d778-4be6-abd4-6cf704e352ea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","PM21","PRM"],"rulings":[{"date":"2020-06-23","text":"A player who has a card in hand can't choose to lose 3 life instead of discarding a card."},{"date":"2020-06-23","text":"As Liliana's first ability resolves, first the player whose turn it is chooses a card in hand without revealing it, then each other player in turn order does the same. Then all the chosen cards are discarded at the same time. Finally, each opponent who couldn't discard a card loses 3 life."},{"date":"2020-06-23","text":"Creatures put onto the battlefield with Liliana's emblem gain haste indefinitely."},{"date":"2020-06-23","text":"If you have no cards in hand, you just don't discard anything. You don't lose 3 life. Other players still discard if able."},{"date":"2020-06-23","text":"In a multiplayer game, if a player leaves the game, all cards that player owns leave as well. If you leave the game, any permanents you control from Liliana's emblem are exiled."},{"date":"2020-06-23","text":"The value of X is determined only as Liliana's second ability resolves. Once that happens, the value of X won't change later in the turn even if the number of cards in your graveyard changes."}],"rarities":["mythic"]},"linebreaker baloth":{"name":"Linebreaker Baloth","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nThis creature can't be blocked by creatures with power 2 or less.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 2 or less."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c3b395b3-fea0-41d9-a3f2-6c90f89d8bdb","metadata":{"source_printing_ids":["15cc59c7-6478-4f84-898a-7e0fed10f004"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"Once a creature with power 3 or greater has blocked this creature, changing the power of the blocking creature won't cause this creature to become unblocked."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"living inferno":{"name":"Living Inferno","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":8},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals damage equal to its power divided as you choose among any number of target creatures. Each of those creatures deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"deal","description":"deal damage equal to its power divided as you choose among any number of target creatures"},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power divided as you choose among any number of target creatures. Each of those creatures deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6783c46d-e4e5-4b43-9d97-6eae8aab4cb9","metadata":{"source_printing_ids":["1c4b8143-2742-4262-b18f-2825bf8cea6f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["GPT"],"rulings":[{"date":"2006-02-01","text":"The amount of damage Living Inferno will deal is locked in as you activate its ability, since you're dividing damage. If Living Inferno's power changes after its ability is activated but before it resolves (via Giant Growth, for example), the amount of damage Living Inferno deals won't change. The same is *not* true for the amount of damage dealt to Living Inferno by the other creatures, which is determined when the ability resolves."},{"date":"2006-02-01","text":"You divide the damage among the target creatures as you activate Living Inferno's ability. Each target must be assigned at least 1 damage."}],"rarities":["rare"]},"llanowar elves":{"name":"Llanowar Elves","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Druid"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"{T}: Add {G}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {G}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"68954295-54e3-4303-a6bc-fc4547a4e3a3","metadata":{"source_printing_ids":["01c6f877-6b00-4d57-8a88-36cd3b16edbc","0312d980-b1d0-41ec-8f5b-d21fbb742b9b","07c3165a-39a9-4928-803c-22b60552346c","0eb7213c-f6e4-48cb-870a-13b80ba73b8b","11bd6cef-f887-4b07-a957-4c53cb3c9c87","199e047c-823b-4d18-a5e9-6de3e6989858","1f8a1386-77ca-46ae-8987-aaed435556ea","26435a65-56a6-4e65-b504-a15d5bbc8696","392451d6-073a-49e3-9691-caac457e3d48","57ebd34e-dfe1-4093-a302-db395047a546","581b7327-3215-4a4f-b4ae-d9d4002ba882","632b9428-45c6-4b81-a701-f1c7d7e8d2f0","6a0b230b-d391-4998-a3f7-7b158a0ec2cd","6d6deae3-3ed4-47eb-bf4a-4a766ce18135","6fca5b76-2e0b-4557-91c6-283000d17849","73542493-cd0b-4bb7-a5b8-8f889c76e4d6","75d972d7-5ed9-49c1-8d27-ec162771284d","7707fcf6-e99e-4264-97c7-b2760ce50d79","8c27c558-caa0-4fc4-b6e6-4e7c9eaea0ff","8f897949-1adf-4d9f-956b-a53e1360922f","913907e2-28dd-4080-b725-52a43868e060","93005966-055d-4f14-bc51-1e6c3bd752a4","9636bb2a-0d7f-42d7-9757-15508baefb45","9e100beb-535d-41fe-8e5c-4788871a2739","a4be44d1-da6b-4427-955b-d7f32ebf1813","a6971b0a-274c-444c-aea8-5e114b4aecdd","abd80204-e9ba-483f-9b75-a69712545ba9","bb95a9a7-b0a3-4199-8c05-2519ccda738b","c4d1835a-913f-4979-953b-ddd933214538","c7a7fe6e-aa5a-4be6-a730-5cfff4fb89e3","cd43a84a-cde2-48f8-b6ab-1ec023c9e0c3","cf5dc35e-4fc2-4163-973c-c97d56cb8f1a","d1114b99-62fb-478a-a648-16b8c0b4c032","d1c46614-d8e1-4ab0-b226-d591c4df257a","d3455a72-c3c1-45a8-9bb7-c7c9e1c83ed0","d4f1cc9e-4f99-4c26-ac1b-8ef069fa8ceb","d9c02310-6a14-45c2-ae8c-b0fff7245673","da7bf82d-437a-4c28-98a4-4d092ba8d063","e1ab47f6-c346-47b6-ae3b-733eba9031e1","ed8a8cfd-baef-4198-b1f3-4926139588b2","ee7b36b5-9c10-4139-a0f9-5b9ea7afff5a","f8b6263a-91b8-47ca-bb9e-c0c7062ca238","fedd1b24-44ee-493a-b4db-3048ff5c760b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","9ED","ATH","BRB","BTD","C14","CED","CEI","CMA","DCI","DD1","DOM","EMA","EVG","FBB","FDN","FNM","GN3","GNT","J25","LEA","LEB","M10","M11","M12","M19","P30H","PANA","PDMU","PDOM","PLST","PRM","PTC","SLC","SLD","SUM","WC00","WC01","WC02","WC99"],"rarities":["common","rare","mythic"]},"lorcan, warlock collector":{"name":"Lorcan, Warlock Collector","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Devil"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever a creature card is put into an opponent's graveyard from anywhere, you may pay life equal to its mana value. If you do, put it onto the battlefield under your control. It's a Warlock in addition to its other types.\nIf a Warlock you control would die, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddSubtype","subtype":"Warlock"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"is a Warlock in addition to its other types"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"origin":null,"destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever a creature card is put into an opponent's graveyard from anywhere, you may pay life equal to its mana value. If you do, put it onto the battlefield under your control. It's a Warlock in addition to its other types.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Destroy","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Warlock"}],"controller":"You","properties":[]},"description":"If a Warlock you control would die, exile it instead.","condition":null}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6c87c261-00a8-46f2-92c8-42009a0a2faf","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["44025434-b723-494c-a917-67216dc653c0","5f6f90ae-340c-4eb7-b091-58db550be742"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC"],"rulings":[{"date":"2021-07-23","text":"Lorcan's last ability affects all Warlocks you control, not only ones he collected from an opponent's graveyard."},{"date":"2021-07-23","text":"Lorcan, Warlock Collector's second ability looks only at the type the card has in the graveyard, not the type it had in any other zone. For example, animated lands dying won't cause the ability to trigger. The opposite is also true. For example, if a creature that was cast as an Adventure is countered, it's a creature card in the graveyard and the triggered ability will trigger."}],"rarities":["rare"]},"loss":{"name":"Loss","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures your opponents control get -1/-1 until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":-1},"toughness":{"type":"Fixed","value":-1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures your opponents control get -1/-1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"c41e8a99-e4a8-4323-a59d-265266e29fa9","metadata":{"source_printing_ids":["0eb3ce46-ddd2-43b3-9e45-019ae91df686","320e1e05-12b8-4301-8cd7-3ead8046d94a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PIO"],"rarities":["uncommon"]},"lost in the spirit world":{"name":"Lost in the Spirit World","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return up to one target creature to its owner's hand. Create a 1/1 colorless Spirit creature token with \"This token can't block or be blocked by non-Spirit creatures.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block or be blocked by non-~ creatures."}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return up to one target creature to its owner's hand. Create a 1/1 colorless Spirit creature token with \"~ can't block or be blocked by non-Spirit creatures.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"a37adc18-ea11-4972-8d04-936cf3fe2613","metadata":{"related_token_ids":["ecb80f75-5d6c-53ca-be4f-57e371f7b933"],"source_printing_ids":["88745474-d8e7-407e-80df-02541ad1ab0b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TLE"],"rarities":["uncommon"]},"lotleth troll":{"name":"Lotleth Troll","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Troll"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Trample\nDiscard a creature card: Put a +1/+1 counter on this creature.\n{B}: Regenerate this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"random":false,"self_ref":false},"sub_ability":null,"duration":null,"description":"Discard a creature card: Put a +1/+1 counter on ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Regenerate","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":0}},"sub_ability":null,"duration":null,"description":"{B}: Regenerate ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"61b1d7e5-6155-4204-b110-35a890551ec8","metadata":{"source_printing_ids":["3b628197-f26c-457a-b9a4-c1f1d3e02f3d","40438db7-5909-4975-9bbd-8c4021ac0aac","97971c5a-98f5-4165-a1b8-a77129e502df","b4b0c2ac-154c-4ed7-a981-e6e0b7bfb01c","cc138550-a797-4a57-91b3-626aac1b1edd","f098a81b-3568-43fa-9ca1-eb340634e5e1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","C15","CMA","GK1","PIO","RTR"],"rarities":["uncommon","rare"]},"lotus vale":{"name":"Lotus Vale","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this land would enter, sacrifice two untapped lands instead. If you do, put this land onto the battlefield. If you don't, put it into its owner's graveyard.\n{T}: Add three mana of any one color.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":3},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add three mana of any one color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"Untapped"}]},"count":2},"decline":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Graveyard","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"If ~ would enter, sacrifice two untapped lands instead. If you do, put ~ onto the battlefield. If you don't, put it into its owner's graveyard.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"01fc5bb3-ebd7-4ab4-8aef-2ece1e1d9b7c","metadata":{"source_printing_ids":["2e5cd12a-2a07-44a8-8eac-de00d26fe9e3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["WTH"],"rulings":[{"date":"2008-04-01","text":"If you don't sacrifice the lands, Lotus Vale never enters — it goes directly to your graveyard."}],"rarities":["rare"]},"louisoix's sacrifice":{"name":"Louisoix's Sacrifice","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a legendary creature or pay {2}.\nCounter target activated ability, triggered ability, or noncreature spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"Or","filters":[{"type":"StackAbility"},{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[{"type":"InZone","zone":"Stack"}]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target activated ability, triggered ability, or noncreature spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"42d8ab49-703a-4fd3-84d0-0a3ac1eafca8","additional_cost":{"type":"Choice","data":[{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasSupertype","value":"Legendary"}]},"count":1},{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}}]},"metadata":{"source_printing_ids":["4a6976f2-0bd5-449a-8fcf-f5a732ce22c1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Activated abilities contain a colon. They're generally written \"[Cost]: [Effect].\" Some keyword abilities (such as equip) are activated abilities and will have a colon in their reminder text."},{"date":"2025-06-06","text":"Triggered abilities use the word \"when,\" \"whenever,\" or \"at.\" They're often written as \"[Trigger condition], [effect].\" Some keywords (such as prowess) are triggered abilities and will use \"when,\" \"whenever,\" or \"at\" in their reminder text."}],"rarities":["rare"]},"lozhan, dragons' legacy":{"name":"Lozhan, Dragons' Legacy","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Shaman"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever you cast an Adventure or Dragon spell, Lozhan deals damage equal to that spell's mana value to any target that isn't a commander.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Adventure"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an Adventure or Dragon spell, ~ deals damage equal to that spell's mana value to any target that isn't a commander.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"be2075af-1cd8-42fe-a29b-a0fd2b047a44","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["c24ed5b7-2f71-4f11-a787-fa683216469c","e49228e0-b944-458d-a832-8d374efb69df","fe604232-19da-4331-a6f2-ddb004f1dd90"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG"],"rulings":[{"date":"2022-06-10","text":"\"Any target that isn't a commander\" includes any player, as well as any creature or planeswalker that isn't a commander."},{"date":"2022-06-10","text":"If you cast a non-Dragon permanent spell that has an Adventure (rather than the Adventure itself) Lozhan's triggered ability will not trigger."},{"date":"2022-06-10","text":"The mana value of an Adventure spell is the based on the mana cost of the Adventure, not the mana cost of the permanent card that has the Adventure."}],"rarities":["uncommon"]},"lukka, coppercoat outcast":{"name":"Lukka, Coppercoat Outcast","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Lukka"]},"power":null,"toughness":null,"loyalty":"5","defense":null,"oracle_text":"[+1]: Exile the top three cards of your library. Creature cards exiled this way gain \"You may cast this card from exile as long as you control a Lukka planeswalker.\"\n[−2]: Exile target creature you control, then reveal cards from the top of your library until you reveal a creature card with greater mana value. Put that card onto the battlefield and the rest on the bottom of your library in a random order.\n[−7]: Each creature you control deals damage equal to its power to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":3}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"ExiledBySource"}]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Any"},"without_paying_mana_cost":false,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":"You may cast this card from exile as long as you control a ~ planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"You may cast this card from exile as long as you control a ~ planeswalker.\""}],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Exile the top three cards of your library. Creature cards exiled this way gain \"You may cast this card from exile as long as you control a ~ planeswalker.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"reveal","description":"reveal cards from the top of your library until you reveal a creature card with greater mana value"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−2]: Exile target creature you control, then reveal cards from the top of your library until you reveal a creature card with greater mana value. Put that card onto the battlefield and the rest on the bottom of your library in a random order.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":null,"duration":null,"description":"[−7]: Each creature you control deals damage equal to its power to each opponent.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"1ca97394-4e8c-4698-bea1-554f9b10927b","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["2a8f74c3-c552-4331-a47c-e8155841bb27","5798fdf0-d178-43d9-b821-8f3f654654b4","62be76fb-1e22-412f-b555-8ba5098f6d39"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO","PIKO","PLST","PRM"],"rulings":[{"date":"2020-04-17","text":"For each creature card exiled with Lukka's first ability, you can cast it as long as you control any Lukka planeswalker, not just the one that exiled the card."},{"date":"2020-04-17","text":"If a creature card in a player's library or a creature on the battlefield has {X} in its mana cost, X is considered to be 0."},{"date":"2020-04-17","text":"If you reveal your entire library without revealing a creature card with higher mana value, you put the library back in a random order and continue."},{"date":"2020-04-17","text":"In a Two-Headed Giant game, Lukka's last ability causes the opposing team to lose twice as much life as the power of your creatures."},{"date":"2020-04-17","text":"Once you begin to cast an exiled card, losing control of Lukka won't affect the spell. You can finish casting it as normal."},{"date":"2020-04-17","text":"The ability granted by Lukka's first ability doesn't change when you may cast the card."},{"date":"2020-04-17","text":"You may cast creature cards exiled with Lukka's first ability as noncreature spells if a rule or effect allows you to do so. For example, adventurer cards from the Throne of Eldraine set may be cast as Adventures."},{"date":"2020-04-17","text":"You still pay any costs for spells cast from Lukka's first ability. You may pay alternative costs, such as mutate costs."}],"rarities":["mythic"]},"luminarch aspirant":{"name":"Luminarch Aspirant","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, put a +1/+1 counter on target creature you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put a +1/+1 counter on target creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"cb9994b9-924b-4e10-9075-9cfbec88f2bf","metadata":{"source_printing_ids":["dcd27fa3-f6b6-4137-9b6c-4cba7187664c","ebe9427d-068f-487c-9263-b40366a164bc","fe964e7e-e2c5-4263-889d-0a531eb51442"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NCC","PRM","PZNR","ZNR"],"rulings":[{"date":"2020-09-25","text":"Luminarch Aspirant can be the target of its own ability."}],"rarities":["rare"]},"luminate primordial":{"name":"Luminate Primordial","mana_cost":{"type":"Cost","shards":["White","White"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Avatar"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Vigilance\nWhen this creature enters, for each opponent, exile up to one target creature that player controls and that player gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"Opponent"}}}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, for each opponent, exile up to one target creature that player controls and that player gains life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c1bc819a-f291-4b55-94f7-269f160ce76b","metadata":{"source_printing_ids":["b0747b12-c75a-4fdf-a881-f2383a23ccdd"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["GTC"],"rulings":[{"date":"2013-01-24","text":"To determine how much life each opponent gains, use the power of the creature that opponent controlled as it last existed on the battlefield."},{"date":"2013-01-24","text":"You can choose a number of targets up to the number of opponents you have, one target per opponent."}],"rarities":["rare"]},"lurking predators":{"name":"Lurking Predators","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever an opponent casts a spell, reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, you may put that card on the bottom of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, you may put that card on the bottom of your library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"15fbb7b1-c62d-4f82-9f35-2c10299779f4","metadata":{"source_printing_ids":["1144698b-502e-4814-9d74-d16ae6a0f0c5","6dd20d13-3c80-4585-b57b-9219ae7f1acb","9952da7c-3cfc-413f-8849-0f10e9c8dceb","e864c824-89a1-41f6-9481-83b2284471e0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","JMP","M10","PLST"],"rulings":[{"date":"2009-10-01","text":"A \"creature card\" is any card with the type creature, even if it has other types such as artifact, enchantment, or land. Older cards of type summon are also creature cards."},{"date":"2009-10-01","text":"If an opponent casts a spell, this ability triggers and is put on the stack on top of that spell. This ability will resolve (meaning that a revealed creature card will enter) before the spell resolves."},{"date":"2009-10-01","text":"You must put the revealed card onto the battlefield if it's a creature card. If it's not a creature card and you don't put it on the bottom of your library, it stops being revealed and simply remains on top of your library."}],"rarities":["rare"]},"madame null, power broker":{"name":"Madame Null, Power Broker","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon","Advisor"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control enters, you may pay life equal to its power. If you do, put that many +1/+1 counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you may pay life equal to its power. If you do, put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"73413bd5-8c40-4d45-8f05-c20c39ee4017","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4e712d5c-d6fe-40bb-b8e5-5f50c6ea8d4f","b4676f98-2b9d-4a1b-9847-2a7ff9dc2676"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TMT"],"rulings":[{"date":"2026-01-27","text":"Use the creature's power as Madame Null's last ability resolves to determine how much life you may pay. If that creature is no longer on the battlefield, use its power as it last existed on the battlefield. (You probably won't want to pay life in that case, though.)"}],"rarities":["rare"]},"magnetic mountain":{"name":"Magnetic Mountain","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Blue creatures don't untap during their controllers' untap steps.\nAt the beginning of each player's upkeep, that player may choose any number of tapped blue creatures they control and pay {4} for each creature chosen this way. If the player does, untap those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChooseObjectsIntoTrackedSet","chooser":{"type":"TriggeringPlayer"},"filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[{"type":"Tapped"},{"type":"HasColor","color":"Blue"}]},"min":0,"max":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"ScaledMana","base":{"type":"Cost","shards":[],"generic":4},"times":{"type":"Ref","qty":{"type":"TrackedSetSize"}}},"payer":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Untap","target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each player's upkeep, that player may choose any number of tapped blue creatures they control and pay {4} for each creature chosen this way. If the player does, untap those creatures.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantUntap","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasColor","color":"Blue"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Blue creatures don't untap during their controllers' untap steps."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5c28fc22-7da6-4f15-b02b-6ff10981466c","metadata":{"source_printing_ids":["0ae0db84-bf72-4d67-a4cc-b32e1233a530","514236ab-bd30-4151-9bf4-32d0ef52e5fd","8306561a-3e56-4743-92cb-3fc102977e6a","95fde48b-e40a-4183-b324-1ec276dde015","993a14d5-a33d-426e-ab49-c3226a6fcdca","dc95e03d-5521-4a01-8028-200b8467ce86"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","ARN","FBB","SUM"],"rarities":["uncommon","rare"]},"magus of the abyss":{"name":"Magus of the Abyss","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of their choice. It can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature",{"Non":"Artifact"}],"controller":"ScopedPlayer","properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"target_chooser":{"type":"ScopedPlayer"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of their choice. It can't be regenerated.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"66958c48-3ac7-4f41-aa3e-adacaa24ea4f","metadata":{"source_printing_ids":["1005a22c-491b-4969-befb-406c42fcec68","9954157a-0c05-4788-8a0f-6093ebbb38c3","d2039548-af2c-4a93-842c-4a1e28e20f1d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","C17","FUT"],"rulings":[{"date":"2020-08-07","text":"Even though the player whose upkeep it is chooses the target creature, you control the ability. An opponent can't target a creature with hexproof they control."},{"date":"2020-08-07","text":"The triggered ability can target a creature with indestructible. It won't be destroyed."}],"rarities":["rare"]},"make yourself useful":{"name":"Make Yourself Useful","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When you set this scheme in motion, destroy target creature an opponent controls. If a creature is destroyed this way, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SetInMotion","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ZoneChangedThisWay","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When you set this scheme in motion, destroy target creature an opponent controls. If a creature is destroyed this way, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1e502010-4cea-485b-ac89-abcbc725ba13","legalities":{},"printings":["OE01"],"rulings":[{"date":"2017-06-13","text":"If the target creature isn’t destroyed, most likely because it has indestructible, you won’t gain any life. The same is true if the target creature leaves the battlefield before this scheme’s triggered ability resolves."}]},"mana drain":{"name":"Mana Drain","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"PreCombatMain","player":0},"effect":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"74d3277a-38e5-4732-afed-084a56148f20","metadata":{"source_printing_ids":["33ebd4c1-e7ea-4708-8b7c-c47ca6b63c22","3c429c40-2389-41e5-8681-4bb274e25eba","416d2d51-8f29-4e95-b037-e8c32b081e6c","456a2f03-8304-4512-804c-76653e30f436","4c7f0ea5-a142-4157-b85d-ec49dd79adf6","6dc7d280-31be-48b8-aa1e-8de676ca01ba","ba874c0c-f66f-4edc-9859-40273487aef0","cc9a04dc-afee-4194-80f5-fb1d9c906de7","e351ec05-8c4d-4631-9dbf-7f85f664770b","e691adef-3027-4e6a-889f-9f4e2df36a7c","ec48a747-cc69-47e5-882b-b3bc17898b1b"]},"legalities":{"brawl":"banned","commander":"legal","duel":"banned","historic":"banned","legacy":"banned","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","CMR","IMA","J16","LEG","ME3","OTP","PRM","VMA"],"rulings":[{"date":"2020-11-10","text":"If the target spell is an illegal target by the time Mana Drain tries to resolve, Mana Drain doesn't resolve. You don't add mana at the beginning of your next main phase. If the target is legal but not countered (most likely because an effect says that the spell can't be countered), you do add mana."},{"date":"2020-11-10","text":"Mana Drain's delayed triggered ability will usually trigger at the beginning of your precombat main phase. However, if you cast Mana Drain during your precombat main phase or during your combat phase, its delayed triggered ability will trigger at the beginning of that turn's postcombat main phase."}],"rarities":["uncommon","rare","mythic"]},"mandate of peace":{"name":"Mandate of Peace","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during combat.\nYour opponents can't cast spells this turn.\nEnd the combat phase. (Remove all attackers and blockers from combat. Exile all spells and abilities from the stack, including this spell.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"ProhibitActivity","source":0,"affected_players":{"type":"OpponentsOfSourceController"},"expiry":{"type":"EndOfTurn"},"activity":{"type":"CastSpells"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"EndCombatPhase"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Your opponents can't cast spells this turn.\nEnd the combat phase.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c309ec42-34a0-4083-a36c-7814643d7960","casting_restrictions":[{"type":"DuringCombat"}],"metadata":{"source_printing_ids":["d243055f-892e-4042-9694-13d5e99e3550"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"Any “at end of combat” triggered abilities won’t get the chance to trigger that combat because the end of combat step is skipped."},{"date":"2019-08-23","text":"Ending the combat phase this way means the following things happen in order: 1) All spells and abilities on the stack are exiled. This includes spells and abilities that can’t be countered. 2) State-based actions are checked. No player gets priority, and no triggered abilities are put onto the stack. 3) The current phase and step ends. The game skips straight to the postcombat main phase. As this happens, all attacking and blocking creatures are removed from combat and effects that last “until end of combat” expire."},{"date":"2019-08-23","text":"If an effect allows or instructs you to cast Mandate of Peace outside of a combat phase, you can’t do so. Its restriction takes precedence over that permission. Similarly, once Mandate of Peace has resolved, your opponents can’t cast spells even if another effect allows or instructs one of them to cast a spell."},{"date":"2019-08-23","text":"If any triggered abilities trigger during this process, they’re put onto the stack after the game skips to the appropriate phase or step."},{"date":"2019-08-23","text":"In the rare case that the postcombat main phase is skipped, the game skips to the end step of the ending phase. If that step is also skipped, the game skips straight to the turn’s cleanup step. The cleanup step can’t be skipped."},{"date":"2019-08-23","text":"Mandate of Peace doesn’t stop any player from casting spells in response to Mandate of Peace before it resolves."},{"date":"2019-08-23","text":"Though other spells and abilities that are exiled won’t get a chance to resolve, they don’t count as being countered."},{"date":"2019-08-23","text":"Your opponents can still activate abilities, including abilities of cards in their hand (such as cycling abilities), and can still play lands."}],"rarities":["rare"]},"marchesa, the black rose":{"name":"Marchesa, the Black Rose","mana_cost":{"type":"Cost","shards":["Blue","Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)\nOther creatures you control have dethrone.\nWhenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":["Dethrone"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"Put a +1/+1 counter on this creature","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.105a: Dethrone — whenever ~ attacks the player with the most life or tied for most life, put a +1/+1 counter on ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"DefendingPlayer"}}},"comparator":"GE","rhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"AllPlayers","aggregate":"Max"}}}},"batched":false,"attack_target_filter":"Player"}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddKeyword","keyword":"Dethrone"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Other creatures you control have dethrone."}],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"17a59d3d-9e01-48cd-bb4a-3eaaa077751c","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3242a9f0-2ba3-4852-ac8f-366772ac1c62","35f3f243-927d-4b84-87cd-43c48f6c371a","47617780-620d-409a-944c-bc7035826b38","843adb97-8ace-4b72-879b-d90be1816857","ca6cf5ba-0bad-4f7d-83b9-c092c2586131","e568fd9d-5800-4eeb-87c6-7c33dc14f81d","e5fa557c-b23c-4e56-aedb-c51d2e20cda6","e9975663-3038-4c72-b29c-65635dbe36bb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2X2","C17","CNS","PRM","PZ1","SLD","VMA"],"rulings":[{"date":"2014-05-29","text":"If Marchesa has a +1/+1 counter on it when it dies, it will return to the battlefield under your control because of its own ability."},{"date":"2014-05-29","text":"If a creature has multiple instances of dethrone, each triggers separately."},{"date":"2014-05-29","text":"If the creature card leaves the graveyard before the delayed triggered ability resolves, that card won't return to the battlefield, even if it's back in the graveyard when the delayed triggered ability resolves."},{"date":"2014-05-29","text":"In a Two-Headed Giant game, dethrone will trigger if the creature attacks either player on the team with the most life or tied for the most life."},{"date":"2014-05-29","text":"Once dethrone triggers, it doesn't matter what happens to the players' life totals before the ability resolves. You'll put a +1/+1 counter on the creature even if the defending player doesn't have the most life as the ability resolves."},{"date":"2014-05-29","text":"The +1/+1 counter is put on the creature before blockers are declared."},{"date":"2023-07-28","text":"Dethrone doesn't trigger if the creature attacks a planeswalker, even if its controller has the most life. The same is true if the creature attacks a battle, even if its protector has the most life."}],"rarities":["rare","mythic"]},"marshland bloodcaster":{"name":"Marshland Bloodcaster","mana_cost":{"type":"Cost","shards":["Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Warlock"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\n{1}{B}, {T}: Rather than pay the mana cost of the next spell you cast this turn, you may pay life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"rather","description":"Rather than pay the mana cost of the next spell you cast"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":"{1}{B}, {T}: Rather than pay the mana cost of the next spell you cast this turn, you may pay life equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5ecf35b1-0bfd-4c60-a791-5a3b918dd630","metadata":{"source_printing_ids":["024ab7f9-1891-4c71-9fcf-cf124b1c6d10","4db8bd3e-2554-40eb-8e6d-d2eb589d9344","d62ba421-1387-425d-bf88-71207f2be1ba"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","OTC","PRM"],"rulings":[{"date":"2021-04-16","text":"Even after the ability resolves, you may choose to not pay life rather than pay mana cost of the next spell you cast that turn. However, if you do this, you won't have the opportunity to pay life for any other spells you cast that turn (unless you activate the ability again)."},{"date":"2021-04-16","text":"If the next spell you cast has {X} in its mana cost, you must choose 0 as the value of X if you pay life rather than pay its mana cost."},{"date":"2021-04-16","text":"If you cast a spell for another cost \"rather than pay its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, such as that of Draconic Intervention, those must be paid to cast the card."},{"date":"2021-04-16","text":"Marshland Bloodcaster's ability affects the next spell you cast after the ability has resolved. If you cast any spells in response to the ability, those spells are cast as normal."}],"rarities":["rare"]},"maskwood nexus":{"name":"Maskwood Nexus","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control are every creature type. The same is true for creature spells you control and creature cards you own that aren't on the battlefield.\n{3}, {T}: Create a 2/2 blue Shapeshifter creature token with changeling. (It is every creature type.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield."},"cost":null,"sub_ability":null,"duration":null,"description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Shapeshifter","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Shapeshifter"],"colors":["Blue"],"keywords":["Changeling"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{3}, {T}: Create a 2/2 blue Shapeshifter creature token with changeling.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control are every creature type."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"9b2cdbed-c733-409b-b0e4-2c8960c25111","metadata":{"related_token_ids":["19115e90-c504-5d55-9cbb-43d7197b902d","43ae1a0b-f820-58cb-afbb-96bd7592c442","4619d1ad-f2df-56e6-b96e-c8e204239231","4d21e209-4a89-5424-9213-b8ce391733cc","4f68d7e7-f83a-5967-8bb8-4a66c08b986e","5590d878-c28a-5c12-b61d-065c7c8e7a32","ac1d46eb-68b2-56ab-9f3e-b142cdc2fa33"],"source_printing_ids":["1246c42d-57c0-4cba-959a-15ad89d8a50b","404b3e0f-994e-49c8-b18a-ebbf418e741a","45887949-7cc6-4f83-a659-fb3284685c7d","471d2aef-cfd4-4131-bbc7-62eeed9f3343","9a8456d9-30dd-4acf-9255-e9540886df37","9e1aef13-3a5d-4a83-8851-e667a4cb5a67","c6f2c543-9b01-4760-966a-f0609c24f53e","d56e5307-4a2a-4bbd-ab61-83286464cac3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","CLB","DRC","KHM","M3C","PKHM","PLST","PRM","SLD"],"rulings":[{"date":"2021-02-05","text":"Changeling is a characteristic-defining ability. It functions in all zones, not only while a card that has it is on the battlefield."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to become a new creature type, it will be only that new creature type. It will still have changeling; the effect making it all creature types will simply be overwritten."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to lose all abilities, it will remain all creature types, even though it will no longer have changeling. This is because changeling applies before the effect that removes it."},{"date":"2021-02-05","text":"Replacement effects that modify how creatures of a certain creature type enter the battlefield will apply after you apply the effect of Maskwood Nexus. For example, if you control Maskwood Nexus and an effect says that each Warrior you control enters the battlefield with an additional +1/+1 counter on it, any creature that enters the battlefield under your control will get that counter."},{"date":"2021-02-05","text":"The subtype Shapeshifter that appears on the type line is mostly there to reinforce the flavor. A creature card with changeling is just as much an Elf, a Dwarf, a Sliver, a Goat, a Coward, and a Zombie as it is a Shapeshifter."},{"date":"2021-02-05","text":"The tokens created by the activated ability will continue to have all creature types if Maskwood Nexus leaves the battlefield because those tokens have changeling. Other creatures you control will revert to their usual creature types unless another relevant effect is affecting them."}],"rarities":["rare"]},"master of the wild hunt":{"name":"Master of the Wild Hunt","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, create a 2/2 green Wolf creature token.\n{T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"TapAll","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Wolf"}],"controller":"You","properties":[{"type":"Untapped"}]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"deal","description":"deal damage equal to its power divided as its controller chooses among any number of those Wolves"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Wolf"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 2/2 green Wolf creature token.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dd25cab9-15cc-40f5-9b68-8f345dd7e952","metadata":{"related_token_ids":["0fda6a57-5bf8-5a18-aaca-152041cb86c7","838671eb-24c5-5246-b969-5190055b6e1c","b101956b-c0f9-5be5-9133-a39b3fd24f40","d6503523-02c8-5086-a1b8-a7e18e8b68b0","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["060d72ba-ea62-4a94-8ca0-37978c709769","0cace1a3-34df-45d0-b653-b120b3617d40","2cf3169c-f01c-47f4-ba4b-e199b7ade5fc","3c56fda1-d286-46b1-9617-4f7c430abb79","fb4dcc14-0f3b-46b0-a37e-31d0c3e70732"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["A25","J22","M10","PLST","SLD"],"rulings":[{"date":"2018-03-16","text":"All Wolves you control are tapped as part of the activated ability's effect, not as a cost. Players may respond by attempting to tap or untap Wolves, or to create or remove them."},{"date":"2018-03-16","text":"If the target creature is an illegal target by the time Master of the Wild Hunt's ability tries to resolve, the ability doesn't resolve. You won't tap your Wolves, and nothing will deal or be dealt damage."},{"date":"2018-03-16","text":"Only a Wolf creature tapped as part of the ability's effect can be dealt damage by the target creature."},{"date":"2018-03-16","text":"The controller of the target creature doesn't divide that creature's damage as the ability is activated (since the Wolves that will receive that damage aren't targeted), so that player does so as the ability resolves. There is no time to react between the time a Wolf is chosen, the time damage is dealt to it, and the time it's destroyed for having been dealt lethal damage. If you want to put a regeneration shield on one of those Wolves, or target it with a damage-prevention spell, or anything else, you must do so before the ability resolves (and before you know which Wolves will be chosen and how much damage will be dealt to them)."}],"rarities":["mythic"]},"memnite":{"name":"Memnite","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7663ac7c-1de3-4250-b96a-fae9dbd66a27","metadata":{"source_printing_ids":["469cc4e0-49c0-4009-97ea-28e44addec69","70de6937-acd0-4496-94c3-2e9a80caddb0","7b8f6516-3d00-4deb-b852-bcd3b72e49ea"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DCI","MB2","PLST","PRM","SOM","TD2"],"rarities":["uncommon"]},"mightform harmonizer":{"name":"Mightform Harmonizer","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect","Druid"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, double the power of target creature you control until end of turn.\nWarp {2}{G} (You may cast this card from your hand for its warp cost. Exile this creature at the beginning of the next end step, then you may cast it from exile on a later turn.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Warp":{"type":"Cost","shards":["Green"],"generic":2}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DoublePT","mode":"Power","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, double the power of target creature you control until end of turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8e025cda-71c5-4d06-8436-decd408667af","metadata":{"source_printing_ids":["29bc9be4-4fc3-440a-a851-0c7f8989c9b5","f32302f1-b54f-4489-9d0b-9b771e59da06"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If a creature’s power is less than 0 when it’s doubled, instead that creature gets -X/-0, where X is how much less than 0 its power is. For example, if an effect has given Bear Cub, a 2/2 creature, -4/-0 so that it’s a -2/2 creature, doubling its power and toughness gives it -2/+2, and it becomes a -4/4 creature."},{"date":"2025-07-25","text":"If an effect instructs you to “double” a creature’s power, that creature gets +X/+0, where X is its power as that effect begins to apply. Similarly, a creature whose toughness is doubled gets +0/+X, where X is its toughness as the effect begins to apply."}],"rarities":["rare"]},"mind stone":{"name":"Mind Stone","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}, {T}, Sacrifice this artifact: Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{1}, {T}, Sacrifice ~: Draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"c97361b5-af16-4a7b-af85-a429dbaf4ad2","metadata":{"source_printing_ids":["02a34135-0955-4045-9558-6e61338baaf0","0eebe138-f638-4e8a-820e-ecdada7cc586","10ad9914-4a18-4679-8d41-1e338fc23fe5","162e81d3-6cd4-4cb8-8ed8-cfbd8d34ca71","1969ddc0-ee6c-4c3d-a9dd-7f1c491609be","23dd6cb6-31ee-467e-9f67-39046197bcb6","2c214d26-8d0f-49a2-8e34-be073d34369a","2f002162-20e3-4b08-bd3e-6241847680ac","3aed2452-915a-4a84-8408-6722425201f8","3e2550d5-ba6a-4cab-908a-b537973800c1","42bd038d-1005-4095-9310-108caa56465f","4e9b288a-47dd-4587-87af-6aeb35939ccc","52284689-f2e0-442d-80d0-9e766759e2bc","5cef8f31-a95e-49d0-ba75-7a639fcaa649","5cf95476-27ed-487d-8459-c97a921bb808","616fa067-0d10-4111-bcc6-84d97a13b5ce","6ac8db7a-009a-4141-bba7-b5fdfaf8d245","6dcc9f62-5b6c-422d-b4c8-eba1d363ede6","6ff5cc3e-0179-442e-a0b0-48063dd59fb3","7fdef0b6-a3b9-4752-bce6-53c0140a1693","8615e46e-56c3-49f6-b4ad-44ec25be5f05","8c899cbd-cddd-43f9-a95d-a6e5af990362","a1baff4f-eaeb-4fe2-821d-5b9079aad4b1","ad881aa0-decc-447b-8c8a-983546a9a55a","aeaf1f56-de96-480a-a0c4-0a06d4daf149","b227672f-967e-4f8d-87f4-c6cd4622fe3f","b63418ae-2f77-4229-b921-fbce75b9daa4","b793a8e9-5870-4190-a204-c241b0e67f97","b88baf29-a556-4e89-8471-9ba9bc8efe2c","c0757550-cf9e-4111-b1e3-7c422d4c1f8d","c54814f1-3598-4859-b956-b39d8335e6d3","c729606e-5b13-4699-b7c8-feca69c91f62","cb3b2998-a7c6-4e6a-b467-71106feb6974","cb3d470d-e0f0-44c2-97f7-f31c02cdfbd3","d0add078-6151-4331-8c2b-03e3e574e6a7","d5795300-dcfa-4a40-9c23-79a061c26851","ecbe852d-4538-41dd-bfce-a134a7bc3022","eed69870-1a65-4bec-842c-e837348493c6","f1f616f2-d69d-4763-8ff0-3eb05a543926","f3817d9a-0e1c-4eed-9593-78d481d3001b","fa6dac02-c557-4a3b-864a-1189325baf5c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","40K","AFC","BLC","BRC","C14","C15","C18","C21","CLB","CM2","CMM","DCI","DD2","DDP","DMR","DSC","FIC","HA1","IMA","JVC","KHC","LCC","LTC","MKC","MOC","ONC","PIP","PLST","PRM","PW21","SOC","WC97","WHO","WOC","WTH","ZNC"],"rarities":["common","uncommon"]},"mirkwood elk":{"name":"Mirkwood Elk","mana_cost":{"type":"Cost","shards":["Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elk"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhenever this creature enters or attacks, return target Elf card from your graveyard to your hand. You gain life equal to that card's power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, return target Elf card from your graveyard to your hand. You gain life equal to that card's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5b29c26f-c0f0-4703-83db-3a249ebc5792","metadata":{"source_printing_ids":["0157631a-b1c4-4176-aa3d-f60b9b7615b8","1cf84c03-a131-451b-99ee-64330c1f2e26","dc8db812-78c8-47f4-89a6-a7b272be2d19"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"In the rare case that the Elf card you return to your hand doesn't have power, you'll gain 0 life."}],"rarities":["rare"]},"mirran crusader":{"name":"Mirran Crusader","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Double strike, protection from black and from green","non_ability_text":null,"flavor_name":null,"keywords":["DoubleStrike",{"Protection":{"Color":"Black"}},{"Protection":{"Color":"Green"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"fe69d9bd-2a60-4b33-a0d8-1ca18c2b6705","metadata":{"source_printing_ids":["56086ccd-a628-435b-a7af-ca28d89276da","aaf7a821-3587-4aad-8411-fca5c96ab5c4","f7c34f5d-0430-4036-a633-1a68a0d2fc65"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MBS","MM2","PLST","PMBS","PRM"],"rarities":["rare"]},"mirrodin besieged":{"name":"Mirrodin Besieged","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Mirran or Phyrexian.\n• Mirran — Whenever you cast an artifact spell, create a 1/1 colorless Myr artifact creature token.\n• Phyrexian — At the beginning of your end step, draw a card, then discard a card. Then if there are fifteen or more artifact cards in your graveyard, target opponent loses the game.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Token","name":"Myr","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Artifact","Creature","Myr"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an artifact spell, create a 1/1 colorless Myr artifact creature token.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Mirran"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseTheGame","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":["Artifact"],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":15}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, draw a card, then discard a card. Then if there are fifteen or more artifact cards in your graveyard, target opponent loses the game.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Phyrexian"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Mirran","Phyrexian"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Mirran or Phyrexian.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"674e2683-31c0-4fee-95fb-98b1201e41e7","metadata":{"related_token_ids":["eb9fbc1a-6716-57be-9fa4-1a3288306b7e","ef95c68a-b227-5c19-b017-02ebfa99c966"],"source_printing_ids":["d8423d8d-744a-4bbe-a853-8ad756451bdb","edf98768-c7dd-434e-8883-19b47ad45790"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH1","PLST"],"rulings":[{"date":"2019-06-14","text":"If you somehow control Mirrodin Besieged and no choice was made for it, it has neither of the two triggered abilities."},{"date":"2019-06-14","text":"If you support the Mirrans, Mirrodin Besieged’s ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2019-06-14","text":"If you support the Phyrexians, you must choose a target opponent as your end step begins. Whether that player loses the game is determined only as the ability resolves. This means that the card you discard may be the fifteenth artifact card that causes the target player to lose the game, but it also means that if there is no legal target opponent, you won’t draw or discard."},{"date":"2019-06-14","text":"In a Two-Headed Giant game, if one player on a team loses the game, that team loses the game."}],"rarities":["rare"]},"mirrormade":{"name":"Mirrormade","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may have this enchantment enter as a copy of any artifact or enchantment on the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"BecomeCopy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"You may have ~ enter as a copy of any artifact or enchantment on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"SelfRef"},"description":"You may have ~ enter as a copy of any artifact or enchantment on the battlefield.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"79a71fe5-38ce-4bb5-aea0-c9b9a856d397","metadata":{"source_printing_ids":["236b40cd-c359-41cc-b530-d7d6fbbe33bf","a10c1407-d397-4caa-b7b7-e7d91ffd4ee9","a26cbfbe-fbb8-4804-b065-ab2c42ddad9b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","ELD","PELD"],"rulings":[{"date":"2019-10-04","text":"Any enters-the-battlefield abilities of the copied permanent will trigger when Mirrormade enters the battlefield. Any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities of the chosen permanent will also work."},{"date":"2019-10-04","text":"If Mirrormade copies an Aura this way, you choose what the Aura will enchant just before it enters the battlefield. You can't choose any permanent cards entering the battlefield at the same time as that Aura. This doesn't target the player or permanent it will enchant, so an opponent's permanent with hexproof may be chosen this way. The chosen recipient must be able to legally be enchanted by the Aura, so a player or permanent with protection from one of the Aura's qualities can't be chosen this way. If there's nothing legal for Mirrormade to enchant, it stays in its current zone (unless it's a spell, in which case it's put into its owner's graveyard)."},{"date":"2019-10-04","text":"If Mirrormade somehow enters the battlefield at the same time as another artifact or enchantment, it can't become a copy of that permanent. You may choose only a permanent that's already on the battlefield."},{"date":"2019-10-04","text":"If the chosen permanent has {X} in its mana cost, X is considered to be 0."},{"date":"2019-10-04","text":"If the chosen permanent is a token, Mirrormade copies the original characteristics of that token as stated by the effect that created the token. Mirrormade doesn't become a token in this case."},{"date":"2019-10-04","text":"If the chosen permanent is copying something else (for example, if the chosen permanent is another Mirrormade), then Mirrormade enters the battlefield as whatever the chosen permanent copied."},{"date":"2019-10-04","text":"Mirrormade copies exactly what was printed on the original permanent (unless that permanent is copying something else or is a token; see below). It doesn't copy whether that permanent is tapped or untapped, whether it has any counters on it or any Auras attached to it, or any non-copy effects that have changed its types, color, or so on. Notably, if Mirrormade copies an artifact creature or enchantment creature that's normally not a creature (such as one affected by Bring to Life), Mirrormade won't be a creature."}],"rarities":["rare"]},"mishra's factory":{"name":"Mishra's Factory","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}: This land becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.\n{T}: Target Assembly-Worker creature gets +1/+1 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":2},{"type":"SetToughness","value":2},{"type":"AddType","core_type":"Artifact"},{"type":"AddType","core_type":"Creature"},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddSubtype","subtype":"Assembly-Worker"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become a 2/2 Assembly-Worker artifact creature"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"It's still a land"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"{1}: ~ becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Assembly-Worker"}],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{T}: Target Assembly-Worker creature gets +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"5963e0ef-e0bc-4611-ad4f-813a4c0eacfb","metadata":{"source_printing_ids":["14dd21e1-51c4-4811-9547-3a5fb393be66","245cdc59-d560-4c10-b721-f51cc312e370","30f6058b-777b-4216-959e-d9435152aed2","3bec64fe-08cc-4d28-8bea-708fee1581be","4047df9c-335c-4c1a-968d-00f40e2e7386","59b6fe0c-7bbe-433f-8400-4be4ce0e3f15","6e9fec20-a52c-42c0-9928-c572d9e1b21f","747eb1be-7303-4ecb-bc93-81761a2f0c5c","7c05c946-66c3-4785-90f9-ca0c606e036b","8d4448f2-2826-461d-890b-31409aef21c1","9d596bc0-c972-4a36-8cf6-cd8f72169021","9e5d6972-3f64-486c-a325-7351b910dafe","9f831977-6b84-466d-8ee4-188b591d58cd","a4d9c106-6aa4-4f5e-9049-741b50ad54b3","a696c5b6-f216-454d-8029-74e84bbd1428","a9785d7b-f7b2-4c09-ad28-ef5eaebacfdb","ac09a506-427f-4636-bcfd-b40f8d511905","ad1577a3-a350-45e3-af3d-62c85207514f","ade01a16-65f1-4b50-ab9a-98e9bbf9f57d","aff8d4f1-eaad-4afb-9097-2afab133f707","c44669b2-bf9a-41c3-91c7-d845b0061fbf","d0dcf152-916e-4603-a688-7a05b57d1b4c","de2f8b1a-a29e-4596-8ebe-5fdb6ce15b5a","e26acb07-5eda-412a-a58a-1ba290d0cf70","e88a1690-111e-4e8f-a896-890e793e8a9f","f0f292de-238a-4b19-a6da-f164158b79dc","f305f103-746b-4406-b569-1a7dc32beee7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","4BB","4ED","A25","AFC","ATQ","DDF","DMR","EMA","G05","J22","ME1","MH2","PLST","PRM","PTC","REN","RIN","SLC","TD0"],"rulings":[{"date":"2022-12-08","text":"A noncreature permanent that becomes a creature can attack, and its {T} abilities can be activated, only if its controller has continuously controlled that permanent since the beginning of their most recent turn. It doesn't matter how long the permanent has been a creature. Notably, if you turn Mishra's Factory into a creature on the turn it entered the battlefield, you won't be able to then activate its first or last abilities."},{"date":"2022-12-08","text":"After it becomes a creature, Mishra's Factory will still have all its abilities."}],"rarities":["uncommon","rare"]},"mizzium mortars":{"name":"Mizzium Mortars","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Mizzium Mortars deals 4 damage to target creature you don't control.\nOverload {3}{R}{R}{R} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Overload":{"type":"Cost","shards":["Red","Red","Red"],"generic":3}}],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":4},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 4 damage to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48ddba1e-2ad7-463f-9307-d2379a800e51","metadata":{"source_printing_ids":["2367b094-9482-4e3a-aa9d-dd878d1c3dea","544b2931-0af1-4743-b7c1-91e1dc9294d5","708557e2-c1b4-4e45-b568-17763b7a9924","85e72d7b-8d0f-4953-b8b1-7ddfaaa9fc06","bef58faf-4d5e-4c66-9780-28abfc4c0c69","c997501a-821e-4509-b752-fac01230342e","d4ded88d-2688-4f5e-a8b2-16216cf9c792"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["C15","CLB","GK1","MM3","PIO","PRM","RTR","SLD"],"rulings":[{"date":"2024-01-12","text":"Because a spell with overload doesn't target when its overload cost is paid, it may affect permanents with hexproof or with protection from the appropriate color."},{"date":"2024-01-12","text":"If you are instructed to cast a spell with overload \"without paying its mana cost,\" you can't choose to pay its overload cost instead."},{"date":"2024-01-12","text":"If you don't pay the overload cost of a spell with overload, that spell will have a single target. If you pay the overload cost, the spell won't have any targets."},{"date":"2024-01-12","text":"Note that if the spell with overload is dealing damage, protection from that spell's color will still prevent that damage."},{"date":"2024-01-12","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an overload cost), add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare","mythic"]},"mogg war marshal":{"name":"Mogg War Marshal","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Echo {1}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen this creature enters or dies, create a 1/1 red Goblin creature token.","non_ability_text":null,"flavor_name":null,"keywords":[{"Echo":{"type":"Mana","data":{"type":"Cost","shards":["Red"],"generic":1}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 red Goblin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, create a 1/1 red Goblin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"PayEcho","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.30a: At the beginning of your upkeep, sacrifice this permanent unless you pay its echo cost.","constraint":null,"condition":{"type":"EchoDue"},"unless_pay":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"payer":{"type":"Controller"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"7b8f4879-578e-40e4-863a-41d0c32c6bdd","metadata":{"related_token_ids":["12a89d08-9938-5ef1-8c72-d8d57cff8cda","1e96a870-1f0d-59e2-ac6d-84d600c5125a","261364f9-97f9-5ecd-a221-2d7b039ed47f","32aa33fc-99b2-54ad-9990-fa9b874f2fff","624155e0-9fb2-5dc4-ab66-fb7cd6196d53","8d32e4af-d168-5a47-9b9e-4512e2063e6d","8eef2917-0d4d-50c8-a06f-49e75b85b242","a82aa998-5fbf-5125-ac16-b9d57f944875"],"source_printing_ids":["7fb6d241-f68b-45c8-a79a-f6c274bd8512","8b9e0bdb-b615-447a-b80d-d7244c25c56e","8c4ad771-b708-476f-bd08-3bd1ce8508d3","a7f7f39c-94a0-4ccb-b658-23095ada4005","d3f75cf8-5346-497d-b5af-72b268a72f2b","dc45b117-8ba1-4349-ac06-f690cde48c17","deed0a5a-6662-460c-bd78-e3d95e8bc83e","e6da34e4-3ad6-40a2-be7f-0b2cb6fa2be7","fc027246-1dd3-4be0-bea6-3a7476a833ce","fd170aa1-18be-470e-aa36-bfb11e9f92c1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["DD1","DMR","EMA","EVG","MMA","PLST","SLD","TSP","TSR"],"rarities":["common","rare"]},"momentous fall":{"name":"Momentous Fall","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nYou draw cards equal to the sacrificed creature's power, then you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"You draw cards equal to the sacrificed creature's power, then you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6a5ce1b0-ac78-4a74-9eb7-4064e1687bf1","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["0271550a-0610-4e21-849a-f29547a77bdc","91a6f558-a754-4437-8328-00a6ca47f9b5","ca079f33-2764-462e-ba6a-961cbb8318c3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C19","JMP","ROE"],"rulings":[{"date":"2010-06-15","text":"The sacrificed creature’s last known existence on the battlefield is checked to determine its power and its toughness."},{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["rare"]},"monastery siege":{"name":"Monastery Siege","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your draw step, draw an additional card, then discard a card.\n• Dragons — Spells your opponents cast that target you or a permanent you control cost {2} more to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Draw","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your draw step, draw an additional card, then discard a card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Raise","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Dragons"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells your opponents cast that target you or a permanent you control cost {2} more to cast."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"240a33a8-23a0-4cb2-a9fd-1a2a21966bb8","metadata":{"source_printing_ids":["30154ecf-f7ae-435b-a339-0219650bebed","32d2a1ad-210c-444d-9cb7-b78b493db7ea","eef398b5-38f7-4a11-8fcf-d4e0d27267cf"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won’t depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."},{"date":"2014-11-24","text":"The “Dragons” ability adds {2} per spell, not per target. It won’t cause a spell to cost more than {2} more to cast, even if that spell targets you and a permanent you control or more than one permanent you control."},{"date":"2014-11-24","text":"The “Khans” ability happens after you draw the card you normally draw during your draw step. That card and the additional card will be in your hand when you have to discard a card."}],"rarities":["rare"]},"mons's goblin raiders":{"name":"Mons's Goblin Raiders","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a37159df-f6d7-4db6-85de-0ea77f425993","metadata":{"source_printing_ids":["0d3eff55-6a14-4c01-8b05-715094a319b3","2fbf039d-0ab9-4c42-a0a3-cbfa3ea1dd6e","34ac4e28-1677-4f88-9b1a-7a32635f0ab2","6e81e219-c840-4844-be87-0449ab0fa645","8324c5a9-d126-4510-90ac-c6b1424137d9","8874865b-5ce0-443f-a49e-0eaade5939da","9f31c715-9ab8-4578-989f-141099b6750c","affefdf8-a346-4e06-a727-67ce543ae8e6","b4eb3db3-6a7c-488a-9433-d5d1d3133816","bdbe033a-1771-4269-9381-4b460d574a38","e1a837b1-6808-4823-ac30-ca43009f14e4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","CED","CEI","FBB","ITP","LEA","LEB","RQS","S00","S99","SUM"],"rarities":["common"]},"moonlight hunt":{"name":"Moonlight Hunt","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you don't control. Each creature you control that's a Wolf or a Werewolf deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you don't control. Each creature you control that's a Wolf or a Werewolf deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f38a6cb4-79dd-4c12-9896-8c6655e275f8","metadata":{"source_printing_ids":["63f7afc6-dcc2-45ce-99e8-696cd5a11466","6d36aecd-4bd8-4350-9161-e6feecc09bb9","768ee736-9d47-4085-a0b6-a80ca150b499","d9633603-a80f-448d-98d9-00064d379c26"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["INR","J22","SIR","SOI"],"rarities":["common","uncommon"]},"morophon, the boundless":{"name":"Morophon, the Boundless","mana_cost":{"type":"Cost","shards":[],"generic":7},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Shapeshifter"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Changeling (This card is every creature type.)\nAs Morophon enters, choose a creature type.\nSpells of the chosen type you cast cost {W}{U}{B}{R}{G} less to cast. This effect reduces only the amount of colored mana you pay.\nOther creatures you control of the chosen type get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":["Changeling"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":0},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenCardType"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells of the chosen type you cast cost {W}{U}{B}{R}{G} less to cast. This effect reduces only the amount of colored mana you pay."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"IsChosenCreatureType"},{"type":"Another"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Other creatures you control of the chosen type get +1/+1."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":null}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"bf418a2f-e639-4e52-9cad-5a0713a1829b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["33c2e889-d2e1-4197-ba97-81a2b8512746","58e4a55f-b35a-411a-9a05-0cbb0d767920","84238335-e08c-421c-b9b9-70a679ff2967","9693e59b-032d-4ddc-a7d1-88a0f52dcc6c","9f4b771e-1f3a-406c-b92f-4c0664edacb5","c8e87f00-1772-4141-9ee4-e57344f5076e","dbf0e27d-9b68-44dc-82ff-53d6817fb9d5","ea2cfd10-37d9-4429-842e-f5a4c9abe3a4","f21e1de9-7128-4797-8483-86ac826ab1e4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMM","M3C","MH1","PJ21","PLST","PMH1","SLD"],"rulings":[{"date":"2019-06-14","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to other creatures you control of the chosen type may become lethal if Morophon leaves the battlefield during that turn."},{"date":"2019-06-14","text":"Cost reduction effects are applied after other cost modifiers, so Morophon can reduce additional costs or alternative costs of spells of the chosen type."},{"date":"2019-06-14","text":"If a spell has hybrid mana symbols in its mana cost, you choose which half you will be paying before determining the total cost. For example, if a spell of the chosen type costs {2}{W/U}{W/U}, you may choose for the cost to be {2}{W}{U} and then reduce it to {2}."},{"date":"2019-06-14","text":"Morophon's effect reduces the total cost by up to one mana of each color. For example, if a spell of the chosen type costs {4}{R}{W}{W}, it will cost {4}{W} after applying Morophon's effect."},{"date":"2019-06-14","text":"You must choose an existing creature type, such as Sliver or Warrior. Card types such as artifact, and supertypes such as legendary or snow, can't be chosen."}],"rarities":["mythic"]},"mortis dogs":{"name":"Mortis Dogs","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Dog"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature attacks, it gets +2/+0 until end of turn.\nWhen this creature dies, target player loses life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it gets +2/+0 until end of turn.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ dies, target player loses life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a89994d0-2110-4ca0-abfc-5dd232981acf","metadata":{"source_printing_ids":["3cae1f40-0e43-41d8-bc5c-aa9873f7d7d5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"The loss of life is equal to Mortis Dogs’s power as it last existed on the battlefield."}],"rarities":["common"]},"mountain":{"name":"Mountain","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Mountain"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {R}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Red"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a3fb7228-e76b-4e96-a40e-20b5fed75685","metadata":{"source_printing_ids":["005a993c-5111-4364-9fba-75b3d94a8296","01534212-5a65-4088-b45b-0823736a8fd5","01550676-3659-47d7-9a47-67c31438ec09","0162885d-3f55-4440-b40d-e38d378c4567","021fa322-f38c-4d94-8122-5b13425106d9","02244055-cbeb-4074-9482-42ec20721312","025e57e4-d088-4ad9-b872-cba327f63e9c","0282ebd2-c264-4157-9808-7151988d7cb6","02c9e76e-6eb1-4d0f-9cce-376cb31eab4b","0333e39b-45e7-46df-908c-0748092ce8c1","03683fbb-9843-4c14-bb95-387150e97c90","03bacab3-25fb-4a0c-81b3-7e9e22899c2c","03cd5953-37fc-4a8a-89f8-0b5dd8412dc9","03e34d39-0628-4832-b42c-650ca7e9b318","042b04b4-f7f4-4c1a-86ad-b50d788aa99e","0497551e-eb90-48db-90e9-0f917da41d9e","05712bcb-eb67-4e84-a640-7e507675756a","05f9bdca-0d54-46c7-b803-9083dfc9ee24","061dae7f-e590-4760-b447-3a4a353084d0","068bbaea-874c-4f02-8188-9a15f3cd9cb9","080ba201-2e5d-4580-8921-397f91dcadc6","0826bec4-1958-4b5a-89be-70a4801e2384","08a2aea9-8b3a-4be3-aaa0-4c4a19f63d02","08bc7313-8b12-4ce1-9016-59b4e3c78ff1","0a7dbfd2-cda7-4fc9-9677-e442fb5f5f6f","0aaf15b9-1bf5-424a-a994-67beaae29d36","0ab63e49-0869-4c7c-a033-d8e50032dd13","0b04aed9-bab5-427b-8fd3-9ada33e93398","0b2f797a-0c9a-46a0-9f07-0f6af1846552","0b384d24-8771-4860-8fc1-1b74217f1c4c","0c5c9379-b686-4823-b85a-eaf2c4b63205","0c9cbae1-6b04-4408-82fe-3fcf61dffbe2","0cc818c8-32b7-4f15-9db5-0aacb92296b1","0cef98b7-d54a-456e-8240-1c5af3a72a04","0d446f70-cdbf-4ac3-81db-6fe77e064dd0","0d66423e-bc9f-41dd-9100-09d449c88980","0e468809-d639-43f0-8834-16e921547dee","0e6a9646-1034-4d09-a141-9a36f51ff229","0f5a0d49-71ae-42c4-a896-6828dc4f1e85","10478e22-d1dd-4e02-81a7-d93ce71ed81d","10918bf0-af19-4882-b96f-eb57d67b543a","111036dd-e295-4786-a372-fc7f71171cf7","117716bf-43c8-4534-92da-d7948d4b5628","11c94acd-ad60-4aec-b11b-f4dc4a9adfbc","1267a5fa-f9a9-4a7f-89f9-24889868ccff","135cbfbc-0fcc-49d8-b1a7-cb0740afd793","137f41ee-e6a8-4e84-8d43-9e6fa269f31f","13b0928b-0469-4e3a-a8c8-1df26abb6707","14c4ac40-e8fb-4076-9f11-dcb6a919aed5","14fff1a6-58e7-40e5-b091-672ad11827e3","15a7deb5-0163-42a5-90c7-388f8dda83fb","15c28158-fb96-4006-bc65-425dba031395","15c96b83-d0b3-4da9-bb2d-249cc18b55e9","16328444-5657-4f35-99c5-340d61472770","17990059-8368-45f8-8325-c82fc181450a","17ac61e4-b543-4c37-9bfa-43f0c928152d","17de9f2c-e051-404c-8ec0-c35f500efd67","186e36d5-3f1d-4423-a8db-f4c38898fa30","18abed94-d742-4ad6-a2b3-69e6bd0e3fda","1905eecb-d758-4a3b-aefe-8019ab2491e6","1921ce16-8ed8-41d7-a2b4-9e62f44ac8d6","19b5fff1-7a60-4e50-893a-8177cd62bf82","19f44dcb-e911-4000-935f-5455edb8f868","1a0d5140-0e5e-461a-bf70-d548f8f02f47","1a44ab4e-79fb-42eb-9c46-cf73ee5f0db5","1a44d8a4-21de-497d-9eed-702d7b592728","1a534ae1-4e6f-43ae-a8ad-89e306f11f21","1a8d9be0-255a-482a-b055-f483859266c5","1a96315d-edc6-4d68-a260-d14f61281dc1","1aa57b94-56c0-45c4-b707-05bbfd78db40","1b03e16c-bdb4-4bdf-998f-3ecf0857df81","1b0f41e8-cf27-489b-812a-d566a75cf7f7","1b8d1535-68e7-4ca0-aa71-fc7fc63090fc","1b9dd110-c03b-4945-9d56-580cebac63fb","1bd5fb3d-2c9e-4cdb-a202-ad5955eae42c","1ca86e9b-93af-461a-b69d-799711afddb8","1cef9230-34fa-496f-8835-5dfaac627f70","1d8bc14f-7009-440b-a72c-64e911b13379","1d91f2fa-58e7-49ac-b46c-5a0ba312015c","1dfead05-dd09-4a07-905f-56c3a69a43d5","1edc5050-69bd-416d-b04c-7f82de2a1901","1ef001a8-adb5-4125-aa1a-f5e3f8ca898b","1f7fe3c3-9cf7-4b73-b2bd-301667a2cd4d","1ffc2e95-dd9b-4581-988f-850d9e240a30","207a468f-79c3-486e-ac5a-4516361b7b4d","21041ed6-8f13-4909-a2c3-fa4894a2d1e3","21c8b7f3-7c5b-4004-8dc4-9157288e279c","22262a3a-c2e0-4639-9002-361b39ea9b3a","2237ee9b-fff6-472c-903c-11faf9bb116d","22965406-d8d7-46ad-992e-7fc0e994698d","232ee129-0db1-4a03-9eda-4692a8495b53","2373014c-21d1-43d5-b774-352cdc2a840e","23e043bf-a6d7-4778-8460-13bdf38b7d39","2472bfbc-ab29-455d-8ce4-7faa2cd33abc","24b61852-860e-4f89-a1b2-6429168f0c02","253c7d53-e34b-493b-8d46-da946245bebb","266a514a-076a-40c0-a756-c6fdd261c3cb","267db963-684f-4b2e-9af9-5ad5bfc6d341","26b1ce7e-26d5-44b3-b0f3-c6ec5839c6d8","272c67fd-3e0e-4559-ae6e-a9d9db01288e","277af45a-1f91-4fd4-804d-5b34241386b8","279df7e2-2a3b-464a-a7df-e91da28e3a8c","27ade9a7-2a2e-4ec9-aa9c-20bc8caaf8a3","28294aef-eba7-4f20-bf81-c857f34422bd","287c7486-472b-4069-9826-6a3adbdefaa6","28cde170-c7af-4ee1-85f4-8a9289c5a4d3","29557b92-fded-4aa8-8db7-99168c8e70d8","295b92bc-d66f-45d8-9bbe-5f5f13e39fd4","29b39c91-e367-487d-9820-893870df23b1","29b4a0e0-3d27-414b-80cb-352f16389a83","2a41bb43-0328-4093-88c6-4dc00dfdfb7e","2a456b1c-de58-4ba2-ac39-9e0b3e2a9b51","2a7b2779-92dd-455d-920f-684276608244","2c3c0f74-485e-4b21-8f41-56666a7d0005","2d78f1af-120f-4929-94ed-624ee1f2447a","2d9d3ae3-1f59-49f8-9bdb-2658091a29fc","2e4072f8-4833-4219-b620-3092a9f08874","2e7255ed-4fec-488e-b334-59d3c0f1acd6","2e97dadd-0849-4c18-9523-4775d09fca9a","2eb15b42-be2a-4663-b064-aad6c7cb2714","2eced8a4-67ce-403c-a567-82ace69d1cf1","2f0a5c8d-b9d2-448a-a321-22c45832243f","2fe601b0-0398-47f0-9e4f-9f841ad79b9b","30345500-d430-4280-bfe3-de297309f136","3064ff57-b2e4-4152-a91d-a67e0ea71749","318699f3-3ee4-4355-aebd-8a5a9006e07d","3204f401-1bcb-4d97-b15d-113a5d3c3e9f","32982ed2-96e4-4cc5-8562-744b06bca239","32eb6ab0-831e-4a30-a2fc-5ea1cb40930c","3306a711-b83e-4509-8363-1d9dac83f511","336ab17d-78d2-4008-ac48-e681967949c4","33e34fb2-dc64-4a35-9e8b-057f700196f7","34410953-113a-45ae-89d4-2ce39f75c3c6","344e6464-62a0-4766-b9cc-af719e3e211d","35132c99-01b9-463c-a00d-6f125893c870","37827425-f304-43eb-979b-1ec5b923a2b5","37acb733-b3bd-4140-915d-b2c0989208aa","37d0d802-2bd2-444f-81e0-4cc2f8ece38f","38576aaf-7286-49cc-8329-91159ee81025","38c1e97b-4d7a-4a76-8999-5c76b4bae9cb","397c6517-08e5-441f-a409-ffe383503864","399f7531-e137-463b-bec3-e86756b6ed71","3a200286-67f3-4bff-8a53-3e76733414fa","3a3afd00-da06-4a9f-8cd1-7133728e0fdd","3a42ac42-b21a-449b-abda-6906f06e8120","3a7245d4-7a29-4423-8b44-5e9694e1d9a1","3af0fbdf-95fe-4576-ad67-3f6c9aa7090c","3b4a196f-de7e-4100-ad65-56cf8b0a8b23","3ba24a61-e529-4490-8536-6276ea77c511","3c22765e-a131-4be6-ba48-64b84564ea51","3c6a38dd-e8f5-420f-9576-66937c71286b","3cecf0db-0e0e-4329-b055-bb9dad912ca8","3cefc72a-83ba-42e4-a036-a9f45363c8cf","3d0e93c3-48e3-4ae5-a33f-4ef83f67ee37","3d5691d3-751a-41dd-b2a3-c766c8973bfe","3d6da8eb-31b0-48c1-9ad9-552827967f91","3d811021-40b1-43b1-88f1-04d711c2ab57","3df7c206-97b6-49d7-ba01-7a35fd8c61d9","3e8ecccf-8786-4770-9879-86c4fbf44768","3f0e0823-cbf3-4cf7-8fe1-a032cf33ee66","3f64898e-d561-402e-8e4f-dda1ce241869","3f7b9b8a-77b2-4f83-b0f9-f522c165ac42","400199da-0fec-4dc0-b724-494b6d4f5845","4038773a-2fa6-47c3-8064-fb49da90816c","40d07155-d45d-4fec-a15e-525df5010af3","41db412a-d559-4cc3-9951-6f314daa9849","42232ea6-e31d-46a6-9f94-b2ad2416d79b","423f4311-9feb-4c63-8b4c-32ddd38382e0","430564c9-1cb7-4f46-8737-d5f78745846d","43579693-4b97-42dc-831e-4fc9597e29c0","4399a832-4406-4a12-a5e5-81744d02ceec","43b9efbc-ab04-4438-81e2-a558a67cafd0","43fe9a90-11a0-4cc9-b337-a4da45b28ded","449e4447-fbb6-43d9-a28b-f33331b70f34","44b08a29-8b53-44c9-82a0-ac689c9feeb5","44c1a862-00fc-4e79-a83a-289fef81503a","45651533-0c76-476a-bfaf-1b5ec74427cd","4567803d-3f01-407b-8df4-a00825a243f6","46ad38f6-ca2a-41a4-96cf-f41a41d54a37","46ae8b67-6239-47fa-b5d0-9c9454fbdcdf","46bad0eb-807f-4391-82c9-edc9d14070f5","47a55065-555a-4bdb-8ab1-8830ca5ba6fd","47ce4367-0e70-477b-8ff4-4b204d81981c","488ca216-de75-4acc-9c67-fd37070d7e92","489fdba7-5c25-4cf3-a1e0-3e0fda6c6ee6","49f1fe4e-8da1-4879-8129-bd8a440a45be","4abb2702-6f5e-4832-9e23-46aaf9f960f8","4b3eb87a-8f77-4859-95fd-10988f03da7b","4b827c54-8bfe-4ef5-830e-e17b8690bbe7","4b8489c0-b01c-466e-b33b-239406d7ea69","4bb5aad3-2c3c-41e1-b5e1-d5f7fc38617d","4bc26857-9cc2-4971-974e-c70dfac90856","4c80fc2f-4bbe-493c-bb5f-87192580c37a","4cc281cb-a583-45a7-85d1-c10d5900b966","4ce797d6-6773-4f34-be40-2e3443af6466","4cf7d0ad-8fe2-4065-89e3-c2ee04062695","4d6e2576-b5d9-4217-bfa0-411470155d71","4dbd12ed-e512-43d8-919d-478b18674deb","4e6bce91-f1e6-40d4-9ecc-cafa8d2586b6","4ecd2a9c-45b7-45c2-8936-d9e631367507","4ecf39c3-3b5f-4263-a7b5-9881bded3494","4f312d7b-f505-45c3-bb87-650259e5db50","4f45c7ed-cf98-455b-b665-81103fdc9331","4f570888-effb-44ff-a250-a7726a0b01f4","4f8f5a6b-2bd4-4e45-93f8-6017917b0ee0","50352268-88a6-4575-a5e1-cd8bef7f8286","5037330a-6e9b-4ce5-ba81-ae1ccef63334","50748a4c-43a0-4274-9a84-046d76027166","50e349f8-9860-4197-a40f-610659057365","50e7681b-37e3-4f6c-8415-ab9613446ccc","514f8188-3d9e-4937-bfcb-b73acd80878d","517ffb8e-4194-4958-85ec-b853b917764b","51acfb01-4b0b-48fc-9704-a9b4a1e43a23","51d25ead-70d6-4abd-b611-6c94ce042c89","52248fe8-0f1b-4e3d-9024-842c921b6071","5256e591-7510-41fd-8564-330562c00adb","52c79d57-a8eb-427d-86ac-b203c0bb7cda","5353e8b2-3280-48ec-9bc2-8c8e7a15b460","535ca5c1-7574-41ce-a504-a4f8de9eb1d8","5383b66e-e559-47d2-9967-9c2d5f898653","53b46e72-6ed0-47c1-ad42-38a893620fa1","53fb7b99-9e47-46a6-9c8a-88e28b5197f1","54278194-fc8b-4208-a3ca-e655fddca2df","545b397b-ff3a-49f6-bb10-e403b8fee85f","54968fa2-36f1-4d21-89e7-a307d68cfccc","54a773e3-93f0-4bf8-ab6a-8cee939d743a","553b6aaa-3ae3-4f3b-9ab6-361eddf996a2","55483163-c53a-424d-9cc4-74da9aa6dff9","55c61b29-797f-4fda-acf1-039a807954c9","562ca69a-e077-4e38-b2a7-013b3813b7f6","5687c7d1-4794-4132-9ca2-b039905882a3","56b65f77-85c1-49cd-bb2e-70e5225ace9a","577aff75-67f7-42c8-b31f-50026c5ba5c6","58b54fa5-99c0-4a2d-b36a-1c7963eeb210","58c34fe0-77ec-4ba3-a214-00d0eb42ebae","58dcb5ef-85f8-48ce-be39-d0a4eb8345af","5960dfdf-cba1-47d4-8e7c-f87f814b07ed","5a019603-2351-4923-96de-c0809f685a80","5a240d1b-8430-4986-850d-32afa0e812b2","5af90ad7-25e9-4a5c-9169-38f33d7640a6","5b7d9208-883e-4fce-8750-c694398c4ea2","5c356eb7-ebf4-400d-95a7-7452382bc32f","5c51021a-4a7d-471d-9286-f150ff5802d7","5c71906a-f885-49ba-a889-8baf4e74cce8","5cd39b01-9a06-4575-9c63-9fb3ba9ef101","5d1b7628-3c08-4cb7-b14c-36ea119574f6","5d3b9039-ffd0-4265-9854-9c722c88a40f","5e046ca7-f392-4036-8ec7-6cbd9133d8ee","5e4952a8-4e1f-4a74-8a06-c9d633b25dcd","5e4dc67c-95e2-4c65-9c73-b3ba70c49629","5e8b3a6c-8a76-4998-9fd1-41d5756e4956","5eeddb97-3b50-4ba3-b48d-d1807e644b72","5fb3e3b8-24a9-49bb-af3d-6b866f4187f1","5fd9acc5-0088-4621-8f48-e997da5f27c5","603114eb-c0eb-4734-87e6-7fc94beda3c7","60ee28b6-03ed-4cbe-9367-b8db2ae5a66a","617555d3-ae42-4cf5-ab74-8758eb9bfa53","621aa8e1-aebf-4eea-beb5-7fb47700a87a","6243f79f-b0e3-4fba-b899-7535e1a277e2","62465f68-6a84-41ae-8a14-41f41e817eff","6261592a-82d1-46dd-964f-a0a1cf22808f","62811570-cf16-43b5-8f50-e6358d726cb4","628ee82b-1f10-4466-bdca-75c0f89d49c9","62a92bef-0abb-49c0-94df-10d2da6845d0","62aaa129-69ff-4e22-861e-b2efd1cd5a10","62cac2df-9964-4931-9e03-7bc43395b88c","63120f1b-8052-49fb-9fc9-09d7746a627f","63993fbb-df88-49db-a3e9-655c87dd68cc","63a9637b-61de-4d77-8c35-b12a075d7faa","6410d20e-408a-42c6-9884-ea9e22e2ee7c","6418bc71-de29-410c-baf3-f63f5615eee2","6457f78b-aca6-4ebf-9e89-bf9321ceb35d","64729d4b-991f-45d0-aaef-4ab26746c57e","6477ebad-e1e5-4508-aa20-39b47e39a5c6","653e2393-30a7-4e0c-bd20-f05ca0ba3cb6","65d51676-2399-4db9-8c31-c8063be7b94a","6651e0fd-50ca-449e-84f1-ebb07fb305f5","66f1953d-e12c-4192-a4f1-930eb489f681","67057abf-749d-4512-968a-832c56324e13","676fb0ed-5a19-4fde-b2c4-f46c7e0915f8","681b9c8a-6140-4086-bc72-37f0058a8e9f","687611bf-b200-457b-a139-63502c93ea69","68c35440-ddb6-4b43-baba-889ff3ce0c0d","68df89dc-3909-4051-adc1-a86589d0e99d","69419307-53d5-40d7-82da-cab2e7bfbda4","69eea766-b22e-4c2d-9e98-d57f38e031da","6a58066e-f9a2-4508-9cc0-908b1cf747e3","6ad4e9cd-76e2-4ee0-8185-8b3aec3578ce","6af1f1db-eb91-4297-83f6-9318b87fd220","6b092822-f34f-4384-9d0a-23d863d27231","6b0e7f4f-99a5-4d80-8f10-40cf0977035a","6d65590b-f390-4faa-80e8-43bd87a70ff7","6d9e44c1-7b51-47cb-b564-608deb46cc44","6df2f49d-097e-4685-8ddb-69c55f07f60c","6e1a59c7-53d9-4e2c-9596-c64394838575","6e4622c3-d727-4e5e-979a-db45221636be","6e82bb8b-2a95-4935-a728-6898f64ce39a","6ea6d05f-dfeb-4d1b-b9ad-d006ec2437f8","6f29a2bf-75e1-4361-8a44-510d79323186","6f630e29-5ffd-473c-b5a7-96a9a5e3551f","70099566-ba66-4d66-aafa-8232aa664a6d","701aefd4-074a-47b8-88a3-32fb90b09dee","707ac400-885b-4424-87c3-1bb0cdbfea1e","70ff4fd5-c26f-4274-b899-1f995d4d8c25","71f2030b-f622-4cc3-ac83-258ae3645fd6","72308c3b-ac46-4bb7-889a-7860cbadae72","72776f25-48f5-4d7f-84a9-310928b9d7ad","72cc8e7e-3d78-456a-b4ef-c9f2eaa6ec7c","7352288b-ff7b-43c7-a5ae-3f6577d11708","737ac24f-a47b-486c-89df-3e3eaf495ff5","73c6382b-ceff-4092-9ec3-328cefab440e","748b9a1d-0fa3-41bc-beb0-7e3cf2eb33ed","75d30961-0285-4554-846c-7c4b0ea9b1da","76a38a60-7e1d-4ef3-acec-1699b29662ce","76ad8df0-20f3-4372-8b2b-7c4ccfc2e9c0","76dc6f1a-9eca-45bd-8788-cc34b9e1a980","76f30404-4d66-4aa0-81d3-351820854eda","77c65a79-b8ae-4743-b124-c34140a06731","787da7ce-527d-4abf-9e92-5de9db2250cd","78b8829d-7ac3-4563-8c3e-959c660dbe32","7a1ed4c3-0c0f-4194-afd6-2d891fa0f61b","7a298c5d-9937-4df6-a544-7b3bcfe84885","7a4c0731-555a-4bef-9d9e-b877f0339417","7af9c715-8d72-4eae-b412-fc89138ff588","7b150a6d-a33d-456a-a2b0-286e43bc636e","7b6d71a0-7603-4cf1-b874-2b2200e62183","7ba2d0d9-9b48-4edf-b1bb-e7f385ae97c8","7c0916a2-e2f1-42b5-9f2c-b6a18a605138","7c2cc19c-84ce-4c0b-b56f-7a2b3878a26e","7c5063be-9dd7-48fc-91aa-7bea13d97200","7cb82fdb-5090-45c0-ae67-4846667c8625","7cb88a03-7092-4d31-a9f1-4f16e39bc537","7d671616-f58c-4ee9-9ed7-78ebc385948a","7d75969d-c932-4b4e-8135-61968228bc32","7e19c7e1-1b4b-4c7e-b011-eff8ed7de0fd","7e5f3636-323b-4652-83b9-3b8b9c3191eb","7e8ae541-98e2-4a84-90a6-b17502f4442d","7e998ce9-4853-44d1-a01a-e2d493718ceb","7f78886b-335c-4227-a2a1-0b99108c89c5","7f918a49-a046-4115-80b8-13490ed5cd0a","7fa480be-8df1-4bd7-bbfd-d92f9c49aef1","802b1bb0-6c73-481a-ac3e-7d4e1682b4c2","80a372c6-cc5e-44f4-afab-2fd56aa79920","81c49cb2-ceb4-41e0-b3a6-d7820a01c92c","8210d0bb-1309-4de2-bd46-58759c72158f","82b5f331-3d6f-4e0f-b5a4-61040ed61d39","82c9463f-44f7-44a6-ae10-ae0ec1f55ca9","831f40f9-2642-4313-99ec-a4a7afe2839d","83706d20-fbb0-4a0a-b9c3-70e6fa3fdcf9","83beeef7-2bb5-4c3a-9be4-79a968696d65","83ee7310-d5cc-4f1f-b0c9-f0bde22a695d","8418acd5-ca4b-4fe8-a1f9-44b16e6dcda7","84298c7a-8bae-4e62-bd0a-bcce2156fdf1","84c3e407-2828-40e5-b335-7a0a3df1e5ad","8584b531-6dfa-43b2-99ba-b614b147f9a8","85f5bbab-7bf0-48d4-8138-d64f84f4d769","864b4fb7-dbfe-4d9d-b520-4a307c31c876","865ace8b-9e12-4f20-ac3c-d07a323b40dd","87d1c48f-1ca3-43ea-8109-964b29bb2d50","8822db23-34dc-452a-92bc-a3ceee4db375","887debac-305a-4713-9f23-f80072e7a39a","88b6057d-19f6-4cf3-8d13-a5e9c7a9941d","891b0e9b-6d3a-43cc-8b59-f617c4543189","8956585b-1268-4eb4-b97e-74ffb9f82688","8993e4d0-d306-4993-b5a7-dbba754d479e","8996cd43-5ecd-4a05-a5a9-e49326befaa1","899ee6f6-4aad-4093-b1ef-7e2ec2b78df8","89ad7ef0-101c-436e-a41a-cdc8e91d2f2a","8a38bea4-2d1b-442b-aad5-ab1a0ae67aac","8a4448b6-0dbe-427c-b145-8ac915fc0dfc","8be9bbc9-77f2-4a61-b19f-30f2e61b8e88","8c8841b2-9b4e-4f65-8e30-1e9423cb8fbc","8e3c2e1a-181e-4275-ad09-51c9de039d32","8e747bba-b521-4f81-9d9a-3e85747cefe9","8fbd06f1-3427-4168-9a34-82f43a514146","9058a084-485e-4b55-aab2-1d7dbad12886","9137b4aa-2289-4a4d-b1f5-ae75a0928278","91df0ada-4828-41ca-9000-5132fcb29e6b","91e5ce25-a0cb-4d9e-8274-af5672a85b0a","9252dd84-ba93-440a-bc2f-36fb703fb57d","92acb132-1f0b-41bb-8483-9616ea040601","937f96ed-dbf1-4ff2-bc55-6b0cd3795ccb","947a6ddd-6684-49b1-8e2f-1516ca7a2a34","94b728a4-c3a9-408e-8333-8266a02c64fa","95083e1d-faf5-40e4-9be5-909cd01cc2b5","9515ced4-b679-48f0-bf62-8b7baef5e1c2","95315204-a5f7-4d20-bda3-957029da29fe","95585c69-6474-432e-b80a-489a2b69d4e6","95b6bba2-cb1f-4598-827b-a0ab26e925aa","95ec918b-3039-402d-a52e-b9f0a08284e2","961dcc35-a282-4d40-93b3-1cc7fa5221f5","96297bcc-8480-4b14-8612-1c395d481bce","96328602-bf67-42a5-8cca-1fcea5656b8a","96549393-9607-43c8-91de-905462cbcb19","9660fb20-f499-4f7a-9f25-e463f095ab90","96614dc1-9386-4861-b792-b83bcc6c5811","969d5979-8ae8-4442-a3a5-3412ffeb5af8","96d52300-3fb9-49a6-8fe9-bd32adcbdb4b","96e14936-5614-46ba-874c-c1357243fe02","97004cdc-0baf-415d-8e87-7f36667c4628","970abfee-e888-4635-90a6-2ab88910c428","977527da-2953-493f-8e8c-ffc64ddeaf10","97a9360e-a02b-4dde-b14c-620ed0c54804","97eda14c-5e33-41cc-8651-109f5ef97bb0","9865657b-43da-48e2-ac55-6a29c21df253","987557ee-8344-4191-b85c-f9dedf4d1614","9885f3a6-27f0-453f-b2d5-1fbc0af05920","9894ec2c-e5c2-42a5-b44a-76ec02684171","98a5f21d-b403-4dc9-b33a-bc496b19e1b2","98c45686-6c6a-43de-abab-d0af9ef0e7e0","98f389ca-3662-4544-b0b5-9d2abd073b7b","98fcd666-7724-4c55-975e-20cfa759bba7","9983c9fb-84b2-4eec-adf8-c604e237b82b","99c3decf-4a32-45ff-b7f6-ea2d52387c89","99e6a7d5-678a-48ac-8296-71078e4d8521","9a58d03b-1b47-4d3c-9d8a-18f20c8f978b","9acc9266-3a8e-4a5b-9c00-bbc30e3bf5e7","9aec9409-1812-4f85-b396-39bd9783b65e","9af1a73f-e2ab-4832-b9a0-5bd9643f4fd3","9b1da399-d8ca-48a9-96a3-dd1af1ee5e1e","9b396f90-92b1-4cc0-9be8-2f724b39fbc6","9b6fe3e2-a2cf-4209-ac9b-e04d02599360","9c78da04-09c3-4a95-9586-4544c326d569","9c81a162-9735-4c3f-8eee-43b4f3b5a59c","9cccf957-a4b0-4d10-adcb-0393d7e50b0c","9d6dc341-89dc-4e99-baa2-ad0ae59f0e94","9d93aef6-daea-4010-adec-9f081fab4d6b","9db73fef-f5eb-4d98-aa11-117bbed46bbf","9dd6bb74-b58b-4019-bfa4-7325d70a2fc2","9e1170a5-e5bb-4b86-8718-f75eec679b4e","9e132fac-ee5b-486d-bd4b-d534134acf1a","9e7878e1-28a5-4527-ba61-ed6c6b855309","9eb23531-e89f-4b27-ae15-535e6c7bcd81","9eb742de-57fa-49f5-977e-bee1b8186e9a","9ecdbaa2-7e93-4969-97cd-d3ba5d776d25","9f5f2d43-42e5-49fc-8430-d972ac4e9d77","a0627111-1390-43cb-84e7-d6c0e46c02ea","a18ef64b-a9de-4548-b4d5-168758442db7","a1ba2d4f-7a9b-4cf7-98fd-17b1b8c70bcd","a1cfd796-50a5-404f-acc1-21dbf543ccc1","a1d7ea5b-b02b-47f7-801f-1af7024df231","a1f985de-fde4-497c-9cb1-00af00fccf77","a2a0f125-041e-4a5d-b100-3dbb6bf729a1","a35ff5f3-56a1-4862-809e-7ec77f9cc9ee","a3a4da7d-a703-4f91-9ef7-ce269c0b63fb","a4be3032-c55b-43b5-9ae0-f4e7470f4f83","a4db1b7a-93f2-40a5-b649-80a099ddeb62","a4f4d8ac-a69f-436a-9f3e-be2d66b056ff","a4f7b582-dc68-4d12-bebd-baf79fd226f0","a56424d3-ceda-4cd3-988f-48ced72d17b8","a5b2d0ed-0b47-459a-8f5c-554dd816c03a","a5c17b3c-6f3b-4952-a06b-0df5a5a18f0d","a5cae174-58da-43de-b7c8-f5e79f8cf986","a642c7b1-d4d1-4125-a66d-560438e5ee51","a68647c2-a343-4314-8abb-00e7de6ecf0d","a6a57c6a-3603-466c-8a81-a9eb8de92aec","a6e00407-8290-4924-afe8-424517867a93","a6f72e53-52bb-4cf4-9b8b-34ed0c5f7c3c","a7878436-bf83-45c6-a040-e2fad447862a","a78ca93f-a833-4ce5-b032-a4225e1ee45b","a7aae748-27d8-48f8-beb2-8e0192d7cc5c","a7d5cb40-7365-492b-a3bc-4a624f78cec4","a82f782e-abc8-4b92-a193-17b2c383f765","a92c5c74-d5b5-40bf-be86-39ac5e4c4f1a","aa01020a-f7c8-469b-bb39-d71c195838e3","aa04994a-4295-4be6-90c8-8f67fabd2e99","aac1b0e2-d164-4c98-ab9b-57fbbc95ea0e","aae84079-b65b-4132-86fb-e82503bb6c7b","abe82e5e-7496-42a5-87df-880e153bccbc","abf2ec64-a850-47e3-91a8-7323e04a5f4a","accb56f0-3903-4894-86f0-3965162064d4","acf03952-6d9d-4e57-acb5-44c855f3ad69","ad1e3ee1-c2b3-4d06-9e0d-a28e9b44fb30","ad25a56c-607b-4896-a34a-aeb2712b2a08","adde69b5-947f-4fe1-84fe-89cf44a35e8c","adf13285-d127-4534-9f49-aa86914da175","ae3d2fcd-11e0-4071-8c53-cb3315b7360a","ae41792d-4aa0-42ae-a9e1-9261cf9181a8","aeb56f0c-07a5-4b01-85ac-3ceaad0eb544","aef2ab8e-49de-443a-9236-97356aae2bb1","af1b83d9-078b-44dc-a118-4659201f4854","af426fb7-6bd0-470a-a887-0b1adeab1a11","af9ad645-e605-4048-bf4c-d636584f315b","afb4e4e8-33ba-4951-b7b1-170a1fc91567","b044630d-50e7-431b-8e91-bd53e967f594","b082f22f-6c01-4e8c-80ad-6fdae5c3f22f","b0eaaad2-5512-46f8-9bdb-84aa3ef0c2ac","b137c4c5-9091-4130-ba83-87a28435c9e8","b1902b98-7579-4b7a-8cb8-9bd0e0da5f67","b26e7306-df23-4339-b3af-faf9effe0140","b2e439e2-2c7c-42fd-a47b-f615641f7392","b373adfa-ebc2-4060-8ff3-d1f0eca03c02","b37dc16e-3631-46df-acc4-19040fb8a86e","b3d7738e-295d-4df4-9484-8b62049e22e9","b3e2ee4c-5548-4a17-bf27-e906d2825867","b4376426-c901-44eb-8186-c009a3657893","b469d5fa-89c2-4e5e-9c1d-c3edb80f7b59","b47ccd54-3bad-4926-8420-c88f9dfaf80e","b4af8aa4-2fa9-4489-94f2-63ce4b07b0c9","b55b57b3-6cbd-4571-8163-b6ba76904d9d","b560a15d-240e-42d0-ac06-19d8363d2080","b64e4622-e905-49da-948f-aeba1ba674ce","b6a0ca9e-c72b-4c99-8e6b-b6dbebf894e9","b6d39f35-c7b2-43b2-aee3-4ff2cd3e37e7","b7bf8555-019d-4a08-8004-b31fe7bf494d","b8352d89-48c0-48de-9bf6-330d05e7331f","b86fbf78-57ec-4a0f-9fb6-e4bf13861563","b92c8925-ecfc-4ece-b83a-f12e98a938ab","ba50901e-a030-4f52-8369-f4c9ca6b9c7a","ba6694bb-f3b7-48ff-9d93-cbed84fac210","ba88d76e-d71f-43ea-a272-5dc8b5928c6b","bb4004c8-c3d9-494e-a257-6d8443cbf1b7","bb74a761-0c83-4aa5-af58-fd5da8797b7d","bbbecd1f-81ad-427e-a50d-64b9ec029c3c","bbc9fa2e-0ec9-4b70-b602-a7e669ed0031","bc543a7a-698b-422d-a2be-8315bb366b27","bce45bc0-accd-4853-a166-9dd5597526d5","be7e4b30-7f45-4109-b5ed-9223a9422d95","be8e09c2-3384-4d00-a2d0-65d6b8056e30","bf11766b-2614-433d-a3b3-e49b31769c98","bf422aa4-f696-4019-ab7b-90e378c33aea","bfa10a88-12e0-4b79-80bb-6f4620277e20","c060a07b-7408-4b95-a546-e2b2010d7818","c15e5767-64e1-4f4e-a02e-1143db0f648e","c1b854c2-493b-4129-9688-c9db1524ee94","c1baebba-a975-45b1-bbcb-f4ce1ba682b5","c1bba8fb-d763-4efa-8db1-e5e81994b5f9","c321d0e1-ff30-4424-979b-25e1a33e45d5","c44f81ca-f72f-445c-8901-3a894a2a47f9","c451cdbc-c580-4728-b384-af157de6e505","c464b81a-3d91-4d07-bc9d-6756780417e3","c55498ad-f474-4805-b9e9-592ec1c8a8e5","c7533cbb-ab73-4a0c-9ea0-baa97c4665b8","c872e70c-626f-4d2c-b26b-d94f815fceea","c89b3c3a-3dba-47b3-9620-d4dd754a59e6","c9a3144f-9b4f-4d1a-b384-6228c99b38b7","c9ecf4e3-4ae2-4e15-95a8-280d2ebb5644","cb4abaf5-3bc0-464c-b31d-d579d0a9128d","cb524a84-34a4-43bf-9872-b4a053a141b5","cb939924-52e1-4802-86f1-3c2ab164007f","cbe67eb3-f10d-4f34-b4b0-fd00ee8cc325","cc9c1b6a-8fc9-4292-81a0-5cf423638c71","ccf928c4-c8ee-479c-88df-d6bb35e0778a","cd757142-45b7-40db-80f2-fe161379aa4e","cd8a0cd6-8d3b-44bd-b609-c12fb851d17b","cd95f833-27ce-447c-b505-02137daaba4c","cd976640-79c0-4aed-8a2f-a62025665d59","cdf5d88e-1699-4ce3-a4aa-3e8d1ef2bc39","ce3346e6-f8ca-45fa-944c-055ac038e828","ce70fbc1-eb96-449b-bc3c-53dc5eb7f3d3","cf0725c1-2b83-406e-8a19-0b9d159c8614","cf9095db-44ad-444b-bd9d-4a06102fe230","cf940cc3-282e-4b6b-877d-5ce71ee797bc","d00305f7-df9d-4cc9-aad7-aa83553a60f7","d061b9a8-e95d-48ec-a1c9-337433b62dfc","d0a55d99-d668-4621-bb14-f7df210adbe4","d0c82442-e201-407d-9db7-613f24c1eb03","d10d759b-db5b-4a59-840c-05bcbf2381f3","d2075dfe-b48c-46e3-bde1-f9f8e3b9d928","d2655e7b-ae35-45f0-b86d-c2f74ef3ee04","d28d244f-a41c-433a-932a-efef8623d9fe","d2c5b445-3679-4acc-9e88-1e8c7c656589","d3112990-3919-46b0-b927-14566c689a81","d3740beb-7fa5-4b83-be7d-039750b126c5","d3e3961c-d092-4a15-b5db-d7b5c70e4fc1","d4128057-3615-4df6-ab3b-d41c2c643cd5","d4606809-7066-4413-9dfd-e929004a71bb","d55384ef-6e5e-4e0b-8156-edad0fc9b25b","d5d68279-a6fd-4cf3-afb3-1ba4e26a78a3","d66b6951-50a0-4b30-aa73-d4ce1380ff49","d67cf0c1-5658-4f88-9fbd-63c1dbf77ee0","d67f591d-8bae-473e-9220-90502fc55cd0","d72d883e-d194-4154-a96c-35e601c5f797","d747c636-e5db-4905-8939-667f9ef4200d","d7f613b2-de5b-4592-8d14-5ad373537a21","d8a63f1a-8224-4c66-9a3a-6c04c656c73b","d9a754b9-a4f4-4183-b184-b7c12551c483","da8be748-3815-46a6-95fc-a90cdf697e73","dac11332-404c-4839-b0d0-3224a55ac579","dad3662a-f7b4-45d5-a35e-fc6c38474692","dae3e69d-ec38-43e2-b4a2-3a9064835a97","db6d3fb9-ecec-4a55-bfcf-6ae2d35e416a","db73b06f-ccb7-4b9a-8d30-671de35b86a7","dc3f4154-9347-4ceb-8744-9f1ace90d33f","dd2ac135-2411-4753-ba4f-41c33de526db","dd842290-fd0d-419d-b793-bd84b43f5d9a","dd8611ec-6db3-4d29-8d3b-01e87bb38a55","dd9b48f1-7c3a-4b1f-9a00-7b75eb6ea831","de0ac2b0-175b-4e71-9172-ce2a72234818","de69bda2-9690-4e8d-abeb-115bbb377fec","de6c04b6-7a25-4a0b-9561-0358a2acef43","de754d20-5371-456b-9064-8f0687d2eab7","df190cfa-ebb6-48e8-9980-950a26d0f2d8","e0571374-26b4-403c-b6da-4fd8b930cda6","e07ca6cd-4767-4c29-932f-fdb9bff5307e","e0e2923f-a585-4096-8268-1136655bbf3c","e10e313f-ba75-4324-b1ac-f2bbae99f7ab","e135c9f9-5099-4029-bc19-dd9a0760d86f","e13ee385-ad54-410a-b1db-19a0267294e1","e16f6a52-67d6-4215-9f3f-3b0a17dd8889","e1a4064e-3fe3-49ab-9dd5-85872fc8477d","e1dfeb23-204c-4e48-8a23-c69daf92340f","e1e88b41-7ae5-40fc-8947-5f5aa03388be","e21f4c3f-60f2-4f68-92e1-88fee822bb9a","e340b671-7daf-4f84-80a9-2ca4278aa33b","e34229e7-5dc4-47b3-9ba2-609e5b3ca6c2","e36b68e1-41fc-416b-94bb-59798edfa500","e3731001-4e6a-4a91-9e7d-fc2ea039a60b","e3de70f1-6fb1-4191-b66f-491c794f9c05","e49c0db1-5acc-48ed-a0f0-0510433d6d34","e5339dcb-2544-4f19-acf3-86f83793301c","e58a9634-c2c5-4bf2-b694-86b23f8cf923","e5a66092-6748-430e-877c-0ddc94c948c2","e609028b-43b8-4aea-9f9a-25aa127482db","e705bad9-1c4d-44e2-89ee-9a5824e2effa","e78801a7-af8c-4f1d-b29e-7a36676b6818","e7b95522-a9de-4ec1-8158-c66813919e62","e820a082-f876-4cfc-95a2-34be5b994d80","e82fc4bc-ac81-4ad6-8b33-781d047f60d5","e84db98e-c51a-4380-8704-57fdd5eb360f","e89a4cc9-bd45-4bb4-bc78-d555c5e16c74","e8aade2d-5cf5-44f6-9095-aa3756b1c1dd","e91e1aae-438b-41df-ad8e-25ba7c9a8f74","e91e2641-70cf-4055-8749-2c2826af816a","e9744bb5-9ad1-4287-9929-1146377d975b","e9d34a2f-09ed-4fb4-891a-890f450699bd","e9f08835-74ca-4ac5-980e-e802aada2bb7","ea1735b9-fd10-4c9c-b9d3-046d8c22b852","ea96ecc4-72f3-46a4-8900-6a7c5a83d4df","ea9cfa3b-686e-4933-88b2-fabe218ed7eb","eace2c85-976c-425e-9800-5a6ccbd91b56","eb1ba09d-ecdd-48c0-af0b-3dc5ef908f9e","eb359844-c9e7-4ab2-ac5f-d426c4fe6fc7","eb5257a6-5a4d-4b7d-ad4f-3ff0b7c74dfd","ec2b2bce-1b66-4cc6-ab87-50776e1d1e4b","ec82f4e4-97e2-4374-a255-ea6b35201e80","ed37e1e0-ed21-45c3-8266-c6b11068ceb6","ed6fd37e-a5b3-48c6-b881-cedadfd94833","ed783a0c-ba7c-48f4-aac6-ad93a02bce6b","edabc558-2c54-4c7b-a6fa-1e75ddcf12f9","edf40698-620e-4032-b2e3-0d513a4a4250","ee851c64-4bf9-4dde-b73e-41366828a1dc","eef2a9c2-2079-4a34-80f0-f0ca7f882498","efc70226-2926-4bc5-a602-c5d56f0cfc52","f0c889dc-f043-45fd-81a4-9ae424343f46","f14137e9-8743-4adf-a89e-9a7f455650bd","f1ddd6e0-dbdc-4ce0-bc26-f94c951f90ad","f23596e2-72ea-478d-baa8-3df0e81b4cdd","f243292a-e8a6-43c2-805c-15715fcebd67","f2e450ae-3ed8-424f-b974-7d9a8e8ac7e4","f3f43c81-10fc-4e08-9070-5453bc5826b4","f5110f2d-ff79-4a4b-9842-32a9fe82011f","f53b7e7e-494b-4346-b18e-0e879bba7cec","f6d3d5a6-7d26-44eb-b040-c50fb1f867e1","f76d6ecc-a774-44d5-8c16-e2ba4bf7d283","f836071c-9ee3-4dc0-95b6-28d0c5de76f3","f864b3de-b6eb-4870-995b-298fc2e08028","f8739e90-a967-4e06-b966-1a15755a25bd","f92e9e94-e5e9-4b2c-b9e5-35de42ca7b8e","fa08a961-cd6a-403e-a098-1e7f716262bb","fa712fb1-8840-4e26-9211-2653919fed91","faab0dc4-a9e6-453d-a2b1-12369084f7d6","fac247df-aa19-4627-8d65-6ddf5e7e5c8c","fb734fd1-7e4a-4d56-b85e-6638012cbda9","fb76cb6c-2f4d-4ca2-876f-d49ea529e59b","fb8fffd1-aff1-4aad-bfa0-9907adb5ce25","fb9140ee-9f74-4f6f-b2e6-abef3faf7882","fc0a5a9c-e59a-4e33-b584-d6daa7f81547","fc5004db-8db3-4506-bb01-f41be7968824","fcfb1db3-c0ea-4f8d-8208-5f8895ff686d","fd16edd0-4d4e-4db6-9da9-4bb5994fa047","fd194fb1-0d3a-4eff-a446-240d18dad43c","fdf1fea6-3e04-474c-9cda-ff49fee255f7","fe0865ba-47c0-40bc-b0c6-e1ea5ae08a98","fe14fc96-f33a-4bd2-8b04-c339936d3c24","fedbe1f9-b29f-4bdd-9718-615b7c2413b4","ff951c38-6e02-40f0-9f54-13ac0915332b","ffbd0396-2e7b-4b87-9504-953bd35e4fea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ARN","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD1","DD2","DDE","DDG","DDH","DDI","DDJ","DDK","DDL","DDN","DDP","DDS","DDT","DDU","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","EVG","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","JVC","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PD2","PELP","PF19","PF20","PGPX","PGRU","PIP","PL24","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TDM","THB","THS","TLA","TLE","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"mox amber":{"name":"Mox Amber","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add one mana of any color among legendary creatures and planeswalkers you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColorAmongPermanents","count":{"type":"Fixed","value":1},"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]}]}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add one mana of any color among legendary creatures and planeswalkers you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7a43bd27-fdd8-41f0-9bc4-92568f3408f1","metadata":{"source_printing_ids":["66024e69-ad60-4c9a-a0ca-da138d33ad80"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","DOM","PDOM"],"rulings":[{"date":"2018-04-27","text":"If you control no legendary creatures or legendary planeswalkers, you can activate Mox Amber's ability, but you won't add any mana."},{"date":"2018-04-27","text":"If your legendary creatures and legendary planeswalkers are all colorless, you can activate Mox Amber's ability, but you won't add any mana. Colorless is not a color."},{"date":"2018-04-27","text":"Mox Amber's ability adds one mana of the color of your choice from among the colors of legendary creatures and legendary planeswalkers you control. It doesn't add one mana of each of those colors."}],"rarities":["mythic"]},"mox pearl":{"name":"Mox Pearl","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {W}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"824597b8-c89a-47ec-8526-7efc6e24ef0e","metadata":{"source_printing_ids":["4da892c5-071f-416f-9e42-c4bff102eb88","8ebe4be7-e12a-4596-a899-fbd5b152e879","b3020358-9c59-45fb-bf74-9c69bc47580b","c84e8a0e-49a7-46f6-8a37-910e32753528","ed0216a0-c5c9-4a99-b869-53e4d0256326","eed1bd05-d085-4115-aa37-df4e7aef2e46"]},"legalities":{"commander":"banned","duel":"banned","legacy":"banned","oathbreaker":"banned","vintage":"restricted"},"printings":["2ED","30A","CED","CEI","LEA","LEB","OVNT","PRM","VMA","YDMU"],"rarities":["rare","bonus"]},"muldrotha, the gravetide":{"name":"Muldrotha, the Gravetide","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental","Avatar"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"During each of your turns, you may play a land and cast a permanent spell of each permanent type from your graveyard. (If a card has multiple permanent types, choose one as you play it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"OncePerTurnPerPermanentType","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During each of your turns, you may play a land and cast a permanent spell of each permanent type from your graveyard."}],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"e4625704-1d52-44e4-804f-2f45644d76ac","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["51710b19-68e3-4853-901f-e618bde61161","705b4d97-2f50-47f7-9053-d748f4337553","76f7d02a-7b83-4444-ac65-1661637183ee","adc15cd2-e6d1-406e-af58-2f5fbaa74a30","c4125bb0-b104-438e-a6a2-97f9d141243c","c654737d-34ac-42ff-ae27-3a3bbb930fc1","cf3f12dd-5b96-4eee-bd2d-a221757c24d3","d0a81b1b-92c1-4ee8-affe-6e1c027c7393","d5c19629-b129-4c8b-9456-c38309248189","ff672733-486b-4042-8209-fca70df86b7d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","CMR","DOM","ECC","FCA","FDN","PDOM","PFDN","PLST","PRM"],"rulings":[{"date":"2020-11-10","text":"For example, you may cast an artifact creature spell as your artifact spell and cast another artifact creature spell as your creature spell."},{"date":"2020-11-10","text":"If a permanent card is put into your graveyard during your main phase and the stack is empty, you have a chance to cast it before any player may attempt to remove that card from your graveyard."},{"date":"2020-11-10","text":"If multiple effects allow you to play a card from your graveyard, you must announce which permission you're using as you begin to play the card."},{"date":"2020-11-10","text":"If you play a card from your graveyard and then have a new Muldrotha come under your control in the same turn, you may play another land or spell of that type from your graveyard that turn."},{"date":"2020-11-10","text":"Once you begin to cast a spell, losing control of Muldrotha won't affect the spell."},{"date":"2020-11-10","text":"Use the type of the card as it's played or cast to determine which permanent type to count it as. For example, if you cast a creature spell from your graveyard, you can cast a card with bestow as an enchantment spell."},{"date":"2020-11-10","text":"You must follow the normal timing permissions and restrictions of the cards you play from your graveyard. For example, you can't use Muldrotha to play a land if you don't have an available land play or to cast a planeswalker spell during your end step."},{"date":"2020-11-10","text":"You must pay the costs to cast a spell this way. If it has an alternative cost, you may cast it for that cost instead."}],"rarities":["mythic"]},"murder":{"name":"Murder","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"938b4e2c-88d9-4637-bc00-e228920c9a78","metadata":{"source_printing_ids":["0b5579cf-4e3f-4b65-a253-465459f3da81","0f2eb849-b3ab-4d26-86c5-235c8161cf2a","1c13ac76-7cd9-456f-9b89-92bfa07c64c5","1cde89d1-b789-4bd6-8dcb-856b525f775f","1ea6438b-0e6c-4d65-8bcd-34a988717c81","1f29d9e4-3100-43cb-9723-7d5c23f89b12","2c249609-9cf7-46f1-b94c-9329add966bb","320e195e-65c7-4220-bdc7-fe1e02a4adfc","440bfb8c-f29a-4c11-9fcb-ee935dead03f","45368bf3-d5e9-43e6-a67d-93c2e93acc72","4c98fcd3-8273-459f-857d-d0a34a1d285a","68c5d614-7b7a-4768-8e81-707f1f6bb34f","6a2b22bc-e81b-4f27-a52b-9f3edad25439","6c776ca4-4950-4a27-8ce2-fbe534579d62","86d73f4c-0bbd-4616-81a6-102db6cd7db9","95e18830-3668-4c23-96aa-d241f79adbd5","bdef7fea-2bd0-42a2-96f6-6def18bd7f0c","c8676f02-cf1e-4d40-a0c5-6e5a97417898","f7139613-488b-496b-a21d-a577b1426e6f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","ACR","ANB","CLB","CMR","CN2","DSK","EMN","J25","M13","M19","M20","MKM","OTP","PLST","PM19","PRM","SCD","SNC","ZNC"],"rarities":["common","uncommon"]},"muscle sliver":{"name":"Muscle Sliver","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"All Sliver creatures get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Sliver creatures get +1/+1."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"06e0459f-d691-4470-884a-27c09b6612d2","metadata":{"source_printing_ids":["510a8590-48f5-40ee-a0c8-77238055a937","602a1e1f-4195-48c0-8290-562e7e0db6d8","e96fa876-5474-4374-bc51-fa5df9278042","f36faada-4f9c-43f9-b3e4-55714737a5c9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["F03","H09","PLST","PRM","SLD","TMP","TPR"],"rulings":[{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn't provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it's no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."},{"date":"2021-03-19","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to a Sliver may become lethal if Muscle Sliver leaves the battlefield during that turn."},{"date":"2021-03-19","text":"Muscle Sliver's ability does give itself +1/+1."}],"rarities":["common","rare"]},"mycoloth":{"name":"Mycoloth","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Fungus"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Devour 2 (As this creature enters, you may sacrifice any number of creatures. It enters with twice that many +1/+1 counters on it.)\nAt the beginning of your upkeep, create a 1/1 green Saproling creature token for each +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Devour":2}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"P1P1"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 1/1 green Saproling creature token for each +1/+1 counter on ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.82a: Devour 2 — sacrifice any number of creatures; this permanent enters with 2 +1/+1 counters per creature sacrificed.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"CR 702.82a + CR 614.1c: Devour 2 — as this creature enters, you may sacrifice any number of creatures; it enters with 2 +1/+1 counters for each creature sacrificed this way.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d7fd16ce-282d-49cd-b2b4-0d25935e7a72","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","993318ee-4e8f-58a6-b55f-894b9310a3d9","b97a960d-5d34-5fd0-a94c-af7bb41c3edb","ba1d8604-e466-5949-a156-abf0d3bbb33e","c0edfb5e-e4bc-52df-aa04-92671cb93cd2","dc6b409b-79e0-5103-9e78-2bf1c9a3deac"],"source_printing_ids":["014c07d2-b698-4459-b8b8-47f3aa1acce3","15360a16-b785-4ffe-bfa8-6c7f6a37455d","28b878b9-d6d2-4316-866e-0d6573ee80e1","6cc3ba22-3f1c-41fe-800b-cdf7af44e74b","75d495f2-2eb4-43b1-becc-1570ec57eb6a","798748d5-cb17-4f9a-85d4-1bc518222bb8","924976cf-9b46-4cbf-ab27-07ca72a21608","a45d83bb-5422-4a72-bbc0-2529ecfa0b4a","c3f7faed-de6b-404f-b54f-e60d5b55485b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ALA","C15","C16","CMA","PC2","PCA","PLST","SLD","SOC"],"rulings":[{"date":"2008-10-01","text":"If multiple creatures with devour are entering under your control at the same time, you may use each one's devour ability. A creature you already control can be devoured by only one of them, however. (In other words, you can't sacrifice the same creature to satisfy multiple devour abilities.) All creatures devoured this way are sacrificed at the same time."},{"date":"2008-10-01","text":"The number of Saproling tokens created by the triggered ability is based on the number of +1/+1 counters on Mycoloth, not on the number of creatures Mycoloth devoured. It doesn't matter where the +1/+1 counters came from."},{"date":"2008-10-01","text":"You may choose not to sacrifice any creatures for the Devour ability."},{"date":"2008-10-01","text":"You may sacrifice only creatures that are already on the battlefield. If a creature with devour and another creature are entering under your control at the same time, the creature with devour can't devour that other creature. The creature with devour also can't devour itself."}],"rarities":["rare"]},"myr retriever":{"name":"Myr Retriever","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Myr"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature dies, return another target artifact card from your graveyard to your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Graveyard"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return another target artifact card from your graveyard to your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"d07d3be3-f69d-4484-8467-cffd43871788","metadata":{"source_printing_ids":["33940107-e210-4334-a409-48ab591af2ec","72ad8e04-f3be-4bc8-b62d-e92291317aab","7f0149d4-0731-474a-a1c3-28c25e486c14","b8972a7c-ff64-4158-8277-2bd90e8db48d","e39c880d-f9b1-4572-b676-c1dd2d981b7c","ee766f7b-4e9c-442d-bf53-31c204646449","fd7081d5-1f90-477f-a06e-f0a8679f4f7d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["2XM","C14","C16","CM2","MMA","MRD","PLST","TD2"],"rulings":[{"date":"2020-08-07","text":"If Myr Retriever dies at the same time as another artifact you own, its ability can target that other artifact card."}],"rarities":["common","uncommon"]},"mystic forge":{"name":"Mystic Forge","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may cast artifact spells and colorless spells from the top of your library.\n{T}, Pay 1 life: Exile the top card of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"PayLife","amount":{"type":"Fixed","value":1}}]},"sub_ability":null,"duration":null,"description":"{T}, Pay 1 life: Exile the top card of your library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Cast","alt_cost":null}},"affected":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"ColorCount","comparator":"EQ","count":0}]}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast artifact spells and colorless spells from the top of your library."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"994bc16d-fdc6-475c-96df-beeb4d5aa03e","metadata":{"source_printing_ids":["109a6275-331e-4696-85ea-6f7a0a0f865e","375e6985-e212-4bd0-b06c-0ca7dc1f68e6","74fd1f7f-4946-4f28-a759-3f73c0473536","7aac1711-05e3-402a-a7a2-d8eade84ed32","89f596ee-b551-411f-a460-bfffa89e358e","924a24e7-91b8-4ceb-a136-7a765d98c994","a26614a2-b6ce-4161-89ee-d9596a97a146","bc0de77a-c503-4000-9eb5-aa28a5e91082","cf56bef3-7f0e-47b4-96f5-325722f7708a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"restricted"},"printings":["40K","BRR","CMM","M20","M3C","PIP","PM20"],"rulings":[{"date":"2019-07-12","text":"Because you never \"cast\" a land card, Mystic Forge doesn't allow you to play an artifact land from the top of your library."},{"date":"2019-07-12","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast the top card of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2019-07-12","text":"If the top card of your library has a morph ability, you can cast it face down from the top of your library, even if it's normally not a colorless card."},{"date":"2019-07-12","text":"Mystic Forge lets you look at the top card of your library whenever you want (with one restriction—see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2019-07-12","text":"You must follow the normal timing permissions and restrictions of the spells you cast from your library."},{"date":"2019-07-12","text":"You still pay all costs for a spell you cast from your library, including additional costs. You may also pay alternative costs."}],"rarities":["rare"]},"narset of the ancient way":{"name":"Narset of the Ancient Way","mana_cost":{"type":"Cost","shards":["Blue","Red","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Narset"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: You gain 2 life. Add {U}, {R}, or {W}. Spend this mana only to cast a noncreature spell.\n[−2]: Draw a card, then you may discard a card. When you discard a nonland card this way, Narset deals damage equal to that card's mana value to target creature or planeswalker.\n[−6]: You get an emblem with \"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["Blue","Red","White"]},"restrictions":[{"SpellType":"Noncreature"}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: You gain 2 life. Add {U}, {R}, or {W}. Spend this mana only to cast a noncreature spell.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":"[−2]: Draw a card, then you may discard a card. When you discard a nonland card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Command"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target","constraint":null,"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-6},"sub_ability":null,"duration":null,"description":"[−6]: You get an emblem with \"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue","White"],"color_identity":["Red","Blue","White"],"scryfall_oracle_id":"b7ac6e89-941f-4ad9-a437-38ec38ec5263","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["300f766f-9609-4105-9ed5-4299c48f7fa7","91ac6589-75ee-4fbf-8056-1860c1482592","fa7b28d8-b835-44a0-978d-cadfd392fff5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","IKO","PIKO","PRM"],"rulings":[{"date":"2020-04-17","text":"An ability that triggers when a player casts a spell resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2020-04-17","text":"Because it's a loyalty ability, Narset's first ability isn't a mana ability. It can be activated only any time you could cast a sorcery. It uses the stack and can be responded to."},{"date":"2020-04-17","text":"If a card you discard has {X} in its mana cost, X is considered to be 0."},{"date":"2020-04-17","text":"Narset's second ability goes on the stack without a target. While that ability is resolving, you draw a card and may choose to discard a card. When you discard a nonland card this way, the reflexive triggered ability triggers and you pick a target to be dealt damage. This is different from effects that say \"If you do . . .\" in that you choose a target after looking at the card you draw and players can respond to the reflexive triggered ability knowing how much damage will be dealt."},{"date":"2020-04-17","text":"The emblem created by Narset's last ability is colorless. The damage it deals is from a colorless source."},{"date":"2020-04-17","text":"You can discard a card even if Narset leaves the battlefield before her middle ability resolves. The reflexive triggered ability will still trigger if you discard a nonland card."}],"rarities":["mythic"]},"nature's way":{"name":"Nature's Way","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gains vigilance and trample until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain vigilance and trample"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gains vigilance and trample until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8c04663a-1023-49a5-a0b9-78f24a72fb1e","metadata":{"source_printing_ids":["29a4abe5-9770-4a55-b20a-2ceb6bb00db6","36f59651-6205-464a-a7f3-d9465c1545b7","77cf9d11-936f-4e02-8595-0cbcabaafb1e","df6af750-838c-4306-b70c-2efe705db2c7","ec122287-fe33-4ac3-803c-f5173cae50a7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DDU","JMP","KLD","KLR","PLST"],"rulings":[{"date":"2016-09-20","text":"If either target is an illegal target as Nature's Way resolves, no damage will be dealt."},{"date":"2016-09-20","text":"If the creature you don't control is an illegal target as Nature's Way tries to resolve, the creature you control will still gain vigilance and trample."},{"date":"2016-09-20","text":"Trample only applies to the assignment of combat damage, not the damage Nature's Way has the creature deal."},{"date":"2016-09-20","text":"You can't cast Nature's Way unless you choose both a creature you control and a creature you don't control as targets."}],"rarities":["uncommon"]},"neerdiv, devious diver":{"name":"Neerdiv, Devious Diver","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Merfolk","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever Neerdiv becomes tapped, target player mills cards equal to its power.\nWhenever you cast a spell from your graveyard or activate an ability of a card in your graveyard, draw a card and put a +1/+1 counter on Neerdiv.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Taps","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever ~ becomes tapped, target player mills cards equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"Equals","data":"Graveyard"},"description":"Whenever you cast a spell from your graveyard or activate an ability of a card in your graveyard, draw a card and put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"b015ec84-95b9-4010-afef-d9d0cacb98dd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["070e0081-b0fe-4417-b943-d0496e3b8cd7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J25"],"rulings":[{"date":"2024-11-08","text":"If Neerdiv leaves the battlefield while its first ability is still on the stack, use its power as it last existed on the battlefield to determine how many cards the target player mills."},{"date":"2024-11-08","text":"Neerdiv's last ability resolves before the spell or ability that caused it to trigger. It resolves even if that spell or ability is countered or otherwise leaves the stack without resolving."}],"rarities":["rare"]},"negate":{"name":"Negate","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target noncreature spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target noncreature spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3407fe41-fdd3-4119-8f70-4bc4590a379f","metadata":{"source_printing_ids":["026c499d-3d5b-4f65-a824-f78f146b82ef","1dc492d5-ec52-4ab3-813e-acb40b0b6d5a","31534f45-43e6-4103-bf58-ad8fa688e4b0","33b83158-78b4-425e-8379-be3ef038295c","3877d196-332c-4266-aac8-a35754d74297","3d5e6fdf-022a-480d-96fc-bfadbf7ee5f6","4016c6f7-7cb4-46c2-af73-3bd6d682ea5e","52d58fe4-6070-4022-9cd7-c35a11b44525","5a501252-e722-4ebf-bcf7-f53a42745fa7","60380ed0-fed1-4d68-9763-56a9ff8ac5e6","6276afe2-1bd9-456e-82d5-389909ae5ab0","64a2ba6d-ada1-4f06-b135-37606b6588fc","7f21cd05-2fdb-4c37-90a4-220a3eda23ef","81752db1-374e-4723-b695-a2f4a634dfc6","8da17a86-3666-46b8-932e-daafd6a0cd69","ae89bd67-3c72-449f-be72-d04bb7cca916","b12d13b4-a210-4d8d-bd04-42a00f68ae7b","cb142515-0856-441d-84d4-9c9d450a86e9","cfc1c914-fa52-4492-8dee-0c35bebc3766","d0165d1f-6d9f-40e1-aaff-d587e4112220","e848b632-e08a-4341-a99c-d8207f9ffe48","e92c7477-d453-4fa4-acf4-3835ab9eb55a","fbd28be5-c493-433a-a19f-cace2214b83e","ff3b0dba-0207-4249-bdab-e807c76ce39e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["AER","BBD","CN2","DMU","DPA","DTK","FDN","M10","M11","M12","M13","M14","M15","M20","MOM","MOR","OGW","ORI","P09","PLST","PM20","PRM","PS11","RIX","SCD","SS1","STA","TMT","ZNR"],"rulings":[{"date":"2024-11-08","text":"A \"creature spell\" is any spell with the creature type, even if it has other types such as artifact or enchantment."},{"date":"2026-01-27","text":"A \"creature spell\" is any spell with the creature type, even if it has other types such as artifact or enchantment."}],"rarities":["common","rare"]},"niambi, esteemed speaker":{"name":"Niambi, Esteemed Speaker","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen Niambi enters, you may return another target creature you control to its owner's hand. If you do, you gain life equal to that creature's mana value.\n{1}{W}{U}, {T}, Discard a legendary card: Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","Blue"],"generic":1}},{"type":"Tap"},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]},"sub_ability":null,"duration":null,"description":"{1}{W}{U}, {T}, Discard a legendary card: Draw two cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may return another target creature you control to its owner's hand. If you do, you gain life equal to that creature's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"91c9dbd8-a8d8-4a4e-8408-3ad92e974d11","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["50b942b9-fcf4-421d-a470-73a90f0408a5","e21827eb-fa49-4784-a86b-aef164a5018e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","PM21","PRM"],"rulings":[{"date":"2020-06-23","text":"If a creature on the battlefield has {X} in its mana cost, X is considered to be 0."},{"date":"2020-06-23","text":"If the target creature is an illegal target by the time Niambi's triggered ability tries to resolve, the ability won't resolve. You won't return the card from the zone it moved to or gain any life."}],"rarities":["rare"]},"nibelheim aflame":{"name":"Nibelheim Aflame","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. It deals damage equal to its power to each other creature. If this spell was cast from a graveyard, discard your hand and draw four cards.\nFlashback {5}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Red","Red"],"generic":5}}}],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"Controller"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":4},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"CastFromZone","zone":"Graveyard"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. It deals damage equal to its power to each other creature. If this spell was cast from a graveyard, discard your hand and draw four cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"eab5eef8-d180-4b08-a770-6b3a1df03745","metadata":{"source_printing_ids":["3d3e926a-74af-4996-849f-d31e0fdedeae","f6c21de9-7278-4406-8037-afe2c29b271f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard if the resulting spell is an instant or sorcery spell by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2025-06-06","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2025-06-06","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2025-06-06","text":"If the target creature is an illegal target as Nibelheim Aflame tries to resolve, it won't resolve and none of its effects will happen. No damage will be dealt, and you won't discard and draw even if you cast Nibelheim Aflame from a graveyard."},{"date":"2025-06-06","text":"The creature is the source of the damage, not Nibelheim Aflame. For example, Nibelheim Aflame can have a white creature deal damage to a creature with protection from red."},{"date":"2025-06-06","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2025-06-06","text":"Use the power of the target creature as Nibelheim Aflame resolves to determine how much damage it deals to each other creature."},{"date":"2025-06-06","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2025-06-06","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["mythic"]},"nightfall predator":{"name":"Nightfall Predator","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Werewolf"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{R}, {T}: This creature fights target creature. (Each deals damage equal to its power to the other.)\nAt the beginning of each upkeep, if a player cast two or more spells last turn, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"subject":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{R}, {T}: ~ fights target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if a player cast two or more spells last turn, transform ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"SpellsCastLastTurn"}},"comparator":"GE","rhs":{"type":"Fixed","value":2}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green","Red"],"scryfall_oracle_id":"280624aa-5f9a-48fd-85ea-815c96c747b3","metadata":{"source_printing_ids":["25b54a1d-e201-453b-9173-b04e06ee6fb7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"transform","printings":["ISD"],"rarities":["rare"]},"nightmare":{"name":"Nightmare","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Nightmare","Horse"]},"power":{"type":"Variable","value":"*"},"toughness":{"type":"Variable","value":"*"},"loyalty":null,"defense":null,"oracle_text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nNightmare's power and toughness are each equal to the number of Swamps you control.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Swamp"}],"controller":"You","properties":[]}}}},{"type":"SetDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Swamp"}],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":"~'s power and toughness are each equal to the number of Swamps you control."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"375932e6-1b3e-48dc-8154-9b664c3add34","metadata":{"source_printing_ids":["192bb40a-3ecd-41eb-acee-819f3138875a","3a3df8ed-ff36-478e-a4f4-bee041b77d15","3c2a1e82-4922-4075-a869-3a1b607498c3","51d23999-ac32-4145-9151-547087ac0b6b","5d0001a4-18f9-460c-b26f-476ce55e6294","60304328-7a02-4f4c-a884-fc6ce7816060","659c0edb-3afa-4f87-8a94-9fe10578ea1a","6b8d53fd-2d3b-4050-b5c5-1b75f525ca2c","747d4c99-0287-4138-af13-6244f33d2e57","88111e2b-84ff-48bf-9a64-b4e9022b6dae","8817ef5f-39f0-4358-bc98-f512f9cce8f0","92c79db0-731a-4aa5-b69f-f21e031815d4","932273e2-d501-45fc-802c-02b2c7b1bfd4","b7cf63e7-9143-4236-a887-afd3628d0c03","b8cdd6a7-f772-4ccb-914f-63f52ed54d6b","c04970ef-7aa5-42ca-9bed-5c89d55b7e4d","c3779fda-5de0-4d80-8af0-95956e87d9e1","c6659c13-1858-4a66-a11f-e37416855951","d423d4ee-5f79-4b8f-90dd-2661fe707875","db11b832-7584-4e4b-8d02-b03fe76dcbc3","dd088c4d-3e21-4979-b30f-4ec98a6c81df","eb535b69-4fc7-4b76-b85b-194755d6b355","f2838473-8e2a-48c9-bd6a-25c79c66d43b","f85ef8df-2577-4f0e-af83-bc49d930961d","fc78dced-27d2-441a-b63b-32356bc33747"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ANB","CED","CEI","FBB","LEA","LEB","M10","M14","M15","ORI","PLST","SUM","W16","W17"],"rulings":[{"date":"2008-04-01","text":"If you control 0 swamps, then the Nightmare has 0 toughness and will be put into its owner’s graveyard as a state-based action right before the next player gains priority."},{"date":"2009-10-01","text":"Nightmare’s power and toughness changes as the number of Swamps you control changes."},{"date":"2013-07-01","text":"Nightmare’s ability counts all lands you control with the subtype Swamp, not just ones named Swamp."},{"date":"2013-07-01","text":"The ability that defines Nightmare’s power and toughness works everywhere, not just on the battlefield."}],"rarities":["rare"]},"ninja":{"name":"Ninja","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"You may activate this card's augment ability any time you could cast an instant.\nWhenever this creature deals combat damage to a player,\nAugment {2}{B} ({2}{B}, Reveal this card from your hand: Combine it with target host. Augment only as—oh, never mind.)","non_ability_text":null,"flavor_name":null,"keywords":["Augment"],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"effect_structure","description":"Effect sentence candidate but line failed effect parser: You may activate this card's augment ability any time you could cast an instant."},"cost":null,"sub_ability":null,"duration":null,"description":"You may activate this card's augment ability any time you could cast an instant.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Augment {2}{B}"},"cost":null,"sub_ability":null,"duration":null,"description":"Augment {2}{B}","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player,","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black"],"color_identity":["Black"],"scryfall_oracle_id":"2a857df5-c3d8-4d95-bb2f-087d8aa6f478","metadata":{"source_printing_ids":["ff0c50dc-2bd6-47e3-9ca5-49e38898e774"]},"legalities":{},"printings":["UST"],"rulings":[{"date":"2018-01-19","text":"Augment can (and usually does) change the name, card types, subtypes, rules text, and power/toughness. The combined creature will have (at least) two artists and may now have multiple colors. Anything covered up in the augment process doesn't count, so ignore things to the left of the \"metal bar\" in the art of host creatures."},{"date":"2018-01-19","text":"Augment can't target creatures that aren't host creatures."},{"date":"2018-01-19","text":"Augment is an activated ability that you activate from your hand. To do so, reveal the card, choose a target host creature, and pay the augment cost. As this ability resolves, if the card with augment is still in your hand, put it onto the battlefield combined with the host creature."},{"date":"2018-01-19","text":"Creatures with augment don't have a mana cost and can't be cast."},{"date":"2018-01-19","text":"The creature card with augment isn't put onto the battlefield until the ability resolves. This means if the host is destroyed, the creature with augment stays in your hand. You can't choose a different host, but you can activate augment again if there's another host available."},{"date":"2018-01-19","text":"You can't activate augment unless there is a host creature on the battlefield. It doesn't need to be yours. Note though that if you augment another player's host creature, they control the combined creature."},{"date":"2018-01-19","text":"You can't put more than one augment card on a single host creature. Once a host creature is augmented, the host part gets covered up and it's no longer a host creature."}],"rarities":["uncommon"]},"ninja of the deep hours":{"name":"Ninja of the Deep Hours","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ninjutsu {1}{U} ({1}{U}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nWhenever this creature deals combat damage to a player, you may draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ninjutsu":{"type":"Cost","shards":["Blue"],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"1f3c2b00-0000-4ae1-9650-9553accac52e","metadata":{"source_printing_ids":["14fdc73b-5dca-429f-9e9c-7cad3edff803","2101b32f-2a7f-4cfa-80a4-fdae3756a7f1","26184ff2-3b8c-419a-9b28-95d6e4e996bb","367a67c7-54db-4336-b55a-3fa27625172a","522beeb1-3218-4bb9-95d2-1c25d4a53019","5fea7980-55e1-47c1-ab18-a89c976b55fc","6394b9e1-674e-4eda-ad0b-206cdbb5bf5e","b990c687-ae60-42b9-9dcd-3bbf7043f7ed","fb245a12-4cbd-4291-af67-f3677ca822dc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["BOK","C15","C18","J21","J25","PC2","PCA","PLST","PSAL","SLD","TSR"],"rulings":[{"date":"2021-03-19","text":"Although the Ninja is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2021-03-19","text":"As you activate a ninjutsu ability, you reveal the Ninja card in your hand and return the attacking creature. The Ninja isn't put onto the battlefield until the ability resolves. If it leaves your hand before then, it won't enter the battlefield at all."},{"date":"2021-03-19","text":"If a creature in combat has first strike or double strike, you can activate the ninjutsu ability during the first-strike combat damage step. The Ninja will deal combat damage during the regular combat damage step in this case, even if it has first strike."},{"date":"2021-03-19","text":"The creature put onto the battlefield with ninjutsu enters the battlefield attacking the same player or planeswalker that the returned creature was attacking. This is a rule specific to ninjutsu."},{"date":"2021-03-19","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. If you wait until after the declare blockers step, because all combat damage is dealt at once, the Ninja won't normally deal combat damage."},{"date":"2021-03-19","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."}],"rarities":["common","rare","special"]},"nissa's judgment":{"name":"Nissa's Judgment","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Support 2. (Put a +1/+1 counter on each of up to two target creatures.)\nChoose up to one target creature an opponent controls. Each creature you control with a +1/+1 counter on it deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Support 2.\nChoose up to one target creature an opponent controls. Each creature you control with a +1/+1 counter on it deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"14247820-5ecb-40bd-8dee-0625cc745ec2","metadata":{"source_printing_ids":["08d149d3-bfb7-4544-8d3a-3d8c54838969","96b263fb-00b5-4050-85e1-cfc4018bb75d","d10ff628-c0bd-4ed0-b927-3f2746aefa10","e9dcece0-13eb-4931-b39e-13de528a11a6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["CLU","DDU","OGW","PLST"],"rulings":[{"date":"2016-01-22","text":"As Nissa’s Judgment resolves, if at least one of its targets is still legal, it will resolve, affecting only targets that are still legal at that time. If none of its targets are still legal at that time, it won’t resolve and none of its effects will happen."},{"date":"2016-01-22","text":"If a spell with support has other abilities that target creatures, those abilities and the support ability can target the same creature."},{"date":"2016-01-22","text":"Support can target a creature you don’t control."},{"date":"2016-01-22","text":"You can’t put more than one +1/+1 counter on any one target using the support action."},{"date":"2016-01-22","text":"You finish the support action before any creatures deal damage. Creatures that get a +1/+1 counter will deal damage to the creature an opponent controls, if applicable."}],"rarities":["uncommon"]},"nissa's revelation":{"name":"Nissa's Revelation","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Scry 5, then reveal the top card of your library. If it's a creature card, you draw cards equal to its power and you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":5},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Scry 5, then reveal the top card of your library. If it's a creature card, you draw cards equal to its power and you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ba9cd7bc-846f-4b5c-a1dc-9763a60dafc9","metadata":{"source_printing_ids":["71143665-012f-4723-a58b-d5cfdbe82e8f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["GNT","ORI","PORI"],"rulings":[{"date":"2015-06-22","text":"If the top card of your library isn’t a creature card or it’s a creature card with power 0 or less, you won’t draw any cards. Otherwise, the first card you draw will be the card you revealed."}],"rarities":["rare"]},"niv-mizzet, parun":{"name":"Niv-Mizzet, Parun","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue","Red","Red","Red"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Wizard"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"This spell can't be countered.\nFlying\nWhenever you draw a card, Niv-Mizzet deals 1 damage to any target.\nWhenever a player casts an instant or sorcery spell, you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you draw a card, ~ deals 1 damage to any target.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts an instant or sorcery spell, you draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"33666a98-812f-4892-9f8d-33e0cbecc340","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3035a97f-5104-4b56-84a4-5206e75607fc","44146784-d7f0-4add-8242-8783b97a4d7d","4825e7cb-53ae-4e4b-bb37-8d8eb414772c","6f3d2dc5-7b9d-4af6-9f3b-4de90fbf63c9","7be6bedd-8d38-4bd9-aa93-29f88a7f0126","86c5c337-d25f-4c3e-9762-09ed0c2d36d7","a56cc7a4-b91f-4a6e-9e7e-b9200565b47c","d71e0e3c-2d23-4c1a-a6b5-a6bd2e8267fa","de656adf-0e2a-43ab-b4b0-dde04178e7a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","GRN","OTC","PGRN","PLST","RVR","SLD"],"rulings":[{"date":"2018-10-05","text":"If a spell or ability causes you to put cards into your hand without specifically using the word \"draw,\" Niv-Mizzet's first triggered ability won't trigger."},{"date":"2018-10-05","text":"If an effect instructs you to draw multiple cards, Niv-Mizzet's first triggered ability triggers that many times. You choose targets for those abilities after you've drawn all of the cards."},{"date":"2018-10-05","text":"Niv-Mizzet's second triggered ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered. This causes its first triggered ability to trigger, and that also resolves before the spell."},{"date":"2018-10-05","text":"Players can cast spells and activate abilities after Niv-Mizzet's second triggered ability resolves but before the spell that caused it to trigger does. Notably, the card you draw may be able to counter that spell."}],"rarities":["rare"]},"no mercy":{"name":"No Mercy","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature deals damage to you, destroy it.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"TriggeringSource"},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"description":"Whenever a creature deals damage to you, destroy it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"b9538d53-480b-481a-abbf-83ab17e1a45b","metadata":{"source_printing_ids":["4e2fc29c-0223-4b03-864f-eb9149abc921","63c5e1dd-2fe6-4734-8406-7bcdf17aa60c","7295eb82-8785-4a5f-ba64-0a0b5cb77d3f","c2598da4-0764-440a-9e9d-0161e68667fb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["DMR","MP2","P22","ULG"],"rulings":[{"date":"2022-12-08","text":"No Mercy’s ability triggers whenever any creature, including creatures you control, deals damage to you, not only combat damage."}],"rarities":["rare","mythic"]},"norn's annex":{"name":"Norn's Annex","mana_cost":{"type":"Cost","shards":["PhyrexianWhite","PhyrexianWhite"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({W/P} can be paid with either {W} or 2 life.)\nCreatures can't attack you or planeswalkers you control unless their controller pays {W/P} for each of those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":["PhyrexianWhite"],"generic":0},"scaling":{"type":"PerAffectedCreature"},"defended":"PlayerOrPlaneswalker"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you or planeswalkers you control unless their controller pays {W/P} for each of those creatures."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9a1fbe72-4a17-42be-8e23-d7d30a5e59c1","metadata":{"source_printing_ids":["70ed6db4-140c-4146-8467-f5eb05b2e73d","98ed8e2e-5519-4872-ba5a-7e2f91d8d619","a64073f2-99f5-4dc7-9403-e7cb94ce0e60","d25bbe18-709c-4ed3-a047-5578ecfaaba7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMM","NPH","ONC","PLST","PW23"],"rulings":[{"date":"2011-06-01","text":"A card with Phyrexian mana symbols in its mana cost is each color that appears in that mana cost, regardless of how that cost may have been paid."},{"date":"2011-06-01","text":"As you cast a spell or activate an activated ability with one or more Phyrexian mana symbols in its cost, you choose how to pay for each Phyrexian mana symbol at the same time you would choose modes or choose a value for X."},{"date":"2011-06-01","text":"If a player attacks with more than one creature, that player chooses how to pay each cost individually. For example, if you attack with two creatures, you may pay {W} for one cost and 2 life for the other."},{"date":"2011-06-01","text":"If you control Norn's Annex, your opponents can choose not to attack with a creature with an ability that says it must attack."},{"date":"2011-06-01","text":"If you're at 1 life or less, you can't pay 2 life."},{"date":"2011-06-01","text":"Multiple Norn's Annexes controlled by the same player will each impose a cost to attack. Players choose how they pay each cost individually. For example, if a creature you control is attacking a player who controls two Norn's Annexes, you may pay {W} for one cost and 2 life for the other."},{"date":"2011-06-01","text":"Phyrexian mana is not a new color. Players can't produce Phyrexian mana."},{"date":"2011-06-01","text":"The controller of each creature attacking you or a planeswalker you control pays either {W} or 2 life as attackers are being declared."},{"date":"2011-06-01","text":"To calculate the mana value of a card with Phyrexian mana symbols in its cost, count each Phyrexian mana symbol as 1."}],"rarities":["rare"]},"nourishing shoal":{"name":"Nourishing Shoal","mana_cost":{"type":"Cost","shards":["X","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Arcane"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may exile a green card with mana value X from your hand rather than pay this spell's mana cost.\nYou gain X life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":null,"sub_ability":null,"duration":null,"description":"You gain X life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2aa0e0e5-cb6d-4518-8eff-d29f935486e0","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"Green"},{"type":"Cmc","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},{"type":"InZone","zone":"Hand"}]}}}],"metadata":{"source_printing_ids":["4a6af212-2a94-4ddf-acdc-d70fafa1c5ee","9472cd09-0b0a-49c9-ab10-ec5b73ddb74b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BOK","UMA"],"rulings":[{"date":"2018-12-07","text":"If a card in a player's hand has {X} in its mana cost, X is considered to be 0."},{"date":"2018-12-07","text":"If a spell has {X} in its mana cost, include the value chosen for that X when determining the mana value of that spell, even if it was cast for an alternative cost and no mana was spent on X."}],"rarities":["rare"]},"noxious gearhulk":{"name":"Noxious Gearhulk","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhen this creature enters, you may destroy another target creature. If a creature is destroyed this way, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ZoneChangedThisWay","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may destroy another target creature. If a creature is destroyed this way, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a77b5be2-f361-4135-ba25-670a74d268ac","metadata":{"source_printing_ids":["279ee863-a5ce-467d-b83a-c6f0d0a38b29","289c11b7-a460-4a2f-b11a-e1ba54bd1f34","36b1e963-9b8c-4103-abbc-580866f144e7","60d1b650-6c5f-435c-826a-f025d7b796e5","6ea94d38-d99a-4668-adb4-5f60724ca484","77741652-d431-440d-8c47-3f95d68e846e","82db9fb9-51c0-4d06-a589-e4ea17589857","96886e7f-66b2-4f67-a5c6-c65500bcfdef","9f86e5fe-8723-4494-b4cc-b7ac3a047bd1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRC","C21","DSC","KLD","KLR","MOC","MPS","NCC","PKLD","TDC","TLE"],"rulings":[{"date":"2016-09-20","text":"If the target creature has indestructible, it isn't destroyed this way and you won't gain life. If it is destroyed but put into a zone other than a graveyard, you'll gain life."},{"date":"2016-09-20","text":"Use the toughness of the creature as it last existed on the battlefield to determine how much life to gain."}],"rarities":["mythic"]},"ob nixilis, captive kingpin":{"name":"Ob Nixilis, Captive Kingpin","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying, trample\nWhenever one or more opponents each lose exactly 1 life, put a +1/+1 counter on Ob Nixilis. Exile the top card of your library. Until your next end step, you may play that card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Trample"],"abilities":[],"triggers":[{"mode":"LifeLost","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilNextStepOf":{"step":"End","player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"End","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever one or more opponents each lose exactly 1 life, put a +1/+1 counter on ~. Exile the top card of your library. Until your next end step, you may play that card.","constraint":null,"condition":null,"batched":true,"life_amount":["EQ",1]}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"55b6434b-1542-40fd-b12a-697d40976582","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["7f613db0-3303-4d54-a060-1bd8b37a208f","82c9077d-fdbf-4087-85a5-1d59c2ba7678","840a442f-a220-408f-b670-0c73e2ffa704","c8abcef7-31b0-4c17-9807-b26079fb6ed8","ddb68233-3683-41bd-9b6e-4f07a1b54244"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MAT"],"rulings":[{"date":"2023-05-12","text":"If you don't play the card, it will remain exiled."},{"date":"2023-05-12","text":"Ob Nixilis's last ability looks at all combat damage dealt to an opponent in total to determine whether it triggers. For example, if three 1/1 creatures deal combat damage to an opponent, that player loses 3 life. Ob Nixilis's ability won't trigger."},{"date":"2023-05-12","text":"Ob Nixilis's last ability will trigger if an opponent is dealt exactly 1 damage, pays exactly 1 life, or loses exactly 1 life some other way."},{"date":"2023-05-12","text":"Playing the card exiled with Ob Nixilis follows the normal rules for playing that card. You must pay its costs, and you must follow all applicable timing rules. For example, if the card is a creature card, you can cast that card by paying its mana cost only during your main phase while the stack is empty."},{"date":"2023-05-12","text":"Unless an effect allows you to play additional lands that turn, you can play a land card exiled with Ob Nixilis only if you haven't played a land yet that turn."},{"date":"2023-05-12","text":"You may play the card exiled with Ob Nixilis even if Ob Nixilis leaves the battlefield or you lose control of it."}],"rarities":["mythic"]},"ob nixilis, the fallen":{"name":"Ob Nixilis, the Fallen","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, you may have target player lose 3 life. If you do, put three +1/+1 counters on Ob Nixilis.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":3},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever a land you control enters, you may have target player lose 3 life. If you do, put three +1/+1 counters on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"154104b7-4125-4276-8bc7-9a6edfe48cb9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1515b0e0-ef8f-43c7-8097-ca7eba4fd44a","7824a001-3f0e-4ac5-8406-e58f4288f2f2","dc9d3ada-9d0d-489a-89b7-08f53f6601e1","e5769888-78e0-4d06-b6b6-b4602f7cd462"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["IMA","PLST","SLC","TDC","ZEN"],"rulings":[{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["mythic"]},"obeka, splitter of seconds":{"name":"Obeka, Splitter of Seconds","mana_cost":{"type":"Cost","shards":["Blue","Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Ogre","Warlock"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever Obeka deals combat damage to a player, you get that many additional upkeep steps after this phase.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"AdditionalPhase","target":{"type":"Controller"},"phase":"Upkeep","after":"Upkeep","followed_by":[],"count":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you get that many additional upkeep steps after this phase.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"1d15a06f-5471-48f2-8c4a-9b0886bef5af","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["03415c42-086e-4a2e-9be8-5cdcde83f134","183b8c06-62ab-41e8-82c1-f23066d832ee"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Abilities that trigger \"at the beginning of [your] upkeep\" will trigger at the beginning of each additional upkeep step as well."},{"date":"2024-04-12","text":"After the beginning phases containing the additional upkeep steps, the game proceeds to the next phase as normal, which is likely to be your postcombat main phase (unless something has added even more phases; see below)."},{"date":"2024-04-12","text":"If multiple phases are added to the same point in your turn, the most recently created phase happens first. For example, say Obeka deals combat damage and its ability resolves during your combat damage step, giving you two additional beginning phases each containing an upkeep step after this combat phase. During end of combat, another effect gives you an additional combat phase after this combat phase. The additional combat will happen first, followed by the additional beginning phases containing the two upkeep steps."},{"date":"2024-04-12","text":"Since the upkeep step can only occur during the beginning phase, getting one or more additional upkeep steps outside of the beginning phase actually means you get an additional beginning phase for each of those upkeeps after this phase. In those beginning phases, the untap and draw steps will be skipped."},{"date":"2024-04-12","text":"The beginning phases containing the additional upkeep steps occur after the current combat phase ends. The last step of the combat phase is the end of combat step."}],"rarities":["rare"]},"obliterate":{"name":"Obliterate","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This spell can't be countered.\nDestroy all artifacts, creatures, and lands. They can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all artifacts, creatures, and lands. They can't be regenerated.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"47496941-8007-45a0-a981-76c683cbddc1","metadata":{"source_printing_ids":["1021bcbd-566c-4f31-b148-0517b96a63db","6d79f044-0434-4dc2-9d92-8975324f6c32","74c5f897-9ff9-4fdf-9820-45a61e5dce75","c85f9623-5900-473c-a3b1-f98473b9a545","cdabde40-2143-4677-b7b4-ea8fbf9b1f25","e2d96c48-7519-4f2b-ad93-4f62cf7e8ac8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","INV","PLST","V16","WC01"],"rulings":[{"date":"2004-10-04","text":"Counterspells can be cast that target it, but when they resolve they simply don’t counter it since it can’t be countered."}],"rarities":["rare","mythic"],"bracket_signals":{"game_changer":false,"mass_land_denial":true,"extra_turn":false,"efficient_tutor":false}},"old-growth troll":{"name":"Old-Growth Troll","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen Old-Growth Troll dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: Create a tapped 4/4 green Troll Warrior creature token with trample.'\"","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"grants":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Unimplemented","name":"add","description":"Add {G}{G}' and '{1}, {T}"},"cost":{"type":"Unimplemented","description":"Enchanted Forest has '{T}"},"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"'","description":"'"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice ~: Create a tapped 4/4 green Troll Warrior creature token with trample.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice ~: Create a tapped 4/4 green Troll Warrior creature token with trample.'\"","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"11e3f1d3-9d78-4c00-b965-e14407fd5210","metadata":{"related_token_ids":["dbeac9d3-edd3-574a-9bdb-c8d419f6a373"],"source_printing_ids":["125915dd-0499-4690-8897-4c8906e9817c","b759b0f6-342c-4bba-89f1-8451835d8c45"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM","PKHM","PRM"],"rulings":[{"date":"2021-02-05","text":"If a nontoken permanent that's a copy of Old-Growth Troll dies while it is a creature, it will return to the battlefield as an Aura with both its own normal abilities and the two new abilities granted by old-Growth Troll. The resulting permanent will also retain its name, colors, and supertypes, but it will be an Aura enchantment with no other types or subtypes."},{"date":"2021-02-05","text":"If a token is a copy of Old-Growth Troll, it won’t return from its owner’s graveyard."},{"date":"2021-02-05","text":"If there’s nothing for Old-Growth Troll to legally enchant, it remains in its owner’s graveyard."},{"date":"2021-02-05","text":"If you control but don’t own Old-Growth Troll, you (not its owner) will return it to the battlefield when it dies. You’ll choose which Forest you control it will enchant as it returns to the battlefield."}],"rarities":["rare"]},"omniscience":{"name":"Omniscience","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":7},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast spells from your hand without paying their mana costs.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastFromHandFree":{"frequency":"Unlimited","origin":"Hand"}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast spells from your hand without paying their mana costs."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"730e39e6-c61d-48b5-8827-bfd952bf1be7","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"You may cast spells from your hand without paying their mana costs.","line_index":0}],"metadata":{"source_printing_ids":["1088f33e-cb5f-4248-ae8e-280c4e41f291","7c72dced-adae-4c66-af2a-0a1216953ab6","8f173425-8bae-47b1-8a2c-e27a071acd24","d33d91d0-1506-45e4-9def-975bf901815e","db534b4e-8bff-4924-baea-9988d195fb25"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","M13","M19","MP2","P22","PFDN","PM19","WOT"],"rulings":[{"date":"2018-07-13","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2018-07-13","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, such as that of Tormenting Voice, those must be paid to cast the spell."},{"date":"2018-07-13","text":"Once you cast Omniscience, if it's your turn, you'll have priority immediately after it resolves. You can cast another spell before any player can attempt to remove Omniscience with spells or abilities."},{"date":"2018-07-13","text":"You must follow the normal timing permissions and restrictions of each spell you cast."}],"rarities":["mythic"]},"omo, queen of vesuva":{"name":"Omo, Queen of Vesuva","mana_cost":{"type":"Cost","shards":["GreenBlue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Shapeshifter","Noble"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever Omo enters or attacks, put an everything counter on each of up to one target land and up to one target creature.\nEach land with an everything counter on it is every land type in addition to its other types.\nEach nonland creature with an everything counter on it is every creature type.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"everything","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"everything","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, put an everything counter on each of up to one target land and up to one target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"everything"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddAllLandTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each land with an everything counter on it is every land type in addition to its other types."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Non":"Land"}],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"everything"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each nonland creature with an everything counter on it is every creature type."}],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"021b91ea-18d8-4b50-97da-dd003380cd68","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["103f7efd-3421-41aa-8c84-22c97cc8f0ea","5be300b8-af07-4f90-91ce-888b14dd9be0","a5e466c8-9fc9-47ca-aeae-93aaa80a4df5","bf5a3655-cd08-46a3-b099-253708c6539e","c5c9b663-135a-4bd7-81d9-fa6a5331ef57","e5d1c814-4c22-4917-95ae-dffaf491db32","edac7b62-e21e-4418-8c0c-032c5aef5914"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"Omo's second ability grants every land type to lands with everything counters on them, not just basic land types. The full list of land types can be found in the Comprehensive Rules of Magic."}],"rarities":["mythic"]},"orchard warden":{"name":"Orchard Warden","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Treefolk","Shaman"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Whenever another Treefolk creature you control enters, you may gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature",{"Subtype":"Treefolk"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Treefolk creature you control enters, you may gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8afc6147-80b4-4296-a5aa-ce892cefb1a7","metadata":{"source_printing_ids":["7a4e2c5c-26ad-4b13-934b-e545038b6729"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOR"],"rulings":[{"date":"2008-04-01","text":"The creature’s toughness is checked as this ability resolves. If the creature has left the battlefield, use its last known information."}],"rarities":["uncommon"]},"orim's thunder":{"name":"Orim's Thunder","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {R} (You may pay an additional {R} as you cast this spell.)\nDestroy target artifact or enchantment. If this spell was kicked, it deals damage equal to that permanent's mana value to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["Red"],"generic":0}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact or enchantment. If this spell was kicked, it deals damage equal to that permanent's mana value to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"380429d5-82db-449c-b9b9-3e82ab987972","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}}]}},"metadata":{"source_printing_ids":["05aa0e83-5d84-43b1-b742-8db05c28cd4c","24854d5f-2711-49ba-9e0d-f9bbe04b34a9","5f86bba5-e203-4a86-a415-ce748f6d1f6f","7a87fc96-7407-45b6-8138-ca2a1e21fdaa","d00bf192-4baf-46ba-947b-a22d07635b04"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["APC","C15","CM2","CMA","CMD","DMR","HOP"],"rulings":[{"date":"2022-12-08","text":"If Orim's Thunder is kicked, but the artifact or enchantment is an illegal target as Orim's Thunder tries to resolve, Orim's Thunder won't be able to determine the artifact or enchantment's mana value. No damage will be dealt to the target creature, even if it remained a legal target. If only the creature has become an illegal target, the artifact or enchantment will still be destroyed. (If both targets become illegal, Orim's Thunder won't resolve at all.)"},{"date":"2022-12-08","text":"If Orim's Thunder is kicked, it's the source of damage dealt to the target creature, not the artifact or enchantment."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["common"]},"ornithopter":{"name":"Ornithopter","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Thopter"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"a3a98bc9-caa0-49b7-951c-fe4e4f54e4ba","metadata":{"source_printing_ids":["00427d72-b140-45eb-b2ec-2ac2dab16966","051386e0-4c1c-48ed-8883-664c719cf0fe","09c6ac8a-01b1-4af5-89d8-ad66d9a81ceb","22bb9825-ad45-44ad-ace2-eb6b66e3f724","2aeb3ce1-1e7f-4269-a326-700f27e9e932","305078a5-ac18-4721-bba2-3434eba5b1cf","331a0a01-0c12-4999-9bd7-f26991e4dad5","59cc9bdb-7cf2-4795-bac7-ffff605c9eb0","6acf7453-1229-4758-bb17-8afc7dffa9a0","6c127765-1ff7-4f64-85e7-80e356ff13b4","8d784214-dc69-42d4-b897-995ca5751e13","919bc14b-603d-42fa-91fe-58c4d4b3b27f","969ebd20-de69-44ba-a0c2-9e2a89480370","b3654fd6-f8ac-471a-8559-ba4ed0fe75c3","c964c4a8-41fb-4df0-902d-de4c92ce7cc7","d8ea447f-3ea4-40ed-9bc8-6e78602be9a1","db2ef311-cda3-4f70-821d-e9fb03c85dc9","dd789709-6613-4688-9272-6d5624140053","ddb96645-44d2-426c-90cb-3186297a8728","ee42fd67-118d-4dba-8dc6-803ceaee35e8","ee98e86c-ac16-4159-8982-ed14d282811a","f6074277-c5c9-4fd0-979b-7b6d2f5e3770","fd6c46d6-aec8-420b-8018-7b2c3908e5a0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","3ED","4BB","4ED","5ED","6ED","9ED","AER","ATQ","BRR","DMR","FBB","HA1","KLR","M10","M11","M15","MPS","MRD","PLST","PS11","SLD","SUM","WC04"],"rarities":["common","uncommon","rare"]},"orzhov charm":{"name":"Orzhov Charm","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Return target creature you control and all Auras you control attached to it to their owner's hand.\n• Destroy target creature and you lose life equal to its toughness.\n• Return target creature card with mana value 1 or less from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BounceAll","target":{"type":"Typed","type_filters":[{"Subtype":"Aura"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":1}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"26f8626a-ce64-450c-bda5-833df2fbb4fb","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Return target creature you control and all Auras you control attached to it to their owner's hand.","Destroy target creature and you lose life equal to its toughness.","Return target creature card with mana value 1 or less from your graveyard to the battlefield."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["74043dc2-7ee0-4dbb-8cdb-66b61b587048","8ca44265-5e1b-4fbf-9002-52b2ce9b7448"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["EA3","GK2","GTC"],"rulings":[{"date":"2013-01-24","text":"For each of the modes, if the target creature or creature card is an illegal target when Orzhov Charm tries to resolve, it won’t resolve and none of its effects will happen."},{"date":"2013-01-24","text":"If you choose the first mode, any Aura controlled by another player attached to the creature will be put into its owner’s graveyard as a state-based action after the creature leaves the battlefield."},{"date":"2013-01-24","text":"If you choose the second mode, you’ll lose life equal to the creature’s toughness when it was last on the battlefield."},{"date":"2013-01-24","text":"Orzhov Charm’s first mode doesn’t target any of the Auras attached to the target creature."},{"date":"2013-07-01","text":"If you choose the second mode, and Orzhov Charm resolves but the creature isn’t destroyed (perhaps because it has indestructible or it regenerates), you’ll still lose life equal to the creature’s toughness."}],"rarities":["uncommon"]},"osseous sticktwister":{"name":"Osseous Sticktwister","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Scarecrow"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nDelirium — At the beginning of your end step, if there are four or more card types among cards in your graveyard, each opponent may sacrifice a nonland permanent of their choice or discard a card. Then this creature deals damage equal to its power to each opponent who didn't sacrifice a permanent or discard a card this way.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":"sacrifice a nonland permanent of their choice","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"discard a card","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage equal to its power to each opponent who didn't sacrifice a permanent","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"discard a card this way","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if there are four or more card types among cards in your graveyard, each opponent may sacrifice a nonland permanent of their choice or discard a card. Then ~ deals damage equal to its power to each opponent who didn't sacrifice a permanent or discard a card this way.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"DistinctCardTypes","source":{"type":"Zone","zone":"Graveyard","scope":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"33c3a81a-6cea-48c9-b966-67084d96e74f","metadata":{"source_printing_ids":["4f43473e-1302-4543-b331-1a86cfbc3ced"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"Use Osseous Sticktwister's power as its last ability resolves to determine how much damage it deals to each opponent who didn't sacrifice a permanent or discard a card this way. If Osseous Sticktwister is no longer on the battlefield at that time, use its power as it last existed on the battlefield."},{"date":"2024-09-20","text":"While resolving Osseous Sticktwister's last ability, the next opponent in turn order chooses a card to be discarded without revealing it, chooses a nonland permanent to be sacrificed, or chooses to do neither. Then each other opponent in turn order does the same. Then all of the actions occur simultaneously. Opponents will know what choices opponents earlier in the turn order made, although cards chosen to be discarded this way won't be revealed until they're discarded at the end of the process."}],"rarities":["uncommon"]},"outpost siege":{"name":"Outpost Siege","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.\n• Dragons — Whenever a creature you control leaves the battlefield, this enchantment deals 1 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control leaves the battlefield, ~ deals 1 damage to any target.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ebb24fc7-dc71-4712-8c2a-b5920f78e55d","metadata":{"source_printing_ids":["057ec9ba-b104-40a6-ae84-0f5d63511de6","516a2034-25bf-4b42-9f47-a2418d48286c","51f8c63e-8778-43c5-9093-f419442295cf","880f6602-f335-4ad8-9e2f-f32b6d715f72","a8645f34-b830-4429-8fca-9458d1e3dccc","a9f75fce-f0a1-4dec-982d-a86925c6e9d4","ad63f120-f6d0-4394-b12a-f3e1cf728a2f","b909b8bc-667b-4784-979f-093029b5a156","ed9f3f18-c1fe-4ec9-bf06-eb73751c5d22"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","BLC","C17","C20","CLB","FRF","NCC","PIO"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"If a noncreature card is manifested and then leaves the battlefield while face down, the \"Dragons\" ability will trigger."},{"date":"2014-11-24","text":"If you exile a land card using the \"Khans\" ability, you may play that land only if you have any available land plays. Normally, this means you can play the land only if you haven't played a land yet that turn."},{"date":"2014-11-24","text":"The card exiled by the \"Khans\" ability is exiled face up. Playing a card exiled with the \"Khans\" ability follows the normal rules for playing the card. You must pay its costs, and you must follow all applicable timing rules. For example, if it's a creature card, you can cast it only during your main phase while the stack is empty."},{"date":"2014-11-24","text":"The words \"Khans\" and \"Dragons\" are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. \"[Anchor word] — [Ability]\" means \"As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].\" Notably, the anchor word \"Dragons\" has no connection to the creature type Dragon."}],"rarities":["rare"]},"oversimplify":{"name":"Oversimplify","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile all creatures. Each player creates a 0/0 green and blue Fractal creature token and puts a number of +1/+1 counters on it equal to the total power of creatures they controlled that were exiled this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Fractal","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Creature","Fractal"],"colors":["Green","Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"Aggregate","function":"Sum","property":"Power","filter":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]},{"type":"ExiledBySource"}]}}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":"Exile all creatures. Each player creates a 0/0 green and blue Fractal creature token and puts a number of +1/+1 counters on it equal to the total power of creatures they controlled that were exiled this way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"25e1d5fe-c2d8-4a11-ad54-bf1626f9ab45","metadata":{"related_token_ids":["ad44b516-28bf-5949-b591-ea9cd4767bcd","cf9d8cf5-80c9-5720-aa4c-e788ba3e23ed"],"source_printing_ids":["0baba16f-086f-4051-9e86-527e45c0f367","4bfc75ff-3213-495d-9e46-3ba5e8b7b5d3","56eae179-f850-4661-b3f0-4d10be77ed8a","db0e1886-fe98-48a3-aa9c-8255c02c0604"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","DSC","PRM","SOC"],"rulings":[{"date":"2021-04-16","text":"If a commander is exiled this way, its power will be counted along with the other creatures. Once Oversimplify finishes resolving, that commander's owner may move it to the command zone."},{"date":"2021-04-16","text":"Oversimplify counts the total power of the creatures as they last existed on the battlefield, not the power of those cards in exile."}],"rarities":["rare"]},"overwhelming intellect":{"name":"Overwhelming Intellect","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target creature spell. Draw cards equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target creature spell. Draw cards equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8038337b-aff9-49aa-800c-0e12d2688765","metadata":{"source_printing_ids":["9624bbf9-15b0-40f9-9f02-f2af3f1220f8","cbeea686-7efc-48f5-b90b-bf1befc76a30"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDJ","SOK","TD0"],"rarities":["uncommon"]},"pacifism":{"name":"Pacifism","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature can't attack or block.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttackOrBlock","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature can't attack or block."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"5f5e0b10-c8cf-450c-bfd3-bcb0528ec330","metadata":{"source_printing_ids":["0bec2191-7478-4bf8-97d4-b8204990b5d7","0da7c6dc-9325-4866-8c09-78c7021f8f17","0ea081ac-c8b2-442b-908c-096287116a5d","132d0ac2-08aa-4f3b-9616-006c0bf09f59","1b0efc23-9284-4aa4-a0ed-1f1dfdce4cbb","1f44e0cc-68bd-49c6-97d2-be9b353d1579","296359f9-e236-410c-9efe-40089f1607c5","31279d7c-5246-40b2-a8c7-0be4a5f24a29","3d34551e-36a4-49ea-9d2a-4c72575fe06a","42d9d474-d783-432e-b9bb-22514e9eab57","47adc9fc-d620-4cb7-a03c-8d9578992249","5242a576-4d35-4f29-8d40-9a7179e51d0c","5b3a91a5-b897-413e-8fd1-482448a92d83","6492bf53-ad49-4cd5-83df-0005a5b77811","686352f6-d8e7-4d31-83bd-3d087c103e75","73d4f469-ff5c-4122-a254-2a4a2b1b7bf7","783ccfbb-4063-4614-8135-11787227ce97","7c5db339-9b27-404a-878d-16511b546862","839160d2-44a3-4566-be9d-558d043beac8","84817323-785e-4f8c-b0ce-6b9e36bebaf1","87c7ff88-c23e-4be6-989b-99d055db36df","9090b1fa-2785-4352-9aee-ec68a7cd7f45","9791442c-2f42-44f6-85c0-f9de21f113b0","9b8a9d48-ca39-4275-ba1e-f584a3b647df","abbc73f1-efe4-44ed-a97f-9f099afaa5c7","c891df1b-bae6-4d6d-85ee-42901c149f98","dc81638f-a74c-47fc-825a-ae778c524f66","ee262fde-8df1-431f-9e5c-0cafe9212b49","ee6758f0-86da-4812-bbe0-ebbb8c67937a","f3524e49-93df-4a3d-808e-7a2d31c3a12d","f442e3b2-9d65-40c4-a3b9-8cb821980d80","f7939502-d6aa-4bde-b42f-67ed433f95f1","f7b4f7e7-31fa-4009-9b23-cdc2060be8b8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","6ED","7ED","8ED","9ED","A25","ANB","ATH","BBD","BRB","DDC","DMR","DTK","DVD","EMA","FDN","IKO","J25","JMP","M10","M11","M12","M13","M14","M20","MIR","ONS","PLST","PS11","PSAL","TMP","TPR","USG","WC04"],"rarities":["common","uncommon"]},"packsong pup":{"name":"Packsong Pup","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wolf"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, if you control another Wolf or Werewolf, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, if you control another Wolf or Werewolf, put a +1/+1 counter on ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ControlsType","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Wolf"}],"controller":null,"properties":[{"type":"Another"}]},{"type":"Typed","type_filters":[{"Subtype":"Werewolf"}],"controller":null,"properties":[{"type":"Another"}]}]}},"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cd796e12-c422-4869-8d59-794600425381","metadata":{"source_printing_ids":["565640bf-cc41-4365-b1f7-54f66ebcfa01","d43d9686-a5e4-413b-8a34-3430788dd1b9","dd7587ca-9a17-46cb-bd13-fbee71d40f16"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","J22","VOW"],"rulings":[{"date":"2021-11-19","text":"Packsong Pup gets only one +1/+1 counter as its first ability resolves, no matter how many other Wolf or Werewolf creatures you control."}],"rarities":["uncommon"]},"pain for all":{"name":"Pain for All","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature you control\nWhen this Aura enters, enchanted creature deals damage equal to its power to any other target.\nWhenever enchanted creature is dealt damage, it deals that much damage to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, enchanted creature deals damage equal to its power to any other target.","constraint":null,"condition":null,"batched":false},{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever enchanted creature is dealt damage, it deals that much damage to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4eedf21c-0ad1-48da-a9fe-2ffdbf8371e9","metadata":{"source_printing_ids":["2a9e9951-7ded-41de-808f-8a0fea964307","d2948913-817b-4715-92d5-ed3cde347be7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If lethal damage is dealt to the enchanted creature, Pain for All’s last ability still triggers."},{"date":"2025-07-25","text":"If the enchanted creature is dealt damage by multiple sources at once, such as by two creatures blocking it, Pain for All’s last ability triggers only once. When that triggered ability resolves, the enchanted creature deals damage equal to the total amount of damage dealt to it to each opponent."},{"date":"2025-07-25","text":"If the enchanted creature leaves the battlefield before Pain for All’s second ability resolves, use its power as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"pain seer":{"name":"Pain Seer","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Inspired — Whenever this creature becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Untaps","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"910036e7-ae27-4adb-a314-d9760bce1eb0","metadata":{"source_printing_ids":["8ce8891f-b44c-4be4-878e-9fc45a9dc9cb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["BNG","PBNG","PRM"],"rulings":[{"date":"2014-02-01","text":"If an inspired ability triggers during your untap step, the ability will be put on the stack at the beginning of your upkeep. If the ability creates one or more token creatures, those creatures won't be able to attack that turn (unless they gain haste)."},{"date":"2014-02-01","text":"If the inspired ability includes an optional cost, you decide whether to pay that cost as the ability resolves. You can do this even if the creature leaves the battlefield in response to the ability."},{"date":"2014-02-01","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2014-02-01","text":"If the revealed card doesn't have a mana cost (because it's a land card, for example), its mana value is 0."},{"date":"2014-02-01","text":"Inspired abilities don't trigger when the creature enters the battlefield."},{"date":"2014-02-01","text":"Inspired abilities trigger no matter how the creature becomes untapped: by the turn-based action at the beginning of the untap step or by a spell or ability."}],"rarities":["rare"]},"palace siege":{"name":"Palace Siege","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, return target creature card from your graveyard to your hand.\n• Dragons — At the beginning of your upkeep, each opponent loses 2 life and you gain 2 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, return target creature card from your graveyard to your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses 2 life and you gain 2 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4d819d35-5cd3-48f1-a77a-b7c3ff82c62e","metadata":{"source_printing_ids":["367945dd-871a-46c9-b047-c701e664d2bb","d9ee5a83-7096-4cbd-ad16-eb839d293d88","da855bb6-adc2-484c-a084-83aff2b267f1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won’t depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."}],"rarities":["rare"]},"paladin of atonement":{"name":"Paladin of Atonement","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f44dc71d-d08a-45ed-ac7c-f6d1ef811d96","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life eq","line_index":0}],"metadata":{"source_printing_ids":["d0ad263e-7ff0-459b-b04b-1d03b09c48aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PRIX","RIX"],"rulings":[{"date":"2018-01-19","text":"Paladin of Atonement’s first ability cares only whether you lost life last turn, even if Paladin of Atonement wasn’t on the battlefield when that happened. It doesn’t care how much you lost, whether you also gained life, or even whether you gained more life than you lost."},{"date":"2018-01-19","text":"To determine how much life you gain for the last ability, use Paladin of Atonement’s toughness as it last existed on the battlefield. If its toughness was less than 0, you won’t gain life. (You also won’t lose life.)."}],"rarities":["rare"]},"parallectric feedback":{"name":"Parallectric Feedback","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Parallectric Feedback deals damage to target spell's controller equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage to target spell's controller equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a01071c5-aca5-4faa-8a8a-30b50b642f42","metadata":{"source_printing_ids":["891f1d29-377a-4f71-917f-ff10e785caee"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["GPT"],"rarities":["rare"]},"passionate archaeologist":{"name":"Passionate Archaeologist","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":["Background"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Commander creatures you own have \"Whenever you cast a spell from exile, this creature deals damage equal to that spell's mana value to target opponent.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"IsCommander"},{"type":"Owned","controller":"You"}]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"Equals","data":"Exile"},"description":"whenever you cast a spell from exile, ~ deals damage equal to that spell's mana value to target opponent.","constraint":null,"condition":null,"batched":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Commander creatures you own have \"Whenever you cast a spell from exile, ~ deals damage equal to that spell's mana value to target opponent.\""}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6299d18e-a6a7-414c-85c0-d57a8e7d2627","is_commander":true,"metadata":{"source_printing_ids":["1c4b515f-732d-415a-bc1e-6f1022150ebd","7b944e5a-46b8-4352-b598-87d756607fb2","bd5bbfa6-e5f4-413d-b132-ebae32d38657"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","SLD"],"rulings":[{"date":"2022-06-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2022-06-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2022-06-10","text":"Choose a Background is a variant of the partner ability. You may have two commanders if one of them is a legendary creature with the choose a background ability and the other is a legendary Background enchantment. Backgrounds and cards with choose a Background do not interact with cards which have any other partner ability."},{"date":"2022-06-10","text":"If a card refers to a commander creature you own, a Background won't usually be counted or included for that effect. If another spell or ability causes your Background to become a creature, however, it will be included. Any effect that refers to your commander or a commander you own or control without specifying creature will apply to a Background that is your commander, as appropriate."},{"date":"2022-06-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2022-06-10","text":"If you control a Background that grants an ability to commander creatures you own, and you own more than one commander creature, each of them will have that ability."},{"date":"2022-06-10","text":"If your Commander deck has two commanders, you can include only cards whose own color identities are also found in your commanders’ combined color identities."},{"date":"2022-06-10","text":"If your commander loses the choose a Background ability or stops being a Background during the game, as appropriate, it is still your commander."},{"date":"2022-06-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won’t have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 combat damage from any one of them, not from both of them combined (although your Background won’t usually be a creature anyway)."},{"date":"2022-06-10","text":"You can choose two commanders that are the same color or colors."}],"rarities":["mythic"]},"path of peril":{"name":"Path of Peril","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {4}{W}{B} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy all creatures [with mana value 2 or less].","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["White","Black"],"generic":4}}],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":2}}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures with mana value 2 or less.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"d41987b0-2ea0-4cc7-8608-70c486db76eb","metadata":{"source_printing_ids":["061be997-1519-41b6-9933-eb625db88eb2","a6c70710-7390-46d6-9f37-71b23323bc4d","f0c5449a-d63b-4b22-9432-8f0365c3c4d9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"pest problem":{"name":"Pest Problem","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create two 1/1 black Rat creature tokens with \"This token can't block.\" (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Rat","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Rat"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}]},"cost":null,"sub_ability":null,"duration":null,"description":"Create two 1/1 black Rat creature tokens with \"~ can't block.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ecc91e38-90fa-4d89-b262-d5f36dce5be4","metadata":{"related_token_ids":["2ff9f472-d654-56b6-bba6-cb501a09ad5d"],"source_printing_ids":["7f4c0959-a107-4d61-9e51-256b2955f6ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["WOE"],"rarities":["common"]},"peter parker":{"name":"Peter Parker","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Scientist","Hero"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When Peter Parker enters, create a 2/1 green Spider creature token with reach.\n{1}{G}{W}{U}: Transform Peter Parker. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{G}{W}{U}: Transform ~. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spider","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spider"],"colors":["Green"],"keywords":["Reach"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 2/1 green Spider creature token with reach.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"f1b7488c-c675-42e9-818a-24a50347ec2c","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["cd0b828b-461a-5835-8da5-0d684b505914"],"source_printing_ids":["2ec821c3-3e5c-4af8-a6ef-e2e77aa8668c","3ce33422-5dba-4a42-8375-dd8ccc692a7b","97fcf5a5-54e1-43f3-95e3-edc6215bf973","98912aae-4e42-4434-b979-9c85f09f8d6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["OM1","PMEI","PSPM","SPM"],"rarities":["mythic"]},"phthisis":{"name":"Phthisis","mana_cost":{"type":"Cost","shards":["Black","Black","Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. Its controller loses life equal to its power plus its toughness.\nSuspend 5—{1}{B} (Rather than cast this card from your hand, you may pay {1}{B} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, you may cast it without paying its mana cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Suspend":{"count":5,"cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Sum","exprs":[{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}]},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. Its controller loses life equal to its power plus its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"time","count":{"type":"Fixed","value":5},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"MatchesCardCastTiming"}],"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"time","count":1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: At the beginning of your upkeep, if this card is suspended, remove a time counter from it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"time"},"minimum":1},"batched":false},{"mode":"CounterRemoved","execute":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"SelfRef"},"without_paying_mana_cost":true,"mode":"Cast","driver":"DuringResolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: When the last time counter is removed from this card, if it's exiled, you may play it without paying its mana cost.","constraint":null,"condition":null,"counter_filter":{"counter_type":"time","threshold":0},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"530f088d-bfa1-4410-b1aa-ade8abdb2b7a","metadata":{"source_printing_ids":["6e798d8e-cc01-4cd1-9325-37d1bf73e042","98b84356-fa97-4f61-bd84-e8efd7f46e38","9ba55f16-a37c-4caa-9417-227a06cf4061","cb65f5ff-1f0a-469c-831f-618254727111"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C13","MMA","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"If the creature's power is negative, you still add its power and toughness to determine how much life is lost. If that total is negative, its controller doesn't gain or lose any life. For example, Phthisis destroying a -1/3 creature would cause a loss of 2 life. Pthisis destroying a -4/3 creature would cause no loss of life."},{"date":"2021-03-19","text":"If the target creature is an illegal target by the time Phthisis tries to resolve, the spell doesn't resolve. No player loses life. If the target is legal but not destroyed (most likely because it has indestructible), its controller does lose life."},{"date":"2024-02-02","text":"Cards exiled with suspend are exiled face up."},{"date":"2024-02-02","text":"Due to a recent rules change to suspend, you are no longer required to cast the suspended card as the second triggered ability of suspend resolves. Instead, as the second triggered ability resolves, you may cast the card. Timing permissions based on the card's type are ignored. If you don't cast the card, it remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"Exiling a card with suspend isn't casting that card. This action doesn't use the stack and can't be responded to."},{"date":"2024-02-02","text":"If an effect refers to a \"suspended card,\" that means a card that (1) has suspend, (2) is in exile, and (3) has one or more time counters on it."},{"date":"2024-02-02","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-02-02","text":"If the first triggered ability of suspend (the one that removes time counters) is countered, no time counter is removed. The ability will trigger again at the beginning of the card's owner's next upkeep."},{"date":"2024-02-02","text":"If the second triggered ability is countered, the card can't be cast. It remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"If the spell requires any targets, those targets are chosen when the spell is finally cast, not when it's exiled."},{"date":"2024-02-02","text":"If you cast a card \"without paying its mana cost,\" such as with suspend, you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those if you want to cast the card."},{"date":"2024-02-02","text":"Suspend is a keyword that represents three abilities. The first is a static ability that allows you to exile the card from your hand with the specified number of time counters (the number before the dash) on it by paying its suspend cost (listed after the dash). The second is a triggered ability that removes a time counter from the suspended card at the beginning of each of your upkeeps. The third is a triggered ability that gives you the option to cast the card when the last time counter is removed."},{"date":"2024-02-02","text":"The mana value of a spell cast without paying its mana cost is determined by its mana cost, even though that cost wasn't paid."},{"date":"2024-02-02","text":"When the last time counter is removed, the second triggered ability of suspend (the one that lets you cast the card) triggers. It doesn't matter why the last time counter was removed or what effect removed it."},{"date":"2024-02-02","text":"You can exile a card in your hand using suspend any time you could cast that card. Consider its card type, any effects that modify when you could cast it (such as flash) and any other effects that stop you from casting it (such as from Meddling Mage's ability) to determine if and when you can do this. Whether you could actually complete all steps in casting the card is irrelevant. For example, you can exile a card with suspend that has no mana cost or that requires a target even if no legal targets are available at that time."}],"rarities":["uncommon"]},"phyrexian delver":{"name":"Phyrexian Delver","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Zombie"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, return target creature card from your graveyard to the battlefield. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield. You lose life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a13cbac0-4c76-4970-b61e-5f4e020ee95c","metadata":{"source_printing_ids":["86f6f3e9-b594-49da-b0af-75a672590da1","de66606d-6fe2-4c63-8d27-e808da7d4980","e2410ed3-49a3-40b5-afa6-81813929ae62","e66d87a5-7b67-4ec5-b5e2-518d67123118"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C13","C18","INV","MOC","PLST"],"rarities":["rare"]},"plaguecrafter":{"name":"Plaguecrafter","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, each player sacrifices a creature or planeswalker of their choice. Each player who can't discards a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},{"type":"ScopedPlayerMatches","filter":{"type":"All"}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each player sacrifices a creature or planeswalker of their choice. Each player who can't discards a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2e3ee458-fa3f-4452-ab95-5a7fb5a0483b","metadata":{"source_printing_ids":["0972aad9-c7a1-42e2-8d2f-aecbb5fd33b5","5c03e00b-034d-4a26-9fc2-f25fc2dfc661","63a10efc-4b8d-4e32-90fb-50ab73810b59","6d238383-e67f-4a34-b431-f079e55b2708","7092aa38-4f05-4b18-b894-d55ca9fe9b15","8682fb87-df14-4277-aaa0-0d53d766c406","97505837-e0e2-4f7b-8581-01942e886bb8","bbad4b00-b56b-4b55-9e6f-3de3e3748fe9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","BLC","C19","GRN","J22","PLST","RVR","SLD"],"rulings":[{"date":"2018-10-05","text":"As Plaguecrafter's ability resolves, first the player whose turn it is chooses a creature or planeswalker they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen permanents are sacrificed at the same time. Next, each player in the same order who couldn't sacrifice a permanent chooses a card in hand without revealing it, then the chosen cards are discarded at the same time."},{"date":"2018-10-05","text":"Each player chooses a permanent to sacrifice from among the creatures and planeswalkers they control. You don't choose which type of permanent any other player has to sacrifice."},{"date":"2018-10-05","text":"Plaguecrafter can be the creature its controller sacrifices for its own ability."}],"rarities":["uncommon","rare"]},"plains":{"name":"Plains","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Plains"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {W}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"bc71ebf6-2056-41f7-be35-b2e5c34afa99","metadata":{"source_printing_ids":["00293ce4-3475-4064-8510-9e8c02faf3bf","00bf269d-aca3-494c-8777-de90ae903af2","00c9001f-a8ee-4693-b8f7-59f10ad8f63a","014efd6a-5b0c-41d1-b7de-78eab5b62917","01e63bfc-c4a0-44a3-a120-13c3cd928ca6","021f3a8e-5ce2-4edf-827d-b748d146e6f3","023d333b-14f2-40ad-bb76-8b9e38040f89","026777d1-e3a7-45a3-8967-527c0b4236e2","02951be2-2521-4e07-a1ba-de2a664ab90f","031b61a1-db66-416d-8187-edc32123131f","034b047d-6363-45ca-9948-8184f822a2cb","0422da01-0252-4f3b-b2e5-9f5b2c0b94ae","0491b4f7-9722-4f7e-932c-e19dc0fdf6d2","07c15c48-8425-48f5-80f7-c8f74ad773e1","07fd89a6-56ef-4488-842b-27bf31d8c04f","080a001b-7815-469b-bd0c-c92453d80e9a","08417671-b22b-4f87-9219-f9291ce971d5","089ae01b-e042-4255-b0ee-17d8f416a8d9","09b484a4-cc3f-43ef-a632-462100bfd1eb","0a143c32-d78b-40ee-8d2b-a8ce303162d6","0a479838-b6b1-4d83-9104-0a79f3b934c7","0a4af7f5-c89c-4e61-9d4b-b9e467ca55b4","0a8bfc4f-ba82-462a-a5e6-5717de69414b","0a95b348-a12e-4ed6-9e95-00bc8ef03982","0b18bbfc-d624-44c5-b3bb-1e9a0fd1f784","0b1b55c1-d74b-4688-a3b8-8480d99524c7","0d0f1dd6-9564-4adc-af7d-f83252e8581a","0d124ab7-0e37-45e2-988f-c98324bf8d9e","0d21476a-6112-4f2a-b87e-e4aea514dcc7","0d4e5bc1-f0c3-4ea7-a549-c36d932103b1","0d7ae52e-9ea7-4e9d-a9c9-c819cc768cd6","0e683531-4a59-4461-b589-5ebcbc51a600","0e7eede2-e682-43b5-b5b7-a61fb8e98082","0eb24b22-d812-466b-b8bf-6562283ee335","0f55597c-f265-4c4b-a5f1-cc58da609534","0fdbb6ae-7c37-44e5-aabb-f1f4de372b16","101b36a6-9cfe-450b-9c61-7f3e8f8109d1","10a087d3-54b1-4000-89d1-0c428659158c","112303c9-e1d0-4a5d-8d18-156fa7e2e036","1164f7ec-7b2f-4cc9-90bb-7eaaa331b4cd","116a7806-1513-44b9-ae95-cbedb7e96b89","11a94c04-b6d3-4118-b252-5146eedae4e8","11e044a4-4332-4385-8279-08cb1cfddfe8","11ee1e3c-32a4-4f2f-b7e3-09a19305521b","11f87b5c-78b4-443c-ad92-f37bb62d0bbe","121cc3c5-522e-4b3c-9551-dc501b006ca1","128226f4-a733-4f0a-ab2b-7789cfa8b443","1299d0cf-76d1-4111-939c-5e1b43347a83","12a1f0bc-5c8a-406a-aea1-95cbc820f3f5","12cff32a-a365-43ee-a196-8ce32b3bb9fd","133c49a9-6c43-4b52-8ee5-b1fb34cba060","1358ef70-1dae-4bb6-a2e2-88ff30d43b99","14afb1a4-753d-4ff4-b283-a7482401b509","14f5f561-39fd-4cdf-b22e-40cfd6a19d12","15dd9a36-55df-4942-a7eb-1c49a7999e68","160af129-48ac-46d0-9400-7cdfde7a036f","16ebbce9-fd10-4c14-b52d-cf82c0c1a58c","18013a78-d156-42bf-89b7-72e7070872c0","18389963-e1d2-4f24-a865-76261c82e873","1851fac7-4f6e-4bba-928a-6485223ce1c8","1856ed2e-dfd6-4794-9fe3-b2a7babcee01","1859ba05-06bc-4e80-8c0b-fd2475c6ca55","1895cf0c-9c2d-41f9-9819-7348ac9e25f0","18a72e75-762b-4760-937a-05031cdec732","18b2a328-226b-4052-9d22-1a52c9f72e1d","1927feea-a2ee-43ca-a413-9084be8f50a2","19ba7ff5-7f2a-4268-9bdd-96061ce5e86a","19ce3b11-18de-4250-a405-8e731882dfd4","19d1d724-731a-4125-99d1-25a81e8ff08c","19e094ea-3dee-47a6-997e-842113774973","1aaea970-a19c-400a-a8cb-5d30f9cc2672","1abb3ffc-9471-42c7-a1f4-66b6a8f9672c","1b104eb8-7095-4aba-a155-d8e147639692","1b405611-27d4-435a-8e8e-6d528626fd27","1b499b37-efaf-4484-95e8-a70a9778c804","1c1cad1f-c81e-4b65-905f-350b02047ea9","1d13dbd6-6c6e-4120-a05a-e77f1e863b35","1d7dba1c-a702-43c0-8fca-e47bbad4a00f","1ee520e7-82c8-4083-855d-ae15931b8407","1f2c4f03-67bb-4cb7-b1c0-0e806b9fc3a8","1f38dded-f642-4c37-b479-9a91dfa2ebd6","20787f63-e310-4f2c-ab13-1bb108ae3eb2","20aec487-ac03-4912-969b-f537864902ce","20ddb0be-d62d-46fa-b753-36dfab935e8a","21a8b83f-b7c8-4a8b-9c5c-31c793c6d9f0","21e41416-bc0f-4e49-9137-df8572e91ae5","2296cffa-be1f-49af-aaca-3166e7043de0","22de1edc-ec67-4694-ab88-2a679c8a450f","241d9f61-b94d-4ba3-b709-791ec647a716","2443d32d-0576-4666-8da8-241de446b7db","247d1875-b59d-475c-926f-0ecf4e7c0faf","2484c9db-44bc-411c-af43-bfe0e30f0ffa","24dc369c-020a-4115-a4bb-d60a44de64e3","24dfb372-0fa8-4c50-adc2-31de4e3fb24e","2576dc74-1847-44b8-aef9-9d74f333b9cc","25d96d9e-c6c2-4c51-ac57-b63dee0cf27a","272e4d2b-2ba7-492f-9f0f-b2b2a2e4c049","27462523-a5b9-440a-8220-68ae46db5f18","275c03f9-f9d2-45c5-a332-b3bee54e7065","27ac1fc7-0698-4a94-8353-cc4c13bd6ffa","27d283ba-9d88-45d2-80d3-7e4fffea6d22","27f8ed5d-a63f-4e8f-8f1a-10bde4fea710","282908d5-29e8-4a55-915e-64883ec3b714","28fae600-d829-412a-8f77-3f25a106f574","29d7f240-803a-4c11-8f4c-6a784566ee13","2a34be94-2b31-45a8-9857-02a1cc29f4cb","2ab98b67-3450-4cb2-9d2d-b4e3448dcd73","2b069f97-735a-4d85-8504-b5a863bd659b","2bcd008d-446e-41ba-a92e-871b9296fead","2c4d8ef3-2b26-4376-a00e-ccd58e3ea2eb","2c88c670-db47-48de-a1f5-c1a06b1e6ce6","2d0ee927-f9f4-48d7-814a-5957ac71aea6","2d2da8b9-797f-46e8-a15d-a86c7c56dc84","2dfe1926-c0d5-40a2-b1aa-988524aefc31","2edf5042-d185-424e-922d-c0bd4ce3e8b0","2ef285a1-dbd0-4e41-9f04-a9120a0421f7","2f05ea5f-891e-4a66-82db-3ffb17efd002","2f2cbe94-227b-4de0-b901-d38d6e95a20d","2f3d1a99-4b5e-4138-b48b-6d7bb8a64293","2f6778ff-6c1c-498a-bbfa-46c35b77a72a","2fa4b03f-60f1-441f-8066-8bc13d5637d1","2fb86b5f-0ff7-4924-8c69-3042ddec7911","301a6a9b-c91d-4337-bc8c-411a50793385","304717bd-3c97-47d6-b2fd-e94c70655058","30f05dcd-3cd6-49f3-828b-01e4cb5d1459","3138154c-5763-4105-a635-b697fe4c1e52","315bc0a3-3d1a-4c2e-b12c-e81486a02311","322a6bc1-bb77-4913-a0b9-ac77316b30b0","324b97fb-da4a-4867-abde-825383c74b63","32912b82-bbe5-4d70-817d-cd18bfdecacb","32ebf9dd-2f3d-440c-9935-bb3903ca7452","334ca29a-7fb3-426f-922b-5a2b905a5565","34044cf5-79ed-479c-abdc-3718ec193dd3","34fe1359-c78c-41fb-95d9-fcc7c46f0bb1","3550f914-cacb-4849-af06-1a7b25c2c95f","36392057-e3a8-433f-949a-f62af913598d","36446ad6-8bf0-4e4e-bbab-379c22dbf4f6","3645e11b-6b46-44c0-9741-f70da15692d1","3663ff0c-d02f-49ac-bb88-6f0dbd684337","36ccde39-98bd-4a67-bfcf-a66d9fbd9417","3733ca13-1398-4f8f-a885-4b0b2c498d2b","37edc4b5-75f5-4b43-a57e-a8192565a2a0","38789fff-0207-4b38-9bfd-5464ab62a533","38e2b0ff-8fdf-4db0-85c0-c1010bacd36b","38fbd6fa-39d9-4bc1-b870-dd6f7ff8f807","3912c5c8-3b80-4e92-abc2-eb482e49e9b1","3959d473-10aa-482a-b5aa-ff7bb15cc128","39965b8e-0ddc-4c9d-9eb1-7536ec4a8723","3a438199-54f8-4702-81cf-a9d42e7cd9f1","3a8fd867-8be1-4ee7-bb67-32c3f22db59e","3b40b21b-eae1-4996-98ff-4621faf544b7","3bd35bef-1702-4b3d-b149-8761c5cc5ed9","3c53a80f-54e8-406c-bf84-b8d39b9b7842","3cd136b1-c276-41f9-98ee-3e07eb87bacb","3cf6c0d0-5de8-4909-aaaa-be46466fb370","3d88074e-d394-44aa-a697-43c63d1dc655","3d8d3cd4-0f5f-4424-82ee-d8ba81da47fd","3dd7745b-db3e-4477-a867-fea8c4a38350","3ddcb7af-1f99-427f-971d-dd16b42d1914","3deb3077-484d-42d4-a54b-5fade5335420","3e82b57f-a886-4423-a921-9932055feb68","3e8c67e5-587a-43b2-af47-bbad1f8b52e9","3efd25bb-853c-47fd-822c-02ca6fdc8bcf","3f700330-5fcc-49b8-9163-072627016b95","40337e60-065e-425d-ae35-c639d2bb5b42","405b531e-0f43-479c-9f8e-cf83f7b943a4","4069fb4a-8ee1-41ef-ab93-39a8cc58e0e5","40aca5ca-a37b-4919-aef6-2510b4779161","40e211fe-e843-4d05-a97d-b208b616179a","410d728f-c4fb-4681-9412-48c21976ed3d","418446b3-74e4-42a2-b6fd-bea74ee8c696","42014ad8-22d0-4313-906f-5baa39642cf4","425bc1f3-4e6b-4be9-8d3e-2a268a1eae60","4315d5ea-eb76-4378-a3da-5d5cdad809b8","4323e4e0-399e-495e-b090-7f3783fc4e4c","43559560-354d-4147-977f-766b58bca9fa","43711fbd-88e5-4300-a9d5-67010e7121c0","440680d3-1eea-442a-b58e-96db09bc279e","44214f36-8bb3-4a32-8046-3ecdfff8407b","44373f76-9b3b-4c27-8b70-eac43155bcde","449d4122-ee9d-477c-976a-809ba8cb1443","45031d49-c82b-47a4-a652-f8904cd9bb66","4528641d-8e3f-4f9f-aff1-94e88cf7eb3a","4578c984-afb6-4532-b5be-093ed4ecb8b9","46198629-2099-463d-ad5a-c919ae64cded","464723b3-0723-45f2-a258-32d098c39039","464fa166-82be-4f28-8fd8-0c9cc4393012","46b94de4-099e-43d7-8f24-d5450b09f1f1","46c75f8e-6590-4338-abbd-a37e08dbd58c","471577f8-dc62-4f10-8adf-1e566ffc75fa","4716a32c-91a6-470a-a686-d5eb3d27f46e","486fbcf9-3a04-47f6-8927-886c2a454499","49f7e5de-1fa8-406e-a411-fc8a11937000","4a4b95d4-4ffb-4db1-80cf-c2c90839e8a3","4a818aaa-7a8b-4547-aa2a-052af21b815d","4a8a055d-fa9e-4e41-970d-a395c357554d","4adc1cc7-e118-43b6-a1fd-45161a8f614c","4add62bc-d24c-4a1f-81bc-e3a6befe3f0d","4b593a52-826b-4da3-ba98-11d4b93458b2","4b7604bd-b3b0-4e55-91c4-3717bae7e457","4b97d2f5-498c-42db-95d9-f9002d4dfcc5","4bbce1b2-19f3-43fd-aa08-6cce9c8878a5","4be390eb-3470-4f36-9bf4-3f9f8e5d5b31","4be96696-aff8-4ef9-97dc-8221ef745de9","4c150b5b-542c-41ce-b980-bb4a940b6c20","4d48ef1f-e000-452b-aae8-c3257f149c7d","4d6b9abd-fd5f-4a7a-a911-77696e6bdf08","4d6f50a8-f210-479b-b7d3-ef01c00ea4c9","4d879a13-6ec3-44da-b3fd-d9c1545f3822","4d968b76-8787-40de-821f-46bd2754fa8a","4db21784-e56b-46bd-97a4-3770f2ef5caf","4e196d67-1923-459d-98cf-646337914d3b","4edb482d-6279-48d6-baa3-047b48c3e5df","4ef17ed4-a9b5-4b8e-b4cb-2ecb7e5898c3","4f04188d-9a76-495d-b3a7-ee44810cf671","4f10be33-bbf8-4b38-bb27-024c2d8dac7a","4ff9fbf5-de6f-4ef9-a6ab-56da4b341b77","50958c6e-9555-42ad-9bb3-2da9faa5cb52","514c9899-65c2-4f1b-8716-ab144766b385","516106ab-8b92-40ff-acb9-9c635f6159b7","51662253-789f-4a02-9937-688e36775024","51afc6cd-1a39-4160-a265-d92610db1d44","51b0dd0f-8ad8-4292-9df6-7b28ab4605e3","51bb9dee-0246-41f7-bcc6-e402ebc2b701","51cfdbd6-00c3-4eac-acd3-b058b82ff947","51ff6ee0-01f4-432f-916b-ed771904d64c","5221193c-7d9b-439a-991b-a41e27ba66fd","524ff04c-932e-4441-a2a7-1416cd43d232","52ff493a-6336-416e-af5e-1eb6d10c080e","539f0b05-61a2-48da-913a-886bf9d97594","5414daea-c5c2-46e2-bfd7-de96cc7bbfab","546507c7-8fa8-44e3-aeb7-56fabf419d82","54b1c00c-c292-44c7-a6c9-0dcdb00581aa","54db7822-ebed-4c7c-8ede-469d72fd694a","5665190e-ea2a-498e-9c4f-f0bc514bd80c","56bbcfb7-cfbc-4752-9b6c-ffbd5d3dd678","572eab93-7b1d-434b-ba92-844248e472d0","5822b027-369d-46da-b6dd-c31207e2f449","58a735c9-08a1-4950-bf8c-ed1cfba76765","58ba055f-18fd-4981-b181-85729e19112d","598f857d-ee17-4478-bb39-cc3ab77ab8d8","5a189684-bf9e-407f-a8ae-a554169d2ec2","5a8279b9-c1dd-43db-a01b-89567bb43374","5acefadb-8b2f-4319-a5e9-1e8fd9ef3086","5b364f40-c3c0-4e3a-8556-73f6fcc19eec","5b5f9eef-925c-479e-a9a5-ce61fc06f3be","5ba9ef2e-d3ec-41f7-802e-e1414f14dd10","5bac2d0d-43db-41f7-99dd-9ff55a4f2b3b","5bb495cc-9908-455e-bec9-3993d595f4f9","5bd5900e-100c-44e8-97e9-b0c15379fea1","5c2812cb-4fce-4ec0-a2d5-88ef4e34d5ef","5c45bab7-a8c3-4877-ae8b-85576f608b78","5cbfbafa-f58f-40b2-a374-68ac35b77d89","5ceff685-b416-43a2-a44e-ae6f0afd45b0","5d918248-85ff-4fea-ac91-aa5466dd2829","5dd76e71-df9b-4fd2-b534-d3f724a56a91","5e8b581b-5177-4cea-8021-42f4d21583ad","5f4bf87b-1e31-4c09-b685-86592eb32be9","5f8e477d-8772-4e54-8857-691f6ab207a6","5fc26aa1-58b9-41b5-95b4-7e9bf2309b54","5fe68013-a519-4dce-a28b-c6304dba8fac","600cc3f3-5400-40f4-99ff-8a4a905e79cf","6089330b-dc26-4c35-ba58-522d5bfb963a","614c9269-77c6-4cef-a987-8ef4c14fcebc","621c7296-a1d1-49da-a1f1-dd62758ad7f7","6242dbef-8412-4ebd-9486-42cec1dc6794","62836a1b-1d1f-4df7-b99b-8bbe07f705f1","62e339a9-3f9b-401e-a459-dc3affc9a114","63607a09-b00c-4c0e-b8ad-d1bb5a45517b","639e47dc-c90f-4f55-9b3a-721240ec04ed","6401c6e7-3415-4e68-b40c-9777c33785eb","65498b4f-a6da-49b9-a565-ac2079d23afe","65b7eb6a-aed1-4fc9-9b10-06169fa50690","65beef5d-df12-4e33-a585-b32f552b58a3","65e1287a-2166-4592-9518-da4b92b3623b","6620b5f4-b1e5-4d1b-bbf2-c6ad9c8284c5","6624e111-8c1e-4a39-812e-3ca2dd9f0dc7","663491e8-b2b2-432a-8d69-daa3fbe7e582","66ad5a57-7296-43cb-b477-826e65d37222","679cdcc9-8a6c-4cfc-9237-23af2cba1980","67a2ff8c-ac4a-425e-afd0-a9010bf87c1c","69f7ef07-37bf-49de-b5bb-c7641091b92b","6a18b41e-e02e-4348-82cf-57570150563f","6a462a95-f841-45a6-97a2-d6ddcffa3c20","6addf844-2790-4da5-a22d-18df878f2219","6b362e9b-8d25-405e-b70e-f3c9533627a7","6cab2ebd-6ab7-4273-bda3-d7dea81b52c3","6e3231c3-57d2-47d8-97cd-65dda2bc97e2","6e380260-6828-42df-a8b5-1943b05f91dc","6e4454b1-ec19-4917-915b-0c913964e9e9","6e5db4d0-61f4-4cc6-89c4-02a2060b556d","6e6d4bb5-9da7-4d21-9cdc-1732ea61121a","6e6f19b3-4c76-4078-8ed2-b2832a33d066","6ed1902d-0b09-4bbe-9059-a0779450ee05","6f501773-1b39-4a4c-9b45-a950385c9e82","6f6fff16-abbf-4e80-9450-4cb42b13fe38","6fdefa6c-4eee-4fe4-ab22-9e65acc55e3d","707c5467-2a54-4f77-a845-b50c9f5fc041","70dc47f2-a92d-446b-b788-8287b5d609c4","715b89c9-2820-41ec-8a87-b2657ca0c7fe","7244582e-39a6-479e-9239-fc5d98c1a52f","727164d2-2a24-409b-bfaf-c4f279673517","73d7ccab-4d35-495d-a45f-b6b98d32ba03","73fb4a34-c11e-45e9-a986-43c0a0ae5424","7432b894-e7a9-4de7-9470-846e65cd4d0c","74aae970-d66c-424e-8a23-577711af6eab","756abff9-9810-4e2d-b1d7-ec4e2d6d5187","75c3424f-0500-48ce-9779-b77e7763e253","75e639a9-6010-4453-9c25-4ab03664b9b2","763c1eaa-fe29-4b24-8e41-96b94e5a75a4","771294b5-c1a1-4456-8399-1391bc5ba40e","7734ae50-33de-4a2e-9ef9-768ee389b6b6","783eeb62-ab10-437d-a6cd-c3f99401b818","785c94fe-1c75-46d9-a59a-2d84ac531e7d","78bbb80e-880c-4362-98d7-9f1f92563439","796f129d-912f-400b-8077-7b2873ec2040","7978fa58-0860-4082-a674-2d6abce899b9","7a0f9892-89cd-46ff-bc87-114e175cb575","7a2c8b8e-2e28-4f10-b04f-9b313c60c0bb","7a76d8ee-28fc-49ac-951c-a4d29822f91e","7ab3d0fe-6af6-4d02-b41d-0b88b510be4f","7b68bdb0-41cc-48f6-905e-7da1ff4ba5e0","7bf7d68a-dbd0-45f3-acbb-59ee38e6057e","7c2839fa-33eb-47fb-9541-77c68612aa02","7c80d185-09f1-4b2d-9950-85d24a5fe120","7c88ade7-4b1c-4380-a19a-8ba18fa4adaa","7cfd53b2-3991-4a57-81b5-46618aecce4a","7d39625b-cfc5-439e-b888-fbd7849f47a6","7d93c502-5fe7-4129-aa3d-7758729cbd53","7ded4b2a-ba56-43da-8ea7-392b77fc2926","7e134268-9ce9-4192-b548-90bedbfe654e","7ec6a88c-0e68-45e0-bfb7-67ea1951ed51","7ee52bef-0586-46b8-a405-f4e0741f0059","7f2db9b8-648f-4c7f-bd58-1069a1417a22","7f65a77d-6fa9-4f26-a9bd-8b34a9b1bed4","80897666-ade2-4f70-9c4d-235753b44a23","80b6636d-a342-4d49-9d1a-ab15b3d837c5","81a1a8a6-916b-4eef-8079-6775afcb63cf","81bbbf38-5d1a-4013-aff9-6167709897f0","81c96115-3728-4f3c-9438-d53550974363","82283c22-9b64-4f41-a5bb-aeb737eee5c9","823a3cdb-2e98-46d0-9a6e-18ff967de644","825f809d-fb64-4101-a985-c3533f26a345","82dd5b8c-2c2f-4185-b176-a94b43729a29","83edf237-817e-4482-8dc0-1a502846720b","83fbc748-fe45-4b06-b2ec-71087f7225ec","8410f6f6-4557-4102-9f84-fe208f7118e4","84144d57-f0b6-4011-aee8-c626c21998c4","8427be4a-126e-4188-9f3f-ad67b9d7fea5","84621715-ce30-4736-99d0-b7984cc8776b","84908444-ee0f-430b-9a5e-f6810aa8bce1","8538a97f-302d-468a-8a6c-50c800d614e5","854a255e-fd89-4c5d-b97b-416a9ac70960","859e0813-96e9-40c3-8e7c-bee8bef27585","864501ff-41b6-4732-b975-e4bc7ae36115","86626d69-78e0-42b9-81ed-fef46e3a89f7","8673e184-2b58-44ef-bb68-bd3d139ed0ba","8703ecd3-1ffa-489c-b8e1-f4d9b5ba2c12","879162e8-3a10-40da-8d86-9a7dff67c961","879f7f54-25a3-440b-848d-0e780277a681","87a66868-2efa-4985-b4fc-405d7fa8d410","87e53e2e-0703-45d3-ab91-78f5241c32bb","887f543d-e120-41f1-be69-e21b40bc1003","888f32ad-3bdd-4c46-b3f0-522ac9763591","888f8793-83ed-437a-b06c-aec97205664b","88f96591-4f22-451e-bfb5-32561cc4640d","8911f09d-1c82-410e-9de0-21b619820da5","895fcea3-23a0-4442-90a2-26684cbae3b4","89f97882-408d-4e00-910d-ad0598d630f4","8a299a1e-1ce9-4668-a5f5-c587081acf6b","8a3cedf5-901b-4ea9-882b-d0058c2f9e00","8a65b379-47a9-48f2-be6e-abb4e7868ad0","8a790328-70b3-477d-bf02-8718870367ae","8a880169-41ca-4507-83fd-306a489d31ce","8b74c845-494d-42de-99df-02d07047a3c5","8bbb3646-c427-4302-86ac-9ac28d045959","8e07d3e6-c602-446f-a453-f54f13bfc55a","8e5173aa-1eca-46ae-81ea-0b1dfe5e12de","8faef4f9-931f-40ab-8ed6-5fcb5c680afa","8fb2afd8-7958-4864-81d4-210d91470aca","8fd675c7-7dac-4ad1-9243-6d1eda0fa30c","9045a9a2-e63f-4a68-9f20-28a43518f71f","904a9d1f-8e3e-4cbb-ab2b-99fe0abae01a","90742ab3-89fb-4ac1-9bf0-0e2d17252bff","910f2bcd-8d37-417c-a969-86e04f1daf23","9129628e-ee2b-450b-a3d6-fc94e9bf477d","912e30e7-9b8b-4c27-af3a-ffdcfe8b6feb","91348123-e2d0-4acb-ab4e-ec17652b7853","92342f45-ccfe-4d94-82ba-2fd55128326f","926aad15-87a8-4510-b327-d1648f89c497","933be7f9-9bfe-45cf-9dfc-60f72cd58db1","93653b18-3821-485e-afeb-edafb0a9e84e","938a2c05-eff1-4cdc-9c14-ede3f62fa0f5","9433619d-5bd1-41e9-ab7a-364c98347b1d","94e88862-d53d-49b6-8aa5-95f07507c6e1","95347dba-09e9-47a3-a068-db78ba39714e","9591fd15-78d9-4089-a075-031ab2affd2d","96ac45c4-2495-4a1b-bc37-11e31ee0a952","96c9319a-a257-472a-9ab3-676d41adf877","96f86c6a-b43d-4c41-bd80-a203520a6e5c","97b7beb9-0805-47b9-8e62-ff110e9e086a","97e0aaf3-eba0-445e-b560-f889b800e6b7","999d82f8-6c64-4b6a-a8ac-fbc48dd1750c","9af8111d-cdfa-40c3-8a85-ae2890032bfd","9b13182c-0529-4da2-b5ae-9d61fe0a0f5f","9b5fbeae-9bd5-4741-80a2-9b646b374328","9c49b9c5-f701-49ff-aa3c-59e11add5d52","9ca16bd5-e261-4229-a92d-7cd55654dd11","9d025ba8-f966-4af4-a7f6-a148b1515bc6","9d4b8bde-412b-4d12-b296-7364c95e0510","9dd2d666-7c6b-48ce-93dc-c004ebdd1fe9","9deeda0b-81f7-484d-a99d-0e7d2449d157","9eafee37-1191-40b4-af5d-cc51b737b966","9f015fe9-c7fa-4503-b0cc-c0e7f098882f","a04af0ed-b978-498a-aa56-27f009d58d58","a081aa52-4809-4109-acd4-6a67ca3a114a","a1cf2f81-3041-4349-9b37-f215c4e38c5b","a1e5a611-ad7b-4654-a8f1-d024056c346e","a2125c3e-d52c-44b9-b9f1-89f02236d447","a251f4cb-054f-43ac-94af-bd205f97327f","a26fd28e-d053-48b3-ab4c-2dc6fd33fa64","a2b0679c-e7cd-43e0-bf8b-4518734f946b","a334360b-2943-4442-8557-e0a5efd272b7","a34ef351-2864-42f6-8943-75bb6fffc9f7","a37c667a-f035-49b2-9f34-9831e186ae82","a3ae6956-7f2d-4569-a9f8-3972b5ec5e56","a3cc4f04-9fc2-4ee0-b60c-a102e442141f","a410e95b-afd0-4ac4-beb5-96163b411fe2","a4446149-341b-449b-86e2-2b6b47b7a75e","a4901260-073a-4d06-8167-c322c55ab210","a4c77ab1-aae2-44b4-94a8-74819db16363","a5bfb654-ab99-4272-a184-b95e1022af5c","a6dc63b6-3a3f-4f14-af8a-f239b07f5b5a","a7394e45-797f-4991-98b2-6570eaf82c81","a7f1d17a-c17c-4a27-97db-a37ee8c0e706","a845de50-4af0-4f4a-9c2a-db587973571c","a8ab8c09-851d-4f38-8d30-a61fca7629be","a8d4a0cf-9bbc-43da-a88c-47cb43fe13af","a9891b7b-fc52-470c-9f74-292ae665f378","aa69cedc-49ce-48f3-88e1-94b9bc061bf4","aa6f0743-c433-4348-bcef-20cfe7b28293","aa74b27d-2381-496d-a3ef-af3722c7b4e7","ab53b300-38b2-436c-834c-b0162dd3b757","abadcf9e-46ed-4a8b-888c-0cd3756bc8ab","ac15978d-41e6-4eaa-9456-0de3b912d437","ac754820-343e-4c01-bcfa-89fa5c8c7e1d","ad0b7076-03b9-4a8b-a55c-6cba0b8162e8","ad1317da-9e81-4aff-8c04-9155d14be90c","ad6be912-4d77-45d2-b653-7fbbee6a881a","adf67e21-3306-4c4e-a021-9b997cc8c48c","ae15af8d-da17-4967-9d1d-49a9071d80df","ae92dc5d-00dd-42c2-8f02-a6658dfb3f01","ae92e656-6c9d-48c3-a238-5a11c2c62ec8","af6db62d-62de-4b63-938c-2d2c946c5aca","afb59eef-385b-4a9d-b70c-952387b30310","afcf799a-7a65-474b-b9c8-755f25ac74a9","afd8bc4a-46a6-48af-9e17-712517e9d8a6","b078ef66-a83b-4e12-bcba-838bc3809322","b0b9bcca-b41a-4a6a-b380-36bfea9f0715","b0e22017-301e-4c02-b496-c648ef97d919","b11c9a26-3234-480b-94cf-49f15f2b0002","b1623d57-4729-4796-b3f7-f1837a05c6ed","b18fb598-90bf-41fa-ab53-a182580296e5","b251c9f7-7df5-4abf-afd7-813999996dfe","b2715553-ba9c-4753-9a1f-d13d8e2ed24f","b2a646c9-8347-4b62-829e-6af6b275346a","b3344d18-e7b6-43ad-ab59-9ceaf49269f7","b3bce7a8-b9ff-4e38-853c-58ffaad53fef","b41e0881-6ecb-4b1b-816b-d80a74a414ac","b43da6f6-fe15-41d3-932d-4ec3d16cc0b2","b4da90d5-d793-4412-acc3-e0c2a5c10e18","b4f8fa19-a872-4542-bf24-8bba9f0a64a1","b5453630-bfff-4403-a9a9-49f1534e1d42","b5626933-5b62-4389-ac99-334ad71b7a78","b5b4963b-c706-439f-9800-ff5d70003dcf","b7231444-005c-44c6-bfa5-274eda30b419","b7331b03-be66-419c-94bc-ed494c042ea3","b75ca372-c110-4321-b497-8841547f3c2b","b7de212e-93d3-430d-b4b8-242b7b526eda","b8c391f2-b340-43c7-89e6-afac5b70491f","b8d7d5f2-29bd-4015-b98d-c7ed71373f0d","b8e41010-a7d2-4e78-8f7b-502347f8c47d","b983acda-68b6-468b-b0c1-aad8b53db49c","b98f9405-b8bb-4f50-8ace-0969abc86308","b9dbdef6-e141-45bc-9209-5c17a8ad135b","b9e35567-05df-4a3f-8c29-d8327abc2e8d","ba708fff-a428-4783-b405-4c7e6ea72fd3","ba855a4c-a16e-4609-94e3-d780f2df2dea","bac08825-ca54-4a9f-bf4f-f75708a1550b","bac23c5e-a489-4fba-b14f-a968b202ac22","bc14d179-1833-4364-a2e8-c94851df0b67","bc4f4b6d-ff35-4b1f-974b-f39569e6b3c7","bc73d7ff-bbef-4df9-ae7f-aa2ac8ac7025","bc7bc42c-1619-43c1-b720-1dafa391391f","bcdd1595-d94d-46b1-b87f-b910ae35fa3a","be0334fe-3de3-4779-a31d-d021db50b62b","be26189e-1de6-4f69-b5f6-29ea7f5a7d9c","be849ad5-9f96-4605-a0dc-8b9588ac7dd6","beaa0e2d-2003-48c8-bc18-a4fae1972594","bf39f344-1204-4c90-93b5-c04a24f0f1f5","bf756c6e-df34-4834-b0ef-824e0aec3ee3","bfa36806-235e-49b7-a637-494c91926ede","c05ce2e3-44e9-441b-9467-46a3c6642184","c0690e60-e11e-4903-b1e0-e36854213b65","c160b1e7-8fad-4592-899c-995d09bc8b52","c20ec10e-78fc-49dc-a112-7863a34056b1","c23864ff-e83c-4899-99e0-4ca5167bd4e1","c260e1fd-8de2-41f1-a228-5476dbc56b17","c3345553-8f04-4a83-9b6b-95ca0654921d","c3f33598-1344-4365-9067-17a7379de894","c40b8460-30ae-4390-8bc6-ef69ff048572","c453d1ea-9a42-4ccb-9391-eec122025647","c574549f-da6c-4080-8748-6ef146a7ae48","c577a2c0-88e3-49da-9586-6148f19e5c27","c5b472d5-da70-4fd9-a68c-10e17797ad0d","c62977b4-ffbd-43e5-9b36-2d3e6557b56b","c71446bd-08f2-41fe-ae44-db44814c8afb","c7191d23-b68f-406b-8c28-8dadbaef6562","c7595395-cfc0-45e3-8290-6c97735a860d","c75d8ab6-0391-4bd7-9861-d2f6dd745a51","c789adc0-69ed-4d1c-8a20-ca219020fd2c","c7f7baf6-de14-40f8-871f-dda889672608","c80e0478-8c53-4406-acc0-b7662c9c382d","c8409f3e-aa2d-4ee0-b9e8-97c03aff5eff","c95e9696-6e9d-462a-a40e-117df77e3909","c9cd4d57-8c51-4fcf-8a9f-5d6a61c33e3d","ca8fb179-7e81-4b20-8b81-ea1aa97afe58","cb382733-ff3d-43e2-9b1e-efa2f7c28173","cb3b6487-6a9d-4297-aa38-94cd687f8f80","cc084e24-22fe-4326-b894-54d79fbeba2f","cc0bcdbe-be63-446a-8838-8790bda308a3","cc3db531-3f21-49a2-8aeb-d98b7db94397","cc623027-2b5c-489a-9bfc-763d678832d6","cd825844-18af-4c35-9a37-595c6fc8084d","cd97a3ed-e266-4cf3-bdf3-305d87373742","cd9a8337-e4ca-458d-8fcd-672d8d6f1c0d","cdf91075-8d8d-43c3-8125-2469e2dcd132","ce48b0a0-40b7-4f32-b841-7deae02045c6","ce617aad-2c72-4b47-a9ae-51792459cffd","cefbe595-93a9-4a5d-b5a5-4f517cec7bdd","cfe51d97-66f6-4ac3-b926-01ab7e4c5686","d056a94a-a07d-4494-a75c-b3f6f59457b3","d08e9aad-3b06-4cef-8b91-0087bc5881f8","d0bb41fb-f224-4705-ba61-b7cac835be4d","d17f8abd-c087-4039-8dfd-c6168f7db0a6","d293ea0f-8b87-4d8a-ad8f-650131c83c20","d34b85da-bd53-45bd-8ff6-d5dc73514103","d3bd857b-87d0-4a0f-9aac-0b1b661bb3bd","d3c1ab59-3771-484c-8a79-2bb36655b6dd","d595ba72-3334-48f4-9ea9-a43f5e824aa8","d5aa2449-6b74-4319-858f-caa9282da5c1","d5e327d5-2e51-4fdc-a0c8-edd3dd77c058","d60f837e-736c-4a20-ab47-dbee4617ebcc","d7147b73-a7fa-4ecf-b9a1-a3f4851a5bef","d7744562-1df1-4aea-ba15-5aa1e50e26a0","d7d20b8a-0aa7-45f6-8c87-01d85beb2771","d8098d41-38dc-4f82-b65e-d3bc7d8e0fcc","d812b6f3-83f0-44c9-8583-eb97fd8fade8","d85121b9-2aec-4a79-bd18-d472fb9a8d0b","d85d0f25-a24a-4de0-9b8b-93fb5017bce9","d8fdfa7d-fd11-4c11-8743-a21538474314","d92ef517-2417-43a2-8b1a-0673d1531c65","da033f5a-bc5a-4d99-ab25-4055eef56cf7","da26da6d-781a-432d-8b67-0674c9fbf933","da37f78a-a0a6-4ca3-921c-4bc2c17ccda6","db0c6f01-42be-40a1-becb-085f54750830","db14da86-6721-4e22-9b61-4a5680d4e5a3","db3036bd-95f0-403f-a6ba-b3b05f81a3c9","db48af31-8309-46fb-b178-657c3e2fa05a","db4b9e75-b948-487a-8417-3b6feec41ef0","db68b6a3-10e5-42d1-9325-94a4a821782a","db9ab619-6a22-4b26-a8ab-48a6aef0aaa2","dc34d24d-9c1e-45a5-8d0e-ccef1211906f","dd29103a-f34a-4d4e-83a8-93a1a590d3c5","dd3df51a-d173-44c8-9630-4652630cc544","dd81973f-c7a8-4855-affe-6a65b7f88406","deabdaa1-6227-48e4-82d5-63a1771320b2","dec72b07-8f41-4d42-a455-794bf106302c","deff6a75-2ecd-49d6-b58b-a9d24615f9b7","df31f72c-076e-4d8e-9975-6d6281ab71f6","df3e94f7-9f97-4652-a1f1-381feb15f688","df5de603-4abd-46f6-873a-4265e1326a6f","dfa01578-faf9-4694-86a0-c81f5b2a0dd8","e025d0ef-ecef-4fdd-b00f-aa5e22360b63","e0281fba-d771-4431-931f-920db2f14c47","e06c72cb-03ce-48eb-b5dc-b2301c6871a2","e0d1a81e-6710-4922-ba0a-510966c39449","e14e6193-f60b-46c8-a7eb-02a437138568","e20726fa-d99b-4e3d-8054-b7d313ceb02f","e3e536cc-e724-43d4-9fe3-dfb4952613cb","e4734a7c-67d0-4124-b76e-d53634557c7d","e4f48ac3-f0cb-4e5c-8ea6-e423aa92ce11","e52ed647-bd30-40a5-b648-0b98d1a3fd4a","e54dbbc4-2136-47d4-a014-1206707f6bcb","e590059d-57e5-4696-9bb1-30d8d35c4329","e5c5946e-93f1-4c70-bd3e-694013e743c3","e623b058-76d2-476b-9ee6-82807f7992c3","e67be1a3-24cc-43d9-bc22-3777a0549b5c","e67ce864-bf29-42f1-81ca-a98022892eec","e6a6edf8-47a8-4471-9d62-8fe3d102567a","e6ec1f39-08e0-45ce-b4ec-c25d64bd3461","e7667207-283c-4318-b918-caa6368bb6e3","e76a9b20-746c-42e5-9977-f5dce6aef0f2","e77924e4-0f15-48a3-b494-89b544ee9d37","e7847fb1-bb6b-414f-9639-8be5b6f09917","e81ecd4f-4cde-4d8f-a9b7-d7c6098be981","e84f2b9b-1412-476f-8739-17d35ea48a51","e86b943e-0c07-4b5c-a850-857a86d59c57","e882099c-63cd-42f0-b160-35e6922106b1","e891d622-9369-4eeb-b7e2-183c60ec54d2","e9495172-6fde-4aae-b47e-fc887440120e","e94e2710-7b95-46d0-8261-0afa6b192e70","e9646663-ba93-446b-ad83-71503924e7f8","eac11282-82d6-40db-8c28-5ed02268d2c6","eb17acb3-0765-4703-a03d-6867a2f59db2","eb308263-96b1-4307-b8f7-907569bf2e15","ebb35754-99e3-47de-8df5-ee485b5a7b49","ec05cb6c-6e7f-4d40-ba38-a9fc06158094","ec9451d7-adec-4199-9a95-44b91ebf8681","ec9ecf19-9f9d-4642-ac70-ddc08fad7e17","ecabd341-b3d9-41a7-a045-39121715ad87","ed39f11e-a7c4-4a35-aed6-7cd7590723b7","ed4f7329-9c72-4369-8b66-2a89423e957d","ee310608-e669-4fe3-a8e3-05530438dbf0","ee7cfabc-902f-46f7-b1de-fa0a88c8f852","ee7f525c-d777-4adf-8920-8adfc73bbc55","ee86ac2f-f398-4422-8721-8ac859fbf5bc","eecfb420-ace3-4627-a2e0-62a701d025c9","eed1af19-e075-4e6f-9394-d258143e15a4","ef1c6830-758e-4242-85f7-3f20b872272c","ef37dd1c-27f6-409d-932e-56520a65791a","efe75b38-c145-420e-9446-f2ac443ab3a5","f090db87-b7a9-4c88-a211-495b27ae37c9","f0b68c00-59ed-410f-87fe-b411f07662e3","f0d7bd96-db52-4f61-925b-0db725b5d35b","f0f9fda9-50b0-4ce4-b351-cd2b5e6409c8","f2bb7059-588b-4ba6-9ad0-78169e4e4483","f2da8374-7e37-49cd-affa-14cfafd12822","f37db921-ab2a-46db-82c1-1f1abf7a3cf7","f3ccf9db-6f4f-403a-8b0c-9e0b115eb741","f5719c9d-0b6e-427d-ac46-15aa4a6496fd","f59dcb79-1ab1-4204-b50b-14bc3f709c46","f5a19fcc-f465-43ac-8d08-ba0d2345b66d","f5bccd95-0703-4755-8f31-bd8ab615bd04","f724ae86-b968-4f49-8267-c2c34c22f1b6","f75d3f2a-5120-4056-a816-4f38c1f18459","f768de9b-3d31-468d-876d-2cb7c5c601a3","f82548c7-24ed-4529-8b57-7407dc0b8c8b","f8b86eac-3cd5-48ef-9fda-b4beff540c94","f8dca86c-4dd3-4016-bab1-dd259b68b66c","f944d762-b01c-4e7c-a539-434cbf99c504","f9706bb7-4fcb-4561-981d-aef34e23756b","fa21cca2-59cb-4223-b67b-1a8fc54aadd8","fa3db823-69a3-4a82-80a5-e12e4b40a01f","fb0f2cf5-801d-49b2-b365-3129f53948dc","fb4f4abf-841b-4fae-9a53-505a2f8dc1ff","fc776814-bc15-421e-990f-6de7b5f6873f","fcab7eaa-5e16-40b5-992b-9cc51a95376b","fceab58a-304a-40e4-8830-837a7b51d31b","fceb6a79-6d36-4780-b9c0-557fc3676c19","fd7babbe-f8c1-4e7c-8de2-2224dd357de4","fe60da77-084c-49e8-9948-9ac4b6a6382f","feb949a6-9261-4175-bcf1-5519d82f9dc3","febd8326-9ba6-43de-bb29-910cb459498e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DDC","DDE","DDF","DDG","DDH","DDI","DDK","DDL","DDN","DDO","DDP","DDQ","DFT","DMR","DMU","DOM","DSK","DTK","DVD","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","MD1","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PDGM","PELP","PF19","PF20","PGPX","PGRU","PIP","PL26","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TLE","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC02","WC03","WC04","WC97","WC98","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"planeswalker's fury":{"name":"Planeswalker's Fury","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{3}{R}: Target opponent reveals a card at random from their hand. This enchantment deals damage equal to that card's mana value to that player. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"card_filter":{"type":"None"},"count":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{R}: Target opponent reveals a card at random from their hand. ~ deals damage equal to that card's mana value to that player. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2e482522-2eef-4f6c-887a-fcc51be61dc2","metadata":{"source_printing_ids":["6fa09e3a-bc7e-4292-aa5d-ce97c1b1f79f","a5125eb2-10bc-4571-8730-f03df36136a6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS","PLST"],"rulings":[{"date":"2004-10-04","text":"If the opponent has no cards in hand, then no damage is dealt."}],"rarities":["rare"]},"planeswalker's mirth":{"name":"Planeswalker's Mirth","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{3}{W}: Target opponent reveals a card at random from their hand. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"card_filter":{"type":"None"},"count":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{W}: Target opponent reveals a card at random from their hand. You gain life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"cebc1e6d-ab14-4e54-9906-e8a7cf4c2043","metadata":{"source_printing_ids":["0205d094-c846-4aa0-ade8-2a52c57b11da"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS"],"rulings":[{"date":"2004-10-04","text":"If the opponent has no cards in hand, then no life is gained."}],"rarities":["rare"]},"polar kraken":{"name":"Polar Kraken","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":8},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kraken"]},"power":{"type":"Fixed","value":11},"toughness":{"type":"Fixed","value":11},"loyalty":null,"defense":null,"oracle_text":"Trample\nThis creature enters tapped.\nCumulative upkeep—Sacrifice a land. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)","non_ability_text":null,"flavor_name":null,"keywords":["Trample",{"CumulativeUpkeep":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":1}}],"abilities":[],"triggers":[{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":1}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d0ff30c8-ddb7-439d-b14d-c83fe3c8da87","metadata":{"source_printing_ids":["aee01e9c-0445-4228-a73a-3e5744844ed3","c4643512-6071-45c4-bffc-8feec5bb094f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ICE","ME1"],"rulings":[{"date":"2008-10-01","text":"Paying cumulative upkeep is always optional. If it's not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can't be made. For example, if a permanent with \"cumulative upkeep {1}\" has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either pay {4} or sacrifice the permanent."}],"rarities":["rare"]},"polukranos, world eater":{"name":"Polukranos, World Eater","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Hydra"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"{X}{X}{G}: Monstrosity X. (If this creature isn't monstrous, put X +1/+1 counters on it and it becomes monstrous.)\nWhen Polukranos becomes monstrous, it deals X damage divided as you choose among any number of target creatures your opponents control. Each of those creatures deals damage equal to its power to Polukranos.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Monstrosity","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["X","X","Green"],"generic":0}},"sub_ability":null,"duration":null,"description":"{X}{X}{G}: Monstrosity X.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"BecomeMonstrous","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"distribute":{"type":"Damage"},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes monstrous, it deals X damage divided as you choose among any number of target creatures your opponents control. Each of those creatures deals damage equal to its power to ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecbf5560-853a-43a9-bf70-ac8d403b0ce8","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3501b97d-76c3-4ff9-b6e9-b882f33c03d0","4979cc1b-9c1a-47e4-ae37-7c41798eb89a","8b5a1182-c707-4024-9000-de57793fba0d","ed6daf80-cbbd-4789-aa15-649574aaf189"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DDL","PIO","PLST","THS"],"rulings":[{"date":"2013-09-15","text":"An ability that triggers when a creature becomes monstrous won't trigger if that creature isn't on the battlefield when its monstrosity ability resolves."},{"date":"2013-09-15","text":"As Polukranos's triggered ability resolves, Polukranos deals damage first, then the target creatures do. Although no creature will die until after the ability finishes resolving, the order could matter if Polukranos has wither or infect."},{"date":"2013-09-15","text":"If some, but not all, of the ability's targets become illegal, you can't change the division of damage. Damage that would've been dealt to illegal targets simply isn't dealt."},{"date":"2013-09-15","text":"Monstrous isn't an ability that a creature has. It's just something true about that creature. If the creature stops being a creature or loses its abilities, it will continue to be monstrous."},{"date":"2013-09-15","text":"Once a creature becomes monstrous, it can't become monstrous again. If the creature is already monstrous when the monstrosity ability resolves, nothing happens."},{"date":"2013-09-15","text":"The value of X in Polukranos's last ability is equal to the value chosen for X when its activated ability was activated."},{"date":"2013-09-15","text":"You choose the division of damage as you put the ability on the stack, not as it resolves. Each target must be assigned at least 1 damage. In multiplayer games, you may choose creatures controlled by different opponents."}],"rarities":["rare","mythic"]},"ponder":{"name":"Ponder","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top three cards of your library, then put them back in any order. You may shuffle.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":3},"destination":"Library","keep_count":null,"up_to":false,"filter":{"type":"Any"},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top three cards of your library, then put them back in any order. You may shuffle.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"02090581-61aa-4348-ad57-451be8ee91c2","metadata":{"source_printing_ids":["20edb8fa-6e26-46f7-a5a8-b4c4c3e75dfa","262285ab-3a6f-4932-b53b-8ab20bcad955","308d4ee7-d188-47e0-b1be-8add6e229356","3c02b8ee-84cb-44cb-ba14-9e725a9d03ee","44dcfc0c-b23d-48be-bf3a-a6fc6806c5e1","5af43ceb-56d2-47d4-ab43-853338ab293c","636c17b3-53f6-4f2e-a6a2-36e851f6d001","7b0d4d01-9044-4b68-8b55-1b27ff0ffa75","81c908ee-e70a-4406-a32d-ab5ab17e67b1","8404f081-2d5f-4433-84cc-77918532eedf","84d02bf4-eefd-4916-ab5a-cc16b3e6a186","8a676db5-9911-4dc6-bcf2-6c5588027b14","8cbab1d1-25cb-456f-8d1c-3d64eb7265ea","91382955-bcfc-4fb6-8cce-dc107e5b4c32","9cee2eb1-f60e-4626-ba4a-b543142ca950","af450adb-23be-4332-a54c-d647a1fd0248","ba6b6fc5-5077-4812-b8e9-906783dbaf67","dc69f960-68ba-4315-8146-6a7a82047503","fb1724cc-8432-4ff8-ac51-b8c4f4914494"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"banned","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["C18","C21","DSC","J21","LRW","M10","M12","MAR","MB2","NCC","OMB","OTC","P08","PEWK","PF25","PLST","PRM","SLC","SLD","SLP","TDC","TSR","WHO"],"rulings":[{"date":"2021-03-19","text":"If you choose to shuffle your library, that includes the three cards you just looked at and put back on top of it."}],"rarities":["common","rare","special"]},"power fist":{"name":"Power Fist","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Equipped creature has trample and \"Whenever this creature deals combat damage to a player, put that many +1/+1 counters on it.\"\nEquip {2}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"sub_ability":null,"duration":null,"description":"Equip {2}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature has trample and \"Whenever ~ deals combat damage to a player, put that many +1/+1 counters on it.\""}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"bdfcf7df-8c06-4abe-af41-eccabb9fc2c8","metadata":{"source_printing_ids":["6171b2a6-0052-4329-9c9f-5c4d7f2c2eba","7ee6b263-c15a-47a3-9546-fc36dbda74b6","9e8f7fbc-bf2a-43c1-a88d-807c1e7dab69","e05c5af9-67ad-4c20-9d5f-91bda19d5809"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rarities":["rare"]},"predatory urge":{"name":"Predatory Urge","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature has \"{T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.\"","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature has \"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.\""}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f6175cca-0e19-4db8-a175-3369fb650f24","metadata":{"source_printing_ids":["18e3e459-992c-4990-8305-fa479c7870ac","d7f8adaa-2852-4e9c-b91d-ce80a21859c9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PC2","PCA","ZEN"],"rulings":[{"date":"2009-10-01","text":"If the enchanted creature’s ability is activated, that creature is the one that will deal and be dealt damage when the ability resolves. It doesn’t matter if Predatory Urge leaves the battlefield or somehow becomes attached to another creature by that time."},{"date":"2009-10-01","text":"If the targeted creature leaves the battlefield (or otherwise becomes an illegal target) before the ability resolves, the ability doesn’t resolve. The enchanted creature isn’t dealt damage."},{"date":"2009-10-01","text":"On the other hand, if the enchanted creature leaves the battlefield before the ability resolves, the ability continues to resolve. The enchanted creature deals damage to the targeted creature equal to the power the enchanted creature had as it last existed on the battlefield."},{"date":"2009-10-01","text":"The controller of the enchanted creature may activate the ability, not the controller of Predatory Urge."},{"date":"2009-10-01","text":"You may have the enchanted creature target itself with its own ability. If you do, it will deal damage to itself equal to its power, then immediately do it again."}],"rarities":["rare"]},"prime speaker zegana":{"name":"Prime Speaker Zegana","mana_cost":{"type":"Cost","shards":["Green","Green","Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Merfolk","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Prime Speaker Zegana enters with X +1/+1 counters on it, where X is the greatest power among other creatures you control.\nWhen Prime Speaker Zegana enters, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Aggregate","function":"Max","property":"Power","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with X +1/+1 counters on it, where X is the greatest power among other creatures you control.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"311e9368-696a-47e7-aa2f-3ef1b1a92e2b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["44974a77-5d36-49a8-b298-69d3721cfff9","4f0a166b-eb00-489d-b4eb-44ec2f0bad32","51d29fb4-72e3-4400-a57b-7e18acfb2909","7b844055-7581-4fbf-a0c9-6c4e9328a83e","d2f007b0-b578-44f8-be65-cd9e2ac56e09","e11f5f45-0f33-416b-a8bd-1e839efa02a9","f30dfb8e-f540-45ab-a4e8-63425099646a","f5cf50cb-0937-403b-a4b6-b6da0732bdcc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["C15","FDN","GTC","LCC","RVR"],"rulings":[{"date":"2024-11-08","text":"If Prime Speaker Zegana enters at the same time as another creature you control, you won't consider that creature when determining the greatest power among creatures you control."},{"date":"2024-11-08","text":"If Prime Speaker Zegana is no longer on the battlefield when its last ability resolves, use its power as it last existed on the battlefield to determine how many cards to draw."},{"date":"2024-11-08","text":"The value of X is calculated only once, as Prime Speaker Zegana's first ability resolves. If you control no other creatures at that time, X is 0."}],"rarities":["rare","mythic"]},"primo, the unbounded":{"name":"Primo, the Unbounded","mana_cost":{"type":"Cost","shards":["X","Green","Green","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Fractal","Wolf"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Trample\nPrimo enters with twice X +1/+1 counters on it.\nWhenever one or more creatures you control with base power 0 deal combat damage to a player, create a 0/0 green and blue Fractal creature token. Put a number of +1/+1 counters on it equal to the damage dealt.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Token","name":"Fractal","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Creature","Fractal"],"colors":["Green","Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"EventContextAmount"}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Base","comparator":"EQ","value":{"type":"Fixed","value":0}}]},"description":"Whenever one or more creatures you control with base power 0 deal combat damage to a player, create a 0/0 green and blue Fractal creature token. Put a number of +1/+1 counters on it equal to the damage dealt.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"CostXPaid"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with twice X +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"65fb0e20-61f8-4c61-bc08-7f6f718ee9ee","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["ad44b516-28bf-5949-b591-ea9cd4767bcd"],"source_printing_ids":["a2d14b99-15e2-4e96-89a2-7e0ee5dc059f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If a creature has a characteristic-defining ability that sets its power and toughness, indicated with a */* or similar in the power and toughness box, that ability is taken into account when determining its base power and toughness."},{"date":"2026-03-20","text":"Normally, a creature's base power and toughness are the power and toughness printed on the card or, for a token, the power and toughness set by the effect that created it. If another effect sets a creature's power and toughness to specific numbers or values, those become its base power and toughness. If an effect modifies a creature's power and/or toughness without setting them, that is not included when determining its base power and toughness."},{"date":"2026-03-20","text":"Some creatures have base power and toughness 0/0 and an ability that gives them a bonus based on some criteria. Those are not characteristic-defining abilities, and that ability doesn't change its base power and toughness."}],"rarities":["mythic"]},"profit":{"name":"Profit","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control get +1/+1 until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures you control get +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"c41e8a99-e4a8-4323-a59d-265266e29fa9","metadata":{"source_printing_ids":["0eb3ce46-ddd2-43b3-9e45-019ae91df686","320e1e05-12b8-4301-8cd7-3ead8046d94a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PIO"],"rulings":[{"date":"2013-04-15","text":"If a player names a card, the player may name either half of a split card, but not both. A split card has the chosen name if one of its two names matches the chosen name."},{"date":"2013-04-15","text":"If you cast a split card with fuse from your hand without paying its mana cost, you can choose to use its fuse ability and cast both halves without paying their mana costs."},{"date":"2013-04-15","text":"If you're casting a split card with fuse from any zone other than your hand, you can't cast both halves. You'll only be able to cast one half or the other."},{"date":"2013-04-15","text":"On the stack, a split spell that hasn't been fused has only that half's characteristics and mana value. The other half is treated as though it didn't exist."},{"date":"2013-04-15","text":"Some split cards with fuse have two halves that are both multicolored. That card is multicolored no matter which half is cast, or if both halves are cast. It's also multicolored while not on the stack."},{"date":"2013-04-15","text":"Some split cards with fuse have two monocolor halves of different colors. If such a card is cast as a fused split spell, the resulting spell is multicolored. If only one half is cast, the spell is the color of that half. While not on the stack, such a card is multicolored."},{"date":"2013-04-15","text":"To cast a fused split spell, pay both of its mana costs. While the spell is on the stack, its mana value is the total amount of mana in both costs."},{"date":"2013-04-15","text":"When a fused split spell resolves, follow the instructions of the left half first, then the instructions on the right half."},{"date":"2013-04-15","text":"When resolving a fused split spell with multiple targets, treat it as you would any spell with multiple targets. If all targets are illegal when the spell tries to resolve, the spell doesn't resolve and none of its effects happen. If at least one target is still legal at that time, the spell resolves, but an illegal target can't perform any actions or have any actions performed on it."},{"date":"2013-04-15","text":"You can choose the same object as the target of each half of a fused split spell, if appropriate."}],"rarities":["uncommon"]},"propaganda":{"name":"Propaganda","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":2},"scaling":{"type":"PerAffectedCreature"},"defended":"Player"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ea9709b6-4c37-4d5a-b04d-cd4c42e4f9dd","metadata":{"source_printing_ids":["01115986-1963-45c6-b706-2faee6c71e8f","0806d4a1-4d2f-454b-b830-5ab58e13a452","16023fe1-f5e7-4ec0-aef2-c34c131b8ff3","1b8aa419-dc96-4cd7-9e6a-c2d071df98d1","3e3f0bcd-0796-494d-bf51-94b33c1671e9","4c7c9072-d14c-442c-a386-bfdc0cbe110d","8fdbe10e-4a5c-43ee-abb5-20a8d5be9727","923c8a2b-dbba-423d-8f86-7c5ec184bfcf","bc0331b2-7a5b-46f5-9698-f185431ca711","c180f9bd-7dd7-4318-8625-2fa674cbc528","e040aaf3-1331-4960-8220-22bb2c2591da","e175bba4-c131-48f4-8e31-16ec07a12e59","e3308ce8-df83-4f8e-b493-39f95b2d0237","e5f293d7-9c2b-41cb-8e3c-dfc1daa6635f","f67dde4d-3df1-480d-a8b8-ab22c768bb12","f74d378d-6a21-474b-a71c-652a1c92b898"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ACR","AFC","C13","C16","C20","CLB","CMD","FIC","M3C","OTC","PLST","PZ1","SLD","TMP","WHO"],"rulings":[{"date":"2004-10-04","text":"If there are multiple attacks in a turn, then you have to pay for each attack."},{"date":"2004-10-04","text":"If there is more than one Propaganda on the battlefield, the cost is cumulative."},{"date":"2004-10-04","text":"Paying this cost is not an instant or any other kind of ability, it is an additional cost on the declaration of the attacker."},{"date":"2004-10-04","text":"The payment is made during the declare attackers step at the same time you are declaring the attacker."}],"rarities":["uncommon","rare"]},"proper burial":{"name":"Proper Burial","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control dies, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e5bf77c2-a9b2-4366-8412-e263160403c1","metadata":{"source_printing_ids":["ae8a4756-d82b-4c6d-b652-5c3722d3edec"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rarities":["rare"]},"protection racket":{"name":"Protection Racket","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, repeat the following process for each opponent in turn order. Reveal the top card of your library. That player may pay life equal to that card's mana value. If they do, exile that card. Otherwise, put it into your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"payer":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, repeat the following process for each opponent in turn order. Reveal the top card of your library. That player may pay life equal to that card's mana value. If they do, exile that card. Otherwise, put it into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4b51edb1-37cc-4993-a8a5-2eb5f79fa191","metadata":{"source_printing_ids":["046c2801-4e94-4e33-9039-9b7d2f409d19","7723cf0b-de49-44f6-a52e-6e339a080457"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NCC","PNCC"],"rarities":["rare"]},"pyretic rebirth":{"name":"Pyretic Rebirth","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target artifact or creature card from your graveyard to your hand. Pyretic Rebirth deals damage equal to that card's mana value to up to one target creature or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target artifact or creature card from your graveyard to your hand. ~ deals damage equal to that card's mana value to up to one target creature or planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a38ace5b-34f5-4105-b6ee-dedb86037729","metadata":{"source_printing_ids":["5968f641-48b5-4b97-8072-ddd8073cd4d7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"If the target card in your graveyard is an illegal target when Pyretic Rebirth tries to resolve, no damage will be dealt."},{"date":"2024-06-07","text":"If the target creature or planeswalker is an illegal target when Pyretic Rebirth tries to resolve, you'll still return the target artifact or creature card from your graveyard to your hand."}],"rarities":["uncommon"]},"pyrotechnic performer":{"name":"Pyrotechnic Performer","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard","Assassin"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Disguise {R} (You may cast this card face down for {3} as a 2/2 creature with ward {2}. Turn it face up any time for its disguise cost.)\nWhenever this creature or another creature you control is turned face up, that creature deals damage equal to its power to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Disguise":{"type":"Cost","shards":["Red"],"generic":0}}],"abilities":[],"triggers":[{"mode":"TurnFaceUp","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control is turned face up, that creature deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"78f9ec0f-6015-4024-aca6-9a14cba373fa","metadata":{"source_printing_ids":["0fa5671b-2651-4944-a50a-c768ec70229e","348027a1-1fb4-4473-b77e-b961e00a22b7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM","PMKM"],"rulings":[{"date":"2024-02-02","text":"A disguise ability lets you cast a card face down by paying {3} and announcing that you are using a disguise ability. Any time you have priority, you can turn a face-down permanent with disguise face up by paying its disguise cost."},{"date":"2024-02-02","text":"A permanent that turns face up or face down changes characteristics but is otherwise the same permanent. Spells and abilities that were targeting that permanent and Auras and Equipment that were attached to that permanent aren't affected unless the new characteristics of the object change the legality of those targets or attachments."},{"date":"2024-02-02","text":"Any time you have priority, you may turn the face-down creature face up by revealing what its disguise cost is and paying that cost. This is a special action. It doesn't use the stack and can't be responded to. Only a face-down permanent can be turned face up this way; a face-down spell cannot."},{"date":"2024-02-02","text":"At any time, you can look at a face-down spell or permanent you control. You can't look at face-down permanents or spells you don't control unless an effect instructs or allows you to do so."},{"date":"2024-02-02","text":"Because face-down creatures don't have a name, they can't have the same name as any other creature, even another face-down creature."},{"date":"2024-02-02","text":"Because the permanent is on the battlefield both before and after it's turned face up, turning a permanent face up doesn't cause any enters-the-battlefield abilities to trigger."},{"date":"2024-02-02","text":"If a creature that is turned face up leaves the battlefield before Pyrotechnic Performer's triggered ability resolves, use that creature's power as it last existed on the battlefield to determine how much damage it deals."},{"date":"2024-02-02","text":"If a face-down creature loses its abilities, it can't be turned face up with a disguise ability because it will no longer have a disguise ability (or a disguise cost) once face up."},{"date":"2024-02-02","text":"If a face-down spell leaves the stack and goes to any zone other than the battlefield (if it was countered, for example), you must reveal it. Similarly, if a face-down permanent leaves the battlefield, you must reveal it. You must also reveal all face-down spells and permanents you control if you leave the game or the game ends."},{"date":"2024-02-02","text":"The creature spell is a 2/2 creature spell with ward {2} that has no name, mana cost, or creature types. The resulting creature is a 2/2 creature with ward {2} that has no name, mana cost, or creature types. Both the spell and the resulting creature are colorless and have a mana value of 0. Other effects that apply to the spell or creature can still grant it any characteristics it doesn't have or change the characteristics it does have."},{"date":"2024-02-02","text":"The face-down spell has no mana cost and a mana value of 0. When you cast a face-down spell, put it on the stack face down so no other player knows what it is, and pay {3} to cast it. This is an alternative cost."},{"date":"2024-02-02","text":"Turning a permanent face up or face down doesn't change whether that permanent is tapped or untapped."},{"date":"2024-02-02","text":"You must ensure that your face-down spells and permanents can be easily differentiated from each other. You're not allowed to mix up the cards that represent them on the battlefield to confuse other players. The order in which they entered the battlefield should remain clear, as well as what ability caused them to be face down. (This includes disguise, cloak, and in games involving older cards, morph and manifest, as well as a few other effects that turn cards face down.) Common methods for doing this include using markers or dice, or simply placing them in order on the battlefield."}],"rarities":["rare"]},"queen's bay paladin":{"name":"Queen's Bay Paladin","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Knight"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature enters or attacks, return up to one target Vampire card from your graveyard to the battlefield with a finality counter on it. You lose life equal to its mana value. (If a creature with a finality counter on it would die, exile it instead.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["finality",{"type":"Fixed","value":1}]]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, return up to one target Vampire card from your graveyard to the battlefield with a finality counter on it. You lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"60b18d94-8ae5-4508-b4db-18f92c2d39fd","metadata":{"source_printing_ids":["a40cdb01-d303-438c-9c87-ca334ac68582","d0a3339d-6067-4af5-9536-7e2d5ddd8918"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rulings":[{"date":"2023-11-10","text":"Finality counters aren't keyword counters, and a finality counter doesn't give any abilities to the permanent it's on. If that permanent loses its abilities and then would go to a graveyard, it will still be exiled instead."},{"date":"2023-11-10","text":"Finality counters don't stop permanents from going to zones other than the graveyard from the battlefield. For example, if a permanent with a finality counter on it would be put into its owner's hand from the battlefield, it does so normally."},{"date":"2023-11-10","text":"Finality counters work on any permanent, not only creatures. If a permanent with a finality counter on it would be put into a graveyard from the battlefield, exile it instead."},{"date":"2023-11-10","text":"Multiple finality counters on a single permanent are redundant."}],"rarities":["rare"]},"questing beast":{"name":"Questing Beast","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance, deathtouch, haste\nQuesting Beast can't be blocked by creatures with power 2 or less.\nCombat damage that would be dealt by creatures you control can't be prevented.\nWhenever Questing Beast deals combat damage to an opponent, it deals that much damage to target planeswalker that player controls.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch","Haste","Vigilance"],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"DamagePreventionDisabled","source":0,"expiry":{"type":"EndOfTurn"},"scope":{"type":"SourcesControlledBy","data":0}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Planeswalker"],"controller":"TargetPlayer","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to an opponent, it deals that much damage to target planeswalker that player controls.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 2 or less."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b685757b-521e-4353-a233-97052359723d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["5357e802-2d25-48d3-a188-101c142787b7","de1c717a-ede7-4f6d-b9a9-da6cf0fd3d5d","e41cf82d-3213-47ce-a015-6e51a8b07e4f","f22676dc-9c00-4fe6-aa39-1fd801ad7102"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ELD","PELD","PLST","SLC","SLD"],"rulings":[{"date":"2019-10-04","text":"If the opponent dealt damage controls no planeswalkers, Questing Beast's last ability simply does nothing."},{"date":"2019-10-04","text":"Once a creature with power 3 or greater has blocked this creature, changing the power of the blocking creature won't cause this creature to become unblocked."},{"date":"2019-10-04","text":"Questing Beast only stops combat damage from being prevented by effects that specifically use the word “prevent.”"},{"date":"2019-10-04","text":"The damage Questing Beast deals to the target planeswalker as its last ability resolves isn't combat damage."}],"rarities":["mythic"]},"quirion ranger":{"name":"Quirion Ranger","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Ranger"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Return a Forest you control to its owner's hand: Untap target creature. Activate only once each turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Untap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"ReturnToHand","count":1,"filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]}},"sub_ability":null,"duration":null,"description":"Return a Forest you control to its owner's hand: Untap target creature. Activate only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3ecaefc8-ead2-47a3-a7ea-b030faab65a7","metadata":{"source_printing_ids":["11da032d-1cd5-48ed-ace7-fc042c4859e8","2a68656e-799d-414b-be27-4b25bd2bd468","320fdf89-e158-41c5-b0bf-fee9dec36a75","56efe72c-6d7f-44f6-ac74-01af9305c4b6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["F01","MH2","PLST","PRM","VIS","WC97"],"rulings":[{"date":"2021-06-18","text":"Returning the Forest you control to its owner's hand is the cost to activate the ability. Once you activate the ability, no one can try to do anything to the Forest to stop you from activating the ability."},{"date":"2021-06-18","text":"You can target any creature with Quirion Ranger's ability, not just a tapped creature."},{"date":"2021-06-18","text":"You may return any land you control with the subtype Forest. It doesn't have to be one named Forest."}],"rarities":["common","uncommon"]},"rabid gnaw":{"name":"Rabid Gnaw","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. Then it deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. Then it deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"077ae62d-ed94-4365-a8b7-97fd99cff028","metadata":{"source_printing_ids":["2f815bae-820a-49f6-8eed-46f658e7b6ff"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB"],"rulings":[{"date":"2024-07-26","text":"If the creature you control is a legal target but the creature you don’t control isn’t as Rabid Gnaw resolves, the creature you control will get +1/+0 until end of turn, but no damage will be dealt. If instead the creature you control is an illegal target but the creature you don’t control is still a legal target, nothing will happen when Rabid Gnaw resolves."}],"rarities":["uncommon"]},"ragavan, nimble pilferer":{"name":"Ragavan, Nimble Pilferer","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Monkey","Pirate"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever Ragavan deals combat damage to a player, create a Treasure token and exile the top card of that player's library. Until end of turn, you may cast that card.\nDash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Dash":{"type":"Cost","shards":["Red"],"generic":1}}],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"TriggeringPlayer"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, create a Treasure token and exile the top card of that player's library. Until end of turn, you may cast that card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"37108cd4-bbab-4ce3-9ed6-f60e8422e703","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["4873fe20-675e-5db5-b9ba-8d996c2806ba","74d281e4-6c2a-53c2-b0ea-253ef143d22c","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85"],"source_printing_ids":["3a29b9b5-8c15-4058-a7d2-db7297635364","8d27e717-8bda-44dc-90b9-a6f7029c7b93","a9738cda-adb1-47fb-9f4c-ecd930228c4d","b3e685f9-cc0f-4dc6-98dc-4727944de445","e90f19e0-2461-4233-80ef-dd9c582726a2","fae3bf4a-a732-48aa-a1a4-7e5fd007774c","fc898fec-4cc6-4587-b556-c5a8d38ccbd0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"banned","legacy":"banned","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","H2R","MH2","MUL","PMH2","PRM","SLP"],"rulings":[{"date":"2021-06-18","text":"If a creature enters the battlefield as a copy of or becomes a copy of a creature whose dash cost was paid, the copy won't have haste and won't be returned to its owner's hand."},{"date":"2021-06-18","text":"If you choose to pay the dash cost rather than the mana cost, you're still casting the spell. It goes on the stack and can be responded to and countered. You can cast a creature spell for its dash cost only when you otherwise could cast that creature spell. Most of the time, this means during your main phase when the stack is empty."},{"date":"2021-06-18","text":"If you pay the dash cost to cast a creature spell, that card will be returned to its owner's hand only if it's still on the battlefield when its triggered ability resolves. If it dies or goes to another zone before then, it will stay where it is."},{"date":"2021-06-18","text":"You don't have to attack with the creature with dash unless another ability says you do."},{"date":"2021-06-18","text":"You must still follow all timing restrictions and pay all costs when casting the exiled card. If you exile a land card, you can't play that card."},{"date":"2021-06-18","text":"You'll create a Treasure token even if that player has no cards left in their library to exile."}],"rarities":["mythic"]},"rage extractor":{"name":"Rage Extractor","mana_cost":{"type":"Cost","shards":["PhyrexianRed"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({R/P} can be paid with either {R} or 2 life.)\nWhenever you cast a spell with {H} in its mana cost, this artifact deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell with {H} in its mana cost, ~ deals damage equal to that spell's mana value to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e45f0a12-e1ca-432f-a208-9359dd18513d","metadata":{"source_printing_ids":["d8cebc2c-a46b-4459-b62b-7fce1a744b11"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"A card with Phyrexian mana symbols in its mana cost is each color that appears in that mana cost, regardless of how that cost may have been paid."},{"date":"2011-06-01","text":"As you cast a spell or activate an activated ability with one or more Phyrexian mana symbols in its cost, you choose how to pay for each Phyrexian mana symbol at the same time you would choose modes or choose a value for X."},{"date":"2011-06-01","text":"If you're at 1 life or less, you can't pay 2 life."},{"date":"2011-06-01","text":"Phyrexian mana is not a new color. Players can't produce Phyrexian mana."},{"date":"2011-06-01","text":"Rage Extractor's ability checks for any spell you cast with any Phyrexian mana symbol in its mana cost, regardless of that symbol's color or how the cost was paid."},{"date":"2011-06-01","text":"To calculate the mana value of a card with Phyrexian mana symbols in its cost, count each Phyrexian mana symbol as 1."}],"rarities":["uncommon"]},"rakdos joins up":{"name":"Rakdos Joins Up","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When Rakdos Joins Up enters, return target creature card from your graveyard to the battlefield with two additional +1/+1 counters on it.\nWhenever a legendary creature you control dies, Rakdos Joins Up deals damage equal to that creature's power to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Fixed","value":2}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield with two additional +1/+1 counters on it.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a legendary creature you control dies, ~ deals damage equal to that creature's power to target opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"6a47865c-8fa2-4cb2-aebf-8009c065395f","metadata":{"source_printing_ids":["761a743a-6358-4e08-a6b7-6eaaf7ab9ddc","c7154dca-7e10-4c34-aa56-9f200c6277d1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Use the power of the legendary creature as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"rancor":{"name":"Rancor","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature gets +2/+0 and has trample.\nWhen this Aura is put into a graveyard from the battlefield, return it to its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"ParentTarget"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from the battlefield, return it to its owner's hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +2/+0 and has trample."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9d2d6479-531c-4ce1-b52b-00e36fa63b64","metadata":{"source_printing_ids":["1d86ea97-0d7a-42ee-9d46-1c0dd10474c7","26ddcdcc-28eb-43ce-b912-499c735491b8","38e281ab-3437-4a2c-a668-9a148bc3eaf7","4073ecc9-5d3a-452f-b708-0572fa27a6f0","59e256c2-38df-4012-9308-ce17dd889e5f","62d0d6a4-783f-4ec3-99c5-6c21aefdb997","6e3e20db-94d2-47eb-ab21-c8159e42f677","86118251-416c-4fe8-a0bd-d3e61079655b","86d6b411-4a31-4bfc-8dd6-e19f553bb29b","8a4d8527-af29-408d-a3a3-6781db0cf439","a13768a2-caa3-4489-b1e2-ba5f0e104931","abd96a99-c3a0-4923-80a1-51d26fc8bb91","b982558f-5b82-4918-9b54-c7ac1e6f8da5","c45de3ce-c2d5-47ac-8e9e-c6b24dd6047c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2X2","A25","AFC","ARC","DDD","E02","EMA","F05","GVL","M13","PC2","PCA","PIP","PLST","PRM","PZ1","ULG","WC99"],"rulings":[{"date":"2018-03-16","text":"If the creature this Aura would enchant is an illegal target by the time Rancor tries to resolve, the Aura spell doesn't resolve. It won't enter the battlefield, so it won't be put into a graveyard from the battlefield and its ability won't trigger."}],"rarities":["common","uncommon"]},"ranging raptors":{"name":"Ranging Raptors","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enrage — Whenever this creature is dealt damage, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2a86b70b-34ca-45df-8aa1-c3fb2da72dc3","metadata":{"source_printing_ids":["08df7e63-65d6-4e42-8699-7510453d3100","7d4f04bc-30ee-4948-9905-774f532ac811","9e91efc6-0e6a-4a9e-a486-adf53e53d3f1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GN2","LCC","XLN"],"rulings":[{"date":"2018-01-19","text":"If lethal damage is dealt to a creature with an enrage ability, that ability triggers. The creature with that enrage ability leaves the battlefield before that ability resolves, so it won't be affected by the resolving ability."},{"date":"2018-01-19","text":"If multiple sources deal damage to a creature with an enrage ability at the same time, most likely because multiple creatures blocked that creature, the enrage ability triggers only once."}],"rarities":["uncommon"]},"rapacious guest":{"name":"Rapacious Guest","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Halfling","Citizen"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever one or more creatures you control deal combat damage to a player, create a Food token.\nWhenever you sacrifice a Food, put a +1/+1 counter on this creature.\nWhen this creature leaves the battlefield, target opponent loses life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, create a Food token.","constraint":null,"condition":null,"batched":false},{"mode":"Sacrificed","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Food"}],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you sacrifice a Food, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, target opponent loses life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"54accd4a-b471-4ae5-b3b2-a5cec44023b7","metadata":{"related_token_ids":["f6e24d97-b7f8-5da8-ab97-978ecbecb85e"],"source_printing_ids":["685c72fb-ebb8-4474-bd73-bcbbbc38c496","ea0c8ff8-9d4d-4c17-a5ed-3e1ab9f3d849","ff9dfba4-07d2-4407-a441-88acc7284d43"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"Rapacious Guest's third ability triggers whenever you sacrifice a Food for any reason, not just to activate a Food's activated ability."},{"date":"2023-06-16","text":"To determine the amount of life the target opponent loses from Rapacious Guest's last ability, use Rapacious Guest's power as it last existed on the battlefield, not its power in the graveyard."},{"date":"2024-11-08","text":"Food is an artifact type. Even though it appears on some creatures, it's never a creature type."},{"date":"2024-11-08","text":"If an effect refers to a Food, it means any Food artifact, not just a Food artifact token. For example, you can sacrifice Tough Cookie (an Artifact Creature — Food Golem) to activate Maraleaf Rider's ability (an ability with \"Sacrifice a Food\" in its cost)."},{"date":"2024-11-08","text":"Whatever you do, don't eat the delicious cards."},{"date":"2024-11-08","text":"You can't sacrifice a Food to pay multiple costs. For example, you can't sacrifice a Food token to activate its own ability and also to activate Maraleaf Rider's ability."}],"rarities":["rare"]},"rashida scalebane":{"name":"Rashida Scalebane","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{T}: Destroy target attacking or blocking Dragon. It can't be regenerated. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Blocking"}]}]},"cant_regenerate":true},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Destroy target attacking or blocking Dragon. It can't be regenerated. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"4aff0f09-0607-41b7-8f60-4ef35ff6183e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["ebb48053-da60-477a-b1eb-a9ab9ea682af"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["rare"]},"ratcatcher trainee":{"name":"Ratcatcher Trainee","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Peasant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"During your turn, this creature has first strike.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"FirstStrike"}],"condition":{"type":"DuringYourTurn"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, ~ has first strike."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ecc91e38-90fa-4d89-b262-d5f36dce5be4","metadata":{"related_token_ids":["2ff9f472-d654-56b6-bba6-cb501a09ad5d"],"source_printing_ids":["7f4c0959-a107-4d61-9e51-256b2955f6ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["WOE"],"rulings":[{"date":"2023-09-01","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it’s in your graveyard, Questing Druid is a green creature card whose mana value is 2. It can’t be the target of Tenacious Tomeseeker’s triggered ability (“return target instant or sorcery card from your graveyard to your hand”)."},{"date":"2023-09-01","text":"An effect may refer to a card, spell, or permanent that “has an Adventure.” This refers to a card, spell, or permanent that has an adventurer card’s set of alternative characteristics, even if they’re not being used and even if that card was never cast as an Adventure."},{"date":"2023-09-01","text":"Casting a card as an Adventure isn’t casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2023-09-01","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner’s graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won’t be exiled and the spell’s controller won’t be able to cast it as a permanent later."},{"date":"2023-09-01","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won’t give you permission to cast it as a permanent spell."},{"date":"2023-09-01","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it’s not possible to cast the copy as a permanent."},{"date":"2023-09-01","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2023-09-01","text":"If an effect refers to a card, spell, or permanent that has an Adventure, it won’t find an instant or sorcery spell on the stack that’s been cast as an Adventure."},{"date":"2023-09-01","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it’s a token) or cease to be a copy (if it’s a nontoken permanent), and so you won’t be able to cast it as an Adventure."},{"date":"2023-09-01","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it’s legal to cast that spell. For example, if you control Johann, Apprentice Sorcerer (“Once each turn, you may cast an instant or sorcery spell from the top of your library.”) and Questing Druid is on top of your library, you can cast Seek the Beast, but not Questing Druid."},{"date":"2023-09-01","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card’s normal characteristics. The spell’s color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2023-09-01","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you’ll be able to cast it only during your main phase while the stack is empty."}],"rarities":["common"]},"ravenous gigantotherium":{"name":"Ravenous Gigantotherium","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Devour 3 (As this creature enters, you may sacrifice any number of creatures. It enters with three times that many +1/+1 counters on it.)\nWhen this creature enters, it deals X damage divided as you choose among up to X target creatures, where X is its power. Each of those creatures deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Devour":3}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}}},"distribute":{"type":"Damage"},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals X damage divided as you choose among up to X target creatures, where X is its power. Each of those creatures deals damage equal to its power to ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":3,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.82a: Devour 3 — sacrifice any number of creatures; this permanent enters with 3 +1/+1 counters per creature sacrificed.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"CR 702.82a + CR 614.1c: Devour 3 — as this creature enters, you may sacrifice any number of creatures; it enters with 3 +1/+1 counters for each creature sacrificed this way.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"022624eb-c9d7-4110-bcc3-465c8d48fcd7","metadata":{"source_printing_ids":["ca260253-40b8-4846-9e41-4e9cfc56d691"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C20"],"rulings":[{"date":"2020-04-17","text":"If some of the targets become illegal for Ravenous Gigantotherium's ability, the original division of damage still applies, but the damage that would have been dealt to illegal targets isn't dealt at all."},{"date":"2020-04-17","text":"Ravenous Gigantotherium can't devour creatures entering the battlefield at the same time as it."},{"date":"2020-04-17","text":"Static abilities, such as that of Glorious Anthem, modify Ravenous Gigantotherium's power before its triggered ability is put onto the stack. Spells, activated abilities, and triggered abilities can't raise its power in time to change the value of X."},{"date":"2020-04-17","text":"The creatures targeted by Ravenous Gigantotherium's ability deal damage back to Ravenous Gigantotherium before dying if they're dealt lethal damage."},{"date":"2020-04-17","text":"The value of X is locked in as you divide the damage while putting Ravenous Gigantotherium's ability onto the stack. Changing Ravenous Gigantotherium's power after that time won't change how much damage is dealt."},{"date":"2020-04-17","text":"You divide the damage as Ravenous Gigantotherium's triggered ability is put onto the stack, not as it resolves. Each target must be assigned at least 1 damage. You can't choose more than X targets and assign 0 damage to a target."},{"date":"2020-04-17","text":"You may choose zero targets. If you do, Ravenous Gigantotherium deals no damage and is dealt no damage."}],"rarities":["rare"]},"razor hippogriff":{"name":"Razor Hippogriff","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Hippogriff"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, return target artifact card from your graveyard to your hand. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target artifact card from your graveyard to your hand. You gain life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d121108e-f0bc-469b-bf94-e5e5308014a2","metadata":{"source_printing_ids":["fc7ac3bf-eed2-417d-8b60-e8c84bfb98ab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","SOM"],"rulings":[{"date":"2011-01-01","text":"If the artifact card in your graveyard is an illegal target by the time the ability resolves, the ability won’t resolve. You won’t gain any life."},{"date":"2011-01-01","text":"If the mana cost of the targeted card includes {X}, X is considered to be 0."}],"rarities":["uncommon"]},"reanimate":{"name":"Reanimate","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a044474a-cd72-4e9d-bd8d-a08f2de9cdc0","metadata":{"source_printing_ids":["04fc99dc-bfbe-4567-b791-6b1db96471ec","1d12804c-dda0-4dae-9eb8-f670e72c17e7","33961d8a-e2a3-4eee-9ff4-11455f262c66","368b6903-5fc4-43e7-bd44-46b8107c8bb4","487b76e9-999b-432d-9e7a-bf64e68d98b5","58838b71-404f-41ad-9a9b-2c7f875bab06","609c34f9-9f53-4773-a02b-517209024fc2","652271a0-80e8-4b9b-8823-26c1528378fc","7d0fe02b-f45a-45c6-ab7c-270594a29da7","8b1e10e8-ea14-4761-910b-4072e2a18456","ae1ef31c-8ca5-444c-8f39-e1d1827318f5","d27c6aaa-289e-451e-8fde-97a044c53fc4","e2f1fea1-f008-4bf9-93ae-869ac60aa55c","eee48ed0-3965-4bcc-8eee-bcd8f1607808"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"banned","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["ARC","BRB","CC2","DSC","F04","FIC","JMP","LTC","MAR","MKC","OMB","OTP","PD3","PLST","PRM","PUMA","TMP","TPR","UMA","VMA"],"rulings":[{"date":"2025-09-19","text":"If a card in a graveyard has {X} in its mana cost, X is 0."},{"date":"2025-09-19","text":"If any abilities trigger on the creature entering the battlefield, those abilities resolve after you lose life. If losing life results in you losing the game, those abilities won't resolve."},{"date":"2025-09-19","text":"In a multiplayer game, if a player leaves the game, all cards that player owns leave as well. If you leave the game, the creature you control from Reanimate is exiled."},{"date":"2025-09-19","text":"The amount of life you lose is determined by the mana value of the card in your graveyard, not the creature once it's on the battlefield."},{"date":"2025-09-19","text":"You lose life after the creature is already on the battlefield. Any abilities it has that interact with loss of life, such as that of Platinum Emperion, apply to that loss of life."}],"rarities":["uncommon","rare"]},"reanimate [6cb8b8c4-0674-4f14-9d89-010969fbb80e]":{"name":"Reanimate","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6cb8b8c4-0674-4f14-9d89-010969fbb80e","metadata":{"source_printing_ids":["04fc99dc-bfbe-4567-b791-6b1db96471ec","1d12804c-dda0-4dae-9eb8-f670e72c17e7","33961d8a-e2a3-4eee-9ff4-11455f262c66","368b6903-5fc4-43e7-bd44-46b8107c8bb4","487b76e9-999b-432d-9e7a-bf64e68d98b5","58838b71-404f-41ad-9a9b-2c7f875bab06","609c34f9-9f53-4773-a02b-517209024fc2","652271a0-80e8-4b9b-8823-26c1528378fc","7d0fe02b-f45a-45c6-ab7c-270594a29da7","8b1e10e8-ea14-4761-910b-4072e2a18456","ae1ef31c-8ca5-444c-8f39-e1d1827318f5","d27c6aaa-289e-451e-8fde-97a044c53fc4","e2f1fea1-f008-4bf9-93ae-869ac60aa55c","eee48ed0-3965-4bcc-8eee-bcd8f1607808"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["uncommon","rare"]},"reflection of kiki-jiki":{"name":"Reflection of Kiki-Jiki","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control, except it has haste. Sacrifice it at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"},{"type":"Another"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"extra_keywords":["Haste"]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control, except it has haste. Sacrifice it at the beginning of the next end step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red"],"color_identity":["Red"],"scryfall_oracle_id":"c0957e5e-c71b-439c-931c-9f55d2f76ace","metadata":{"related_token_ids":["54edcc8d-dc97-5a6e-b42b-00d63b81e738","ebb9c0a4-c359-58de-b739-03fddd775dfa","fe4dffe8-dc27-5c0d-aaa3-589a15e78f55"],"source_printing_ids":["0b696cd1-0d72-4df5-bacc-dc77e62f9a13","24c0d87b-0049-4beb-b9cb-6f813b7aa7dc","6dee0388-a78d-4b3c-a0c5-25655e14115e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["NEO","PNEO","PRM","SCH"],"rarities":["rare"]},"refurbished familiar":{"name":"Refurbished Familiar","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Zombie","Rat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nFlying\nWhen this creature enters, each opponent discards a card. For each opponent who can't, you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Affinity":{"type_filters":["Artifact"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent discards a card. For each opponent who can't, you draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"009e1638-9055-4872-93e1-85841bce4648","metadata":{"source_printing_ids":["b338e078-629c-4cac-bd1d-e1f0a132728d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"When Refurbished Familiar's last ability resolves, the next opponent in turn order (or, if it's an opponent's turn, that opponent) chooses a card in hand without revealing it, then each other opponent in turn order (if any) does the same. All chosen cards are then discarded at the same time."}],"rarities":["common"]},"refuse":{"name":"Refuse","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Refuse deals damage to target spell's controller equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage to target spell's controller equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"7db22241-fe43-4071-9af9-de1cf394f7f5","metadata":{"source_printing_ids":["054b07d8-99ae-430b-8e54-f9601fa572e7","ca4caa4e-6b8f-4be8-b177-de2ebe2c9201","eb6b2fc9-1bb7-4142-a7d4-644a7bba1100"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","C19","HOU","PHOU"],"rulings":[{"date":"2017-04-18","text":"A spell with aftermath cast from a graveyard will always be exiled afterward, whether it resolves, it's countered, or it leaves the stack in some other way."},{"date":"2017-04-18","text":"All split cards have two card faces on a single card, and you put a split card onto the stack with only the half you're casting. The characteristics of the half of the card you didn't cast are ignored while the spell is on the stack. For example, if an effect prevents you from casting green spells, you can cast Destined of Destined // Lead, but not Lead."},{"date":"2017-04-18","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one, but not both."},{"date":"2017-04-18","text":"Each split card is a single card. For example, if you discard one, you've discarded one card, not two. If an effect counts the number of instant and sorcery cards in your graveyard, Destined // Lead counts once, not twice."},{"date":"2017-04-18","text":"If another effect allows you to cast a split card with aftermath from a graveyard, you may cast either half. If you cast the half that has aftermath, you'll exile the card if it would leave the stack."},{"date":"2017-04-18","text":"If another effect allows you to cast a split card with aftermath from any zone other than a graveyard, you can't cast the half with aftermath."},{"date":"2017-04-18","text":"If you cast the first half of a split card with aftermath during your turn, you'll have priority immediately after it resolves. You can cast the half with aftermath from your graveyard before any player can take any other action if it's legal for you to do so."},{"date":"2017-04-18","text":"Split cards with aftermath have a new frame treatment—the half you can cast from your hand is oriented the same as other cards you'd cast from your hand, while the half you can cast from your graveyard is a traditional split card half. This frame treatment is for your convenience and has no rules significance."},{"date":"2017-04-18","text":"While not on the stack, the characteristics of a split card are the combination of its two halves. For example, Destined // Lead is a green and black card, it is both an instant card and a sorcery card, and its mana value is 6. This means that if an effect allows you to cast a card with mana value 2 from your hand, you can't cast Destined. This is a change from the previous rules for split cards."},{"date":"2017-07-14","text":"Cooperate can copy any instant or sorcery spell, not just one with targets."},{"date":"2017-07-14","text":"If a spell has {X} in its mana cost, include the value chosen for that X when determining the mana value of that spell."},{"date":"2017-07-14","text":"If the spell has damage divided as it was cast (like Chandra's Pyrohelix), the division can't be changed (although the targets receiving that damage still can)."},{"date":"2017-07-14","text":"If the spell that's copied has an X whose value was determined as it was cast (like Torment of Hailfire does), the copy will have the same value of X."},{"date":"2017-07-14","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode. A different mode can't be chosen."},{"date":"2017-07-14","text":"If you copy a spell, you control the copy. It will resolve before the original spell does."},{"date":"2017-07-14","text":"Once you've started to cast a spell with aftermath from your graveyard, the card is immediately moved to the stack. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"The controller of a copy can't choose to pay any alternative or additional costs for the copy. However, effects based on any alternative or additional costs that were paid for the original spell are copied as though those same costs were paid for the copy."},{"date":"2017-07-14","text":"The copy is created on the stack, so it's not \"cast.\" Abilities that trigger when a player casts a spell won't trigger."},{"date":"2017-07-14","text":"The copy will have the same targets as the spell it's copying unless you choose new ones. You may change any number of the targets, including all of them or none of them. If, for one of the targets, you can't choose a new legal target, then it remains unchanged (even if the current target is illegal)."}],"rarities":["rare"]},"rest in peace":{"name":"Rest in Peace","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, exile all graveyards.\nIf a card or token would be put into a graveyard from anywhere, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile all graveyards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a card or token would be put into a graveyard from anywhere, exile it instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"087f9ad7-e74f-40e2-8102-1ed2925d0418","metadata":{"source_printing_ids":["37c2b1d1-faa0-40fd-82f4-216604ce7635","3a52b1bc-cf29-49bd-a877-03a21fe8a6c5","4ac99506-a891-4d5d-8747-23aa29004b02","7f9bf9e0-cb43-411c-a955-dc8e2f331e2d","9008f826-9e24-4ba1-b17e-1638b7cdd78d","9648392a-78a2-4ae5-a218-cfd2bcd9bc5d","98040e14-8182-4a94-9322-bbd967dc4dfe","9f2b39be-0fec-4647-ade1-8e1626dc5470","ab6ef698-caad-47cd-ba35-41be64a58c99","ba5115e9-02cb-47f2-944b-514a126430ba","cda8edb5-f42d-46a4-8469-a121222c7e75","d108c2b1-236e-4b8d-8445-d9749ccc4fea","e8baa00b-b27b-4e97-b834-61e54b0ba154"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","ACR","AKR","BIG","MAR","MB2","OMB","PLST","PRM","RTR","RVR","SLD","SS2","WOT"],"rulings":[{"date":"2018-03-16","text":"If Rest in Peace is destroyed by a spell, Rest in Peace will be exiled and then the spell will be put into its owner's graveyard."},{"date":"2018-03-16","text":"If a card is discarded while Rest in Peace is on the battlefield, abilities that function when a card is discarded (such as madness) still work, even though that card never reaches a graveyard. In addition, spells or abilities that check the characteristics of a discarded card (such as Chandra Ablaze's first ability) can find that card in exile."},{"date":"2018-03-16","text":"While Rest in Peace is on the battlefield, abilities that trigger whenever a creature dies won't trigger because cards and tokens are never put into a player's graveyard."}],"rarities":["rare","mythic"]},"reviving vapors":{"name":"Reviving Vapors","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's mana value. Put all other cards revealed this way into your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":3},"destination":"Hand","keep_count":1,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":true,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Graveyard","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Another"}]}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's mana value. Put all other cards revealed this way into your graveyard.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"57104a79-cfb6-4330-8ea1-7726534ada56","metadata":{"source_printing_ids":["47a23c32-e122-400b-b252-e636ea2e684b","7abcabef-ba25-4c57-888c-07a53d9b7007","b7a6c902-4705-4210-8e5e-08d6a6f67573"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["INV","UMA","VMA"],"rulings":[{"date":"2018-12-07","text":"If a card in a player’s library has {X} in its mana cost, X is considered to be 0."}],"rarities":["uncommon"]},"reyhan, last of the abzan":{"name":"Reyhan, Last of the Abzan","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Reyhan enters with three +1/+1 counters on it.\nWhenever a creature you control dies or is put into the command zone, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.","constraint":null,"condition":null,"batched":false},{"mode":{"Unknown":"Whenever a creature you control is put into the command zone"},"execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control is put into the command zone, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with three +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"3e7df01c-75af-440d-97fd-1b1b794281b9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0a34158d-9925-4de8-b862-d1cc06bbae60","564e116b-4ef0-40a7-bd05-59a667373e43","8afad106-a49b-4910-959e-228c109ea983"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","CM2","CMR","PRM","PZ2"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If enough -1/-1 counters are put on a creature at the same time to make its toughness 0 or less, the number of +1/+1 counters on it before it got any -1/-1 counters will be used to determine how many counters you put on target creature. For example, if there are three +1/+1 counters on Reyhan and it gets six -1/-1 counters, the target creature gets three +1/+1 counters."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["rare","mythic"]},"riddle of lightning":{"name":"Riddle of Lightning","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's mana value to that permanent or player.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Scry 3, then reveal the top card of your library. ~ deals damage equal to that card's mana value to that permanent or player.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ea480035-9f1b-40c9-a3a5-ce7cd093dfcf","metadata":{"source_printing_ids":["2e14f36e-54b8-4019-bc85-0d9218c52ad2","338be9e2-c0b8-4b69-b7b6-6ba9927a3a4d","3e380151-abb6-457c-bac9-39f1a3744ed0","98f4250b-4493-4054-b0b2-465f76f0c2f0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["FUT","JMP","JOU","TSR"],"rulings":[{"date":"2021-03-19","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2021-03-19","text":"If the chosen target is an illegal target by the time Riddle of Lightning tries to resolve, the spell doesn't resolve. You don't scry 3 or reveal any card."}],"rarities":["common","uncommon"]},"righteous valkyrie":{"name":"Righteous Valkyrie","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever another Angel or Cleric you control enters, you gain life equal to that creature's toughness.\nAs long as you have at least 7 life more than your starting life total, creatures you control get +2/+2.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[{"type":"Another"}]},{"type":"Typed","type_filters":[{"Subtype":"Cleric"}],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Angel or Cleric you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":2}],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeAboveStarting"}},"comparator":"GE","rhs":{"type":"Fixed","value":7}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as you have at least 7 life more than your starting life total, creatures you control get +2/+2."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"891d2690-7144-4f87-b6ef-96f2469780a9","metadata":{"source_printing_ids":["02fb5f9f-8750-4eb5-a03a-6dacc60e0b90","7e01a5ab-13ae-41a4-a196-d8bb2317d674","b5e8e2a9-8dcb-40dd-8079-6c8484c3b157","c0ff8c9f-a865-4570-8bd3-8229a18e5c99","de21677c-53d1-4054-a5de-abe34ce85754"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","KHM","PKHM","PLST","PRM"],"rulings":[{"date":"2021-02-05","text":"Because damage remains marked on creatures until the damage is removed as the turn ends, nonlethal damage dealt to creatures you control may become lethal if your life total drops below 7 life more than your starting life total or if Righteous Valkyrie leaves the battlefield that turn."},{"date":"2021-02-05","text":"The amount of life you gain is equal to the Angel or Cleric's toughness as the triggered ability resolves. If the Angel or Cleric is no longer on the battlefield at that time, use its toughness from when it was last on the battlefield."}],"rarities":["rare"]},"riot control":{"name":"Riot Control","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You gain 1 life for each creature your opponents control. Prevent all damage that would be dealt to you this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Controller"},"scope":"AllDamage"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a189e20f-1072-4608-9e50-da2a9d7a7ee3","metadata":{"source_printing_ids":["d7886607-86db-4221-8752-296104aaaef2","f0ca86cd-1b24-4abc-a877-c3aee6acf873"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BLC","DGM"],"rulings":[{"date":"2013-04-15","text":"Count the number of creatures your opponents control as Riot Control resolves to determine how much life you gain."},{"date":"2013-04-15","text":"Riot Control doesn't prevent combat damage that would be dealt to planeswalkers you control. It also doesn't prevent damage that would be dealt to creatures you control."}],"rarities":["common"]},"ripples of undeath":{"name":"Ripples of Undeath","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your first main phase, mill three cards. Then you may pay {1} and 3 life. If you do, put a card from among those cards into your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"AbilityCost","cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"PayLife","amount":{"type":"Fixed","value":3}}]}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Any"}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, mill three cards. Then you may pay {1} and 3 life. If you do, put a card from among those cards into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2acf8e34-9215-4a72-a24f-09d3bdd0083a","metadata":{"source_printing_ids":["0136a022-6b16-4b33-a817-946ded4e9dd5","a201d1bc-e3fe-4f59-bd48-3683996ac308"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rarities":["rare"]},"rise of the dark realms":{"name":"Rise of the Dark Realms","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":7},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put all creature cards from all graveyards onto the battlefield under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"enters_under":"You"},"cost":null,"sub_ability":null,"duration":null,"description":"Put all creature cards from all graveyards onto the battlefield under your control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e5223a09-f732-4747-8914-e6546ab0ef4c","metadata":{"source_printing_ids":["073f81e8-8c0c-4430-bd3e-95ed3625340f","7c0e1064-47c3-4f03-a1f2-3bcb356db82b","7d466d44-3203-4e9d-befc-877414a7308d","8645bf0c-631f-4003-bd24-3e069ae23513","953c7338-e30d-452c-89ff-0c5fca690b2f","afefa7d5-e83a-4bbe-a9eb-e20c1bc25cdd","ceb5df52-4e03-4629-b8d5-d440d9cc5175","f4ed0f96-7dc2-47c0-9cac-d24dab264e05"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","FIC","JMP","M14","MKC","PFDN","SLD"],"rarities":["mythic"]},"rite of consumption":{"name":"Rite of Consumption","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nRite of Consumption deals damage equal to the sacrificed creature's power to target player or planeswalker. You gain life equal to the damage dealt this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"PreviousEffectAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ deals damage equal to the sacrificed creature's power to target player or planeswalker. You gain life equal to the damage dealt this way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"327121a1-f193-44c6-a834-802095abec84","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["67cc5d9a-fba5-4a42-a3fa-d41e20b7b8fd","f62d999c-c81e-4bea-aefd-0d12251dcdd1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["PLST","SHM"],"rulings":[{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["common"]},"roaming throne":{"name":"Roaming Throne","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Ward {2}\nAs this creature enters, choose a creature type.\nThis creature is the chosen type in addition to its other types.\nIf a triggered ability of another creature you control of the chosen type triggers, it triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ is the chosen type in addition to its other types."},{"mode":{"DoubleTriggers":{"cause":"Any"}},"affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"IsChosenCreatureType"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a triggered ability of another creature you control of the chosen type triggers, it triggers an additional time."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"3640c29b-1534-4952-b297-619ade948431","metadata":{"source_printing_ids":["0ff7858d-f18d-4e5a-9467-ebef3ef53ac1","32fd8b7c-baf3-4d3d-be6f-044a917b11a0","4e81692d-bbb1-4051-83c0-f7251f98d5ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rulings":[{"date":"2023-11-10","text":"If you control two Roaming Thrones with the same chosen creature type, triggered abilities of other creatures you control of the chosen type trigger three times. Three such Roaming Thrones result in four triggered abilities, and so on."},{"date":"2023-11-10","text":"Roaming Throne's last ability doesn't copy the triggered ability; it just causes the ability to trigger an additional time. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."}],"rarities":["rare"]},"rooftop storm":{"name":"Rooftop Storm","mana_cost":{"type":"Cost","shards":["Blue"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may pay {0} rather than pay the mana cost for Zombie creature spells you cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastWithAlternativeCost":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":0}}}},"affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Zombie"}],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"You may pay {0} rather than pay the mana cost for Zombie creature spells you cast."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"6835bf6d-7197-481b-ac26-276ce363b4ad","metadata":{"source_printing_ids":["1a2b9c41-6bf7-4892-bef8-dec5f8a8df46","31146f03-cb5e-4f33-aad7-ce970b914d90","3fe2c09a-584d-434b-92a4-cb75c69719c7","80cdee59-0ead-4b95-a348-c1e360d781ab","ab01d871-ba50-400a-95e7-09af9e34405f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["INR","ISD","MIC","PLST"],"rulings":[{"date":"2011-09-22","text":"The mana cost and mana value of the spell are unchanged. Rooftop Storm only changes what you pay."},{"date":"2011-09-22","text":"You must still pay any mandatory additional costs, such as exiling a creature card from your graveyard for Makeshift Mauler."}],"rarities":["rare"]},"roost seek":{"name":"Roost Seek","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Omen"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle. (Also shuffle this card.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7cee6d43-5dec-4989-85ec-c635ec783ec7","metadata":{"source_printing_ids":["b72ee8f9-5e79-4f77-ae7e-e4c274f78187","d8b43b00-f4d1-436c-bf3f-6d414cd4ce38"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["TDM"],"rarities":["common"]},"roots of wisdom":{"name":"Roots of Wisdom","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Mill three cards, then return a land card or Elf card from your graveyard to your hand. If you can't, draw a card. (To mill a card, put the top card of your library into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"ZoneChangedThisWay","filter":{"type":"Any"}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Mill three cards, then return a land card or Elf card from your graveyard to your hand. If you can't, draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8f6af612-a4a1-4165-ae4d-ff6353cbaf8d","metadata":{"source_printing_ids":["734afb5b-3163-47fa-856f-8a85b9da22d3","eacd6f7b-3bb7-4957-afb6-f59881b55bb1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","KHM"],"rulings":[{"date":"2021-02-05","text":"If there’s a land card or Elf card in your graveyard, you must return one. You can’t choose not to in order to draw a card."},{"date":"2021-02-05","text":"Roots of Wisdom doesn’t target any cards in graveyards. You may return a land card or an Elf card that was just milled or one that was already there."}],"rarities":["common"]},"rotfeaster maggot":{"name":"Rotfeaster Maggot","mana_cost":{"type":"Cost","shards":["Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, exile target creature card from a graveyard. You gain life equal to that card's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile target creature card from a graveyard. You gain life equal to that card's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"67d0df0f-37d1-46da-b1c3-4fc9d1e3cc05","metadata":{"source_printing_ids":["41b5e1d4-2a7e-4d34-8ca7-ba8ccbf8f775","5c8e2442-0677-4ea6-8d70-4c39fbb552ed","6a438aef-3752-416c-b795-8ce0a39924a9","cf857631-8cd5-424f-b93e-d3e98a929988"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BBD","IMA","M15","PLST"],"rulings":[{"date":"2014-07-18","text":"Rotfeaster Maggot’s ability is mandatory. If you are the only player with creature cards in your graveyard, you must target one of them."}],"rarities":["common"]},"rottenmouth viper":{"name":"Rottenmouth Viper","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Snake"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, you may sacrifice any number of nonland permanents. This spell costs {1} less to cast for each permanent sacrificed this way.\nWhenever this creature enters or attacks, put a blight counter on it. Then for each blight counter on it, each opponent loses 4 life unless that player sacrifices a nonland permanent of their choice or discards a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"blight","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"for","description":"for each blight counter on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":4}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, put a blight counter on it. Then for each blight counter on it, each opponent loses 4 life unless that player sacrifices a nonland permanent of their choice or discards a card.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"OneOf","costs":[{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"count":1},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]},"payer":{"type":"ScopedPlayer"}},"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":null,"dynamic_count":{"type":"FilteredTrackedSetSize","filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"AdditionalCostPaid"},"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {1} less to cast for each permanent sacrificed this way."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2c75623c-59f4-4449-ab43-9d1225185ad9","additional_cost":{"type":"Optional","data":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"count":4294967295}}},"metadata":{"source_printing_ids":["735e79b1-a3a9-4ddf-8bbc-f756c8a0452b","7bad7555-3e5d-4096-a671-184630d38113"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"An opponent can always choose not to sacrifice a nonland permanent or discard a card (and therefore lose 4 life) even if they have cards in their hand or nonland permanents on the battlefield."},{"date":"2024-07-26","text":"If Rottenmouth Viper leaves the battlefield before its triggered ability resolves, use the number of blight counters that were on it as it last existed on the battlefield to determine how many times each opponent must make the listed choice."},{"date":"2024-07-26","text":"In a multiplayer game, each opponent in turn order makes all of their choices, then all of the actions occur simultaneously. Opponents will know what choices opponents earlier in turn order made, although cards chosen to be discarded this way won’t be revealed until they’re discarded at the end of the process."},{"date":"2024-07-26","text":"While resolving Rottenmouth Viper’s triggered ability, your opponent chooses a card to be discarded without revealing it, chooses a nonland permanent to be sacrificed, or chooses to do neither. Cards or permanents they’ve chosen previously during this process can’t be chosen again. Then that player repeats that process if it hasn’t yet been done once for each blight counter on Rottenmouth Viper. Finally, that player discards the chosen cards, sacrifices the chosen permanents, and loses 4 life the appropriate number of times."}],"rarities":["mythic"]},"ruin raider":{"name":"Ruin Raider","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Orc","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Raid — At the beginning of your end step, if you attacked this turn, reveal the top card of your library and put that card into your hand. You lose life equal to the card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you attacked this turn, reveal the top card of your library and put that card into your hand. You lose life equal to the card's mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"AttackedThisTurn"}},"comparator":"GE","rhs":{"type":"Fixed","value":1}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d6a837d0-d4f9-45ed-bbd7-5e37a9ca3b56","metadata":{"source_printing_ids":["457ba695-3637-40de-a8a8-e3a43a71674f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2017-09-29","text":"If the revealed card doesn't have a mana cost (because it's a land card, for example), its mana value is 0."},{"date":"2017-09-29","text":"The mana value of a split card, such as cards with aftermath from the Amonkhet block, is based on the combined mana cost of its two halves."},{"date":"2024-11-08","text":"Raid abilities care only that you attacked with a creature. It doesn't matter how many creatures you attacked with or which player, planeswalker, or battle those creatures attacked."},{"date":"2024-11-08","text":"Raid abilities evaluate the entire turn to see if you attacked with a creature. That creature doesn't have to still be on the battlefield. Similarly, the player, planeswalker, or battle it attacked doesn't have to still be in the game or on the battlefield."},{"date":"2024-11-08","text":"Some raid abilities trigger at the beginning of your end step. These abilities trigger if you attacked with a creature that turn, even if the permanent with that raid ability wasn't on the battlefield when you attacked."}],"rarities":["rare"]},"run":{"name":"Run","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Attacking creatures you control get +1/+0 until end of turn for each other attacking creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"},{"type":"Attacking"}]}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Attacking"}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Attacking creatures you control get +1/+0 until end of turn for each other attacking creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"2554a591-8592-4a9f-a4dc-eb9a7e6dc3eb","metadata":{"source_printing_ids":["b44c30a9-1af4-4287-a809-d2de4e8b4070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rarities":["uncommon"]},"rupture":{"name":"Rupture","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice a creature. Rupture deals damage equal to that creature's power to each creature without flying and each player.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithoutKeyword","value":"Flying"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Sacrifice a creature. ~ deals damage equal to that creature's power to each creature without flying and each player.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d2179a54-4b45-4b67-a31c-aa1a7bcfda2c","metadata":{"source_printing_ids":["6f3becdf-4019-43a4-999b-15b83fe53b8e","db53c1fb-3641-44a3-b0b4-b7b2ba993646"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["NEM","PLST","PRM"],"rarities":["uncommon"]},"rush of ice":{"name":"Rush of Ice","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target creature. It doesn't untap during its controller's next untap step.\nAwaken 3—{4}{U} (If you cast this spell for {4}{U}, also put three +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Awaken":{"count":3,"cost":{"type":"Cost","shards":["Blue"],"generic":4}}}],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantUntap","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantUntap"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"doesn't untap during its controller's next untap step"}],"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target creature. It doesn't untap during its controller's next untap step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"e9d62416-c4b1-4982-9593-174d46e975c7","metadata":{"source_printing_ids":["f9ae6f63-d1b2-4bf9-a423-ed6fbb540d4b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BFZ"],"rulings":[{"date":"2015-08-25","text":"Awaken doesn’t give the land you control a color. As most lands are colorless, in most cases the resulting land creature will also be colorless."},{"date":"2015-08-25","text":"If a spell with awaken has multiple targets (including the land you control), and some but not all of those targets become illegal by the time the spell tries to resolve, the spell won’t affect the illegal targets in any way."},{"date":"2015-08-25","text":"If the non-awaken part of the spell doesn’t require a target and you cast the spell for its awaken cost, then the spell won’t resolve if the target land you control becomes illegal before the spell resolves (such as due to being destroyed in response to the spell being cast)."},{"date":"2015-08-25","text":"If the non-awaken part of the spell requires a target, you must choose a legal target. You can’t cast the spell if you can’t choose a legal target for each instance of the word “target” (though you only need a legal target for the awaken ability if you’re casting the spell for its awaken cost)."},{"date":"2015-08-25","text":"Rush of Ice can target a creature that’s already tapped. It still won’t untap during its controller’s next untap step."},{"date":"2015-08-25","text":"Rush of Ice tracks the creature, but not its controller. If the creature changes controllers before its first controller’s next untap step has come around, then it won’t untap during its new controller’s next untap step."},{"date":"2015-08-25","text":"The land will retain any other types, subtypes, or supertypes it previously had. It will also retain any mana abilities it had as a result of those subtypes. For example, a Forest that’s turned into a creature this way can still be tapped for {G}."},{"date":"2015-08-25","text":"You can cast a spell with awaken for its mana cost and get only its first effect. If you cast a spell for its awaken cost, you’ll get both effects."}],"rarities":["common"]},"sacrifice":{"name":"Sacrifice","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nAdd an amount of {B} equal to the sacrificed creature's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}},"color_options":["Black"]}},"cost":null,"sub_ability":null,"duration":null,"description":"Add an amount of {B} equal to the sacrificed creature's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"068b3692-411b-44d4-a7e9-005262760cfc","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["12164aee-6a27-4246-8d15-2d6dd20d92e9","288323c1-13f1-481e-940e-5e4ecebb404e","43334dee-ec2c-44fe-b526-8a38b9f62cc4","652bd781-1a48-42c1-9aff-f9050a9285d6","76bc3b43-158c-420e-a3fb-7413334699ca","8abe7d62-6a99-4d1f-9b81-cff0485997a8","8f067622-edb8-4c52-b2d7-cea1370b9a16","e30287fe-e949-44a3-9878-8b095b7748ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","CED","CEI","FBB","LEA","LEB","SPG","SUM"],"rulings":[{"date":"2004-10-04","text":"Sacrificing an animated land gives no mana since the converted mana cost was zero."},{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["uncommon"]},"sagu wildling":{"name":"Sagu Wildling","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, you gain 3 life.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain 3 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7cee6d43-5dec-4989-85ec-c635ec783ec7","metadata":{"source_printing_ids":["b72ee8f9-5e79-4f77-ae7e-e4c274f78187","d8b43b00-f4d1-436c-bf3f-6d414cd4ce38"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["TDM"],"rulings":[{"date":"2025-04-04","text":"An omen card is a creature card in every zone except the stack, as well as while on the stack if not cast as an Omen. Ignore its alternative characteristics in those cases. For example, while it’s in your graveyard, Twinmaw Stormbrood is a white creature card whose mana value is 6. It can’t be the target of the reflexive ability created by Kishla Trawlers’s triggered ability (“…When you do, return target instant or sorcery card from your graveyard to your hand.”)."},{"date":"2025-04-04","text":"As a player casts an omen card, the player chooses whether they cast the card normally or as an Omen."},{"date":"2025-04-04","text":"Casting a card as an Omen isn’t casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Omen."},{"date":"2025-04-04","text":"If a spell is cast as an Omen, its controller shuffles it into its owner’s library instead of putting it into its owner’s graveyard as it resolves."},{"date":"2025-04-04","text":"If an Omen spell has one or more targets and all of those targets are illegal when the spell tries to resolve, it won’t resolve. None of its effects will happen, and it will be put into its owner’s graveyard. It won’t be shuffled into its owner’s library."},{"date":"2025-04-04","text":"If an Omen spell is copied, that copy is also an Omen and is shuffled into its owner’s library as it resolves. Its owner still shuffles their library, but the copy ceases to exist as a state-based action."},{"date":"2025-04-04","text":"If an Omen spell is countered or an effect causes it to otherwise leave the stack, it won’t be shuffled into its owner’s library."},{"date":"2025-04-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Omen name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2025-04-04","text":"If you cast an omen card as an Omen, use only its alternative characteristics to determine whether it’s legal to cast that spell. For example, if you control Thundermane Dragon (“You may cast creature spells with power 4 or greater from the top of your library.”) and Twinmaw Stormbrood is on top of your library, you can cast Twinmaw Stormbrood, but not Charring Bite."},{"date":"2025-04-04","text":"When casting a spell as an Omen, use the alternative characteristics and ignore all of the card’s normal characteristics. The spell’s color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."}],"rarities":["common"]},"sapling of colfenor":{"name":"Sapling of Colfenor","mana_cost":{"type":"Cost","shards":["BlackGreen","BlackGreen"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nWhenever Sapling of Colfenor attacks, reveal the top card of your library. If it's a creature card, you gain life equal to that card's toughness, lose life equal to its power, then put it into your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, reveal the top card of your library. If it's a creature card, you gain life equal to that card's toughness, lose life equal to its power, then put it into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"0c1e2bb8-0629-466c-b435-c4c71cdc755d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["33c19062-9e1c-4cae-bb97-7ca9e4523593","7b3c373d-9733-425b-8ff5-2862a96f5188"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","EVE"],"rulings":[{"date":"2008-08-01","text":"If a creature card has “*” in its power or toughness, the ability that defines “*” works in all zones. Note that the card is in your library when Sapling of Colfenor’s ability checks the card’s power and toughness."},{"date":"2008-08-01","text":"If the revealed card is not a creature card, it remains on top of your library."},{"date":"2008-08-01","text":"The triggered ability results in three sequential events: you gain some life (subject to effects that might alter life gain), then lose some life (subject to other effects that might alter life loss), and then put the card into your hand."},{"date":"2014-02-01","text":"Lethal damage and effects that say “destroy” won’t cause Sapling of Colfenor to be put into the graveyard. However, Sapling of Colfenor could be put into the graveyard if its toughness becomes 0 or less, if it’s sacrificed, or if you control another Sapling of Colfenor (due to the “legend rule”)."}],"rarities":["rare"]},"sarkhan the mad":{"name":"Sarkhan the Mad","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sarkhan"]},"power":null,"toughness":null,"loyalty":"7","defense":null,"oracle_text":"[0]: Reveal the top card of your library and put it into your hand. Sarkhan deals damage to himself equal to that card's mana value.\n[−2]: Target creature's controller sacrifices it, then that player creates a 5/5 red Dragon creature token with flying.\n[−4]: Each Dragon creature you control deals damage equal to its power to target player or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[0]: Reveal the top card of your library and put it into your hand. Sarkhan deals damage to himself equal to that card's mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Dragon","power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"types":["Creature","Dragon"],"colors":["Red"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"ParentTargetController"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−2]: Target creature's controller sacrifices it, then that player creates a 5/5 red Dragon creature token with flying.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each Dragon creature you control deals damage equal to its power to target player or planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"e70a93e4-2fe7-46d3-8958-153ab2fcfd99","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["4588ccb3-283b-51b2-9840-7d08f985f47f","921f2257-6e27-5e00-945a-dc599f4711b3"],"source_printing_ids":["02e58076-86a3-4bf1-a3e4-8b53a4e93543","26c1ba92-556e-4da9-8e3a-a4a82612cb29"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"If the targeted creature is a legal target by the time the second ability resolves but its controller can't sacrifice it (due to Tajuru Preserver, perhaps), the ability continues to resolve. That player gets a Dragon token."},{"date":"2010-06-15","text":"If the targeted creature is an illegal target by the time the second ability resolves, the ability doesn't resolve. The player won't get a Dragon token."},{"date":"2010-06-15","text":"If you target an opponent with the third ability, you choose separately for each Dragon creature you control whether or not to redirect the damage dealt by that Dragon to a planeswalker that player controls."},{"date":"2010-06-15","text":"Once the first ability starts to resolve and you reveal the top card of your library (and see how much damage Sarkhan the Mad deals to himself), it's too late to respond."},{"date":"2010-06-15","text":"The first ability causes Sarkhan to deal damage directly to himself, resulting in that many loyalty counters being removed from him. The damage would never have been dealt to you, so prevention effects that would prevent damage from being dealt to you won't affect it."},{"date":"2010-06-15","text":"Unlike previous planeswalkers, Sarkhan the Mad has no way to raise his loyalty."},{"date":"2010-06-15","text":"You choose a single target as you activate the third ability. All your Dragons deal damage to that player."}],"rarities":["mythic"]},"satoru, the infiltrator":{"name":"Satoru, the Infiltrator","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ninja","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever Satoru and/or one or more other nontoken creatures you control enter, if none of them were cast or no mana was spent to cast them, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"NonToken"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ and/or one or more other nontoken creatures you control enter, if none of them were cast or no mana was spent to cast them, draw a card.","constraint":null,"condition":{"type":"Or","conditions":[{"type":"Not","condition":{"type":"WasCast"}},{"type":"ManaSpentCondition","text":"no mana was spent to cast them"}]},"batched":true}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"7555c429-5f2d-4171-b6b0-8e3c8da7f314","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4b9a76f0-b697-4c1d-9b60-c66f7fc4316e","acc9a5cc-2b3c-4c2f-8176-4a2d86265cc5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"If you cast a creature spell without paying its mana cost but you paid mana for additional costs or cost increases (such as from Aven Interrupter), Satoru's last ability won't trigger."}],"rarities":["rare"]},"savannah lions":{"name":"Savannah Lions","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"60ba93eb-39e6-4af2-9c66-cd38f72daff2","metadata":{"source_printing_ids":["2af2b107-1938-4d42-9bfa-0c88fd1e822a","345920d9-b842-42a3-996f-457e737baab2","3da61fc1-6201-4823-975f-2d4d9f7f3193","5ada7133-d23b-47e9-8a58-c1f78f4095e0","60c597ee-eaf9-4294-9865-af8a18067eda","67d1945d-d228-4dc3-a593-859408b2016b","69da8664-c9b9-4f9c-b1c4-099990637646","75798ac5-9843-4a8b-a5f3-dbd38b4e4bad","8455221d-683b-4313-8e53-73cbf7e05aa5","89b77ad5-1585-49dc-b635-780143e1e1c8","9c9ac1bc-cdf3-4fa6-8319-a7ea164e9e47","a2ee9127-d007-48e8-b797-88ef72bc7c8b","a9757246-e782-4d7a-8273-d9efe284edaf","ad41b1aa-1482-4d71-990b-031b30685cb1","b387ece0-8db7-482e-b41b-6c1af74aa136","c0ea8d9f-2b77-4cff-8b96-387f43366c1a","c58dbcf3-f8ad-4e82-9515-0290fa5373f7","d05b92bd-797e-413f-a8b0-32e0937a1ee0","d136d1fc-c413-4deb-952c-b10aa1c72abe","db9f9f3c-d024-4529-bffb-c7a5a3085e58","e770d089-9957-412c-a51f-3f11b6b9692a","e79d52e0-dfa6-4ac0-909e-81d1a16b84b4","e865dc3c-45b9-475a-8937-5d7bb2e10896"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","8ED","9ED","A25","CED","CEI","DMR","FBB","FDN","J22","J25","LEA","LEB","ME4","PLST","SUM"],"rarities":["common","uncommon","rare"]},"sawhorn nemesis":{"name":"Sawhorn Nemesis","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"As this creature enters, choose a player.\nIf a source would deal damage to the chosen player or a permanent they control, it deals double that damage instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a player.","condition":null,"destination_zone":"Battlefield"},{"event":"DamageDone","execute":null,"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a source would deal damage to the chosen player or a permanent they control, it deals double that damage instead.","condition":null,"damage_modification":{"type":"Double"},"damage_target_filter":{"PlayerOrPermanentsControlledBy":{"player":{"type":"SourceChosenPlayer"}}}}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f9107c5-991a-4c20-9b77-2e2fb4b9dc53","metadata":{"source_printing_ids":["29b33e43-ffd5-4697-8261-9b4f5de36a19","b3f1c76f-9afc-47b1-a223-4ff5aab91c3a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"If another effect (or effects) modifies how much damage a source would deal to the chosen player or a permanent they control (for example, by preventing some of that damage), the player being dealt damage or the controller of the permanent being dealt damage chooses the order in which any such effects, including the effect of Sawhorn Nemesis, apply. If all of the damage is prevented before Sawhorn Nemesis's effect would apply, its effect no longer applies."},{"date":"2024-06-07","text":"If damage dealt is being divided or assigned among multiple permanents or players, that damage is divided or assigned before any effects that modify how much damage will be dealt. For example, if you attack the chosen player with a 5/5 creature with trample and it's blocked by a 2/2 creature they control, you can assign 2 damage to the blocker and 3 damage to the defending player. Those amounts are then doubled to 4 and 6, respectively."},{"date":"2024-06-07","text":"The damage is dealt by the same source as the original source of damage. The doubled damage isn't dealt by Sawhorn Nemesis unless it was the original source of damage."},{"date":"2024-06-07","text":"The protector of a battle with the Siege subtype is not that battle's controller."}],"rarities":["rare"]},"scattering stroke":{"name":"Scattering Stroke","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to that spell's mana value. (Each clashing player reveals the top card of their library, then puts that card on their choice of the top or bottom. A player wins if their card had a greater mana value.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Clash"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"PreCombatMain","player":0},"effect":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EventOutcomeWon"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"314a9604-34ec-4529-bd14-7b63be28669f","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to th","line_index":0}],"metadata":{"source_printing_ids":["c536c1ce-a012-4d77-ab29-8574be164731"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMD","LRW"],"rulings":[{"date":"2007-10-01","text":"You can't add just some of the mana. You either add all the mana or none of it."},{"date":"2007-10-01","text":"You decide whether or not to add that much {C} as the delayed triggered ability resolves at the beginning of your next main phase. You don't decide before then."}],"rarities":["uncommon"]},"scrap trawler":{"name":"Scrap Trawler","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature dies or another artifact you control is put into a graveyard from the battlefield, return to your hand target artifact card in your graveyard with lesser mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"zone_change_clauses":[{"origin":{"type":"Equals","data":"Battlefield"},"destination":"Graveyard","valid_card":{"type":"SelfRef"}},{"origin":{"type":"Equals","data":"Battlefield"},"destination":"Graveyard","valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"}]}}],"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ dies or another artifact you control is put into a graveyard from the battlefield, return to your hand target artifact card in your graveyard with lesser mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"164f3f85-21fc-40b7-9871-4f303ba98428","metadata":{"source_printing_ids":["0be3f03b-929a-4787-b889-6f24f047e4f5","614be454-3829-4c3b-9485-930755dfa16d","68abc75f-596f-4169-96fc-ada941ef47ed","bf1e1b54-2f97-4d33-807a-99ca38f21777"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AER","BRR","C21","KLR","MOC","PAER","PRM"],"rulings":[{"date":"2017-02-09","text":"If Scrap Trawler and another artifact you control are put into a graveyard at the same time, Scrap Trawler's ability triggers for each of them."},{"date":"2017-02-09","text":"If an artifact is a copy of another artifact with greater mana value, such as Sculpting Steel copying an artifact with mana value 4, Scrap Trawler's ability can target that artifact card in your graveyard when that artifact is put into your graveyard."},{"date":"2017-02-09","text":"The target artifact card must have a lesser mana value than the artifact that caused Scrap Trawler's ability to trigger by being put into a graveyard. Use the artifact's mana value as it last existed on the battlefield to determine what may be returned."},{"date":"2017-02-09","text":"While on the battlefield or in a graveyard, {X} in an object's mana cost is 0."}],"rarities":["rare"]},"screaming nemesis":{"name":"Screaming Nemesis","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Spirit"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Haste\nWhenever this creature is dealt damage, it deals that much damage to any other target. If a player is dealt damage this way, they can't gain life for the rest of the game.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantGainLife","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantGainLife"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't gain life"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to any other target. If a player is dealt damage this way, they can't gain life for the rest of the game.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"fcb7c93c-46ab-49b5-a6e0-35d73f3be8f0","metadata":{"source_printing_ids":["ad3f4c72-ff6e-4d7f-8eb8-45a0a9605fc0","ce35e6fb-ff54-44c4-a216-7ddd37f46882"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"banned","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"If Screaming Nemesis is dealt damage by multiple sources at once, such as by two creatures blocking it, its last ability triggers once and one target is dealt that much damage."},{"date":"2024-09-20","text":"If an effect says to set a player's life total to a number that's higher than their current life total while they're affected by Screaming Nemesis's last ability, their life total won't change."},{"date":"2024-09-20","text":"If lethal damage is dealt to Screaming Nemesis, its last ability still triggers."},{"date":"2024-09-20","text":"Once Screaming Nemesis's last ability causes it to deal damage to a player, that player won't be able to gain life for the rest of the game. It doesn't matter if Screaming Nemesis remains on the battlefield or not."},{"date":"2024-09-20","text":"Spells and abilities that cause a player affected by Screaming Nemesis's last ability to gain life still resolve. That player won't gain life, but any other effects of that spell or ability will happen."}],"rarities":["mythic"]},"scryb sprites":{"name":"Scryb Sprites","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Faerie"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"a1f20695-6f08-4d5c-9fba-b0018bee298e","metadata":{"source_printing_ids":["1014748d-926e-47c7-b39d-c907384f3490","178975a9-51ea-40ff-8fd9-247445d1a545","1b9e1d37-47cd-41d7-9fee-b8504c689462","26f191de-8c59-458c-a1ab-80e2bccdb974","281e8da8-1383-460e-b74e-ad56f1b6d007","2d0a7b28-63bb-4aeb-98de-5a795cef838a","35fd0955-999c-4591-b726-aa5213abc81d","6d929c38-91e6-457c-937a-d1884f4bba44","ab52f491-26f1-494f-8ec7-9630c4f9653a","e05cacf1-31c4-4538-81ae-575049567367","e9b72a87-67b0-4858-b524-02b096e2f5dd","e9e2f1fe-4df0-48c8-b469-4175ba5011e8","fafe9639-e9d0-4aa2-8a16-f4ec24c140c0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","BRB","CED","CEI","FBB","ITP","LEA","LEB","ME1","ME3","PRM","RQS","SUM"],"rarities":["common"]},"scute swarm":{"name":"Scute Swarm","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, create a 1/1 green Insect creature token. If you control six or more lands, create a token that's a copy of this creature instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Insect","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Insect"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":6}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, create a 1/1 green Insect creature token. If you control six or more lands, create a token that's a copy of ~ instead.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"aa854d50-444c-49d9-bfb1-5476b33c1c0b","metadata":{"related_token_ids":["3bbbe9b2-6a32-575f-90af-6b419debf932","4d2ba458-569a-5a74-b079-cd2b89ec3f47","52626921-713d-5fbe-823b-c222119520aa","570cd489-7238-5cc6-9f6e-c789738dd1e6","61aa5086-680f-5638-801a-69b49c0fe160","9b02e27b-70be-56ba-a683-9e2a622ec8f5","b25392e1-0377-5a67-857d-c6271b7ae245","c260fa03-ae9a-5bda-8c06-aab126a23edd","cce49cc0-36bd-55e9-b593-465545cf3902","d0174949-c2b2-537a-8e5e-51298d3f97bc","ebb9c0a4-c359-58de-b739-03fddd775dfa","fdc7aa74-0ebb-5ec9-987d-82b3714dd8db"],"source_printing_ids":["1abdf386-56bc-4575-af89-6edc9a38cd43","309b2cb5-b9a8-417d-b5ae-0a7d03ff93f0","373f199d-f1a6-4a3d-ac83-28741131f313","61f42823-8a48-4b81-a037-664ba1c69f29","62c19f87-1bbc-4309-8781-4519db8b91a2","acd42ebf-6dee-44cc-a023-a7f9b67cfa2f","ea630ba1-22f9-4a10-bdc6-0d03128214f4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","M3C","NCC","OTC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"If Scute Swarm leaves the battlefield before its triggered ability resolves, the token will still enter the battlefield as a copy of Scute Swarm, using Scute Swarm's copiable values from when it was last on the battlefield."},{"date":"2020-09-25","text":"The token copy will have Scute Swarm's ability. It will also be able to create copies of itself."},{"date":"2020-09-25","text":"The token copy won't copy counters or damage marked on Scute Swarm, nor will it copy other effects that have changed Scute Swarm's power, toughness, types, color, and so on. Normally, this means the token will simply be a Scute Swarm, but if any copy effects have affected the original Scute Swarm, the token will take those into account."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"season's beatings":{"name":"Season's Beatings","mana_cost":{"type":"Cost","shards":["Red","Red","Red","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Family gathering — Each creature target player controls deals damage equal to its power to another random creature that player controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Family gathering — Each creature target player controls deals damage equal to its power to another random creature that player controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d3c36e20-3c6c-423a-a9ba-8e8bd7b735e6","metadata":{"source_printing_ids":["e177c12e-551a-4688-aa34-740f873dd37d"]},"legalities":{},"printings":["HHO"],"rarities":["rare"]},"seasoned dungeoneer":{"name":"Seasoned Dungeoneer","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you take the initiative.\nWhenever you attack, target attacking Cleric, Rogue, Warrior, or Wizard gains protection from creatures until end of turn. It explores. (Reveal the top card of your library. Put that card into your hand if it's a land. Otherwise, put a +1/+1 counter on the creature, then put the card back or put it into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":["Explore"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"TakeTheInitiative"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you take the initiative.","constraint":null,"condition":null,"batched":false},{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":{"Protection":{"CardType":"creatures"}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain protection from creatures"}],"duration":"UntilEndOfTurn","target":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Cleric"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Rogue"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Warrior"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Wizard"}],"controller":null,"properties":[{"type":"Attacking"}]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Explore"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, target attacking Cleric, Rogue, Warrior, or Wizard gains protection from creatures until end of turn. It explores.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"5ea675aa-88d6-4387-a14d-e606fa9c3aec","metadata":{"source_printing_ids":["2af98a7e-6335-4040-a831-d0911ab89dc5","648d9da3-5790-4d64-8b52-83141d2faf36","7fee3f76-20a8-4621-84fb-ddf79c955532","b2025340-4751-46bd-aeeb-abff2e2d5378"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","SLD"],"rulings":[{"date":"2022-06-10","text":"A player who currently has the initiative may take the initiative again. This causes that player to venture into Undercity again, but does not cause them to have multiple initiative designations."},{"date":"2022-06-10","text":"If the player with the initiative leaves the game, the active player takes the initiative at the same time that player leaves the game. If the active player is leaving the game or if there is no active player, the next player in turn order takes the initiative."},{"date":"2022-06-10","text":"If you aren’t in a dungeon when instructed to venture into Undercity, you will put Undercity into the command zone and move your venture marker to Secret Entrance (the first room)."},{"date":"2022-06-10","text":"If you’re already in a dungeon when instructed to venture into Undercity, you move to the next room of that dungeon. If you are already in the last room, you will complete that dungeon and start Undercity. This is true whether you’re already in Undercity or any other dungeon."},{"date":"2022-06-10","text":"In a Two-Headed Giant game, if both players on a team deal combat damage to the player that has the initiative at the same time, the player with the initiative will choose the order of the triggered abilities. Then, as those abilities resolve, one team member takes the initiative (and ventures into Undercity) and then the other team member does the same. The last player to take the initiative keeps it until the initiative changes again."},{"date":"2022-06-10","text":"Only one player can have the initiative at a time. As one player takes the initiative, any other player that had the initiative ceases to have it."},{"date":"2022-06-10","text":"Similarly, when instructed to venture into Undercity, you can’t start a dungeon that isn’t Undercity."},{"date":"2022-06-10","text":"The initiative is a designation a player can have. A player with the initiative designation is said to “have the initiative.” The initiative carries two inherent rules. First, whenever a player takes the initiative, and at the beginning of the upkeep of the player with the initiative, that player ventures into Undercity. Second, whenever one or more creatures a player controls deal combat damage to the player who has the initiative, the first player takes the initiative. Also, some abilities will refer to having the initiative and provide other benefits."},{"date":"2022-06-10","text":"There is no initiative in a game until an effect instructs a player to take the initiative. Once a player is instructed to do this, they have the initiative until another player takes the initiative."},{"date":"2022-06-10","text":"You cannot venture into Undercity unless instructed to do so, either because you have the initiative at the beginning of your upkeep or because you take the initiative. Notably, if you aren’t in a dungeon and an effect instructs you to venture into the dungeon (not venture into Undercity), you can’t start Undercity."}],"rarities":["rare"]},"secrets of the key":{"name":"Secrets of the Key","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Investigate. If this spell was cast from a graveyard, investigate twice instead. (Create a Clue token. It's an artifact with \"{2}, Sacrifice this token: Draw a card.\")\nFlashback {3}{U}","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Blue"],"generic":3}}}],"abilities":[{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"CastFromZone","zone":"Graveyard"}},"optional_targeting":false,"optional":false,"repeat_for":{"type":"Fixed","value":2},"forward_result":false},"duration":null,"description":"Investigate. If this spell was cast from a graveyard, investigate twice instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"55c7ce94-3cd3-42f3-9dd8-0c118fa626c8","metadata":{"related_token_ids":["57ae50b3-6f72-5a02-b3f4-49da0022bfc9","d5f5a562-498f-5454-8027-47b398224f68"],"source_printing_ids":["9b022ba8-07b6-4993-99c8-89c6dcb19e60","c136e3ee-5134-480e-a322-69c9ed9b4677"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID"],"rulings":[{"date":"2021-09-24","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2021-09-24","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-09-24","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2021-09-24","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-09-24","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-09-24","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["common"]},"seeds of innocence":{"name":"Seeds of Innocence","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy all artifacts. They can't be regenerated. The controller of each of those artifacts gains life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy all artifacts. They can't be regenerated. The controller of each of those artifacts gains life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f5ebad5c-9675-4a37-b76c-760416083939","metadata":{"source_printing_ids":["f9c868f5-0f90-4f7e-bafb-c45d2372fe06"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["rare"]},"seek":{"name":"Seek","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search target opponent's library for a card and exile it. You gain life equal to its mana value. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Exile","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a card and exile it. You gain life equal to its mana value. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","White"],"scryfall_oracle_id":"60e59923-ecd9-457e-b772-693138e05ab2","metadata":{"source_printing_ids":["ac347ec8-4537-4cdf-aeff-44da1f7be01b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rarities":["rare"]},"selfless exorcist":{"name":"Selfless Exorcist","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{T}: Exile target creature card from a graveyard. That card deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Exile target creature card from a graveyard. That card deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"78e875b1-e621-4bf0-ad81-24ed9e2b43f8","metadata":{"source_printing_ids":["c9b1c300-aec3-4512-9902-309615e86c73"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["JUD"],"rulings":[{"date":"2013-04-15","text":"The reminder text printed on Selfless Exorcist is no longer correct. Abilities that define a creature’s power (and toughness) apply in every zone. The value of * is defined by such an ability."}],"rarities":["rare"]},"semblance anvil":{"name":"Semblance Anvil","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Imprint — When this artifact enters, you may exile a nonland card from your hand.\nSpells you cast that share a card type with the exiled card cost {2} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Exile","target":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may exile a nonland card from your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"SharesQuality","quality":"CardType","reference":{"type":"ExiledBySource"}}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast that share a card type with the exiled card cost {2} less to cast."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"bbd0c406-c995-46e0-898d-375fdbede203","metadata":{"source_printing_ids":["0380b46d-1660-404d-9d11-705d8809ea46"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","SOM"],"rulings":[{"date":"2011-01-01","text":"Artifact, battle, creature, enchantment, instant, kindred, planeswalker, and sorcery are card types."},{"date":"2011-01-01","text":"Semblance Anvil can reduce the amount you pay for a spell's cost that includes {X}. For example, Blaze is a sorcery that costs {X}{R}. If the card exiled with Semblance Anvil is a sorcery, and you want to cast Blaze with X equal to 5, you'll have to pay only {3}{R}. This is true even if the ability states that {X} must be paid with a certain color of mana (as Drain Life does)."},{"date":"2011-01-01","text":"Semblance Anvil takes the total cost to cast a spell into account, not just its mana cost. This includes additional costs (such as kicker) and alternative costs (such as evoke). It also includes cost increases from other sources (such as Lodestone Golem's ability)."},{"date":"2011-01-01","text":"Semblance Anvil won't affect the part of a spell's cost represented by colored mana symbols. For example, a spell that normally costs {1}{U} to cast would cost {U} if it shared a card type with the exiled card."},{"date":"2011-01-01","text":"Semblance Anvil's cost reduction effect is mandatory."},{"date":"2011-01-01","text":"Spells you cast that share multiple card types with the exiled card still cost just {2} less to cast. They don't get a greater cost reduction."}],"rarities":["rare"]},"serene offering":{"name":"Serene Offering","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target enchantment. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target enchantment. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"6cef0548-6010-4781-8e83-431d014dd1da","metadata":{"source_printing_ids":["6c0b3795-7f30-4c61-b5d8-f238055d6be1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["TMP"],"rarities":["uncommon"]},"serpent's soul-jar":{"name":"Serpent's Soul-Jar","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever an Elf you control dies, exile it.\n{T}, Pay 2 life: Until end of turn, you may cast a creature spell from among cards exiled with this artifact.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"CastFromZone","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Exile"}]},{"type":"ExiledBySource"}]},"without_paying_mana_cost":false,"mode":"Cast","duration":"UntilEndOfTurn"},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"PayLife","amount":{"type":"Fixed","value":2}}]},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{T}, Pay 2 life: Until end of turn, you may cast a creature spell from among cards exiled with ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an Elf you control dies, exile it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5d451958-25f3-4e70-8be2-c832f60f39e9","metadata":{"source_printing_ids":["08ae371f-ce62-475f-89a2-1f8a17cf950f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["KHC"],"rulings":[{"date":"2021-02-05","text":"Players can respond to the triggered ability that exiles the card from your graveyard by removing it in some other way. If the card leaves the graveyard before the ability of Serpent's Soul-Jar exiles it, Serpent's Soul-Jar won't let you cast it."},{"date":"2021-02-05","text":"The activated ability doesn't change when you can cast the creature spell. In most cases, this means during your main phase while the stack is empty, although flash may change this."}],"rarities":["rare"]},"serra's emissary":{"name":"Serra's Emissary","mana_cost":{"type":"Cost","shards":["White","White","White"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Flying\nAs this creature enters, choose a card type.\nYou and creatures you control have protection from the chosen card type.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":{"Protection":"ChosenCardType"}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You and creatures you control have protection from the chosen card type."},{"mode":{"PlayerProtection":"ChosenCardType"},"affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You and creatures you control have protection from the chosen card type."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a card type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"7a56c6e1-0509-4783-9b29-cf3163977166","metadata":{"source_printing_ids":["216ee3a4-6be1-46f4-87e7-d2e86b0cb65c","8de657fb-e68e-4400-9a12-60aaaa075fc4","b6534049-3045-4546-b1e8-e5b1b0df5f56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J21","MH2","PMH2"],"rulings":[{"date":"2021-06-18","text":"The card type choice is a replacement effect, not a triggered ability. It doesn't use the stack and can't be responded to. Notably, if you choose instant, your opponent can't try to cast an instant on the Emissary before it has protection."},{"date":"2021-06-18","text":"You may choose any card type. The ones that may appear in a normal game of Magic are artifact, battle, creature, enchantment, instant, kindred, land, planeswalker, and sorcery. Supertypes such as snow and basic may not be chosen. Subtypes such as Angel, Aura, and Forest also may not be chosen."}],"rarities":["mythic"]},"sever soul":{"name":"Sever Soul","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"577d027a-96c3-46fe-880b-f8b5dd3f3a3d","metadata":{"source_printing_ids":["4f5229ee-099a-4b19-8bb8-367f4c7cdc85","93c25ea3-1f01-4dcd-9d2d-d7fb85712110","c2d84fec-18f1-4231-a293-0dc1ff868a40","df1cb775-3a45-4f2c-9c45-febda6434c59"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","MMQ","PHUK","PLST","PSAL"],"rarities":["common","uncommon"]},"shalai and hallar":{"name":"Shalai and Hallar","mana_cost":{"type":"Cost","shards":["Red","Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Angel","Elf"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying, vigilance\nWhenever one or more +1/+1 counters are put on a creature you control, Shalai and Hallar deals that much damage to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Vigilance"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more +1/+1 counters are put on a creature you control, ~ deals that much damage to target opponent.","constraint":null,"condition":null,"counter_filter":{"counter_type":"P1P1"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red","White"],"color_identity":["Green","Red","White"],"scryfall_oracle_id":"e7604cd9-d00d-4957-82c9-46a7cdb88209","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0dcb27cd-e5f1-46c6-b7cf-33fa90335459","80804f25-efc3-44a2-bbae-9a97fec98009"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC"],"rarities":["mythic"]},"sheltering word":{"name":"Sheltering Word","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gains hexproof until end of turn. You gain life equal to that creature's toughness. (A creature with hexproof can't be the target of spells or abilities your opponents control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Hexproof"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain hexproof"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gains hexproof until end of turn. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"77aaaad5-7960-453d-b024-6dacbca3d606","metadata":{"source_printing_ids":["93cd9be4-1ce4-4a7c-b2a6-98d3fde0a92b","c178ff60-30db-4d71-9f13-56e5b8407a6f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["AVR","PLST"],"rulings":[{"date":"2012-05-01","text":"If a creature gains hexproof in response to a spell or ability controlled by an opponent that targets only it, that spell or ability doesn’t resolve for having an illegal target when it tries to resolve."}],"rarities":["common"]},"sheoldred's edict":{"name":"Sheoldred's Edict","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Each opponent sacrifices a nontoken creature of their choice.\n• Each opponent sacrifices a creature token of their choice.\n• Each opponent sacrifices a planeswalker of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Token"}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"217062f5-96f1-454c-9507-17f34ef37070","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Each opponent sacrifices a nontoken creature of their choice.","Each opponent sacrifices a creature token of their choice.","Each opponent sacrifices a planeswalker of their choice."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["838201e5-42ec-426e-b24d-6ca77140cd07","a9225cc3-90f0-448f-a8d9-7c6c2796d077","c32ae26c-cba4-4226-8a60-62fd95558ce8","d7d6e50e-d339-49b5-ab97-4b38bba7c187"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ONE","PLG24","PLST","SOA"],"rarities":["uncommon","rare"]},"sheoldred's restoration":{"name":"Sheoldred's Restoration","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {2}{W} (You may pay an additional {2}{W} as you cast this spell.)\nReturn target creature card from your graveyard to the battlefield. If this spell was kicked, you gain life equal to that card's mana value. Otherwise, you lose that much life.\nExile Sheoldred's Restoration.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["White"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to the battlefield. If this spell was kicked, you gain life equal to that card's mana value. Otherwise, you lose that much life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"df587772-516f-4ae8-aefe-e6fc63f8b365","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":2}}]}},"metadata":{"source_printing_ids":["ed719f25-1aab-4a1e-8c9f-dd574db5de0c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"If the target creature card is an illegal target as Sheoldred's Restoration tries to resolve (usually because the card has been removed from the graveyard in response), it won't do anything. You won't gain or lose life, and Sheoldred's Restoration will go to the graveyard rather than be exiled by its last ability."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["uncommon"]},"shifting woodland":{"name":"Shifting Woodland","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control a Forest.\n{T}: Add {G}.\nDelirium — {2}{G}{G}: This land becomes a copy of target permanent card in your graveyard until end of turn. Activate only if there are four or more card types among cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {G}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"BecomeCopy","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"duration":"UntilEndOfTurn"},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","Green"],"generic":2}},"sub_ability":null,"duration":"UntilEndOfTurn","description":"Delirium — {2}{G}{G}: ~ becomes a copy of target permanent card in your graveyard until end of turn. Activate only if there are four or more card types among cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":{"type":"ZoneCardTypeCountAtLeast","zone":"Graveyard","count":4}}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control a Forest.","condition":{"type":"UnlessControlsSubtype","subtypes":["Forest"]},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7c2a4fe5-43e8-4e20-bef2-0278d18afc4b","metadata":{"source_printing_ids":["059164e1-894d-4586-9800-e60d6fbd6eb6","890e97b5-6750-4fae-8481-1244e311da7e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Any effects that applied to Shifting Woodland before it becomes a copy of another card will continue to apply after it becomes a copy. The same is true of any counters that are on Shifting Woodland."},{"date":"2024-06-07","text":"Because Shifting Woodland isn't entering the battlefield when it becomes a copy of a card, any \"When [this creature] enters the battlefield\" or \"[This creature] enters the battlefield with\" abilities of the copied card won't apply."},{"date":"2024-06-07","text":"If a card in your graveyard has {X} in its mana cost, X is considered to be 0."},{"date":"2024-06-07","text":"Shifting Woodland copies exactly what was printed on the original card and nothing else. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2024-06-07","text":"You must already control a Forest as Shifting Woodland enters the battlefield for it to enter untapped. If it enters the battlefield at the same time as a Forest when you control no other Forests, it will enter tapped."}],"rarities":["rare"]},"shock":{"name":"Shock","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Shock deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 2 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d","metadata":{"source_printing_ids":["00365412-41db-427c-9109-8f69c17c326d","0f568875-9ccb-487f-8977-cce816bb3a28","297d1cef-c181-481b-912c-385b81efd972","298747bb-eb40-4b58-bb22-4ac2bc1d795c","2fbec2ea-7b60-4c51-9782-52ccdd96c4b7","334ad39a-4088-4530-8f3c-d34e7cc99fae","3c866bdb-ff94-4f3f-8429-e72c2cbb94ef","4aef9732-28a6-4e6a-b1ba-79b28d85d78b","59fa8e8d-bcb8-47bf-b71a-df11c8d0f2c9","63ecf91b-853b-41a5-b655-18cfeeddbab6","68a68db8-5e4e-4c98-a319-7717cc39e831","69a5dbe6-e671-4aec-845b-2e86912d69c6","6f096de6-995a-4c54-9e9e-b46410d6022d","760b41a1-c087-4b11-b8a0-fb01d8a4c0c6","83c92b5d-103c-4719-a850-690a7010291a","a706d6a1-e398-41d8-b28b-060023300dda","b8fed52c-e84e-41c9-b683-d8b26fa03c5f","bf5a0e1e-5239-41f3-a63f-d9303b1b01fc","c8828ece-9583-429b-8013-35cfca955721","daef5f10-ccb5-4304-b04f-b52a7d2f4158","ea653772-a5fe-4416-bef3-fd41133371db","ec8b241a-a58e-440a-8591-91dce118bd95","efd56707-4a27-4102-a517-ed65436376aa","f8314410-53e1-4264-87f1-5c6484670693","f9b2ff2a-6dfe-4635-8da2-22d525e82b94"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","6ED","7ED","8ED","9ED","AER","ANB","BBD","BTD","DDN","DPA","FNM","J25","M12","M14","M19","M20","M21","MAR","MKM","OM1","OMB","ONS","PLST","PMEI","PRM","PS11","PSAL","SPM","STA","STH","WC98","WC99"],"rarities":["common"]},"showstopping surprise":{"name":"Showstopping Surprise","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. Turn it face up if it's face down. Then it deals damage equal to its power to each other creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"turn","description":"Turn it face up if it's face down"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. Turn it face up if it's face down. Then it deals damage equal to its power to each other creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e16cbcbd-b03a-404c-8d1e-0a05848181d9","metadata":{"source_printing_ids":["1ffdad45-0111-4c6a-bfb0-25aeee7aea1d","299028df-9dac-43c3-a11d-b5f076101ced"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MKC"],"rulings":[{"date":"2024-02-02","text":"If the target creature is a face-down creature that can’t be turned face up for any reason, it will remain face down on the battlefield and still deal damage equal to its power (which is very likely to be 2) to each other creature."}],"rarities":["rare"]},"shrink":{"name":"Shrink","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets -5/-0 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":-5},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Target creature gets -5/-0 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"252330b1-67cf-4d9e-a413-917ba61e731f","metadata":{"source_printing_ids":["30785867-32f7-46c9-94c2-775078e792ae","84f96537-76d2-4887-b17f-b8297fa50fd5","c4e319d7-53f3-40e8-9a75-fe1fd8716733","d9f4eaa1-3c2b-4f5d-8d4e-98d153899873"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["5ED","HML","ME2"],"rarities":["common"]},"shriveling rot":{"name":"Shriveling Rot","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Until end of turn, whenever a creature is dealt damage, destroy it.\n• Until end of turn, whenever a creature dies, that creature's controller loses life equal to its toughness.\nEntwine {2}{B} (Choose both if you pay the entwine cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Entwine":{"type":"Cost","shards":["Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"whenever","description":"whenever a creature is dealt damage, destroy it"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9ce8691a-d9e2-45b2-bda0-2c3891b55307","modal":{"min_choices":1,"max_choices":2,"mode_count":2,"mode_descriptions":["Until end of turn, whenever a creature is dealt damage, destroy it.","Until end of turn, whenever a creature dies, that creature's controller loses life equal to its toughness."],"allow_repeat_modes":false,"entwine_cost":{"type":"Cost","shards":["Black"],"generic":2},"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["25c255d5-9246-4a93-8750-0da8871fb12d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DST"],"rarities":["rare"]},"sifter wurm":{"name":"Sifter Wurm","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wurm"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen this creature enters, scry 3, then reveal the top card of your library. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, scry 3, then reveal the top card of your library. You gain life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ed36b1f6-2922-46a9-b48d-b9ebedb9a142","metadata":{"source_printing_ids":["492ff217-1bf6-4942-8d2f-8ddd71da683f","5dbaf7e3-e2fc-4399-aa83-c13df43008a0","c330b248-282b-4aa5-80de-f0656304e697"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","CMR","HOU"],"rulings":[{"date":"2020-11-10","text":"For cards in your library with {X} in their mana costs, X is considered to be 0."},{"date":"2020-11-10","text":"Once Sifter Wurm's triggered ability begins to resolve, no player may take other actions until it's done. Notably, opponents can't try to change your library after you scry but before you reveal the top card of your library."}],"rarities":["uncommon"]},"signature slam":{"name":"Signature Slam","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control, then each modified creature you control deals damage equal to its power to target creature you don't control. (Equipment, Auras you control, and counters are modifications.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Put a +1/+1 counter on target creature you control, then each modified creature you control deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5ae23752-47a6-4031-8398-b8f6c77cfaad","metadata":{"source_printing_ids":["634e05c9-96da-467a-870d-3af68da53071"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"A creature that is equipped is considered modified no matter who controls the Equipment that's attached to it."},{"date":"2024-06-07","text":"A creature with a counter on it is considered modified no matter what kind of counter it is or which player put it on that creature."},{"date":"2024-06-07","text":"An Aura controlled by another player does not cause a creature you control to be modified."},{"date":"2024-06-07","text":"If the creature you control is an illegal target as Signature Slam tries to resolve but the creature you don't control is still a legal target, each modified creature you control (which may include the target creature you control if it's still on the battlefield) will still deal damage equal to its power to the creature you don't control."},{"date":"2024-06-07","text":"If the creature you don't control is an illegal target as Signature Slam tries to resolve but the creature you control is a legal target, you'll still put a +1/+1 counter on the target creature you control."}],"rarities":["uncommon"]},"sin prodder":{"name":"Sin Prodder","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Devil"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Menace\nAt the beginning of your upkeep, reveal the top card of your library. Any opponent may have you put that card into your graveyard. If a player does, this creature deals damage to that player equal to that card's mana value. Otherwise, put that card into your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Graveyard","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"optional_for":"AnyOpponent","target_choice_timing":"Resolution","forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library. Any opponent may have you put that card into your graveyard. If a player does, ~ deals damage to that player equal to that card's mana value. Otherwise, put that card into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"745efa76-7063-4971-9d1b-b2b4cb336a57","metadata":{"source_printing_ids":["ad61d59f-0933-469e-a962-6768d6a919c2","cefeb031-9dda-4717-a8d1-e2c21551e43a","db89172e-0542-4858-9e65-38b1bac8cdeb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["JMP","PSOI","SIR","SOI"],"rulings":[{"date":"2016-04-08","text":"Each opponent in turn order, starting with the one after you in turn order, may choose to have you put that card into your graveyard. Once a player does so, Sin Prodder deals damage equal to that card's mana value to that player immediately and Sin Prodder's trigger has no further action."}],"rarities":["rare"]},"singe-mind ogre":{"name":"Singe-Mind Ogre","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ogre","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, target player reveals a card at random from their hand, then loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"None"},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player reveals a card at random from their hand, then loses life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a0f26f84-9607-4411-bca5-681ba4e57756","metadata":{"source_printing_ids":["ab1564d7-43fe-4072-91a6-622713848b7e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ARB"],"rarities":["common"]},"sister hospitaller":{"name":"Sister Hospitaller","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Medicus Ministorum — When this creature enters, return target creature card from your graveyard to the battlefield. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield. You gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"06c39c1c-0e34-4ef0-bd06-23245cb9cc59","metadata":{"source_printing_ids":["69ae36ca-683b-4557-9c2a-130db4150152","fb086307-b089-45ba-81d3-789ed35dc5b8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rulings":[{"date":"2022-10-07","text":"Use the mana value of the card as it last existed in the graveyard to determine the amount of life you gain."}],"rarities":["rare"]},"skullwinder":{"name":"Skullwinder","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhen this creature enters, return target card from your graveyard to your hand, then choose an opponent. That player returns a card from their graveyard to their hand.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":{"ChosenPlayer":{"index":0}}},{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target card from your graveyard to your hand, then choose an opponent. That player returns a card from their graveyard to their hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d3d8dd6e-a80b-4063-a542-ff67ef8dad4f","metadata":{"source_printing_ids":["0d53c93a-3d02-4a89-bf3a-58c19d861f9b","6133735c-37ea-4c91-a848-59bc47dcb0b7","94d406ed-bf60-4adc-9721-e64d1313f6b7","96105316-a060-4bb6-9144-491b0c14e5d6","cb7f2e86-5445-4835-8cad-e08aea651ebb","e820c022-c3a8-4c98-a60b-1fb105d38937","e90c4b81-69b8-4310-9799-431e4da8eb48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C15","C20","CLB","CMA","M3C","OTC","PLST","PZ1"],"rulings":[{"date":"2015-11-04","text":"Skullwinder's enters-the-battlefield ability targets only the card in your graveyard. If that card is an illegal target as the ability tries to resolve, the ability won't resolve and none of its effects will happen. No cards will be returned to any player's hand."},{"date":"2015-11-04","text":"You choose the opponent as the ability is resolving. You may choose an opponent with no cards in their graveyard."},{"date":"2022-06-10","text":"Skullwinder's enters-the-battlefield ability targets only the card in your graveyard. If that card is an illegal target as the ability tries to resolve, the ability won't resolve and none of its effects will happen. No cards will be returned to any player's hand."},{"date":"2022-06-10","text":"The chosen opponent gets to choose which card to return from their graveyard to their hand."},{"date":"2022-06-10","text":"You choose the target card as you put Skullwinder's triggered ability on the stack, but you don't choose an opponent until after you have returned the card to your hand."},{"date":"2022-06-10","text":"You may choose an opponent with no cards in their graveyard. In that case, they will not get to return anything."}],"rarities":["uncommon"]},"sly spy":{"name":"Sly Spy","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Spy"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to a player, you may destroy target creature facing right in its art. (Creatures without faces don't face anywhere.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may destroy target creature facing right in its art.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"8ca76d15-a3b8-424e-920a-66d28da6ef62","metadata":{"source_printing_ids":["596ee7af-cc78-41b5-93c5-945189d5e46c","5d37a3fc-d652-4c87-892e-bf8b8dc71e35","94008ffb-f0fe-4e83-bf73-d8ade4104d86","bdaf902f-4139-4a54-a519-a60aea84e669","e5d4df93-078e-4266-82f2-cf4fc5945ce3","ebc2eae1-8e24-4bef-aa03-a3e428f291a1"]},"legalities":{},"printings":["UST"],"rulings":[{"date":"2018-01-19","text":"A creature is facing right if it’s facing the side of the card where the mana cost normally is."},{"date":"2018-01-19","text":"If there are multiple figures in the art, the one depicting the creature itself is the one that counts."}],"rarities":["uncommon"]},"sol ring":{"name":"Sol Ring","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}{C}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}{C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"6ad8011d-3471-4369-9d68-b264cc027487","metadata":{"source_printing_ids":["04002706-2236-4b79-bdea-4f263e43cb9c","06be8262-4636-4a2c-a0c8-de741cf45aed","0afa0e33-4804-4b00-b625-c2d6b61090fc","0d38ff41-a60c-4d70-92e4-4d3d3ab073a3","0ddf922b-2005-411c-9537-ab2884b54507","0f003fde-be17-4159-a361-711ed0bee911","0f44a54b-512e-45ef-80ee-7982d2eaf762","13788423-db82-4e76-83ad-3f812a4d547a","14dbce79-1fcc-4cc9-bf38-7729e44a411e","16089845-be81-4fc2-82a8-8a28ec7e20d4","16a2c470-b2b8-4633-89b1-7b936bcaff8d","16fbbd8d-bb18-4a8b-95a4-30ad6d548f72","180000d4-6844-4292-b768-b1f74a3b8b2d","19911e6e-7c35-4281-b31c-266382f052cc","199cde21-5bc3-49cd-acd4-bae3af6e5881","1abcafa9-0f27-482f-95a9-24520f0106b8","1b023575-4cb5-434f-92ef-d3b81aaa3c3e","1b3a4537-1d51-47ac-a12e-6b8d68f530e6","21365def-bec7-4ec0-a1e9-34c85bf6c274","2418af21-7be9-4dec-8be6-4d0bcf84a7ca","27ea0aa3-30c0-4eb4-b262-ce70781277ce","2824f3fb-82e6-43bd-babf-da6777a5b075","286bea73-8ad8-4423-8a7c-8497420fdb54","2c52c96d-e20f-4025-b759-674b36cf0db3","2d47121d-8b90-4d28-9ffa-0a640b9dd611","2f18e125-ac4a-45d0-8055-98f59c77324e","33773feb-5b49-4d44-adca-93b99009acc0","3459b229-7c46-4f70-87d4-bb31c2c17dd9","38d347b7-dc17-417a-ab07-29fe99b9a101","3917f744-b876-47ae-94ad-f72b215ff1e7","3dd5ea51-68f7-4c12-a96b-8caca0d54640","3e10052f-b3e5-4a2c-b268-9a12ce354eb9","40c825d3-004f-4dea-9d82-815617fb0a41","46ca0b66-a000-4483-b916-f5b89e710244","4cbc6901-6a4a-4d0a-83ea-7eefa3b35021","4f943781-ce41-40e2-9c45-25dcd24f0090","508b2c62-a344-4897-a3a4-4f0555627fc1","5805f64c-dd88-4e94-8f0a-a01dae67e3ba","58b26011-e103-45c4-a253-900f4e6b2eeb","5b9fe249-9bda-462b-922c-f01c904c233a","60bc8cfc-8f68-4ec7-92a7-98380d92f69e","65b145dd-8529-4bff-b381-b4be53f24b54","6714ffab-5950-4cb7-9b25-d7423dda9ccc","69c43267-e862-4c08-ae7b-0d400d31f297","6c5c9437-3d99-4a7c-8255-9acdcb1acc40","6d5b06e4-bbc8-405b-bc53-1380dba3696e","74109c41-d1e7-4108-bed1-3d9110d5e7d2","7454e0cc-98c2-48a1-b2c9-49908d2aedcc","76cd916c-7464-4391-814b-09eac0d8d204","772edef7-2f17-4244-b1bb-4e7a53c253e1","7a8db21f-722b-4a07-985b-8d25a0b0006a","7b0ccfd4-f118-4497-9c5a-54cf12000e16","7bf22be9-bf1a-48ec-a825-d19504f9dfcc","7d698bdd-b485-409d-b03e-c7c7d3fe9a92","7fccf54e-c257-4be6-af85-4e0a0fb42f36","803fd65f-4ca6-4fe4-abc2-72aa32ebb3a5","82f1a8a3-7fdb-49a3-9649-b5c0b4755cd5","835df088-5860-46b1-9c4d-3607d0293963","83a0f2eb-2f6d-4aaa-b7a9-ea06d5de7eca","842c3df8-43c9-4555-901c-67cdbfd26348","858e0b83-7927-4e34-ae25-6ad7a787ad97","870ec754-a76c-40ea-9b81-81b3dca1f62c","8a5edac3-855a-4820-b913-44de5b29b7d0","8ae6d023-2945-47f1-bc9f-f9c5ff9f5282","8f69a74a-778c-4a1d-99ad-6ca04771fb23","8fb860f9-3729-436e-adfb-c98c2a389d5d","90f2398b-d41e-4e4b-bc93-5a1f34b52345","9138d11a-d55f-4c46-bb27-7e8e15a44e8c","9a34ac23-e318-4c0b-ab4c-e1eaa0e2547e","9ef06694-e05d-4e96-a588-bd276447dcf8","9f4d9a0c-5a9a-4486-b8a0-942e73688fb4","9fac535f-46a3-440b-bb93-6fe4b2dba600","a8260eef-5ff2-4058-8aa5-469b402eaf65","aa21fc27-42d0-456a-9882-34d7f404270b","ab696cab-2d83-444f-8068-dbf071c75de9","acce65cc-9093-45a6-8c86-97edce545050","af88e4e8-b694-4ec0-8885-701ea30bf84c","b162b131-5612-4605-9de8-a5731eeac37e","b68a8c69-0e59-4491-9e4d-4c50600a035e","b79cb394-eb91-4b3b-91d4-c6a0f723feb1","beebe533-29b9-4041-ab66-0a8233c50d56","c0fb91ec-20a8-4c13-9469-18885b1ecca3","c1f93f78-645b-4f21-a80b-5542f3328111","c4300d24-1cae-4dd5-be7e-38cc677cf5bd","c46138f0-224a-4ca9-bf03-badb2ae5ee21","c5430a1d-a575-4853-93f2-635c327eea15","c6399a22-cebf-4c1d-a23e-4c68f784ac1b","c6721419-70aa-4137-98d5-98ef17720c8e","c946b161-0e4f-4c0a-a075-cdcf05504d0b","ca15027f-0f32-4018-9da8-50e4002fa6f8","ca57eebe-5bc9-4cff-ae91-ccd509aa36ce","d105068a-d4f1-4971-b5a0-72806a798497","d1d8d32d-ebb2-46c2-b909-b7f71d33159e","d582b3c3-996e-4f4b-9efd-134e127d563c","d74a72a2-d46a-41c2-a400-70571197b020","d75bfbe3-41a0-44e1-86ce-f56c9bcf57d7","d9e098aa-a886-430e-8f11-78fb6f2d8ada","db0dfaa7-40b2-4065-9cef-22e6af8ad53c","e07f656c-97b5-4147-821a-edbb49f34e19","e1187999-521d-4ed0-8673-6eb8f3c58bb8","e3450882-d791-4172-b02a-ee7fdb36acfc","e3b2235b-6c18-436e-9d80-4a82ce0cac14","e672d408-997c-4a19-810a-3da8411eecf2","e675f7e2-5c9f-4912-8fdd-daaeda284a3d","ebfcda26-1f28-4d60-bc7b-8c0bafc6b132","eca9ae7b-a6d9-43ea-92d4-0110fd6643a7","ee6e5a35-fe21-4dee-b0ef-a8f2841511ad","f19a0013-ebf9-4472-a2ed-462c59d212a5","f2301532-a61f-4038-b771-6c34b6505b09","f48f7190-9ee3-477f-8b25-91e8c2916624","f9a32f17-49c4-4654-a087-1ba474f37377","fe202721-c5be-46de-9fb3-ac18c699e10d","fff440c0-7e6a-46c2-9989-f1b5af20fd44"]},"legalities":{"commander":"legal","duel":"banned","legacy":"banned","oathbreaker":"banned","vintage":"restricted"},"printings":["2ED","30A","3ED","40K","AFC","BLC","BRC","C13","C14","C15","C16","C17","C18","C19","C20","C21","CC1","CC2","CED","CEI","CLB","CM2","CMA","CMD","CMM","CMR","DMC","DRC","DSC","ECC","EOC","FBB","FDC","FIC","G05","KHC","LCC","LEA","LEB","LTC","M3C","MB2","ME4","MIC","MKC","MOC","MPS","NCC","NEC","ONC","OTC","PF19","PFDN","PIP","PLG22","PLST","PRM","PZ1","SCD","SLC","SLD","SOC","SUM","TDC","TLE","TMC","V10","VMA","VOC","WHO","WOC","ZNC"],"rarities":["common","uncommon","rare","mythic"]},"solitude":{"name":"Solitude","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Incarnation"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flash\nLifelink\nWhen this creature enters, exile up to one other target creature. That creature's controller gains life equal to its power.\nEvoke—Exile a white card from your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Lifelink",{"Evoke":{"type":"NonMana","data":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"White"},{"type":"InZone","zone":"Hand"}]}}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile up to one other target creature. That creature's controller gains life equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.74a: When this permanent enters, if its evoke cost was paid, sacrifice it.","constraint":null,"condition":{"type":"CastVariantPaid","variant":"Evoke"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dcb9c2a7-ae54-4ddc-a567-640bf4bf4366","metadata":{"source_printing_ids":["0150e5a9-99d8-4d81-be9c-3a8e98a41758","47a6234f-309f-4e03-9263-66da48b57153","bbc46960-fdf1-4227-93b8-3fd778be896b","febad44a-eaf0-4122-87c5-a12d17f28392"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["H2R","MH2","PMH2","PRM","SLD","SPG"],"rulings":[{"date":"2021-06-18","text":"If you pay the evoke cost, you can have the creature's own triggered ability resolve before the evoke triggered ability. You can cast spells after that ability resolves but before you have to sacrifice the creature."},{"date":"2021-06-18","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an evoke cost), add any cost increases, then apply any cost reductions. The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."}],"rarities":["mythic"]},"sorin the mirthless":{"name":"Sorin the Mirthless","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sorin"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Look at the top card of your library. You may reveal that card and put it into your hand. If you do, you lose life equal to its mana value.\n[−2]: Create a 2/3 black Vampire creature token with flying and lifelink.\n[−7]: Sorin deals 13 damage to any target. You gain 13 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Look at the top card of your library. You may reveal that card and put it into your hand. If you do, you lose life equal to its mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Vampire","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"types":["Creature","Vampire"],"colors":["Black"],"keywords":["Flying","Lifelink"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":null,"duration":null,"description":"[−2]: Create a 2/3 black Vampire creature token with flying and lifelink.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":13},"target":{"type":"Any"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":13}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−7]: Sorin deals 13 damage to any target. You gain 13 life.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fbffaf9f-40e7-4113-a037-533b733cebce","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["fe9ee815-6717-5dbc-9c88-30054c02cd69"],"source_printing_ids":["112394a6-7819-43b4-adad-f6900aff2936","260d784d-0213-44da-8f78-58968a185012","51089813-8ad5-4ee0-af75-cfba870b675c","cc7ff5f4-a7cc-41a1-a22b-8cf67ad18707","d1a38e25-297f-43e1-9455-73f00eb08cec"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"If you choose not to reveal the card you looked at with Sorin's first loyalty ability, it stays on top of your library."}],"rarities":["mythic"]},"sorin, grim nemesis":{"name":"Sorin, Grim Nemesis","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sorin"]},"power":null,"toughness":null,"loyalty":"6","defense":null,"oracle_text":"[+1]: Reveal the top card of your library and put that card into your hand. Each opponent loses life equal to its mana value.\n[−X]: Sorin deals X damage to target creature or planeswalker and you gain X life.\n[−9]: Create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the highest life total among all players.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[+1]: Reveal the top card of your library and put that card into your hand. Each opponent loses life equal to its mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"[−X]: ~ deals X damage to target creature or planeswalker and you gain X life."},"cost":null,"sub_ability":null,"duration":null,"description":"[−X]: ~ deals X damage to target creature or planeswalker and you gain X life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Vampire Knight","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Vampire","Knight"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"AllPlayers","aggregate":"Max"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":-9},"sub_ability":null,"duration":null,"description":"[−9]: Create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the highest life total among all players.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"0a01dd05-e289-489f-b3ad-88e15e157bd0","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["101bbc93-a09f-5922-a6cc-3a258ec33722","5a28cd23-684e-554a-87dd-710c22b6f805"],"source_printing_ids":["829fba64-6708-40a9-b134-3cdfbf2c648f","c2933144-c931-498a-9e91-f5165873c3b7","d25c3609-a200-4532-9df8-8e92c24544bc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PSOI","SIR","SLD","SOI"],"rulings":[{"date":"2016-04-08","text":"If a card in your library has {X} in its mana cost, X is considered to be 0."},{"date":"2016-04-08","text":"In a Two-Headed Giant game, the highest life total among all players is the highest life total among all teams."}],"rarities":["mythic"]},"soul warden":{"name":"Soul Warden","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f3fad295-1af2-4ecc-8546-b121ad6be27b","metadata":{"source_printing_ids":["122cfae7-ab44-4458-9f1d-ca43f9766777","37fee9ca-a9bc-4369-b71f-69f4183d1c1e","494d4f46-4cf7-40f6-9988-5103146f3ff2","5fe5fe13-b57d-4514-89e6-79909474f7e8","6bbdd169-958f-42df-812d-f75fbed9576f","8e883f62-57de-4005-a937-27d0809ca04a","ad5590a7-dca5-40e3-b760-4d68d99b8740","d563249e-7203-4d54-af5a-82d2f1a584cb","d5ee24ee-4d28-4634-bd43-90eff15c16dd","d96266b3-a7cb-40ce-a328-ac13719fe5f0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","9ED","BRB","EXO","HA1","HOP","M10","MD1","MM3","PLST","PSAL","SLD","SPG","WC98"],"rulings":[{"date":"2025-01-24","text":"If this creature enters at the same time as one or more other creatures, its ability will trigger for each of those other creatures. "}],"rarities":["common","uncommon","rare"]},"south wind avatar":{"name":"South Wind Avatar","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake","Spirit","Avatar"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control dies, you gain life equal to its toughness.\nWhenever you gain life, each opponent loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control dies, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false},{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, each opponent loses 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"003e5dc6-8b26-4a0a-a50b-5f0806a7bacd","metadata":{"source_printing_ids":["ac182338-ab26-4f9e-87f9-be83c5cc7cd7","c17bc07c-7147-4c84-aa0b-8a0865fba94e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TMT"],"rulings":[{"date":"2026-01-27","text":"Each creature with lifelink dealing combat damage causes a separate life-gaining event. For example, if two creatures you control with lifelink deal combat damage at the same time, South Wind Avatar's last ability will trigger twice. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, planeswalkers, and/or battles at the same time (perhaps because it has trample or was blocked by more than one creature), the ability will trigger only once."},{"date":"2026-01-27","text":"If you gain an amount of life \"for each\" of something or \"equal to the number\" of something, that life is gained as one event and South Wind Avatar's last ability will trigger only once."},{"date":"2026-01-27","text":"In a Two-Headed Giant game, life gained by your teammate won't cause South Wind Avatar's last ability to trigger, even though it caused your team's life total to increase."},{"date":"2026-01-27","text":"South Wind Avatar's last ability triggers just once for each life-gaining event, whether it's 1 life from Illegitimate Business or 3 life from Guac & Marshmallow Pizza."},{"date":"2026-01-27","text":"Use the creature's toughness as it last existed on the battlefield to determine how much life you gain with South Wind Avatar's second ability."}],"rarities":["rare"]},"spellstutter sprite":{"name":"Spellstutter Sprite","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Faerie","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nFlying\nWhen this creature enters, counter target spell with mana value X or less, where X is the number of Faeries you control.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Faerie"}],"controller":"You","properties":[]}}}}]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, counter target spell with mana value X or less, where X is the number of Faeries you control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"32e60fb4-e841-4f82-9c83-5e63766e8e6f","metadata":{"source_printing_ids":["181434ed-65eb-4b47-9b12-7bbe6e0d262e","3899605d-2203-4ab6-9ff5-69490382eea4","4e5ba4a9-a282-4d4b-b25a-179e05e458f4","650221f7-d935-498b-a9a1-ec23c89fc5f8","a0e262a3-0e69-4d61-8143-b9d137c31496"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["F11","J22","LRW","MMA","PLST","PRM","SLD"],"rulings":[{"date":"2007-10-01","text":"The value of X needs to be determined both when the ability triggers (so you can choose a target) and again when the ability resolves (to check if that target is still legal). If the number of Faeries you control has decreased enough in that time to make the target illegal, Spellstutter Sprite’s ability won’t resolve (and the targeted spell will resolve as normal)."}],"rarities":["common","rare"]},"spelunking":{"name":"Spelunking","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the battlefield this way, you gain 4 life.\nLands you control enter untapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":4}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the battlefield this way, you gain 4 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"Untap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"description":"Lands you control enter untapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2962fe4c-bf48-454b-8a6b-0f8253352ae8","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"When this enchantment enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the batt","line_index":0}],"metadata":{"source_printing_ids":["d3be4257-2316-4a2e-b347-f71c0368a947"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If Spelunking would enter the battlefield at the same time a land you control would enter the battlefield tapped, that land still enters the battlefield tapped."},{"date":"2023-11-10","text":"If a land has an ability that says it enters the battlefield tapped, you choose the order in which that ability's effect and Spelunking's effect apply. This means you can choose to have the land enter tapped or untapped. If a land you control is simply put onto the battlefield tapped without a replacement effect being applied, it always enters untapped if you control Spelunking."}],"rarities":["uncommon"]},"spikeshell harrier":{"name":"Spikeshell Harrier","mana_cost":{"type":"Cost","shards":["Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Robot","Turtle"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, return target creature or Vehicle an opponent controls to its owner's hand. If that opponent's speed is greater than each other player's speed, reduce that opponent's speed by 1. This effect can't reduce their speed below 1.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Vehicle"}],"controller":"Opponent","properties":[]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeSpeed","player_scope":{"type":"ParentObjectTargetController"},"amount":{"type":"Fixed","value":1},"direction":{"type":"Decrease"},"floor":1},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"Speed","player":{"type":"ParentObjectTargetController"}}},"comparator":"GT","rhs":{"type":"Ref","qty":{"type":"Speed","player":{"type":"AllPlayers","aggregate":"Max","exclude":{"type":"ParentObjectTargetController"}}}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature or Vehicle an opponent controls to its owner's hand. If that opponent's speed is greater than each other player's speed, reduce that opponent's speed by 1. This effect can't reduce their speed below 1.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"23102d8a-3a93-4e83-af5b-401c85ba9dbc","metadata":{"source_printing_ids":["8f1ece22-ca32-45bb-b5f4-480f9b366cb5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT"],"rarities":["uncommon"]},"spinal embrace":{"name":"Spinal Embrace","mana_cost":{"type":"Cost","shards":["Blue","Blue","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during combat.\nUntap target creature you don't control and gain control of it. It gains haste until end of turn. At the beginning of the next end step, sacrifice it. If you do, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Untap","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Untap target creature you don't control and gain control of it. It gains haste until end of turn. At the beginning of the next end step, sacrifice it. If you do, you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"4cf3fb65-9107-428a-8853-029ec97112b5","casting_restrictions":[{"type":"DuringCombat"}],"metadata":{"source_printing_ids":["692ad1eb-62a3-4560-bf8e-35f7db73c7a3","8b647204-715a-4f30-9ba3-f0be3410c0a0","cd12b2d6-3940-4d47-8c76-ae73b8a14b15","fa304be0-3944-42c3-94cd-6568db8a661e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C13","DMR","INV","ZNC"],"rulings":[{"date":"2022-12-08","text":"You must sacrifice the creature if you still control it as the delayed triggered ability resolves."}],"rarities":["rare"]},"spirebluff canal":{"name":"Spirebluff Canal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control two or fewer other lands.\n{T}: Add {U} or {R}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["Blue","Red"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {U} or {R}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control two or fewer other lands.","condition":{"type":"UnlessControlsOtherLeq","count":2,"filter":{"type_filters":["Land"],"controller":"You","properties":[{"type":"Another"}]}},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"eb0d8093-5f93-4b25-9384-08f9731bfb28","metadata":{"source_printing_ids":["4e587ea7-0632-4789-ba75-3c410da2bb96","59a04e16-a767-4112-ab01-6ca1b09c286c","9d83bdb3-1f04-4b99-a36b-312da0cbed50","cdd8310d-6a91-46f6-aa85-f73ea37a66a2","f4fc41f3-87d4-4a0d-9ced-d263980378a3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["KLD","KLR","OTJ","PKLD","POTJ","SLD"],"rulings":[{"date":"2016-09-20","text":"If one of these lands enters the battlefield at the same time as one or more other lands (due to Oblivion Sower or Warp World, perhaps), it doesn't take those lands into consideration when determining how many other lands you control."},{"date":"2016-09-20","text":"If one of these lands is your first, second, or third land, it enters the battlefield untapped. If you control three or more other lands, however, it enters the battlefield tapped."}],"rarities":["rare"]},"spirit flare":{"name":"Spirit Flare","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature you control. If you do, it deals damage equal to its power to target attacking or blocking creature an opponent controls.\nFlashback—{1}{W}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"NonMana","data":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"PayLife","amount":{"type":"Fixed","value":3}}]}}}],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Untapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature you control. If you do, it deals damage equal to its power to target attacking or blocking creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d19a2c28-8d09-40bf-aeb1-e699672b009f","metadata":{"source_printing_ids":["efdbe7c6-99ad-4c73-bffe-7bbdc6965854"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["TOR"],"rulings":[{"date":"2004-10-04","text":"If either target is illegal when the spell resolves, it will do no damage."},{"date":"2021-03-19","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2021-03-19","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-03-19","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2021-03-19","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-03-19","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-03-19","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["common"]},"spoils of the hunt":{"name":"Spoils of the Hunt","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn for each mana from a Treasure that was spent to cast this spell. Then that creature deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"SelfObject","metric":{"type":"FromSource","source_filter":{"type":"Typed","type_filters":[{"Subtype":"Treasure"}],"controller":null,"properties":[]}}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn for each mana from a Treasure that was spent to cast this spell. Then that creature deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c29713ee-57e9-40b4-8ca3-a4cc6ede0f46","metadata":{"source_printing_ids":["10dfdfd4-8621-40ef-a60f-74e9c107bbaf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rarities":["common"]},"springheart nantuko":{"name":"Springheart Nantuko","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Insect","Monk"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Bestow {1}{G}\nEnchanted creature gets +1/+1.\nLandfall — Whenever a land you control enters, you may pay {1}{G} if this permanent is attached to a creature you control. If you do, create a token that's a copy of that creature. If you didn't create a token this way, create a 1/1 green Insect creature token.","non_ability_text":null,"flavor_name":null,"keywords":[{"Bestow":{"type":"Cost","shards":["Green"],"generic":1}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"AttachedTo"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Insect","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Insect"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, you may pay {1}{G} if ~ is attached to a creature you control. If you do, create a token that's a copy of that creature. If you didn't create a token this way, create a 1/1 green Insect creature token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+1."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8a3ad2ef-8bcb-40c0-85de-f03328c2b644","metadata":{"related_token_ids":["52626921-713d-5fbe-823b-c222119520aa","fdc7aa74-0ebb-5ec9-987d-82b3714dd8db"],"source_printing_ids":["54a3ea87-005e-4985-b2a5-21711d0b71c0","cf723c91-e3ae-4a71-93b2-65d05bfa9b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Auras attached to a creature don't become tapped when the creature becomes tapped. Except in some rare cases, an Aura with bestow remains untapped when it becomes unattached and becomes a creature."},{"date":"2024-06-07","text":"If a permanent with bestow enters the battlefield by any method other than being cast, it will be an enchantment creature. You can't choose to pay the bestow cost and have it become an Aura."},{"date":"2024-06-07","text":"If you don't pay {1}{G}, either because you simply chose not to or because Springheart Nantuko isn't attached to a creature you control, you'll still create a 1/1 green Insect creature token when Springheart Nantuko's landfall ability resolves."},{"date":"2024-06-07","text":"On the stack, a spell with bestow is either a creature spell or an Aura spell. It's never both, although it's an enchantment spell in either case."},{"date":"2024-06-07","text":"Unlike other Aura spells, an Aura spell with bestow isn't countered if its target is illegal as it begins to resolve. Rather, the effect making it an Aura spell ends, it loses enchant creature, it returns to being an enchantment creature spell, and it resolves and enters the battlefield as an enchantment creature."},{"date":"2024-06-07","text":"Unlike other Auras, an Aura with bestow isn't put into its owner's graveyard if it becomes unattached. Rather, the effect making it an Aura ends, it loses enchant creature, and it remains on the battlefield as an enchantment creature. It can attack (and its {T} abilities can be activated, if it has any) on the turn it becomes unattached if it's been under your control continuously, even as an Aura, since your most recent turn began."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"steadfast armasaur":{"name":"Steadfast Armasaur","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance\n{1}{W}, {T}: This creature deals damage equal to its toughness to target creature blocking or blocked by it.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{W}, {T}: ~ deals damage equal to its toughness to target creature blocking or blocked by it.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dc0bd3a3-f34e-4d81-b9e8-b172b005d671","metadata":{"source_printing_ids":["197934d5-726c-4cd3-a934-3d6449a5a56e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["XLN"],"rulings":[{"date":"2017-09-29","text":"If Steadfast Armasaur is no longer on the battlefield as its ability resolves, use its toughness as it last existed on the battlefield to determine how damage is dealt."},{"date":"2017-09-29","text":"Tapping an attacking or blocking creature doesn't remove it from combat. If the target of Steadfast Armasaur's ability survives the damage, Steadfast Armasaur will deal combat damage to and be dealt combat damage by that creature as normal."}],"rarities":["uncommon"]},"steely resolve":{"name":"Steely Resolve","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nCreatures of the chosen type have shroud. (They can't be the targets of spells or abilities.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"IsChosenCreatureType"}]},"modifications":[{"type":"AddKeyword","keyword":"Shroud"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures of the chosen type have shroud."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"48c127f0-2857-4c36-97bc-1291b6fe4a82","metadata":{"source_printing_ids":["36ea852d-ed2b-4c56-9b73-52dce8a3e520","b88c530a-abc3-4cc4-8a48-5b76e1504a3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","SLD"],"rarities":["rare"]},"stomp":{"name":"Stomp","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Damage can't be prevented this turn. Stomp deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"DamagePreventionDisabled","source":0,"expiry":{"type":"EndOfTurn"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d72f5f-8f5d-4180-b514-f22ff5482902","metadata":{"source_printing_ids":["09fd2d9c-1793-4beb-a3fb-7a869f660cd4","3a6431fd-4b79-488e-a0c0-57731616bd08","b5b71cd2-de35-451f-b16e-2e3936169407","c402a722-d412-4598-8a1e-edb889b957e8","ff984a4c-1818-4f8f-a9d7-fce57e77937d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["CLB","ELD","PELD","PLST","PRM"],"rarities":["rare"]},"stronghold arena":{"name":"Stronghold Arena","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {G} and/or {W} (You may pay an additional {G} and/or {W} as you cast this spell.)\nWhen this enchantment enters, you gain 3 life for each time it was kicked.\nWhenever one or more creatures you control deal combat damage to a player, you may reveal the top card of your library and put it into your hand. If you do, you lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Multiply","factor":3,"inner":{"type":"Ref","qty":{"type":"KickerCount"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain 3 life for each time it was kicked.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, you may reveal the top card of your library and put it into your hand. If you do, you lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","White"],"scryfall_oracle_id":"7dabd64c-8d0b-4e56-b6be-5651c9e985c5","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}}]}},"metadata":{"source_printing_ids":["b3c48497-7ef8-4b45-b160-8af28d8e61ba","fb64b0a7-3e9a-490f-bf02-c62fc8cf750d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"As Stronghold Arena's last ability resolves, you don't get to see what the card of your library is before deciding whether to reveal it. If you choose to reveal it, you must put it into your hand and will lose life."},{"date":"2022-09-09","text":"Normally, combat damage is dealt all at the same time. In that case, Stronghold Arena's last ability triggers once for each opponent that creatures you control dealt combat damage to, regardless of how many creatures were dealing that damage. If any of those creatures have double strike or first strike, the ability will trigger once for each opponent dealt damage in each combat damage step."},{"date":"2022-09-09","text":"You may kick Stronghold Arena only once for its {G} cost and only once for its {W} cost. You can kick it twice by paying {G}{W}, but you can't kick it twice by paying {G}{G} or {W}{W}. You can't kick it more than twice."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare"]},"student of warfare":{"name":"Student of Warfare","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Level up {W} ({W}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 2-6\n3/3\nFirst strike\nLEVEL 7+\n4/4\nDouble strike","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"FirstStrike"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":2,"maximum":6},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 2-6 / 3/3 / First strike"},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"AddKeyword","keyword":"DoubleStrike"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":7},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 7+ / 4/4 / Double strike"}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0bc2875b-3a5a-4885-86b9-16ab7330ac10","metadata":{"source_printing_ids":["2f2cf48b-949e-4920-a72d-fddca05c6e98","9f4df9be-324b-458a-9379-ab4aa437a6d2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature’s level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler’s power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature’s power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler’s power or toughness to a specific value, including the effects from a level symbol’s ability, apply in timestamp order. The timestamp of each level symbol’s ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler’s printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don’t overwrite any other abilities it may have. In particular, they don’t overwrite the creature’s level up ability; it always has that."}],"rarities":["rare"]},"stuffy doll":{"name":"Stuffy Doll","mana_cost":{"type":"Cost","shards":[],"generic":5},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nAs this creature enters, choose a player.\nWhenever this creature is dealt damage, it deals that much damage to the chosen player.\n{T}: This creature deals 1 damage to itself.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"},"damage_source":"Target"},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 1 damage to itself.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to the chosen player.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a player.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"499dceab-1890-49c8-b35d-b059a1dc950f","metadata":{"source_printing_ids":["14ca7425-a499-4864-b955-369ef2577849","23038e62-9c7b-4e2a-8661-035966b6ed4a","978c2c7d-6898-4be2-aed7-e673210ce654","b33b5e4e-e68f-4b7d-a9c3-af01aa92c4e8","ce427213-4ce5-478e-83d8-fe80ec446a58"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","M13","SLD","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"A creature can be dealt an amount of damage greater than its toughness. For example, if Stuffy Doll is dealt 3 damage, its triggered ability deals 3 damage, not 1, to the chosen player."},{"date":"2021-03-19","text":"If your life total is brought to 0 or less at the same time that Stuffy Doll is dealt damage, you lose the game before its triggered ability goes on the stack."}],"rarities":["rare"]},"summon: kujata":{"name":"Summon: Kujata","mana_cost":{"type":"Cost","shards":["Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Saga","Ox"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Lightning — This creature deals 3 damage to each of up to two target creatures.\nII — Ice — Up to three target creatures can't block this turn.\nIII — Fire — Discard a card, then draw two cards. When you discard a card this way, this creature deals damage equal to that card's mana value to each opponent.\nTrample, haste","non_ability_text":null,"flavor_name":null,"keywords":["Haste","Trample"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantBlock","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantBlock"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":3}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"9fe77f70-85cf-4a18-9451-2fad4c341f07","metadata":{"source_printing_ids":["a469904f-f144-4e70-b689-c7869e40bcb2","ba934866-efd0-4126-b1ff-9c7e82b73bd6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"If the discarded card has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["rare"]},"sunscourge champion":{"name":"Sunscourge Champion","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you gain life equal to its power.\nEternalize—{2}{W}{W}, Discard a card. ({2}{W}{W}, Discard a card, Exile this card from your graveyard: Create a token that's a copy of it, except it's a 4/4 black Zombie Human Wizard with no mana cost. Eternalize only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Eternalize":{"type":"NonMana","data":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","White"],"generic":2}},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["Black"]},{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","White"],"generic":2}},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f5e9c69f-b949-4e9a-91d8-e0d52f8d8d3e","metadata":{"related_token_ids":["5186a529-39ed-5561-8577-2a86a9d17ec1"],"source_printing_ids":["281bd31f-a4ae-4554-8944-fbc14db21dfd","f0bb41cc-6edb-4a31-92cb-b17850b49432"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","HOU"],"rulings":[{"date":"2017-07-14","text":"For each card with eternalize, a corresponding game play supplement token can be found in some Hour of Devastation booster packs. These supplements are not required to play with cards with eternalize; you can use the same items to represent an eternalized token as you would any other token."},{"date":"2017-07-14","text":"If Sunscourge Champion leaves the battlefield before its triggered ability resolves, use its power as it last existed on the battlefield to determine how much life to gain. If that number is negative, you don't gain any life and you don't lose any life."},{"date":"2017-07-14","text":"If a creature card with eternalize is put into your graveyard during your main phase, you'll have priority immediately afterward. You can activate its eternalize ability before any player can try to exile it, such as with Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"If the card copied by the token had any \"when [this permanent] enters the battlefield\" abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities that the token has copied will also work."},{"date":"2017-07-14","text":"Once you've activated an eternalize ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"Several cards have an eternalize cost that includes \"Discard a card.\" You can't discard the card with eternalize to pay its own cost because the card has to be in your graveyard to begin activating its eternalize ability."},{"date":"2017-07-14","text":"The amount of life you gain is determined as Sunscourge Champion's triggered ability resolves. Players may respond to the ability by attempting to change its power."},{"date":"2017-07-14","text":"The token copies exactly what was printed on the original card and nothing else, except the characteristics specifically modified by eternalize. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-07-14","text":"The token is a Zombie in addition to its other types and is black instead of its other colors. Its base power and toughness are 4/4. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."}],"rarities":["uncommon"]},"swamp":{"name":"Swamp","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Swamp"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {B}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"56719f6a-1a6c-4c0a-8d21-18f7d7350b68","metadata":{"source_printing_ids":["00030770-5e99-4943-819d-8d807c24cc14","000366c8-7a43-49d7-a103-ac5bd7efd9aa","004e232c-ea3d-4a8c-bf16-234ac09e4567","00daa026-aba3-421e-9eaa-aa5649b36eb2","013612b4-fed9-4112-8018-9267ae608fd7","01c46b9a-07ea-40ab-9a2b-5bee8e7d3496","0223cf7f-4c6e-487f-babb-a740a15e1f0c","02cb5cfd-018e-4c5e-bef1-166262aa5f1d","02dc1392-7701-4f3e-b5af-d8756bef6d07","02fe3fdf-1d21-4e35-b0f3-3bcde7b05e23","0306607d-2a42-4008-ac84-8d3ed91fe3aa","0356ae45-e5ca-46b9-8ebc-42bf4776e89c","03e82924-899c-47b4-862a-7a27a96e285a","040d064e-b023-4750-afeb-1f58e36bc4ab","04559991-3278-469f-b2be-07c3b27ad5a5","0520813a-fe20-4bde-8dc9-9a7add51c722","058ebefe-ad31-430b-b298-c9df929e03cc","05e8d2d8-2880-4c1a-97f3-ed3f206883bb","06017c14-2b8b-4840-be21-023602a3e8d8","066b5162-8724-4df3-a3d5-274036d0049d","06a570b2-bcab-4500-b790-252baaf1f6d8","06e0edda-1943-47a3-9ad3-673b38f42c86","07504e2d-9d70-4957-bee6-abab92368a33","07a6df7a-a080-4aef-9a76-5b08bbc4e762","07ab266b-ad6a-422e-9277-27d9f48d2c29","084efea7-2a22-4cca-a1f9-b47aad2ebcac","085b4641-62fb-4820-aded-ccc9403d319e","0863a079-1cc2-4388-85bb-a24eae251e99","086468db-5ecb-4b57-90a8-041eff6faad8","08ec1e4f-e284-4216-a022-bd94c4dae02b","091e1917-6e93-4d36-8cc2-1b553aa92bc0","09af769d-a051-40d4-b203-7ec818c367ca","09d7e861-8dda-4073-bfd6-4ade3bca5cff","09eeb6aa-45ac-4a0e-bab2-1a004aac841f","0ad7a944-0bdd-41a0-a1c5-33531d62a210","0b35ed4a-c1b1-4cf7-8eab-95a85ce75e92","0b3f0063-9a59-4ce1-90b5-e45921d5cc3c","0b8515d2-e8a4-45ab-b361-88eb4ec959bd","0be8241f-cfe9-4e48-8005-8bfcba92547a","0c70db5a-3d7f-4534-9e5a-01d510b8d62a","0cf904da-496c-4d88-a62b-c736ba895078","0d1a1df0-e6dc-4815-bb73-9d100ee6e0b2","0d846729-deec-436f-af5c-08faf53ec36f","0df95545-fe5e-47a5-99d8-1776e02c5713","0e2a9fa6-3c7c-409a-8565-e3d533107971","0e864369-2837-4487-8eee-0d643889d642","0eed3360-1634-4e60-b24d-4128c4896994","1017347b-6b1a-4a2f-9147-98acad779616","103538d1-1b8f-4b18-91ac-17975f353785","11093e3f-092e-49d9-aef9-b9855b040bf2","1176ebbf-4130-4e4e-ad49-65101a7357b4","11c7299b-7a98-4c2f-8be9-35e0630e2995","11fd1aaf-b33d-4a27-8394-c0dadf889b1b","12681e76-6ffc-489e-8dcd-131a31170ced","132155ae-f7a4-4957-91cb-e51ff52716f9","13505c15-14e0-4200-82bd-fb9bce949e68","13964bf9-c391-438a-a28c-2a0716375e0c","13bd1c69-2561-4ff1-af00-bb519b3897c2","1481cb23-7f39-47cf-afe8-aecc798a1dab","15d6b53a-3b40-43be-ae35-c22a2a17a141","1660f317-d337-4c24-8523-613dc3072ca9","166fc328-20d1-4158-bcb6-3cebcf788ef5","1797d5c7-d3fa-4184-85ae-46db14ddf523","183acdf0-bd08-4598-966d-426dea71583d","184a196e-8604-49d2-a66a-6f7c0eafd5de","187e9fa1-6a50-4697-8645-fea4524e8dde","1967d4a8-6cc4-4a4d-9d24-93257de35e6d","19c03592-debd-4b4f-a5ea-a31ce63f5d23","19f62f5c-ddea-4564-bc47-5845ab15d8e2","1af26e12-8518-4b15-afcd-c44faaebb574","1b1d4996-ed4e-4818-a9ec-f5d8ee84ad26","1c590ebb-1e3a-4861-b8f2-aef9c4259efd","1c5d8a2c-b98a-4dae-8b89-4a2435fa7103","1c90f777-2f98-4010-80a3-5fe395747e5f","1ccdc3f2-0e3e-45b4-a141-2eb029275e9a","1cfcda3b-2bd2-4b54-959f-bf4b4f311f6b","1dd4d605-02a2-4183-b191-0bca8dfbf962","1e4ad69e-843c-4f33-be2f-711568f8aac7","1ee0be63-ec99-4291-b504-e17061c15a67","1f7cac8b-6609-42ac-a594-002068e02de4","204f051f-50a6-48fe-aa0e-04c513f1b3ed","20a28816-8e41-4c17-9478-2c85e13ee23b","20f26dde-d1a3-4d0f-9ed9-cfcd9e4ce01e","211b98e5-8ec2-4108-bacd-97e854a85b6f","21900fe6-ae43-42af-a601-d70c25457239","21c39822-b53e-488b-b5df-c0ce325d9039","22687920-e310-4122-a01d-2aff720d2071","22b2ddff-46df-4c0c-9840-edf3d02586f0","2326267f-2412-4217-af73-f5392167a3a6","2333076d-db67-405a-9e76-27edfc591e02","237204ad-ab8a-496f-a093-48d00417350b","2380a8a1-474a-43f7-91db-68cfd7e0b790","239511f0-34b7-423c-b53b-1327d6b7da28","23c03147-e9ff-4a52-b579-12d259b4be23","23e09e49-1a87-4967-8557-6d331c48a563","23e8c5ea-12a2-44b6-a0b6-6c7cea1119f3","24eeb424-235d-4346-9355-57914e740ec6","25ad2444-9985-423c-ad36-387218866409","25bcf9b0-ee35-4911-b515-7182e703beba","26142ae3-5aa1-4b9b-989a-21c0e4e5089d","2646cdba-bf2a-4eda-9d35-c15d1546b6ec","267d4321-4411-499c-a476-70c805abf02a","26c57bee-2810-467c-8ed7-6cecb5cbc379","2755f9f7-95f9-4907-8ec9-21853eb376f4","276b18fb-66cb-4dc0-9c67-60cee1502c7f","2931ebfb-ee76-45f1-8b86-ea77775c323e","296d546a-7481-4cb9-9170-59402592507b","2a0fba6e-54d2-498c-83bc-41024307e608","2a7ce037-e04d-404a-afde-9122518e6a31","2bfe9801-b683-45d9-924c-6734110816bf","2c4be2d6-d168-4e67-8d75-a04f637b56dd","2cce9570-e5d7-44e5-bc93-6d03dd1a3794","2cf4d911-6aad-4007-9735-40d125496aec","2d29e1c2-7afc-45d0-a1cf-78998dc416f7","2d49fc14-e848-4c44-a03c-6dfb83efed80","2d6df214-baa7-4de3-8333-d751c45873e0","2d8c3f29-121e-42d1-be21-29f403f97708","2e55a405-bf5b-4158-ba9a-239627ac9701","2ef981a9-303e-4313-9265-77cc60323091","2f4b9030-f04a-4f42-8dd8-2eae0ce7e420","2f8705f4-c569-4d5f-bfd5-f076fbc78440","2fe8fd6b-f6b0-442a-950e-65144a019b74","306bc28b-a21c-4d8a-9dbe-193333a16182","308809ad-c150-49b1-83e3-b78494156d7a","30b3d647-3546-4ade-b395-f2370750a7a6","30d7edb2-3bb4-4a0f-ad66-eef31cc8ed6b","31228d3c-08e4-4042-a1a1-db8dff3177d9","3122fe7c-3121-43a6-a37c-3fd17bc93a4d","3125bc4d-7e9e-4133-8d11-1abf3dc2cec9","319bc1f0-ee42-44e5-b08b-735613ded2ba","31a756b0-f430-4286-afe1-97c641e4f3b4","32d5f86d-19c3-4a9a-956f-8c52cec5ba83","339c3f05-444c-4e0a-a556-fc09417ee984","34b5fe23-e909-422b-b5a9-74907739ca95","352a5dab-69e7-42f3-8be7-e1d2e8f456a9","352ff74f-6f32-4f1d-992c-b5708756a39b","357bde61-3a24-486f-ab35-8fa4d04515e8","359ca653-664b-4dfc-96cc-06bfb1b700a2","35fe42f9-dd55-4ca4-af0a-59ecdff0dba8","364ee0ec-4970-4a30-bf5b-b045a6122860","36aaa8d9-4b03-4dd2-9b3c-d8b3bf19da73","36af939c-11d9-43a5-bd69-c915a62e972b","376aea7a-6ebd-48fd-ac4f-a16b2e997dce","3810ec60-3f93-46c0-af39-7628b77bacec","3813bf1d-470f-408b-ad6b-aa9e20124b88","38625a65-868f-4cbf-a512-9142f1eddf4a","387ec72f-dd6b-4769-be3a-981d580715be","38fef662-993c-4522-8b3f-7c1d3bb1d946","39c6032a-8a2d-4718-b541-617777db6ec2","3a310639-99ca-4a7e-9f65-731779f3ea46","3b383b16-8128-4d9e-a0d0-9b8ccc9ad6df","3c51de66-a3ed-4ca9-befb-9813e96c4ade","3ce4394a-14c9-4a6e-898c-056108b16e09","3cea8d65-34ba-472e-b50e-da8bdbf54c7a","3dd02eca-557a-4ed8-af50-994d16dfc7f3","3dd92a77-c852-410a-9ee9-abc01e9867a4","3e724e54-a622-4c77-8183-5a397a7c14a9","3f89288a-9958-45c6-9bd2-24e6b3935171","3fecc759-61fa-4040-9b46-710512baa4bf","3ff995d3-e322-422c-9385-4d93152dc7c8","40705a25-2de4-4a54-9fc4-02899085da27","418335b2-398f-499e-92ad-8d21a5a5b69f","4187a894-1a26-43ec-8e38-5422ae7e6b9b","41aa58c2-eaf2-4b17-b014-afbba7199d4a","41c7688d-8155-45fd-83ba-ff9be4d414a3","42a1264f-bda3-45ac-b959-463c6e532fd3","42fec83d-8260-478e-a20f-94d265036e31","430341f3-7dd5-4161-96a2-e76350699b66","4324380c-68b8-4955-ad92-76f921e6ffc1","438a54b0-49e6-4f79-8379-ccb30d06fb60","43c8e72a-3305-41ee-b2e3-8099d4e91edb","442c806c-3af3-401e-8dc8-7be2ef441ba9","447f8dbc-2f09-4995-81e2-2dc1654031fd","44baaa0a-9951-4ee7-a9db-64f841bd1bd0","4510090f-b42d-4df1-af71-64a77dfbc1b2","453aa0d9-b535-4bd9-951c-4304773399b1","45919fc2-da64-4bfd-ba15-e61ed268b422","45927890-52ef-448c-b302-4192afa27a04","45991831-1018-4f98-a4ad-0998a9577d97","459d175e-2b9c-4f30-be03-4e05cd3c68ef","45cbe554-ffdc-4de6-bf27-57790b71effb","4650ebaf-8e9f-431c-998d-e0f426b24d41","46908606-f572-4b2d-9562-ed9c6f50f1ad","4695653a-5c4c-4ff3-b80c-f4b6c685f370","46a6375e-9477-4871-8a15-02439f3f6f34","46c86589-5e1f-42a8-8436-553265e4805b","46e0aaac-fc82-4ce9-87d1-8dead8ec29fd","4760cdcc-e973-439c-a74a-5cb73b4fa22f","47c4fa0e-cfd8-416a-8d88-9bd0791e7f5d","47f114dd-7954-4674-994f-d4b06288ce5b","485df5c7-5653-4bb2-ae0b-8ec83359f192","48621dca-9708-4688-a212-90b382bb4329","48f7492c-67f2-4ba3-848b-7a6a8df7e88b","490452a3-22fb-4c75-9bf2-5cd6d6719446","499f548a-9e41-4b95-812d-a739d945123f","4a0243d2-5fde-489f-8113-4ece0511cb5c","4a0e7a70-672e-400d-971b-63dd128f5229","4abfe418-15f8-46ce-9b39-fd5a38b25d12","4aca4e94-3e7f-462b-a900-84e1f3609ed8","4b0c331d-56c6-47d9-bd52-30a92b6415b3","4b8167f6-854f-40bc-bc86-6a6c915ae357","4bc918af-527c-46d7-861d-32e9150ed3df","4dab8252-5f15-4b83-a167-039ad64c95e4","4dbfdbdd-6322-4ea6-9680-d4e480d78437","4dc185cc-5b8e-43ea-aa75-94ddffb74ad0","4e321257-f494-49fc-a26f-3c65aa5b1377","4e74c620-a445-46a4-a1aa-b5b8ef657f18","4e964e2e-8bc5-423c-ac85-4f0c860afb8a","4ebf5f38-527b-4f7d-9980-4aca116e5b88","4f3a387a-4bc1-4338-9d1e-0fbcb6f03b82","4f4f94cc-eb76-4fa6-b7d5-3cca73e8691a","4f799604-bbbf-4d57-83c8-13a0eafa974e","4f7d8adb-36b1-4f7b-b01d-e60c7bec79be","4f893107-84b0-4e3f-b1f5-b04632f192c5","4fc9d935-2a33-4928-b4b2-25c48544bf24","50205489-2960-462c-a6cb-35a491dc54d5","5083de34-d127-45df-9252-ff09b5cf8b47","50aa6685-48b5-44ac-9588-b94382957bb8","50bdea83-efb5-4371-8d25-5703c6efee65","51477c65-1fc6-4a0c-986f-d51d4e36bc1a","515eff31-24f6-462e-bbd4-b49540421a75","51fe930f-2b5a-4b1e-9007-6ee74fb44715","5205f782-e6af-4152-a15f-080935017e4b","53002007-21ee-4953-9832-157968881b9e","5317d9a0-64f4-4b5f-ab1f-f1e0d91feaf2","537fb023-4352-406f-8435-51b37b99a6be","53d0a415-26b8-4ba2-9503-b4ee2b93617c","53f5c55d-09e5-49dd-906c-0f48a79b4c15","541cd2a1-034b-4f23-8468-40891ccff9fc","541e7f83-4a77-4544-ac4f-53b8c993724d","5452c8e4-3463-4ae3-a9d1-5947bea4684e","551eeb34-09d7-4d08-a0fa-dc313c946279","55fce17b-f57f-4863-bf74-71e45bec4040","5629fcbc-5003-4198-8bef-45845faba258","575fadbe-75a6-4183-be46-53de6af74790","5788684f-1339-4cb4-863a-a9883ccab79b","57da24a0-89a7-4756-b4ca-4dea132e8f67","57ef531e-2a8f-4d40-b509-92e3a86b2257","58496a56-437f-4204-9691-f63795e5cdab","58c4bbf1-2e52-4b43-ad35-9272b48d36a8","58c53fd4-032f-47a9-9f1f-4f6d3c907bd2","5912d2aa-fe91-4cea-9c7a-6dca745f8560","59e221bf-6b14-4a9f-b7fd-eb42bc3d63a5","59e597d5-37e7-4add-b454-c3399b4e3704","5a4a9736-da37-4327-b9ee-e9a38fbe8a19","5a846f00-ccb9-4ee2-8358-7c7722258601","5b643680-4e28-4ae2-b4d6-609d2150a171","5b7096fd-48b1-4eb5-8c18-945ebbd63168","5b923822-7bbc-439f-9994-f80587a6d575","5bd7ee9b-1be6-44f7-8896-11c2f537a15e","5c2c9dc0-7f3a-4f3a-ba08-5c2f87e252bc","5c818f03-0e20-4ef4-bac7-11b2b7f41b5c","5c8cdf65-0113-47c3-a0d5-e0b74c333c81","5cb03b18-d74c-4c89-9539-3549d2e8ff5f","5f1e5571-866b-4b19-b786-e57781353913","5f1ecc8a-4f83-46ce-80cc-acdff31d9ece","5f75f4aa-cede-452b-80c1-bd3b8221dbcb","5f917d8d-7037-4f11-91f6-1ef96b3541bb","6079aea9-145a-445d-a00f-1c0f4018a529","60b7c997-e520-4ff6-8b3b-705c2f12a9d4","6125ffe3-4e48-4e0f-8390-7462446fc8bf","6168225b-d6bc-4844-89ed-e5582a933ac2","6176936d-72e2-4205-8871-4c5a4f1cb2d8","62050e5d-50b3-4c4d-b8c7-b85ff20c4d71","62dbed02-6871-4830-8308-9f2f48e6730d","63803c6b-144c-4c11-b8c1-4a1861085ab7","63d11a38-3b0e-44d4-bf7d-28bed6303693","65181db5-3fc5-497b-ba61-385efdf740ed","65422b02-47ee-4c68-ac27-81fa6368864e","66bb5192-58bc-4efe-a145-2e804fd3483d","674de0e1-be2d-4fda-8519-8775802a7b36","689cf978-7492-4bf9-9b20-a91c21008841","68c40a79-7213-42e2-b93e-d14f0cc5deef","69384f97-3333-4aa7-bc4f-928ba49a2c80","6a90b49f-53b3-4ce0-92c1-bcd76d6981ea","6aa4980a-dcd8-48e0-aca8-ef1590f51c10","6ae08c8d-dc38-4042-a599-ecce6974b095","6b65be65-d32e-42b5-98ee-d53556f17c29","6ba77dad-f157-4e31-9654-921967ea98c0","6bae27d4-9de5-4f95-8c56-79afc6cbeb0c","6bc8f8cb-dc67-4549-be2f-f4d4057065a3","6be28351-642c-4ed1-9041-e99ecb79cba8","6bf5b682-6505-46ab-bf97-af26bda358ba","6c0ea7e6-0659-4944-a997-f46e00340542","6c5301f8-350a-4e26-8d97-0f643e5da7d6","6c8c3f0e-7af4-410b-a675-9ea84f51e812","6cfae795-d3d2-4758-9717-ed33cd0f3bfb","6d2f6bcd-9360-4be8-b516-f1d0238df00b","6d4873cb-43ce-47b4-9d91-a8495a244c85","6dd377f3-cd2a-4df7-8b5e-7c4fbc270014","6ecb02b0-adb9-42b1-86b0-23eab29f5dda","6f0c11f7-f131-4d12-a027-a25df8155cc6","6f23a73a-522b-40cf-a14b-ffdf47a24c01","6f59dee4-89d0-47bf-ace7-901944b7dcc3","6fae7689-a9df-4f69-8040-9fbe24f64838","70202db7-63f6-4ba7-a79e-1afc23d86e24","70d0ef58-c0b3-4bcd-b470-0cf41219a4e6","716460ce-2602-476c-aa53-40d1f22ea7c8","719b570c-1773-4a0c-8ea3-e75b1c14c35f","71d6c388-5da9-4c7a-907f-dfa7237e71aa","72020810-bfa3-42d5-ad0d-6d02a6fe1b31","7232adef-c8eb-461f-b563-cb54cdeb22d5","72dbb928-fa14-4c91-b9d9-ed3787309fc9","736a0484-e091-4178-92c5-c517b0e92f3d","73e124b6-3af7-41c0-b829-ff85aa0c3782","7442c1c7-1c10-4387-92e6-4bdea263064f","745b1731-af31-44d2-ad50-b3e43b620913","74c16759-117f-4f17-baea-88b18d391c38","7577198f-8b2d-4cee-b400-ebab8fb0df8c","757d7085-fbd1-4343-b09a-5113d749c731","75ac1b9a-d919-4b4e-b80a-635de721fb67","76beef17-2beb-44a0-99a3-a8c4f4dd3d50","76f8def9-ee46-4abf-9059-7d1ec6f24951","77ba59d8-c13c-4966-845f-c090e9f061cb","79f2f27c-2ffe-4f6b-8542-00940e805ae0","7a2baa78-f161-4e09-9a30-74ca208d5163","7aa97b25-1ea0-4351-ab9f-f06c8bb4d044","7ac4979a-5b2f-4db1-b665-9d8ccc15ba82","7ace7e2d-17af-467d-a0fc-9af922189452","7b4ddbe5-1be4-47ee-b07a-74c8bec4d752","7b7a442a-16a0-459a-8c24-cd0c72edee03","7c4291fe-eefc-4649-a768-568ae712fe01","7c6e2449-812a-494a-b99d-43b63d59c10d","7c71891b-9980-4b71-8301-e92288d33235","7cb90852-1a5c-4aff-9be2-d783990d2d41","7cd6becc-f06a-4fd3-8305-70604b92a187","7cdb8b9d-2573-4162-9255-50a281dfb775","7d3a6460-eb98-49ed-bdf9-dc97d970c706","7d790d45-12b5-463f-bb3a-eea3511c3c27","7d7c39aa-7bba-4156-b325-91b1369de6bc","7e62bff1-e78e-4e1a-b021-d891eb0f309b","7f61e5b1-8710-4150-8b10-92650d029ed3","801b419b-2a35-41e5-9439-a6e1d8a4c3c9","806d26a2-2f2a-4a77-b5bc-a6c97ba5db42","80906a47-ef4b-4e59-889c-946d40a79d94","81047292-e537-47b5-acfa-ed839707109c","81a8861a-ae60-4a1f-9b25-0bc080cfe3af","82f74cd0-cd73-4b08-8544-5f56b6d96f78","833f9340-4600-4e11-876b-93b80387c895","8365ab45-6d78-47ad-a6ed-282069b0fabc","8394a4fc-809b-4586-88a4-1d3c2c3c84ef","83b16e93-ee53-4c1b-9dea-6db7977e9c2f","8430c66d-55ba-4fc9-9e18-0bba2e459222","843b35ec-7b59-4a22-8fee-2e876a02306b","84634023-5c94-4dcc-9449-abf73ecea542","84737e2d-9d75-4c41-9afa-691260e1f5f2","847cac15-b404-4e0f-964e-7aee41c93346","85288987-6f3f-4b7b-9ecc-9393dd37f115","855c45a9-7031-407e-a6b6-80721b701fe7","85b37484-037a-497a-9820-97299d624daa","85c3d3a3-1199-4936-b5a6-4889072c7e64","85f7b339-cce2-421e-83b8-1764c53dee47","870b65a1-314b-4c22-b942-38f60ba2c392","8747d2d5-1977-4ab7-bd90-aa9a0ab25297","874f0f27-81a4-4853-aaa0-2c15e07c177e","87861e3c-d445-4452-b7e0-19b53e69b6e3","8808d9dd-70c0-46ff-bd9c-dd60240dd121","8838fb77-a484-4323-aa62-c944f3fefa95","888cdb76-d365-41df-8b6a-378ac58ca8b2","89b84af6-8fa6-4224-9f51-0edf48358dcd","8a97cc92-6894-4c6f-8c8d-bfc9fdd4f974","8b153bb8-f9d9-44dc-ae19-d0eb2ea26ba1","8ba9664e-b482-4ea4-8a84-fef817363e0f","8c63838a-49d0-4292-914c-6ae4506dcd3b","8d37e23b-7898-4b5d-b088-d4e54947f579","8def00d9-2e93-4d65-bba5-09c45258bf5e","8e10b125-eaa6-4630-a6fe-6b1805921f07","8e5eef83-a3d4-44c7-a6cb-7f6803825b9e","8f9dc477-a3e4-4fc0-af62-c8b8eb68d360","9019a639-929a-40d9-98b1-6b5268da5246","901c8aa6-9874-4059-9474-b26e51f2f9d2","904b1621-17d3-4f02-b42c-cdf75425f037","907ff242-885f-4948-b95c-61cf033d0969","91afb4f0-70ef-4539-9081-dc130c7c63f5","91f15da4-396e-4704-926f-cda3b3f532e0","92af0cba-c058-4833-a74a-21ad91e5ad7c","92d8ea25-dfed-4453-9e63-57339f948cac","92dec693-a086-4a6b-8af9-a67ee093719a","92f7a995-c648-4835-8df3-135d7472cd2d","9330376c-0242-4e28-b535-26c84b43c3e6","9364178a-1963-4665-b8c1-a5096ece07e2","93d48cef-cfaf-4223-9efb-d76762a896d6","93f6555b-426c-4eeb-96ea-ba3fafc96964","94cb941f-e3cf-45d2-9989-2a0a454d5497","94cf9d05-153f-42c5-b48a-ad06da0ef4d5","959cb185-a280-493c-b85c-69b74e042c15","95a58ce4-e07f-4c9c-98ae-3173d6d63cc5","95e936cf-3bbb-4f3b-8e1a-4be1d4702b99","95e9b77a-2d94-4c3b-a43a-b3755f5e7d11","9730b3bc-f66a-427f-989e-a99c65e57e0f","99b2bba7-8889-460c-a18f-fcd1e350ef4e","99e144bb-5350-40d5-8287-59468d2712c2","9a189653-dc0b-4b04-9544-5314cebf23fd","9a50165d-2ee4-4d7b-be20-d326b8bc0728","9a63a791-ad18-4d96-a0e7-e6b46cc3b4c6","9a63c166-93c2-4c56-a202-1f9dc40fd557","9b5f68bc-1842-4efd-b85a-d897cfd63bde","9b8728eb-ae5e-4ff6-8012-5e30d88a04db","9bf0df5b-ff45-4610-9c4b-355d670ef995","9d376282-adf0-4d37-b9a4-1329cd496516","9d762697-4c1e-4c69-8c1b-afa3d0b53a41","9df93f14-494f-4051-8a55-8d23eb2fc012","9e3b9156-4b50-4883-a76b-3a418b39e62d","9eaedaf2-a9a3-44c6-84c1-4cc2da1da459","9efeec59-1236-4d66-a4e0-16f1a1ce4274","9f3b5252-afab-4994-8303-3e0bee67b687","9f85076a-d15c-4fb3-ace9-2423149a9d92","9f9e61c0-b185-4704-913f-9284ed0ce250","a095fed4-0a2a-4092-b923-8f46c8ea22d8","a0daa93a-8cc3-4fa3-944b-5b0b41e88fa3","a1973dcf-b22c-478a-b782-6d355cb74904","a1d2dedf-d0d8-42c5-a498-31e172a1b503","a1f8f29a-5771-4407-8a2b-cfeeeff04611","a20e773f-9220-4212-b39a-eaccb1c265c6","a22f49c5-1dcd-453c-b169-0b2519c44d0c","a28f0a69-376d-470a-bc7e-2f5f771843e3","a3544148-49b2-4320-8e3a-5bab81e0f7fd","a37f8bb9-1d63-4f28-b15d-06f423785599","a48f0e9a-c2d9-4b7f-b1af-baad3e5c45e3","a5572582-07c0-49a1-9ccb-ca2b003d839b","a5734a18-9a64-430e-84cf-e495d9f6e45d","a5a14894-2936-4fc4-b6a5-f9c73c32b177","a6285f63-a5d8-4b8b-a6dd-51ce7968fbaf","a63b7238-ebdc-4dd8-b799-1ca33c14163b","a7150a6e-240f-4628-acdc-153d404370ff","a7dc4523-075d-425e-9b53-77921d26c173","a7f56d20-16dc-4b7f-98bf-124817a83bae","a7fd3031-8284-4098-a5e6-2fdfc4362752","a825ac86-d642-42fd-b6aa-94aa804907d9","a834bc0c-2676-4901-a928-5de111b4eedc","a8594426-c965-4187-a72d-7582f21b0ea1","a88de1af-d97b-4228-85ff-41e484c18662","a8af7440-779d-4206-a543-a857292850b1","a9023215-035f-4f12-9f75-04b995b5d24a","a903c179-319b-40ff-9023-d583d53eca08","a9bb8c7b-88f3-4ce5-8b07-8f78aa5eb456","a9ec9765-4449-4ddf-8f0a-0d90ba81b9b7","aa3eee77-3dc3-4438-a485-ba0fee6f5357","aa6b4b26-f5a1-4932-b1a8-afff458d206b","ab891f92-bd3c-4ef7-bfe2-855fb01f583e","ab950987-d88c-4326-98f4-1b1195788921","ac35ea80-deb6-480a-b5f7-b0b0bd4a5933","ac8546d1-bfea-4cf7-bfa1-48555ea81bd4","ac885eb7-9dae-4c48-b45c-97ef9c62c99e","acc5f835-1fda-4eff-9aeb-0394db8fcf60","ad4e701b-4a03-4c3d-9574-ca2f035a7a5c","aeccfafb-0b3e-4e22-8c5c-6d5a0f5896c5","af92ec23-a252-4ae2-98d7-0dce19d18e35","afca9592-da1a-443c-9250-f55a59250352","afcfb4d2-02a5-46af-bc7f-0cf00ed50c28","b0175a2a-db46-4d25-ab8e-feca7e565b8d","b0673fff-345d-4384-a63e-ace7740e20c3","b080a42a-03cd-400b-bc67-379d3a6e5c6b","b0caeb29-03ec-421c-b5c6-f66ae5ca542f","b0d5294d-8f26-47f9-90f2-c0eb095dbcfc","b14ee02b-f7e9-499b-a51e-b069eec1b72b","b16f11b9-8ac5-4e02-84b7-40b64a664ccd","b1cbccfc-3585-4895-94d1-c3a67205e5fe","b22033bc-bbc7-420c-b7be-d6d5712fd5df","b31dbc7a-8d66-44bb-836a-c1ed95152b86","b4569823-af23-4eea-acc9-2a2c62bce3b0","b53dbcc0-169d-4b5c-b4e5-d82716c1539d","b56d4e89-93aa-4b1e-84f6-8addef529a3f","b5f7cc91-e555-4f40-82db-12ffc74dfc6d","b63ffa5f-9bab-4c49-bd8f-aa7d970c25c4","b6566108-ccc7-4fac-b935-1eb212889543","b6787446-3a5b-4639-87f9-f605f59f4baf","b6ec5e94-acd6-481d-a5cb-0ca8628614b1","b6ed633b-6452-4a0c-b308-ac28ad438933","b77efb22-790e-4f72-b103-662214634efd","b7d40417-124b-4231-92f8-c4a55729afdc","b8e58e37-6393-4e51-b129-849711e15335","b930f28b-0415-42db-9591-e688a2d6bcd5","b938ac10-bd0f-4ce3-a743-958d5beadf58","ba042d60-b1e8-44ad-9103-f40588a0b29c","ba8f5ba9-0d7f-42cb-b49e-9bddf69f4565","babd424c-38cf-45e8-9684-de7bfc1ed86a","bb003613-75de-487d-99be-782fdde9b739","bbd9e399-74fb-4650-ad43-439d79dc31ed","bc6ec4ca-ab4c-4d5f-98df-aa166b60bb1d","bc9e2d99-a3ad-4bfb-a781-a8a9454085c9","bcf9c724-6fe2-4755-be13-701bcb9518c7","bdd5a7f0-5ad3-44e8-a103-07739fd53630","be68e315-ffef-40a8-8a46-1c042b148c03","be73b50e-8230-41e5-8492-db8f749d00a4","be87de91-aa10-4ed8-83a2-261b4f57e7db","bfc9f472-c410-4595-b08d-87c115b9148d","c0408cbd-ac97-46d5-b2a9-594c8c078a75","c04dac6d-a7c2-44ee-b735-bd4eade06e4e","c11d5d19-382f-4c63-b0bf-6a44fcd288b0","c12c03f3-4d4e-426a-92ed-e605d840fbd5","c14c3697-6a20-4387-a02d-377eb4a65281","c163a697-01ee-4a55-814f-b0ba79be3a7f","c1f11dc9-cedd-4691-9615-0ed65b5398ba","c2436ceb-05c0-40e6-b370-a6f02f4adbe4","c29134a2-548b-4c80-8017-7e50a44c3585","c2c1107c-5026-416f-88d4-543c5df26ca7","c44092af-f1a0-4018-a77b-d9ef2a9579ca","c4b5147e-99b0-47fd-bec2-3baaf7e8ac4a","c50b3d79-2361-4858-98b0-64d83c4f7f70","c576c27d-f361-4448-8607-0f6a99642283","c5f590a3-9993-4ac4-a93c-1beb44eda17b","c617c618-8320-4f76-80a6-83581470dc13","c706106e-f556-4ba5-98f1-c5536eb9a0b0","c7827d75-eb0e-4ebf-876e-7a2f9e373fb3","c78bad70-2aec-4580-a777-483d72db8d90","c794f2c8-9c64-4b93-b7d9-3040f325d43c","c7f4498e-e753-418e-8db6-e11d2caac3b1","c802ec1c-4d12-45d0-930b-6b4ca77487e8","c808e2ea-ae28-47f3-9dec-5cfc94dae705","c823fae2-e5ff-4dee-be49-f32971c058d5","c8e3909e-e00a-4855-a0be-b1c538f89cb8","c8ea7816-e501-4384-9176-61819a1784f6","c956611e-5748-42ff-b8ea-bca0c3d94de4","c96dbfea-3b79-4e5b-a356-3c04d1e78e83","ca98a492-5c4e-4527-8c03-2ab2442ba7e1","ca9f9d83-17cc-4595-b032-0e326608247a","cabe866d-01c3-4ec5-9d41-70305208c2b1","cb3d03a6-35bf-415e-9faa-972edff92777","cb5fabce-2488-470a-82ce-e40992657811","cba6da22-2366-4f16-84ce-47f84ea14523","cbd95de0-702a-4b88-a1cc-981cf1d9673e","cd11fd2a-d872-4abc-ac2b-c0678c1be773","cd85fe1b-9dc1-48ac-9ec1-ae6d7093808f","ce6966a1-cbf9-4ee9-9fa8-c72e0b1f24ff","cebdd6db-9434-4e60-bdf2-234e21ccbb10","cf253ee5-378b-4396-b826-4c0f2fae38a0","cf6d56d1-ba2c-49d3-bbb9-2c29f09fd9b5","d03d40db-9754-4fa1-8023-e30dfef4b0d8","d0878ac9-6a80-4412-999d-4c6549b9afd4","d0a801ba-ebf7-4b9e-98c2-db50448845b7","d0ddebc0-ce79-443e-b69f-6a38af2a4f0d","d1309a80-a761-4b80-8cf1-1a8b83190511","d134fdda-a3b7-4379-960a-8d1dd499f335","d284ddf5-a1cb-4073-a53e-e8ccaaded32c","d3b69012-c74c-4606-b518-8b13ecf1082d","d412d727-4fe8-4c21-a2cb-609395935dd8","d485c620-f1fb-4715-b7c5-d2d56588308d","d4b7c6cf-ba1e-4b9e-bbb9-15588b84ae32","d500a6ce-5a5b-4509-b110-2d29dd0b353f","d56b5831-e39a-4898-be06-b84f62d38456","d6190620-f88c-4eaf-853f-bfa0ea8f96d3","d6d027bd-d8bf-4592-9ba9-ee4a917a1904","d7148e45-3163-4cf3-a729-600729f671a5","d72aa721-c20c-4306-aca9-dbf2e36d5ba7","d79f1754-9213-48e7-8186-46ef2fea1e52","d86cd8fb-4ba7-4311-b0f3-b06fa112eda5","d8a3e999-c75b-4be3-ae7f-ac5430b760b6","db0a4140-b500-45ef-a91d-91cc3c88bb69","db3c0baf-9b5c-44ff-86eb-ca0f24ab0fe1","db3f0816-76ea-40d6-935f-e3b1bdc4415b","db4134e0-45f9-48d7-90a9-f058e1d31671","db69a637-5770-4eea-9b04-c00e6f90a12a","dbeae38f-67e3-48fe-81ea-6af5db74cb28","dcdbc78a-7854-4a66-911f-a40b33e25f39","dcf4e561-d430-432e-8c65-a5a12616f552","dd391ae7-5414-4541-ab2a-f148f66dccc8","dd634a88-c114-469a-8133-59cfc9bf3215","ddaa0be1-7358-4ea2-8c40-be6d699a6631","ddca7e2e-bb0a-47ed-ade3-31900da992dc","de62de43-a74e-499f-8fe6-68a8a51078ce","de7b6238-752d-49b7-8cdc-56587676e52d","de8e7cd9-354d-4b2e-9823-79d6e8eed7e4","e0866a19-429b-43e4-a4a1-338fe12ead42","e19e24a8-5a4f-4a2d-b8dd-eb92aac7be78","e1ae0b13-c9f6-4659-ba85-a87a81f6e730","e1d99025-46bc-4848-bcbc-bee858ed906c","e2029951-b0cb-4c09-8dc1-ec177e278877","e269461e-638f-433b-979b-820f87fb431a","e3133726-0eda-480c-9d67-64719cb77f1d","e32d2387-39d4-4aea-99eb-9f56a3d995c8","e35962e5-00ed-4a2c-a6e1-67373615178a","e43ac31a-942e-4871-be29-426e19e52701","e49a9a01-46fb-4e9d-8e7d-5f2c267ab1f9","e4adbaff-92ae-4217-8a87-f11228edb12a","e4e81c04-ad42-4676-a610-0733fdf7ca25","e4ea7c31-340f-49e8-bcf9-287717102cb0","e4f184c5-4f3c-4aea-afa1-f0903d3cc71a","e54a44f2-70bf-4782-bd13-9d03e109d60d","e56cc977-6756-493b-a95d-9ab60ec16b72","e5976c0b-ce42-4057-a04c-bdb47ebc71f0","e59eff2f-2f15-4f70-90e5-759de12caf55","e809db1f-12d7-4556-bdd2-db832f991cd0","e88091ab-6fda-4516-b180-daff10cd2417","e969e168-e74c-4608-9fa0-a5660bf7fa02","e9ca6518-aa90-4614-86aa-b972f60cce49","ea640731-b367-4ece-934e-6d86634fc1c8","eb10bac7-f839-4a28-9a85-b7e8d98ca010","eb7dc259-9949-4673-a8f1-874396948392","ec08dcdb-7b8a-4ffd-b7d6-27e5961c1763","ec4d0d7a-0ab1-45c6-95a5-308b89e8d197","ed0b0b4f-2b31-4fe1-aedb-be9d34fce688","edeba4e1-9012-4962-8797-3a1f6a660952","ee68f2cb-851b-4196-ac58-844d72628e6a","ef235170-8276-4ef0-bdfd-ba68d5b218ec","ef5cb444-7b48-40c8-a4d9-3fee37429513","ef713de6-daf5-45e4-b23b-19bfd6edce36","f0247757-74e0-4c26-9447-650398758a0d","f097d952-b3c5-4cce-8ca3-36c1ab0cf538","f0b234d8-d6bb-48ec-8a4d-d8a570a69c62","f0bfdb9e-318f-4acd-9fbd-41b98a8875d6","f0de4ea5-77e6-474e-99f9-36192bbd37d5","f108b0fb-420a-422d-ae85-9a99c0f73169","f18dd43d-0d9e-4d61-90f9-63822cf0cb2d","f1b8c9a6-62eb-436e-9277-e2b8075d482d","f2a8d790-61e5-4b46-94b8-54ea68ed18ea","f2b55128-02a0-48be-8ae4-262d0b4f6d02","f2d28477-8be1-4caf-8185-64f47905ccb1","f32a6e87-a9fb-4bd8-a09d-b160aa302a2b","f3c850b9-d014-4cd1-8ffd-361ed4fe1e6d","f49d825e-0a51-43e8-9b5a-43a376b58d6f","f4d198b3-2ff5-484a-905f-c272de7c139d","f52b53b7-4a20-48eb-a0bd-4ddf40aae740","f57958e2-1e8f-48fa-816d-748ea2c7cb4e","f5a65d3b-83e7-4f32-89b3-d152e66f1868","f5a9f8ee-1416-4be8-9da1-f4546164c522","f5e672fc-673b-4476-b9cc-a395dc60b471","f5f4fbb8-c91a-4193-b6ef-0a3d4436caad","f626d1a6-84c8-452f-b3fe-976020fccb6e","f6497c73-4bbb-4923-8151-8234c98ca6d4","f66094ef-059b-4511-aa6e-835906736de4","f72d1102-0ad5-40df-9ca2-26448321d3d1","f7adaa8f-18e8-4f26-9867-535b41884cff","f7cd375e-f41c-42b1-bbd4-36032d4fb92d","f7f24df7-65c6-4488-967a-e847bdec7db0","f88a6fa7-58e7-459c-8e2e-be5a4692450b","f9c5c795-5463-425b-9720-627004925e20","fa3b8665-31f2-4142-a076-54bccdaf5a15","faa54bef-c90e-4e9b-b94b-942ea829e0d2","fb6d08cf-a746-4147-91e3-180646de7158","fbd659b0-1f79-4e3b-bc20-8f384aa43670","fc4111be-6dae-4ca5-bd58-c1ce7cfa9cf6","fcd2ecdd-37ee-4351-833a-f4eac3c55eca","fcdfd30f-91f0-493c-92ac-b2e64eb08d89","fd7f974d-2634-4fc7-aa4e-bfeb6f3169ea","fd8897b2-0ef2-4812-9772-cd99c5ce5586","fda1dbfa-a57b-4aa8-9993-c8f97aec28bb","fdfebc79-5d84-4ce5-8bff-d09fe333f4a3","feb9faf5-8f7b-4d0d-a3ca-963832e7f711","ff6e4fd4-ca86-420b-b731-22d417a55b29"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CST","DDC","DDD","DDE","DDH","DDJ","DDK","DDM","DDN","DDP","DDQ","DDR","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","DVD","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GVL","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","MD1","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PD3","PELP","PF19","PF20","PGPX","PGRU","PHUK","PIP","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC01","WC02","WC03","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"swords to plowshares":{"name":"Swords to Plowshares","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. Its controller gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. Its controller gains life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b1544f21-7e98-461b-aed5-e748b0168c52","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["04e0738b-b856-401e-8b41-096e2c48cf96","057d2410-30d3-4b7a-9dc3-f2512c1cf31c","06554274-78ee-4bfc-b203-b81cb4639427","06d67c87-ae38-4b84-98da-818e451a727f","0e7ff4dc-af63-4342-9a44-d059e62bd14c","0e8e8743-de34-4d1c-b2ac-b8c334a34362","0f34ecf6-460c-4451-b26c-a1fced340c92","12401907-17c5-47cc-8e10-fa917a5f14ea","19733c08-a007-46c8-af85-7c943f289ee8","1c3a8a52-f909-4863-9cce-dcc4e5262f7f","1db2cf7a-5e66-4f49-a2b2-f32677ddace9","20ef813e-2bec-431f-b010-995791285d0a","255099be-c64e-4f6a-8463-4fc058d6908d","31b1ca46-d2fb-4772-8975-64836ce72f0a","375fd2cb-443b-4be4-ad60-6d1a8e74f510","386ea9eb-abc1-4862-aa2d-8fb808d79490","3b701a88-6074-476f-b87c-9a6d5d22c414","42ecba4b-9624-428f-a8af-dd88139ab13c","4bc8dea8-a6af-4bba-affa-92aca36a8413","50fc5b10-6215-48a9-8993-b61681f61186","5220accc-2095-43d9-9114-7599c1cb8e41","5287cab9-29f3-4516-b1f0-57ff6ebe889a","57c2632e-5181-43e4-8744-baafb8f7d213","5a8b56db-47cb-4c62-9b54-2a48576947d1","5ae3067d-768b-40e7-80d6-08cc42f162b6","5f3fe6b7-3f77-4670-bd26-2914588271c2","61f917dc-2685-4ce9-9be0-1d69e467337d","6431a83f-715f-449d-a985-60b5cea68dac","64b295e4-bc12-4c12-9eaf-4df22b84144d","68357502-cf23-4bf6-ab4e-371428e540d0","68ec2aed-7662-48ae-ab25-04f74ece1e41","6a8ee402-a0f8-4724-8f74-aba5735876d7","6ff9af62-1895-465a-b1f3-61f0d8318958","7cdee412-3519-4626-80ca-e3e431a604f0","7d839f21-68c7-47db-8407-ff3e2c3e13b4","7e7f00d0-4be4-4d4c-8c56-8bde093936d7","802ace56-18ec-47d8-bfeb-5680912b2ec5","809cc7e4-215b-4b39-a5f3-e60240f1723f","80f46b80-0728-49bf-9d54-801eaa10b9b2","81c31217-7919-40fd-97e7-88431b7bd277","87ae26b5-bb60-4138-ab08-740e45455373","89005926-9960-49ed-b0f8-4bb202c7973c","8bd501ae-5814-4336-a45b-2b88cb85d29e","8f6597c9-8271-49c7-b4f6-9265f5d95f99","904956c6-3bd3-4b7b-9c61-d8993ec37e20","9443c31e-9f36-44ef-bc59-6d1d3a5499bb","948cdb9d-adae-4161-a233-7f7d28b3e1a7","96d09581-e8da-4169-82d1-14389b53c375","9869a753-5e41-4098-ab41-e75b4396ec50","99263917-25ca-4d54-b1f9-d6d316747088","99ac832b-34dd-4f59-92cb-9cd1571d6706","9abddd8c-626b-4896-b550-93f2e93d209e","9bbec76c-c1e4-4c6d-ad24-078fe097f195","9f083ec7-e589-4415-8c30-1c60cde2ce04","a004dc79-3857-4663-930c-59b2240e84bc","a61f40cd-7641-4228-9239-8894d1d04851","b16321b6-3e28-424b-ac72-038cc4ed6458","b635680a-12ae-49f8-a3d7-7254cb0962ec","b6bafa7b-62a4-477c-b2f5-6b9d26c6cbf4","be0bda98-e3f7-4a9e-b05d-5f8529e762ab","be2b4177-e47c-4dde-9ead-31b7602065ec","be45567a-ca1d-4e3a-a630-ddf4fbd97bc6","bfd607c0-7ed7-4a4e-abdd-508080f40ef2","c6563536-2751-4b09-8e28-23438eb32533","c80d1df6-247d-4ceb-8493-226a2a4a8f75","c8777821-c142-4793-9942-c3a081316e76","c9c10b68-7ac5-4c0a-8fe5-f76da619a04b","cd33c0f5-5545-477a-9185-53c707983795","d8d4eaeb-6546-44d8-a96f-7270e23014d1","ddeb2ed7-1dc6-443c-85b3-ba8edaa4a60b","e136f064-459a-49b1-a501-9b935db11e35","e58e681e-a069-4414-aafe-634c7987fd0d","ea68cf78-e200-4169-89f4-cdee3aa13592","eadd0f51-703f-4235-af9a-74a1d8aeec50","ed55827d-1d72-4884-8a4f-fe7acbedab2c","ef51caf8-f9d9-48d7-9145-9dfc91054f70","f3a0ae49-8aca-44fe-abea-2cff92a6adbc","f87cf997-14b5-4a2c-a7d1-34b7de6561a2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","40K","4BB","4ED","A25","AFC","ATH","BBD","BLC","BRB","BRC","C16","C17","CED","CEI","CMM","CMR","CNS","CST","DDF","DMR","DRC","DSC","EMA","EOC","F01","FBB","FIC","GN3","ICE","IMA","J13","J21","LCC","LEA","LEB","LTC","M3C","MB2","ME2","ME4","MIC","MKC","MOC","NCC","NEC","OLEP","ONC","PF25","PIP","PLST","PMEI","PRM","PTC","SCD","SLD","SLP","SOC","SPG","STA","SUM","TD0","TDC","V13","VMA","VOC","WC97","WHO","WOC"],"rulings":[{"date":"2022-12-08","text":"Use the power of the creature from when it was last on the battlefield to determine how much life is gained."}],"rarities":["uncommon","rare","mythic"]},"swords to plowshares [e6c41473-2398-4888-9f0c-467dce7c39a4]":{"name":"Swords to Plowshares","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. Its controller gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. Its controller gains life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e6c41473-2398-4888-9f0c-467dce7c39a4","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["04e0738b-b856-401e-8b41-096e2c48cf96","057d2410-30d3-4b7a-9dc3-f2512c1cf31c","06554274-78ee-4bfc-b203-b81cb4639427","06d67c87-ae38-4b84-98da-818e451a727f","0e7ff4dc-af63-4342-9a44-d059e62bd14c","0e8e8743-de34-4d1c-b2ac-b8c334a34362","0f34ecf6-460c-4451-b26c-a1fced340c92","12401907-17c5-47cc-8e10-fa917a5f14ea","19733c08-a007-46c8-af85-7c943f289ee8","1c3a8a52-f909-4863-9cce-dcc4e5262f7f","1db2cf7a-5e66-4f49-a2b2-f32677ddace9","20ef813e-2bec-431f-b010-995791285d0a","255099be-c64e-4f6a-8463-4fc058d6908d","31b1ca46-d2fb-4772-8975-64836ce72f0a","375fd2cb-443b-4be4-ad60-6d1a8e74f510","386ea9eb-abc1-4862-aa2d-8fb808d79490","3b701a88-6074-476f-b87c-9a6d5d22c414","42ecba4b-9624-428f-a8af-dd88139ab13c","4bc8dea8-a6af-4bba-affa-92aca36a8413","50fc5b10-6215-48a9-8993-b61681f61186","5220accc-2095-43d9-9114-7599c1cb8e41","5287cab9-29f3-4516-b1f0-57ff6ebe889a","57c2632e-5181-43e4-8744-baafb8f7d213","5a8b56db-47cb-4c62-9b54-2a48576947d1","5ae3067d-768b-40e7-80d6-08cc42f162b6","5f3fe6b7-3f77-4670-bd26-2914588271c2","61f917dc-2685-4ce9-9be0-1d69e467337d","6431a83f-715f-449d-a985-60b5cea68dac","64b295e4-bc12-4c12-9eaf-4df22b84144d","68357502-cf23-4bf6-ab4e-371428e540d0","68ec2aed-7662-48ae-ab25-04f74ece1e41","6a8ee402-a0f8-4724-8f74-aba5735876d7","6ff9af62-1895-465a-b1f3-61f0d8318958","7cdee412-3519-4626-80ca-e3e431a604f0","7d839f21-68c7-47db-8407-ff3e2c3e13b4","7e7f00d0-4be4-4d4c-8c56-8bde093936d7","802ace56-18ec-47d8-bfeb-5680912b2ec5","809cc7e4-215b-4b39-a5f3-e60240f1723f","80f46b80-0728-49bf-9d54-801eaa10b9b2","81c31217-7919-40fd-97e7-88431b7bd277","87ae26b5-bb60-4138-ab08-740e45455373","89005926-9960-49ed-b0f8-4bb202c7973c","8bd501ae-5814-4336-a45b-2b88cb85d29e","8f6597c9-8271-49c7-b4f6-9265f5d95f99","904956c6-3bd3-4b7b-9c61-d8993ec37e20","9443c31e-9f36-44ef-bc59-6d1d3a5499bb","948cdb9d-adae-4161-a233-7f7d28b3e1a7","96d09581-e8da-4169-82d1-14389b53c375","9869a753-5e41-4098-ab41-e75b4396ec50","99263917-25ca-4d54-b1f9-d6d316747088","99ac832b-34dd-4f59-92cb-9cd1571d6706","9abddd8c-626b-4896-b550-93f2e93d209e","9bbec76c-c1e4-4c6d-ad24-078fe097f195","9f083ec7-e589-4415-8c30-1c60cde2ce04","a004dc79-3857-4663-930c-59b2240e84bc","a61f40cd-7641-4228-9239-8894d1d04851","b16321b6-3e28-424b-ac72-038cc4ed6458","b635680a-12ae-49f8-a3d7-7254cb0962ec","b6bafa7b-62a4-477c-b2f5-6b9d26c6cbf4","be0bda98-e3f7-4a9e-b05d-5f8529e762ab","be2b4177-e47c-4dde-9ead-31b7602065ec","be45567a-ca1d-4e3a-a630-ddf4fbd97bc6","bfd607c0-7ed7-4a4e-abdd-508080f40ef2","c6563536-2751-4b09-8e28-23438eb32533","c80d1df6-247d-4ceb-8493-226a2a4a8f75","c8777821-c142-4793-9942-c3a081316e76","c9c10b68-7ac5-4c0a-8fe5-f76da619a04b","cd33c0f5-5545-477a-9185-53c707983795","d8d4eaeb-6546-44d8-a96f-7270e23014d1","ddeb2ed7-1dc6-443c-85b3-ba8edaa4a60b","e136f064-459a-49b1-a501-9b935db11e35","e58e681e-a069-4414-aafe-634c7987fd0d","ea68cf78-e200-4169-89f4-cdee3aa13592","eadd0f51-703f-4235-af9a-74a1d8aeec50","ed55827d-1d72-4884-8a4f-fe7acbedab2c","ef51caf8-f9d9-48d7-9145-9dfc91054f70","f3a0ae49-8aca-44fe-abea-2cff92a6adbc","f87cf997-14b5-4a2c-a7d1-34b7de6561a2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["uncommon","rare","mythic"]},"sylvan smite":{"name":"Sylvan Smite","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control if you weren't the starting player. Then that creature deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control if you weren't the starting player. Then that creature deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":{"type":"Not","condition":{"type":"WasStartingPlayer","controller":"You"}},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ebcd03ea-04b2-415f-a2d1-afe442e4d014","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YBRO"]},"syr ginger, the meal ender":{"name":"Syr Ginger, the Meal Ender","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact","Creature"],"subtypes":["Food","Knight"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Syr Ginger has trample, hexproof, and haste as long as an opponent controls a planeswalker.\nWhenever another artifact you control is put into a graveyard from the battlefield, put a +1/+1 counter on Syr Ginger and scry 1.\n{2}, {T}, Sacrifice Syr Ginger: You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{2}, {T}, Sacrifice ~: You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another artifact you control is put into a graveyard from the battlefield, put a +1/+1 counter on ~ and scry 1.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Trample"},{"type":"AddKeyword","keyword":"Hexproof"},{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"Unrecognized","text":"an opponent controls a planeswalker"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ has trample, hexproof, and haste as long as an opponent controls a planeswalker."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"2eb16535-718f-4b88-92bc-96429d796327","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["522e43f3-4f9a-4f40-a5f5-d84277172040","7fbdba12-1369-41ae-b0e9-c405c0f0a2e5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PWOE","WOE"],"rulings":[{"date":"2023-09-01","text":"For Syr Ginger's last ability, use its power from when it was last on the battlefield to determine how much life is gained. If that power was 0 or less, you gain no life."}],"rarities":["rare"]},"tahngarth, talruum hero":{"name":"Tahngarth, Talruum Hero","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Minotaur","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance\n{1}{R}, {T}: Tahngarth deals damage equal to its power to target creature. That creature deals damage equal to its power to Tahngarth.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{R}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c5b4131e-13aa-4a22-b8f5-e5f9d366cb4f","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6cdab0f9-7208-4555-b509-e61773ebc1f9","c1778f37-af01-4f8c-ab9d-a4c60abf7e78"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS"],"rarities":["rare"]},"talon gates of madara":{"name":"Talon Gates of Madara","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Gate"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this land enters, up to one target creature phases out.\n{T}: Add {C}.\n{1}, {T}: Add one mana of any color.\n{4}: Put this card from your hand onto the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}, {T}: Add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}: Put this card from your hand onto the battlefield.","target_prompt":null,"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PhaseOut","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, up to one target creature phases out.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"8c45bf9d-a017-43bf-9e32-67810a8a217b","metadata":{"source_printing_ids":["c565f8fe-acf7-40dd-8100-8f692d1e232c","de92facf-762b-4a23-8d5e-bb673b0500c0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"An attacking or blocking creature that phases out is removed from combat."},{"date":"2024-06-07","text":"Any continuous effects with a \"for as long as\" duration ignore phased-out objects. If ignoring those objects causes the effect's conditions to no longer be met, the duration will expire."},{"date":"2024-06-07","text":"As a permanent is phased out, Auras and Equipment attached to it also phase out at the same time. Those Auras and Equipment will phase in at the same time that permanent does, and they'll phase in still attached to that permanent."},{"date":"2024-06-07","text":"Choices made for permanents as they entered the battlefield are remembered when they phase in."},{"date":"2024-06-07","text":"Permanents phase back in during their controller's untap step, immediately before that player untaps their permanents. Creatures that phase in this way are able to attack during that turn, and their activated abilities with {T} in their costs can be activated. If a permanent had counters on it when it phased out, it will have those counters when it phases back in."},{"date":"2024-06-07","text":"Phased-out permanents are treated as though they don't exist. They can't be the targets of spells or abilities, their static abilities have no effect on the game, their triggered abilities can't trigger, they can't attack or block, and so on."},{"date":"2024-06-07","text":"Phasing out doesn't cause any \"leaves the battlefield\" abilities to trigger. Similarly, phasing in won't cause any \"enters the battlefield\" abilities to trigger."},{"date":"2024-06-07","text":"When you activate Talon Gates of Madara's last ability, you must reveal Talon Gates of Madara from your hand until that ability resolves or otherwise leaves the stack. If Talon Gates of Madara isn't still in your hand as that ability resolves, nothing happens."}],"rarities":["rare"]},"tamiyo, field researcher":{"name":"Tamiyo, Field Researcher","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Tamiyo"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Choose up to two target creatures. Until your next turn, whenever either of those creatures deals combat damage, you draw a card.\n[−2]: Tap up to two target nonland permanents. They don't untap during their controller's next untap step.\n[−7]: Draw three cards. You get an emblem with \"You may cast spells from your hand without paying their mana costs.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"whenever","description":"whenever either of those creatures deals combat damage, you draw a card"},"cost":null,"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Choose up to two target creatures. Until your next turn, whenever either of those creatures deals combat damage, you draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},{"kind":"Activated","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantUntap","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantUntap"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"don't untap during their controller's next untap step"}],"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"target":null},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−2]: Tap up to two target nonland permanents. They don't untap during their controller's next untap step.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":{"kind":"Spell","effect":{"type":"CreateEmblem","statics":[{"mode":{"CastFromHandFree":{"frequency":"Unlimited","origin":"Hand"}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast spells from your hand without paying their mana costs"}],"triggers":[]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−7]: Draw three cards. You get an emblem with \"You may cast spells from your hand without paying their mana costs.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"9cf99129-f51a-4418-a8cc-8ca2992b17fa","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["25a31242-5e4c-489f-9425-912d6fb7a651","576ba8db-fad9-4c48-96be-a8a7e5f43039","5899d4c5-e6b8-48e9-9044-b5b34a1284f9","9f9aced7-9ae9-432f-b8c0-caac9cad098b","c8320f71-e958-4e40-9304-bd115f29d67c","f691787b-2f97-48d7-bf3a-4852377715ad"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","EMN","INR","PEMN","SIR","SLD"],"rulings":[{"date":"2025-01-24","text":"If Tamiyo’s first ability targets two creatures, and both deal combat damage at the same time, the delayed triggered ability triggers twice."},{"date":"2025-01-24","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2025-01-24","text":"If you cast a spell “without paying its mana cost,” you can’t choose to cast it for any alternative costs. You can, however, pay additional costs. If the spell has any mandatory additional costs, those must be paid to cast the spell."},{"date":"2025-01-24","text":"Tamiyo’s first ability can target creatures you don’t control. You’ll draw a card, not their controller, if they deal combat damage."},{"date":"2025-01-24","text":"Tamiyo’s first ability sets up a delayed triggered ability that triggers even if Tamiyo has left the battlefield before those creatures deal combat damage."}],"rarities":["mythic"]},"tanuki transplanter":{"name":"Tanuki Transplanter","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Equipment","Dog"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or equipped creature attacks, add an amount of {G} equal to its power. Until end of turn, you don't lose this mana as steps and phases end.\nReconfigure {3} ({3}: Attach to target creature you control; or unattach from a creature. Reconfigure only as a sorcery. While attached, this isn't a creature.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Reconfigure":{"type":"Cost","shards":[],"generic":3}}],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"UnattachAll","attachment":{"type":"SelfRef"},"target":{"type":"Any"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":{"type":"SourceAttachedTo","required_type":"Creature"}}},{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"color_options":["Green"]},"expiry":"EndOfTurn"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"AttachedTo"}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or equipped creature attacks, add an amount of {G} equal to its power. Until end of turn, you don't lose this mana as steps and phases end.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"RemoveType","core_type":"Creature"}],"condition":{"type":"SourceAttachedToCreature"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"CR 702.151b + CR 613.1d: a reconfigure Equipment stops being a creature while attached to a creature (Layer 4 type removal)."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4d1c7f42-19ef-405e-9edc-50a81b78f97c","metadata":{"source_printing_ids":["45ea5ead-9fd8-4909-96aa-d4e970891c93","bc102a4a-8f37-42ad-98ee-e7035d2ff71f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NEC","PRM"],"rulings":[{"date":"2022-02-18","text":"Although it causes an Equipment to become attached to a creature, reconfigure is not an “equip ability” for the purpose of cards like Fighter Class and Leonin Shikari."},{"date":"2022-02-18","text":"An Equipment creature can never become attached to itself. If an effect tries to do this, nothing happens."},{"date":"2022-02-18","text":"An Equipment creature with reconfigure can be attached to creatures by effects other than its reconfigure ability, such as the activated ability of Brass Squire."},{"date":"2022-02-18","text":"An Equipment doesn't become tapped when the permanent it's attached to becomes tapped. For example, if you attack with a creature that is equipped with Acquisition Octopus, then use reconfigure to unattach Acquisition Octopus after combat, the Octopus will be untapped and could be used to block during your opponent's turn."},{"date":"2022-02-18","text":"As soon as an Equipment creature with reconfigure stops being a creature, any Equipment and Auras with enchant creature abilities become unattached. Auras that can enchant an Equipment that isn't a creature remain attached to it."},{"date":"2022-02-18","text":"Attaching an Equipment with reconfigure to a creature causes that Equipment to stop being a creature until it becomes unattached. It also loses any creature subtypes it had."},{"date":"2022-02-18","text":"If Tanuki Transplanter attacks, use its power to determine how much {G} to add. If equipped creature attacks, use its power. In either case, use the power as the triggered ability resolves. Also in either case, if the creature isn't on the battlefield at that time, use its power as it last existed on the battlefield to determine how much {G} to add."},{"date":"2022-02-18","text":"If a permanent with reconfigure is somehow still a creature after it becomes attached (perhaps due to an effect like that of March of the Machines), it immediately becomes unattached from the equipped creature."},{"date":"2022-02-18","text":"If an Equipment with reconfigure somehow loses its abilities while it is attached, the effect causing it to not be a creature continues to apply until it becomes unattached."},{"date":"2022-02-18","text":"Reconfigure represents two activated abilities. Reconfigure [cost] means “[Cost]: Attach this permanent to another target creature you control. Activate only as a sorcery,” and “[Cost]: Unattach this permanent. Activate only if this permanent is attached to a creature and only as a sorcery.”"},{"date":"2022-02-18","text":"Similarly, if an Equipment is tapped, its reconfigure abilities may still be activated and it may still become attached to creatures. Becoming attached doesn't untap it. In most cases, an attached Equipment being tapped won't affect gameplay, but it will be relevant if it becomes unattached again before it untaps."}],"rarities":["rare"]},"teferi, time raveler":{"name":"Teferi, Time Raveler","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Teferi"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"Each opponent can cast spells only any time they could cast a sorcery.\n[+1]: Until your next turn, you may cast sorcery spells as though they had flash.\n[−3]: Return up to one target artifact, creature, or enchantment to its owner's hand. Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Any"},"modifications":[{"type":"GrantStaticAbility","definition":{"mode":{"CastWithKeyword":{"keyword":"Flash"}},"affected":{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":"[+1]: Until your next turn, you may cast sorcery spells as though they had flash.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"destination":null},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Return up to one target artifact, creature, or enchantment to its owner's hand. Draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"CantCastDuring":{"who":"Opponents","when":"NotSorcerySpeed"}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each opponent can cast spells only any time they could cast a sorcery."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"ae7604bb-4818-45a3-960c-cf3d83f15964","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["066cee3d-1bc9-43bb-a1e5-70256875eb9b","1e155fa4-896a-4ba6-939e-03c7877ac47e","5a47d968-bba0-4277-b5d7-eb9e1acd7953","5cb76266-ae50-4bbc-8f96-d98f309b02d3","662fe50f-d75c-422c-8c6c-1f9b5c4ba21f","6e2b2e55-21a3-4f71-a14b-d3d1b137d18c","f7eb4cc4-b79a-4ac8-ba33-ceeb55012022"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"banned","timeless":"legal","vintage":"legal"},"printings":["BLC","MB2","PRM","PWAR","RVR","SLD","WAR"],"rulings":[{"date":"2024-01-12","text":"If an effect allows opponents to cast a spell as though it had flash (for example, if your opponent also controls a Teferi, Time Raveler and activates his +1 loyalty ability), the restriction of Teferi's first ability takes precedence over that permission."},{"date":"2024-01-12","text":"You may activate Teferi's last ability without choosing any target. You'll just draw a card. However, if you do choose a target and the target permanent is an illegal target by the time Teferi's last ability tries to resolve, the ability doesn't resolve. You don't draw a card."}],"rarities":["rare","mythic"]},"temple of the dead":{"name":"Temple of the Dead","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Transforms from Aclazotz, Deepest Betrayal.)\n{T}: Add {B}.\n{2}{B}, {T}: Transform this land. Activate only if a player has one or fewer cards in hand and only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {B}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}{B}, {T}: Transform ~. Activate only if a player has one or fewer cards in hand and only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"RequiresCondition","data":{"condition":null}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fcdfe9d5-2743-4d3e-ab57-bf0f96beaa15","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"(Transforms from Aclazotz, Deepest Betrayal.)\n{T}: Add {B}.\n{2}{B}, {T}: Transform this land. Activate only if a player has one or fewer car","line_index":0}],"metadata":{"related_token_ids":["3e43a418-8c17-5ed2-b92b-42dbe4c96b4b"],"source_printing_ids":["627c392c-4d18-4eb2-a4e8-c668f61f5487","95775b13-2761-424e-9828-2275ec987368"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rarities":["mythic"]},"tempt with discovery":{"name":"Tempt with Discovery","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search their library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who searched a library this way shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"SearchedLibrary"}}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search their library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who searched a library this way shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4baa6145-216e-476b-b178-aaaa1e633701","metadata":{"source_printing_ids":["580bbd5b-795e-41fe-b061-579c42218670","6e70c0e8-afe0-4fcb-bda9-2d0d5ec4f2ee","787ac088-2b9a-4449-80b4-7de4a6812250","79248b68-4fab-46da-ab15-5c71c1f68d4b","dab9c403-8738-4593-be07-ea9bcb8faa92"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC","C13","C16","C19","LTC","PLST"],"rulings":[{"date":"2013-10-17","text":"After each opponent has decided, the effect happens simultaneously for each one who accepted the offer. Then, the effect happens again for you a number of times equal to the number of opponents who accepted."},{"date":"2013-10-17","text":"Your opponents decide in turn order whether or not they accept the offer, starting with the opponent on your left. Each opponent will know the decisions of previous opponents in turn order when making their decision."}],"rarities":["uncommon","rare"]},"terashi's grasp":{"name":"Terashi's Grasp","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Arcane"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact or enchantment. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact or enchantment. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d4738552-3a5e-43c5-a975-8b77618bacaf","metadata":{"source_printing_ids":["44f0d818-b463-4ef7-93b4-1ae341b52e2c","6147b88c-0f15-4432-8765-5699ee7e5707","a63cfebd-8cab-48b4-814a-4d8751dd1b57","ab387bfd-2651-4883-b1a7-7bf197018bbe"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["BOK","MM2","MMA","PLST"],"rarities":["common","uncommon"]},"tergrid's shadow":{"name":"Tergrid's Shadow","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player sacrifices two creatures.\nForetell {2}{B}{B} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Foretell":{"type":"Cost","shards":["Black","Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":"Each player sacrifices two creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"692260bb-e01c-4550-832a-9611856a6ff0","metadata":{"source_printing_ids":["417f71d2-d7da-4279-8847-d27c67e9ea9d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM"],"rulings":[{"date":"2021-02-05","text":"As Tergrid's Shadow resolves, first the player whose turn it is chooses two creatures they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen creatures are sacrificed at the same time."},{"date":"2021-02-05","text":"Because exiling a card with foretell from your hand is a special action, you can do so any time you have priority during your turn, including in response to spells and abilities. Once you announce you're taking the action, no other player can respond by trying to remove the card from your hand."},{"date":"2021-02-05","text":"Casting a foretold card from exile follows the timing rules for that card. If you foretell an instant card, you can cast it as soon as the next player's turn. In most cases, if you foretell a card that isn't an instant (or doesn't have flash), you'll have to wait until your next turn to cast it."},{"date":"2021-02-05","text":"If a player controls two or fewer creatures, that player sacrifices each creature they control."},{"date":"2021-02-05","text":"If you're casting a foretold card from exile for its foretell cost, you can't choose to cast it for any other alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, those must be paid to cast the spell."}],"rarities":["uncommon"]},"terminal velocity":{"name":"Terminal Velocity","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may put an artifact or creature card from your hand onto the battlefield. That permanent gains haste, \"When this permanent leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice this permanent.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,","constraint":null,"condition":null,"batched":false}},{"type":"GrantTrigger","trigger":{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, sacrifice ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste, \"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice ~.\""}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may put an artifact or creature card from your hand onto the battlefield. That permanent gains haste, \"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice ~.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":true}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cdda2f04-d59e-4ef8-a26d-964d80750940","metadata":{"source_printing_ids":["1d18dc06-16f0-4a3b-8d52-dbf4aa2c393d","d36147a8-dfcd-4d56-a98d-72fee52578d6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If a permanent has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2025-07-25","text":"Use the permanent’s mana value as it last existed on the battlefield to determine how much damage the triggered ability deals."}],"rarities":["rare"]},"terra, herald of hope":{"name":"Terra, Herald of Hope","mana_cost":{"type":"Cost","shards":["Red","White","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Trance — At the beginning of combat on your turn, mill two cards. Terra gains flying until end of turn.\nWhenever Terra deals combat damage to a player, you may pay {2}. When you do, return target creature card with power 3 or less from your graveyard to the battlefield tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":2},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain flying"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, mill two cards. ~ gains flying until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":3}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may pay {2}. When you do, return target creature card with power 3 or less from your graveyard to the battlefield tapped.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Red","White"],"color_identity":["Black","Red","White"],"scryfall_oracle_id":"25d40d28-1b46-4055-959a-45719040ed30","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4f36f28b-b9c9-42a2-a2e5-d1b532e482a3","5aa1a2d7-6133-41a9-9662-9008d1309935","901bd4dc-ebd3-40af-9fb0-57a8719329a4","bb077546-d0f6-4b74-bc59-3c6a50fbc4f2","e0946131-2cda-4850-912e-cb8a8124685b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"You don't choose a target for Terra's last ability at the time it triggers. Rather, a second \"reflexive\" ability triggers when you pay {2} this way. You choose a target for that ability as it goes on the stack. Each player may respond to this triggered ability as normal."}],"rarities":["mythic"]},"terra, magical adept":{"name":"Terra, Magical Adept","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Terra enters, mill five cards. Put up to one enchantment card milled this way into your hand.\nTrance — {4}{R}{G}, {T}: Exile Terra, then return it to the battlefield transformed under its owner's control. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red","Green"],"generic":4}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Trance — {4}{R}{G}, {T}: Exile ~, then return it to the battlefield transformed under its owner's control. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":5},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, mill five cards. Put up to one enchantment card milled this way into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"54ca5904-9099-497a-9684-101656025487","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0502c627-9f63-5b1e-b7ba-1809eefc0580"],"source_printing_ids":["0cf789e7-045c-4ad1-abc3-23eabda54f02","fbd447aa-588d-4c4d-925e-a7d3bdf6a65c","fe0aa7d7-73e7-4c8c-92b5-b923817ce461"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"A nonmodal double-faced card enters with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or allows you to cast it transformed, in which case it enters with its back face up."},{"date":"2025-06-06","text":"A token that is created as a copy of a double-faced permanent or a double-faced card in another zone is a double-faced token. It will have both the front face and back face of whatever object it's copying. If it's copying a double-faced permanent whose back face is up, the token will enter with its back face up. It can transform if instructed to do so."},{"date":"2025-06-06","text":"Each face of a nonmodal double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a nonmodal double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2025-06-06","text":"Each nonmodal double-faced card in this release is cast face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2025-06-06","text":"Esper Terra's fourth chapter ability isn't a mana ability. It uses the stack and can be responded to."},{"date":"2025-06-06","text":"If the copied enchantment has {X} in its mana cost, X is 0."},{"date":"2025-06-06","text":"If the copied enchantment is a token, the new token that's created copies the original characteristics of that token as stated by the effect that created the token."},{"date":"2025-06-06","text":"If the copied enchantment is copying something else, then the token enters as whatever that enchantment copied."},{"date":"2025-06-06","text":"If the enchantment copied by the token had any \"when [this permanent] enters\" abilities, the token also has those abilities, and they'll trigger when it's created. Similarly, any \"as [this permanent] enters\" or \"[this permanent] enters with\" abilities that the token has copied will also work."},{"date":"2025-06-06","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Crystal Fragments, it will be exiled during the resolution of its second ability and remain in exile."},{"date":"2025-06-06","text":"In the Commander variant, a double-faced card's color identity is determined by the mana costs and mana symbols in the rules text of both faces combined. If either face has a color indicator or basic land type, those are also considered. For example, Cecil, Dark Knight's color identity is black and white, since its front face is black and its back face has a white color indicator."},{"date":"2025-06-06","text":"The back face of a nonmodal double-faced card usually has a color indicator that defines its color."},{"date":"2025-06-06","text":"The mana value of a nonmodal double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2025-06-06","text":"The token copies exactly what was printed on the original enchantment (unless that enchantment is copying something else or is a token; see below). It doesn't copy whether that enchantment is tapped or untapped, whether it has any counters on it or any Auras or Equipment attached to it, or any non-copy effects that have changed its types, color, power and toughness, and so on."}],"rarities":["mythic"]},"terror of the peaks":{"name":"Terror of the Peaks","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nSpells your opponents cast that target this creature cost an additional 3 life to cast.\nWhenever another creature you control enters, this creature deals damage equal to that creature's power to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"static_structure","description":"Static pattern matched but line failed static parser: Spells your opponents cast that target ~ cost an additional 3 life to cast."},"cost":null,"sub_ability":null,"duration":null,"description":"Spells your opponents cast that target ~ cost an additional 3 life to cast.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, ~ deals damage equal to that creature's power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f8e17f4f-080d-4bba-bd05-ca27e94ccecc","metadata":{"source_printing_ids":["2febfa1b-5a5e-411a-a7aa-f2ca6ee66f51","432ecd5f-966f-4403-a973-51e175a524a0","904ff94a-4db4-44a6-8593-89c32905b3fc","ac35ea21-fef4-4000-9b22-c8d07420827b","cd20aae9-9de0-498b-8325-f8e8290d56e3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","OTJ","PM21","POTJ","PRM","PSPL","SLD"],"rulings":[{"date":"2020-06-23","text":"The amount of damage Terror of the Peaks deals is the entering creature's power as the triggered ability resolves. If that creature leaves the battlefield before the ability resolves, use its power as it last existed on the battlefield."}],"rarities":["mythic"]},"tesak, judith's hellhound":{"name":"Tesak, Judith's Hellhound","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental","Dog"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Unleash (You may have this creature enter with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)\nOther Dogs you control have unleash.\nCreatures you control with counters on them have haste.\nWhenever Tesak attacks, add {R} for each attacking creature.","non_ability_text":null,"flavor_name":null,"keywords":["Unleash"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}},"color_options":["Red"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, add {R} for each attacking creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddKeyword","keyword":"Unleash"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Dogs you control have unleash."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"Any"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control with counters on them have haste."},{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"P1P1"},"minimum":1},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block as long as it has a +1/+1 counter on it"},{"mode":"CantBlock","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[],"condition":{"type":"RecipientHasCounters","counters":{"type":"OfType","data":"P1P1"},"minimum":1},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block as long as it has a +1/+1 counter on it"}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"SelfRef"},"description":"CR 702.98a: Unleash — this permanent may enter with an additional +1/+1 counter on it.","condition":null,"destination_zone":"Battlefield"},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"description":"CR 702.98a: Unleash — this permanent may enter with an additional +1/+1 counter on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4117e428-0c78-4dea-9019-dd1836fbb03e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0e563c13-7204-4cda-9b62-d46931fabcef","bf55e49b-4186-4d36-b1f0-4c7715be0f63"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MKC"],"rulings":[{"date":"2024-02-02","text":"A creature with unleash can't block if it has any +1/+1 counter on it, not just one put on it by the unleash ability."},{"date":"2024-02-02","text":"Count the number of attacking creatures when Tesak, Judith's Hellhound's last ability resolves, including Tesak itself if it's still on the battlefield, to determine how much mana to add."},{"date":"2024-02-02","text":"Putting a +1/+1 counter on a creature with unleash that's already blocking won't remove it from combat. It will continue to block."},{"date":"2024-02-02","text":"The unleash ability applies no matter where the creature is entering the battlefield from."},{"date":"2024-02-02","text":"You make the choice to have the creature with unleash enter the battlefield with a +1/+1 counter or not as it's entering the battlefield. At that point, it's too late for a player to respond to the creature spell by trying to counter it, for example."}],"rarities":["rare"]},"teval, arbiter of virtue":{"name":"Teval, Arbiter of Virtue","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nSpells you cast have delve. (Each card you exile from your graveyard while casting those spells pays for {1}.)\nWhenever you cast a spell, you lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell, you lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":"Delve"}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Spells you cast have delve."}],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"f6cf359a-91cb-4b3c-8837-be53e4ed9c93","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["27a93f5b-7b32-49f0-a179-b897828fe49a","4d3e165a-60e2-4e50-a0de-1cf7c46cb406","a19c38bc-946c-438a-ac8b-f59ff0b4c613"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"If a spell on the stack has an {X} in its mana cost, use the value of X chosen as it was cast to determine that spell’s mana value."},{"date":"2025-04-04","text":"“Delve” means “For each generic mana in this spell’s total cost, you may exile a card from your graveyard rather than pay that mana.” The delve ability isn’t an additional or alternative cost and applies only after the total cost of the spell with delve is determined."}],"rarities":["mythic"]},"teyo, aegis adept":{"name":"Teyo, Aegis Adept","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Teyo"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Up to one target creature's base power perpetually becomes equal to its toughness. It perpetually gains \"This creature can attack as though it didn't have defender.\"\n[−2]: Conjure a card named Lumbering Lightshield onto the battlefield.\n[−6]: You get an emblem with \"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetLifeTotal","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Source"}}}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Any"},"modifications":[{"type":"AddStaticMode","mode":"CanAttackWithDefender"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"~ can attack as though it didn't have defender.\""}],"duration":"UntilEndOfTurn","target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Up to one target creature's base power perpetually becomes equal to its toughness. It perpetually gains \"~ can attack as though it didn't have defender.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},{"kind":"Activated","effect":{"type":"Conjure","cards":[{"name":"Lumbering Lightshield","count":{"type":"Fixed","value":1}}],"destination":"Battlefield","tapped":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":null,"duration":null,"description":"[−2]: Conjure a card named Lumbering Lightshield onto the battlefield.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasColor","color":"White"},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Command"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-6},"sub_ability":null,"duration":null,"description":"[−6]: You get an emblem with \"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9febfc66-2c2d-4a53-89eb-9650026abeed","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["8f4c701d-8a2c-44bf-9e36-f37936179244"]},"legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["J21"],"rarities":["mythic"]},"thalisse, reverent medium":{"name":"Thalisse, Reverent Medium","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each end step, create X 1/1 white Spirit creature tokens with flying, where X is the number of tokens you created this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":["White"],"keywords":["Flying"],"tapped":false,"count":{"type":"Ref","qty":{"type":"TokensCreatedThisTurn","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, create X 1/1 white Spirit creature tokens with flying, where X is the number of tokens you created this turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"77cf4fb1-593f-4240-96d9-6ae9084baeac","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["afdf1b42-a3f9-50a2-bdc1-3fdb2f1992ad","bd2ac668-91ce-54b9-bd79-d8446d40d9f1"],"source_printing_ids":["474d6363-ebe1-4a1a-b4e6-7bd53d878527","e4899773-c501-45e5-bf1f-8d818788d61f","f8cd8b55-2927-4e53-be1e-cc33c35f85b7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM","TDC"],"rulings":[{"date":"2020-11-10","text":"If an effect creates a copy of a permanent spell, that spell becomes a token on the battlefield under your control, but that token has not been \"created.\" It won't count for Thalisse's ability."},{"date":"2020-11-10","text":"Thalisse's ability counts all tokens you created that turn prior to the ability resolving, including both noncreature tokens and creature tokens. It doesn't matter if those tokens are still on the battlefield or still under your control."}],"rarities":["uncommon"]},"the aesir escape valhalla":{"name":"The Aesir Escape Valhalla","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Exile a permanent card from your graveyard. You gain life equal to its mana value.\nII — Put a number of +1/+1 counters on target creature you control equal to the mana value of the exiled card.\nIII — Return this Saga and the exiled card to their owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Aggregate","function":"Sum","property":"ManaValue","filter":{"type":"And","filters":[{"type":"ExiledBySource"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Owned","controller":"You"}]}]}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"SelfRef"},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"the","description":"the exiled card"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6afe197b-0779-4284-a192-357a3c89b7e3","metadata":{"source_printing_ids":["2efbcea0-53ba-444d-b2e0-6d184f945f92"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ACR"],"rulings":[{"date":"2024-07-05","text":"If a card in exile has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["uncommon"]},"the bears of littjara":{"name":"The Bears of Littjara","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Create a 2/2 blue Shapeshifter creature token with changeling.\nII — Any number of target Shapeshifter creatures you control have base power and toughness 4/4.\nIII — Choose up to one target creature or planeswalker. Each creature with power 4 or greater you control deals damage equal to its power to that permanent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Shapeshifter","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Shapeshifter"],"colors":["Blue"],"keywords":["Changeling"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"have base power and toughness 4/4"}],"duration":"UntilHostLeavesPlay","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Shapeshifter"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"697f3fd9-1577-4f69-bdf8-db1f673d3505","metadata":{"related_token_ids":["4619d1ad-f2df-56e6-b96e-c8e204239231","4f68d7e7-f83a-5967-8bb8-4a66c08b986e"],"source_printing_ids":["aec45213-dcec-4c23-8348-265977a3e394","be43a643-6cb7-4bb6-a28d-8ad30b7fbb6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM","PKHM","PLST"],"rulings":[{"date":"2021-02-05","text":"A chapter ability doesn’t trigger if a lore counter is put on a Saga that already had a number of lore counters greater than or equal to that chapter’s number. For example, the third lore counter put on a Saga causes the chapter III ability to trigger, but chapters I and II won’t trigger again."},{"date":"2021-02-05","text":"Any effects that modify the Shapeshifter’s power or toughness without setting it to a specific value will apply after its base power and toughness are set, regardless of the order in which those effects were created. The same is true of counters that modify its power and toughness."},{"date":"2021-02-05","text":"As a Saga enters the battlefield, its controller puts a lore counter on it. As your precombat main phase begins (immediately after your draw step), you put another lore counter on each Saga you control. Putting a lore counter on a Saga in either of these ways doesn’t use the stack."},{"date":"2021-02-05","text":"Changeling is a characteristic-defining ability. It functions in all zones, not only while a card that has it is on the battlefield."},{"date":"2021-02-05","text":"Each symbol on the left of a Saga’s text box represents a chapter ability. A chapter ability is a triggered ability that triggers when a lore counter that is put on the Saga causes the number of lore counters on the Saga to become equal to or greater than the ability’s chapter number. Chapter abilities are put onto the stack and may be responded to."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to become a new creature type, it will be only that new creature type. It will still have changeling; the effect making it all creature types will simply be overwritten."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to lose all abilities, it will remain all creature types, even though it will no longer have changeling. This is because changeling applies before the effect that removes it."},{"date":"2021-02-05","text":"If multiple chapter abilities trigger at the same time, their controller puts them on the stack in any order. If any of them require targets, those targets are chosen as you put the abilities on the stack, before any of those abilities resolve."},{"date":"2021-02-05","text":"Once a chapter ability has triggered, the ability on the stack won’t be affected if the Saga gains or loses counters, or if it leaves the battlefield."},{"date":"2021-02-05","text":"Once the number of lore counters on a Saga is greater than or equal to the greatest number among its chapter abilities, the Saga’s controller sacrifices it as soon as its chapter ability has left the stack, most likely by resolving or being countered. This state-based action doesn’t use the stack."},{"date":"2021-02-05","text":"Removing lore counters won’t cause a previous chapter ability to trigger. If lore counters are removed from a Saga, the appropriate chapter abilities will trigger again when the Saga receives more lore counters."},{"date":"2021-02-05","text":"The chapter II ability overwrites any previous effects that set any of the Shapeshifters’ base power and toughness to specific values. Any effects that set a Shapeshifter’s base power and toughness that start to apply after the chapter II ability will override the effect of that ability."},{"date":"2021-02-05","text":"The effect of the chapter II ability lasts indefinitely. It doesn’t expire at end of turn."},{"date":"2021-02-05","text":"The subtype Shapeshifter that appears on the type line is mostly there to reinforce the flavor. A creature card with changeling is just as much an Elf, a Dwarf, a Sliver, a Goat, a Coward, and a Zombie as it is a Shapeshifter."}],"rarities":["rare"]},"the chain veil":{"name":"The Chain Veil","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.\n{4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GrantExtraLoyaltyActivations","amount":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":4}},{"type":"Tap"}]},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LoyaltyAbilitiesActivatedThisTurn","player":{"type":"Controller"}}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"fb88fb3d-6a85-4bb1-b316-7f759b45a0fa","metadata":{"source_printing_ids":["0415cc0e-979e-42cc-a56d-88d13153a7de","0df7a6c7-0c48-42e7-9e2d-7ac21855cdbb","1ca66955-d900-45b6-9a40-38467689a68d","62fbc0cf-6e58-4974-8cf2-3a5d0b6471b3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","M15","PIO","PLST"],"rulings":[{"date":"2014-07-18","text":"After the last ability resolves, you’ll essentially be able to activate a loyalty ability of each planeswalker you control a total of twice during your turn. The timing rules for when you can activate loyalty abilities apply each time; it must be your main phase and the stack must be empty."},{"date":"2014-07-18","text":"Because the last ability modifies the rules of the game, it affects not only planeswalkers you control when it resolves, but also planeswalkers that come under your control later in the turn."},{"date":"2014-07-18","text":"Each additional time The Chain Veil’s last ability resolves will allow you to activate a loyalty ability of each planeswalker you control an additional time. For example, if you activate The Chain Veil’s last ability, untap it, then activate it again, you can activate a loyalty ability of a planeswalker you control three times that turn."},{"date":"2014-07-18","text":"For the first ability, it doesn’t matter whether the planeswalker is still on the battlefield as your end step begins. If you activated one of its loyalty abilities that turn, The Chain Veil’s triggered ability won’t trigger."},{"date":"2014-07-18","text":"The second loyalty ability you activate doesn’t have to be the same as the first ability. For example, you could activate a planeswalker’s first ability twice, or you could activate a planeswalker’s first ability, then activate its second ability."}],"rarities":["mythic"]},"the council of four":{"name":"The Council of Four","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Noble"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":8},"loyalty":null,"defense":null,"oracle_text":"Whenever a player draws their second card during their turn, you draw a card.\nWhenever a player casts their second spell during their turn, you create a 2/2 white Knight creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player draws their second card during their turn, you draw a card.","constraint":{"type":"NthDrawThisTurn","n":2},"condition":{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Token","name":"Knight","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Knight"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts their second spell during their turn, you create a 2/2 white Knight creature token.","constraint":{"type":"NthSpellThisTurn","n":2},"condition":{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"3dfb006f-6620-4602-ac3c-d40a5a15a981","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["3f618808-a33a-5ed8-8f01-6d2edd98f875"],"source_printing_ids":["0873cfa8-046c-4b14-ae22-3fd6a691f763","1610d8b1-6b4c-450a-96c2-b56fd08b3f86","eba6df0f-d190-4683-b2fe-567e20c54028"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","PCLB"],"rarities":["rare"]},"the creation of avacyn":{"name":"The Creation of Avacyn","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Search your library for a card, exile it face down, then shuffle.\nII — Turn the exiled card face up. If it's a creature card, you lose life equal to its mana value.\nIII — You may put the exiled card onto the battlefield if it's a creature card. If you don't put it onto the battlefield, put it into its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Exile","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"turn","description":"Turn the exiled card face up"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Exile","destination":"Battlefield","target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"7f32344f-06d8-4862-bfeb-f90a3e1d7fc2","metadata":{"source_printing_ids":["27d701aa-df93-4f0e-b1e3-d081487eb456"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"Each The Creation of Avacyn you control has its own set of face-down exiled cards. (In most cases, this set of cards will contain just one card.) The Creation of Avacyn's second and third chapter abilities refer only to those cards, not those of any other The Creation of Avacyn."},{"date":"2024-06-07","text":"In the unusual case where two or more cards are exiled face down with The Creation of Avacyn's first ability when the third chapter ability resolves, if at least one of the exiled cards is a creature card, you may choose to put all or none of the exiled cards that are permanent cards onto the battlefield. Regardless of what you choose, any remaining exiled cards will be put into their owners' hands."},{"date":"2024-06-07","text":"In the unusual case where two or more cards are exiled face down with The Creation of Avacyn's first chapter ability (likely because the triggered ability was copied or the ability triggered a second time), the second chapter ability will turn all of the exiled cards face up. If at least one of them is a creature card, you'll lose life equal to the combined mana value of all the exiled cards."}],"rarities":["uncommon"]},"the great aerie":{"name":"The Great Aerie","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Tarkir"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When you planeswalk to The Great Aerie and at the beginning of your upkeep, bolster 3. (Choose a creature with the least toughness among creatures you control and put three +1/+1 counters on it.)\nWhenever chaos ensues, choose up to one target creature you control and up to one target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":{"Unknown":"When you planeswalk to ~"},"execute":{"kind":"Spell","effect":{"type":"Bolster","count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When you planeswalk to ~, bolster 3.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bolster","count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, bolster 3.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever chaos ensues, choose up to one target creature you control and up to one target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"00f00001-bd84-4dbf-a707-f4b1549100d4","metadata":{"source_printing_ids":["4afe8c95-efeb-4f7d-834d-fa5b095c9a06"]},"legalities":{},"printings":["MOC"],"rulings":[{"date":"2023-04-14","text":"Bolster itself doesn’t target any creature, though some spells and abilities that bolster may have other effects that target creatures."},{"date":"2023-04-14","text":"If you choose two target creatures for the chaos ability and either target is an illegal target as the ability tries to resolve, the ability won’t resolve and none of its effects will happen. Neither creature will deal or be dealt damage."},{"date":"2023-04-14","text":"You determine which creature to put counter(s) on as the spell or ability that instructs you to bolster resolves. That could be the creature with the bolster ability, if it’s still under your control and has the least toughness. If there’s a tie, you choose which creature gets the counter(s)."}],"rarities":["common"]},"the legend of roku":{"name":"The Legend of Roku","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Exile the top three cards of your library. Until the end of your next turn, you may play those cards.\nII — Add one mana of any color.\nIII — Exile this Saga, then return it to the battlefield transformed under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f26f270-26d9-46d3-957f-19f52d51eb03","metadata":{"related_token_ids":["566d2a4c-5be0-573a-964f-89a13982c567"],"source_printing_ids":["4a8bdef0-c50c-4a30-81bc-507a8289a81b","95f2f5af-d405-4534-8683-5a9001f997b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["PTLA","TLA"],"rarities":["mythic"]},"the lord of pain":{"name":"The Lord of Pain","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Assassin"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nYour opponents can't gain life.\nWhenever a player casts their first spell each turn, choose another target player. The Lord of Pain deals damage equal to that spell's mana value to the chosen player.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts their first spell each turn, choose another target player. ~ deals damage equal to that spell's mana value to the chosen player.","constraint":{"type":"NthSpellThisTurn","n":1},"condition":null,"batched":false}],"static_abilities":[{"mode":"CantGainLife","affected":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Your opponents can't gain life."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"b194f277-5045-4391-8b48-d555a6d657a7","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["494c244e-dcdc-4169-9743-8a61f58e8763"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC"],"rulings":[{"date":"2024-09-20","text":"If a spell has {X} in its mana cost, use the value chosen for X when determining that spell's mana value."},{"date":"2024-09-20","text":"If an effect says to set an opponent's life total to a number that's higher than their current life total, that player's life total won't change."},{"date":"2024-09-20","text":"Spells and abilities that cause opponents to gain life still resolve while The Lord of Pain is on the battlefield. They won't gain life, but any other effects of that spell or ability will still happen."},{"date":"2024-09-20","text":"The Lord of Pain's last ability must target a player other than the one who cast the spell that caused the ability to trigger. That means that if it's just you and one other player in the game, you'll have to target yourself when that player casts their first spell each turn. (What did you expect? You summoned The Lord of Pain!)"}],"rarities":["mythic"]},"the mystery raceway":{"name":"The Mystery Raceway","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Start your engines!\n{T}: Add {C}.\nMax Speed — {W}{U}{B}{R}{G}, {T}: Mill seven cards. Choose a playtest card from among them. You may cast it without paying its mana cost. If Team Cloudspire won the race, copy it and you may choose new targets for the copy. If Team Speed Demons won the race, each opponent loses life equal to its mana value.\nThe Mystery Raceway can be your commander.","non_ability_text":null,"flavor_name":null,"keywords":["StartYourEngines"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mill","count":{"type":"Fixed","value":7},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"choose","description":"Choose a playtest card from among them"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"ParentTarget"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Max Speed — {W}{U}{B}{R}{G}, {T}: Mill seven cards. Choose a playtest card from among them. You may cast it without paying its mana cost. If Team Cloudspire won the race, copy it and you may choose new targets for the copy. If Team Speed Demons won the race, each opponent loses life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"c81a0365-c295-470a-84d0-3faa999ec81e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0217b7da-f348-4fe6-9ab5-9d4f4346d81c"]},"legalities":{},"printings":["UNK"],"rarities":["rare"]},"the ozolith":{"name":"The Ozolith","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control leaves the battlefield, if it had counters on it, put those counters on The Ozolith.\nAt the beginning of combat on your turn, if The Ozolith has counters on it, you may move all counters from The Ozolith onto target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"MoveCounters","source":{"type":"TriggeringSource"},"counter_type":null,"count":null,"mode":"Put","selection":"StackTarget","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control leaves the battlefield, if it had counters on it, put those counters on ~.","constraint":null,"condition":{"type":"HadCounters","counter_type":null},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"MoveCounters","source":{"type":"SelfRef"},"counter_type":null,"count":null,"mode":"Move","selection":"StackTarget","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, if ~ has counters on it, you may move all counters from ~ onto target creature.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1946ded1-5f53-409f-b0a6-5433bb0357d2","metadata":{"source_printing_ids":["1fac900d-c40d-4f33-9ae5-45e31e5ce66c","7d9df3ce-25f9-426c-a113-6aea53ddf619","83a46e68-7fb5-4c17-b5aa-ed039cea59d6","9341ed06-53db-4604-b60a-3ea9129afbc2","e0aaee13-bfeb-47fd-93cb-2ccdd5d44e75","ed3b5f52-ce33-4e67-aca0-6d417fe7f5fa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO","LTC","PIKO","PRM","SLD"],"rulings":[{"date":"2020-04-17","text":"+1/+1 counters on The Ozolith have no effect unless it becomes a creature. Keyword counters on The Ozolith will grant it keywords that may have no practical effect. For example, flying on a noncreature artifact is just strange, but hexproof on a noncreature artifact is entirely useful."},{"date":"2020-04-17","text":"As The Ozolith's last ability resolves, you choose whether to move the counters."},{"date":"2020-04-17","text":"If The Ozolith leaves the battlefield after the last ability triggers but before it resolves, you can't move any counters from it onto the target creature."},{"date":"2020-04-17","text":"If the target creature is an illegal target by the time The Ozolith's last ability tries to resolve, the ability won't resolve. You won't remove any counters from The Ozolith."},{"date":"2020-04-17","text":"The Ozolith's first ability doesn't move counters off the creature that's left the battlefield. Rather, you put the same number of each kind of counter the creature had onto The Ozoloith. Notably, if you somehow control a second The Ozolith, each one will receive the same number and kinds of counters that were on the creature that left the battlefield. Similarly, if the creature has an ability that triggers when it leaves the battlefield that refers to the number of counters it had, that ability will use the number of counters that were on the permanent, even if The Ozolith's first ability resolves first."},{"date":"2020-04-17","text":"You can't move only some of the counters from The Ozolith onto the target creature."}],"rarities":["rare","mythic"]},"the provider":{"name":"The Provider","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile The Provider: Put two +1/+1 counters on target creature you control. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Exile","count":1,"zone":null,"filter":{"type":"SelfRef"}},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile ~: Put two +1/+1 counters on target creature you control. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"a4377dfb-966b-460e-b23a-d4bbb609e0e9","legalities":{},"printings":["THP2"]},"the rack":{"name":"The Rack","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this artifact enters, choose an opponent.\nAt the beginning of the chosen player's upkeep, this artifact deals X damage to that player, where X is 3 minus the number of cards in their hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"ClampMin","inner":{"type":"Offset","inner":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"SourceChosenPlayer"}}}},"offset":3},"minimum":0},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"SourceChosenPlayer"},"valid_source":null,"description":"At the beginning of the chosen player's upkeep, ~ deals X damage to that player, where X is 3 minus the number of cards in their hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose an opponent.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"3d873e1d-4fac-42c4-bb31-77e76099e1ef","metadata":{"source_printing_ids":["1e19104f-55d5-40e5-a61d-ddba2cf5a527","20b05627-2486-486d-8e03-2db59f8876c3","2a600805-dd79-419d-9866-f8c29643f0f8","5f4d3e9f-d42a-4f9c-9230-32533d0e3873","696d1e25-5c25-4522-b085-90d49fe23a18","805ca63e-0d86-409d-a1ca-d6b61c3b8895","e2cc6b86-9094-4f82-a5ea-1d8a06a4e013","ec0686ba-1277-4412-a397-7a6227808311","f6b5fd8f-adb0-4cd5-b67a-7999efa25c2d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","ATQ","DPA","FBB","MB2","PRM","PS11","PTC","SUM","TSB"],"rulings":[{"date":"2004-10-04","text":"You choose one opposing player as this card enters, and it only affects that one player. This choice is not changed even if this card changes controllers. It becomes useless but stays on the battlefield if the chosen player leaves the game."}],"rarities":["uncommon","special"]},"the ruinous powers":{"name":"The Ruinous Powers","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, choose an opponent at random. Exile the top card of that player's library. Until end of turn, you may play that card and you may spend mana as though it were mana of any color to cast it. When you cast a spell this way, its owner loses life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast it"}],"duration":null,"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, choose an opponent at random. Exile the top card of that player's library. Until end of turn, you may play that card and you may spend mana as though it were mana of any color to cast it. When you cast a spell this way, its owner loses life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"283054ed-5fbd-4202-bc02-294079aaff03","metadata":{"source_printing_ids":["b30dde6c-9bc6-45bf-97e4-9c08be79d506","b8656aab-e22d-4f97-a8e6-a69f1dbffd09"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rulings":[{"date":"2022-10-07","text":"Use the mana value of the spell as it exists on the stack (or last existed on the stack, if it's been removed) to determine how much life is lost. If there is an {X} in that spell's cost, include the value chosen for X to determine its mana value."},{"date":"2022-10-07","text":"You must follow all normal timing rules when casting a spell or playing a land using the permission granted by Ruinous Powers."}],"rarities":["rare"]},"the scarab god":{"name":"The Scarab God","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["God"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, each opponent loses X life and you scry X, where X is the number of Zombies you control.\n{2}{U}{B}: Exile target creature card from a graveyard. Create a token that's a copy of it, except it's a 4/4 black Zombie.\nWhen The Scarab God dies, return it to its owner's hand at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":2}},"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"ParentTarget"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"SetColor","colors":["Black"]},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddType","core_type":"Creature"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{2}{U}{B}: Exile target creature card from a graveyard. Create a token that's a copy of it, except it's a 4/4 black Zombie.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":"You","properties":[]}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":"You","properties":[]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses X life and you scry X, where X is the number of Zombies you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"ParentTarget"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to its owner's hand at the beginning of the next end step.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"c75e55f2-fd6c-4816-9d96-21eeb8369aff","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["5a9097cb-1a78-558b-90d2-217688ef45d1","70911aa0-1297-5263-b92c-2348ab09b87e","ebb9c0a4-c359-58de-b739-03fddd775dfa"],"source_printing_ids":["01ff8244-ec3b-41bd-a007-bbd403a96e96","2025bd7b-ddef-40cf-9ffd-80591a67b508","621cfd79-be4e-41e3-95ce-62b0eeff5baf","70d1af08-f4e6-4030-8ebe-30d9d706b114","7546b37d-c83a-4632-bebf-cc46d114481f","d79ee141-0ea6-45d6-a682-96a37d703394","f4f414ef-84a2-4694-9e98-51bee4576c84"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","AKR","CMM","DRC","HOU","MP2","PHOU","SLD"],"rulings":[{"date":"2017-07-14","text":"If this creature dies but leaves your graveyard before the next end step, it will remain in its new zone."},{"date":"2017-07-14","text":"The “next end step” refers to the next end step that occurs, not the end step of the next turn. If this creature dies before a turn's end step (for example, during combat), it will be returned to its owner's hand at the beginning of that turn's end step."},{"date":"2020-08-07","text":"In a Two-Headed Giant game, The Scarab God's first ability causes the opposing team to lose life equal to twice the number of Zombies you control, although you scry only equal to the number of Zombies you control."},{"date":"2020-08-07","text":"The number of Zombies you control is counted as The Scarab God's first ability resolves. Players can try to change that number in response to the ability (perhaps by activating its second ability)."}],"rarities":["mythic"]},"the ur-dragon":{"name":"The Ur-Dragon","mana_cost":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Avatar"]},"power":{"type":"Fixed","value":10},"toughness":{"type":"Fixed","value":10},"loyalty":null,"defense":null,"oracle_text":"Eminence — As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.\nFlying\nWhenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield.","constraint":null,"condition":null,"batched":true}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Another"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"Or","conditions":[{"type":"SourceInZone","zone":"Command"},{"type":"SourceInZone","zone":"Battlefield"}]},"affected_zone":null,"effect_zone":null,"active_zones":["Command","Battlefield"],"characteristic_defining":false,"description":"Eminence — As long as ~ is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast."}],"replacements":[],"color_override":["Black","Green","Red","Blue","White"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"87b22b09-4f6d-4bc5-9cfc-663e4c7c6981","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["10d42b35-844f-4a64-9981-c6118d45e826","6270c798-a3ba-4826-b0a9-82f7e12890f6","7e78b70b-0c67-4f14-8ad7-c9f8e3f59743","d2763752-57af-4d4a-a0e5-5a496985b8bf","ea949741-af94-47ae-a577-2953c69ab71d","fe0192cd-9c14-4f24-bc31-febfb135f707"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","CMM","OC17","PF25","PZ2","SLD"],"rulings":[{"date":"2017-08-25","text":"If a Dragon you control enters the battlefield attacking, it won’t cause The Ur-Dragon’s last ability to trigger."},{"date":"2017-08-25","text":"The Ur-Dragon’s triggered ability resolves after all attackers have been chosen. You can’t attack with some Dragons, put a creature card with haste onto the battlefield, and then attack with that creature. Similarly, any “whenever a creature attacks” abilities of the permanent card you put onto the battlefield won’t trigger."},{"date":"2017-08-25","text":"You draw one card for each Dragon you controlled that attacked, even if some of them left the battlefield before The Ur-Dragon’s triggered ability resolves."},{"date":"2017-08-25","text":"You may only put one permanent card from your hand onto the battlefield, no matter how many Dragons you attacked with or how many players they attacked."}],"rarities":["mythic"]},"the wise mothman":{"name":"The Wise Mothman","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Insect","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever The Wise Mothman enters or attacks, each player gets a rad counter.\nWhenever one or more nonland cards are milled, put a +1/+1 counter on each of up to X target creatures, where X is the number of nonland cards milled this way.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, each player gets a rad counter.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more nonland cards are milled, put a +1/+1 counter on each of up to X target creatures, where X is the number of nonland cards milled this way.","constraint":null,"condition":null,"batched":true}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"7656f93b-336f-49cb-b8fe-c2b5c014258f","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["16a1d611-6f5f-40af-8ca3-b9dc619111eb","28686dda-64b0-4ffe-b71a-58e7f901c4eb","3d6d6944-a364-41c2-b824-7a1bf6ad0d1e","5a769dd6-3018-412f-b8ea-2434c5074945","a44f6097-a513-44a5-aaa4-92ac2fa800c0","cfb80c75-4b1b-4f25-923a-933855e7345c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP","SLD"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they’ll mill as many cards as they can."},{"date":"2024-03-08","text":"If more than one player is instructed to mill at the same time (by the activated ability of Raul, Trouble Shooter, for example), as long as at least one nonland card is milled, The Wise Mothman’s last ability will trigger just once."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don’t go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger “whenever one or more nonland cards are milled” will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is “At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.”"}],"rarities":["mythic"]},"thorin, mountain-king":{"name":"Thorin, Mountain-king","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dwarf","Noble"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen Thorin enters, attach any number of target Equipment you control to target creature you control. When one or more Equipment become attached to that creature this way, that creature deals damage equal to its power to up to one target creature.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Attach","attachment":{"type":"Typed","type_filters":[{"Subtype":"Equipment"}],"controller":"You","properties":[]},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, attach any number of target Equipment you control to target creature you control. When one or more Equipment become attached to that creature this way, that creature deals damage equal to its power to up to one target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"94917b80-ac32-45ab-b4ee-157ade024bcd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0e29ba51-763c-48ec-95ec-9d6916f4db44","117347af-0dd7-4350-901d-8c8a81387e22","2401d2a5-f65b-4a13-906c-999990589a1e"]},"legalities":{},"printings":["HOB"],"rarities":["mythic"]},"thornbow archer":{"name":"Thornbow Archer","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Archer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature attacks, each opponent who doesn't control an Elf loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"ControlsCount","relation":{"type":"Opponent"},"filter":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":null,"properties":[]},"comparator":"EQ","count":{"type":"Fixed","value":0}}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, each opponent who doesn't control an Elf loses 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a9b35457-0f1c-495c-a508-6f6693835051","metadata":{"source_printing_ids":["3290c60a-f9a0-464d-a15e-8473a6d50d96","d28ca3ab-9e44-489d-9882-3deccd41f390"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI","PLST"],"rarities":["common"]},"thought sponge":{"name":"Thought Sponge","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sponge"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nThis creature enters with a number of +1/+1 counters on it equal to the greatest number of cards an opponent has drawn this turn.\nWhen this creature dies, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with a number of +1/+1 counters on it equal to the greatest number of cards an opponent has drawn this turn.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"256e094a-a9e8-42d9-90e2-7a24ed85e426","metadata":{"source_printing_ids":["70406543-ba78-4dd8-8f16-3c5a9ee458a1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"Thought Sponge checks how many cards were drawn by opponents this turn, even opponents who have left the game. The greatest number drawn by a single opponent is how many +1/+1 counters it enters with."},{"date":"2019-08-23","text":"Thought Sponge checks the total number of cards drawn by each opponent, not how many were drawn due to a single instruction."},{"date":"2019-08-23","text":"Thought Sponge gets its +1/+1 counters at the moment it enters the battlefield. There's not a time that it's on the battlefield before its replacement effect has applied."},{"date":"2019-08-23","text":"Use Thought Sponge's power as it last existed on the battlefield to determine how many cards to draw for its last ability. If that number is negative, you neither draw nor discard cards."}],"rarities":["rare"]},"thought-string analyst":{"name":"Thought-String Analyst","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, exile the top card of target opponent's library face down. You lose life equal to its mana value. You may look at and play that card for as long as it remains exiled, and mana of any type can be spent to cast that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"count":{"type":"Fixed","value":1},"face_down":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"Permanent","granted_to":0,"mana_spend_permission":"AnyTypeOrColor"},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of target opponent's library face down. You lose life equal to its mana value. You may look at and play that card for as long as it remains exiled, and mana of any type can be spent to cast that spell.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"d23f3868-657d-4cbc-b7cf-4d77f0f2c642","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YMKM"]},"thousand-faced shadow":{"name":"Thousand-Faced Shadow","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Ninjutsu {2}{U}{U} ({2}{U}{U}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nFlying\nWhen this creature enters from your hand, if it's attacking, create a token that's a copy of another target attacking creature. The token enters tapped and attacking.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Ninjutsu":{"type":"Cost","shards":["Blue","Blue"],"generic":2}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"},{"type":"Another"}]},"owner":{"type":"Controller"},"enters_attacking":true,"tapped":true,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Hand","destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters from your hand, if it's attacking, create a token that's a copy of another target attacking creature. The token enters tapped and attacking.","constraint":null,"condition":{"type":"SourceIsAttacking"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"98636623-bbc6-4935-a2bb-2234691eb6d8","metadata":{"related_token_ids":["ebb9c0a4-c359-58de-b739-03fddd775dfa"],"source_printing_ids":["00632c03-be00-4722-85b3-2ce31bba5cc6","89a698a5-f4ac-4b04-96dc-32e1eeef6ac7","a48c2751-fd12-42f2-b8c1-eaf78c5e29eb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NEO","PNEO","PRM"],"rulings":[{"date":"2022-02-18","text":"Although the Ninja is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2022-02-18","text":"Although the token is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2022-02-18","text":"Any enters-the-battlefield abilities of the copied creature will trigger when the token enters the battlefield. Any “As [this creature] enters the battlefield” or “[This creature] enters the battlefield with” abilities of the copied creature will also work."},{"date":"2022-02-18","text":"As you activate a ninjutsu ability, you reveal the Ninja card in your hand and return the attacking creature. The Ninja card stays revealed and isn't put onto the battlefield until the ability resolves. If it leaves your hand before then, it won't enter the battlefield at all."},{"date":"2022-02-18","text":"If a creature in combat has first strike or double strike, you can activate the ninjutsu ability during the first-strike combat damage step. The Ninja will deal combat damage during the regular combat damage step, even if it has first strike."},{"date":"2022-02-18","text":"If the copied creature had {X} in its mana cost, X is 0."},{"date":"2022-02-18","text":"If the copied creature is a token, the token created by Thousand-Faced Shadow copies the original characteristics of that token as stated by the effect that put it onto the battlefield."},{"date":"2022-02-18","text":"If the copied creature was copying something else, the token enters the battlefield as whatever that creature was copying."},{"date":"2022-02-18","text":"Puff of smoke not included."},{"date":"2022-02-18","text":"The creature with ninjutsu enters the battlefield attacking the same player or planeswalker that the returned creature was attacking. This is a rule specific to ninjutsu; in other cases, when a creature is put onto the battlefield attacking, that creature's controller chooses which player or planeswalker it's attacking."},{"date":"2022-02-18","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. In most cases (see below), if you wait until the combatdamage step or end of combat step, it will be after combat damage has been dealt, so the Ninja won't deal combat damage."},{"date":"2022-02-18","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."},{"date":"2022-02-18","text":"The token copies exactly what was printed on the original creature and nothing else (unless that permanent is copying something else or is a token; see below). It doesn't copy whether that creature has any counters on it or Auras and/or Equipment attached to it, or any non-copy effects that changed its power, toughness, types, color, and so on. Notably, it doesn't copy any effects that may have turned a noncreature permanent into a creature. If the token isn't a creature as it enters the battlefield, it won't be attacking."},{"date":"2022-02-18","text":"You choose which opponent or opposing planeswalker the token is attacking as you put it onto the battlefield. It doesn't have to be the same player or planeswalker Thousand-Faced Shadow is attacking. (Remember that the rules for ninjutsu specify that a creature that enters the battlefield attacking because of a ninjutsu ability attacks the same player or planeswalker the returned unblocked creature was.)"}],"rarities":["rare"]},"thran portal":{"name":"Thran Portal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Gate"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control two or fewer other lands.\nAs this land enters, choose a basic land type.\nThis land is the chosen type in addition to its other types.\nMana abilities of this land cost an additional 1 life to activate.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Mana abilities of ~ cost an additional 1 life to activate."},"cost":null,"sub_ability":null,"duration":null,"description":"Mana abilities of ~ cost an additional 1 life to activate.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddChosenSubtype","kind":"BasicLandType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ is the chosen type in addition to its other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control two or fewer other lands.","condition":{"type":"UnlessControlsOtherLeq","count":2,"filter":{"type_filters":["Land"],"controller":"You","properties":[{"type":"Another"}]}},"destination_zone":"Battlefield"},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"BasicLandType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a basic land type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"926ce6a2-7bdd-4380-ac65-bc902ba0c284","metadata":{"source_printing_ids":["eba2995e-f255-46da-abcf-9a6f3996edb1","ef074a2e-a387-4af8-a180-74b145d93992"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"If Thran Portal somehow gains another mana ability, that ability also costs an additional 1 life to activate."},{"date":"2022-09-09","text":"If a Thran Portal somehow enters the battlefield without a basic land type having been chosen for it, it does not have any mana abilities. The same is true for a land that is already on the battlefield that becomes a copy of it."},{"date":"2022-09-09","text":"If a land enters the battlefield as a copy of Thran Portal (as opposed to a land that is already on the battlefield becoming a copy of it), its controller gets to choose a basic land type for it and it has that type."},{"date":"2022-09-09","text":"If you control more than one Thran Portal, the last ability of each of them applies only to itself. That is, controlling a second Thran Portal does not make mana abilities of all cards named Thran Portal cost an additional 2 life."},{"date":"2022-09-09","text":"Thran Portal will have the appropriate intrinsic mana ability for the basic land type chosen as it enters the battlefield. It is still a Gate and still has its other abilities, including the last ability, which makes the mana ability associated with its basic land type cost 1 life to activate."},{"date":"2022-09-09","text":"You still have to pay that mana ability's other costs. Usually, this is just tapping the land."}],"rarities":["rare"]},"timber paladin":{"name":"Timber Paladin","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"As long as this creature is enchanted by exactly one Aura, it has base power and toughness 3/3.\nAs long as this creature is enchanted by exactly two Auras, it has base power and toughness 5/5 and vigilance.\nAs long as this creature is enchanted by three or more Auras, it has base power and toughness 10/10, vigilance, and trample.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3}],"condition":{"type":"Unrecognized","text":"~ is enchanted by exactly one Aura"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by exactly one Aura, it has base power and toughness 3/3."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":5},{"type":"SetToughness","value":5},{"type":"AddKeyword","keyword":"Vigilance"}],"condition":{"type":"Unrecognized","text":"~ is enchanted by exactly two Auras"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by exactly two Auras, it has base power and toughness 5/5 and vigilance."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":10},{"type":"SetToughness","value":10},{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Trample"}],"condition":{"type":"Unrecognized","text":"~ is enchanted by three or more Auras"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by three or more Auras, it has base power and toughness 10/10, vigilance, and trample."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0be44c76-9e3f-45c2-9b2c-6a5f00678780","metadata":{"source_printing_ids":["1edfd4d2-c492-4bec-9bb0-c5b7cb01818f","3507e128-f8a1-4429-951d-2dc98b225118"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["WOC"],"rulings":[{"date":"2023-09-01","text":"Timber Paladin's abilities each overwrite any previous effects that set creatures' power and/or toughness to specific numbers. Any power- or toughness-setting effects that start to apply after Timber Paladin enters the battlefield will overwrite these effects, regardless of when Timber Paladin became enchanted by one, two, or three or more Auras."}],"rarities":["rare"]},"timely ward":{"name":"Timely Ward","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast this spell as though it had flash if it targets a commander.\nEnchant creature\nEnchanted creature has indestructible.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature has indestructible."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8e589dca-d31e-4d2f-81b1-18e5f9198795","casting_options":[{"kind":"AsThoughHadFlash","condition":{"type":"SpellTargetsFilter","filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"IsCommander"}]}}}],"metadata":{"source_printing_ids":["5de08a92-9b60-4672-9f3b-3ceb53ca82ca","d61f8db1-0148-47bd-ae97-9aedccb83813","dd0af67e-d31f-431f-b912-ce8382785ded"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","DSC","WOC"],"rarities":["rare"]},"tinybones joins up":{"name":"Tinybones Joins Up","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When Tinybones Joins Up enters, any number of target players each discard a card.\nWhenever a legendary creature you control enters, any number of target players each mill a card and lose 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, any number of target players each discard a card.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever a legendary creature you control enters, any number of target players each mill a card and lose 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"3d2bd4f6-174d-411a-b930-9161aeefd33a","metadata":{"source_printing_ids":["5724a15f-0ba0-421a-9cd4-a2b701e6141f","a3afc0c2-95e7-4b9f-94c5-144cce17c7ed"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"When Tinybones Joins Up’s first ability resolves, the next target player in turn order (or, if it’s a target player’s turn, that player) chooses a card in hand without revealing it, then each other target player in turn order (if any) does the same. All chosen cards are then discarded at the same time."}],"rarities":["rare"]},"tireless provisioner":{"name":"Tireless Provisioner","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Scout"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, create a Food token or a Treasure token. (Food is an artifact with \"{2}, {T}, Sacrifice this token: You gain 3 life.\" Treasure is an artifact with \"{T}, Sacrifice this token: Add one mana of any color.\")","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"create a Food token","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"create a Treasure token","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, create a Food token or a Treasure token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ab8d5f5c-1976-4f77-8ed2-8d28ee666741","metadata":{"related_token_ids":["08ce3bb9-14a8-554b-8d2f-328f500a2379","27e5baaa-d09a-5876-be9d-887eb020080b","4811acb4-e116-5e6b-8d42-707057b51299","4873fe20-675e-5db5-b9ba-8d996c2806ba","4f940dc2-7698-5fda-9f9b-62ec43ec2012","742fc83d-e6e3-5467-8fc6-284244ee60a0","74d281e4-6c2a-53c2-b0ea-253ef143d22c","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85","84539a0d-a9c4-532f-83b9-71197f3c5225","8cfc974b-4493-5d52-af68-ace05fa34f90","97324ce8-4b11-5965-8157-3a28ffb9c84c","9b7b8d88-0042-548c-a8dd-18089528b064","af87e130-3b6a-589f-959b-301f7269a7fa","c71c9643-4101-5306-9514-9a7004d811df","e097be71-8e76-516b-9764-7e93746e0d63","e1712205-f6a6-5ffa-befc-9becced0337f","f6e24d97-b7f8-5da8-ab97-978ecbecb85e","fedaa940-0663-5266-8c03-77691c605fe8"],"source_printing_ids":["1163fe84-c5d5-42c8-b7cd-d206a9b0bd3f","3cf04e55-b266-46cd-a79a-d87f5ceba469","5590a3a5-e0bd-451a-b98e-00a492487c46","5c5be54d-660e-42ab-b5ea-5e1cf3bad0bc","5dbc2162-238d-492b-b629-94f771230d92","7a832060-ecc6-406a-ab06-b371aa952e13","995938ee-3ba7-42c9-9e0f-76b4a105f55e","a1e048e0-19d2-4076-892d-f8b3104dee37","ac73d130-ceb6-41ea-af0d-314d5adba9e6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","H2R","J21","J25","LTC","MH2","MOC","PLST","SLD"],"rulings":[{"date":"2024-11-08","text":"Food is an artifact type. Even though it appears on some creatures, it's never a creature type."},{"date":"2024-11-08","text":"Whatever you do, don't eat the delicious cards."},{"date":"2024-11-08","text":"You can't sacrifice a Food to pay multiple costs. For example, you can't sacrifice a Food token to activate its own ability and also to activate Maraleaf Rider's ability."}],"rarities":["uncommon","rare"]},"tithing blade":{"name":"Tithing Blade","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters, each opponent sacrifices a creature of their choice.\nCraft with creature {4}{B} ({4}{B}, Exile this artifact, Exile a creature you control or a creature card from your graveyard: Return this card transformed under its owner's control. Craft only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Craft":{"cost":{"type":"Cost","shards":["Black"],"generic":4},"materials":{"type":"Or","filters":[{"type":"Typed","type_filters":["Permanent","Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]},{"type":"Typed","type_filters":["Card","Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]}]},"count":{"type":"Exactly","count":1}}}],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Exile","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":4}},{"type":"Exile","count":1,"zone":"Battlefield","filter":{"type":"SelfRef"}},{"type":"ExileMaterials","materials":{"type":"Or","filters":[{"type":"Typed","type_filters":["Permanent","Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]},{"type":"Typed","type_filters":["Card","Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]}]},"count":{"type":"Exactly","count":1}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent sacrifices a creature of their choice.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"883a4180-9ede-4249-a4b8-3a29c998fb63","metadata":{"source_printing_ids":["dbaa9a2d-e9fd-4746-a26c-f99ae731f024"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If a card that isn't a transforming double-faced card becomes a copy of a card with craft, it'll stay in exile if you activate the craft ability. It won't return to the battlefield."},{"date":"2023-11-10","text":"If the materials required include multiple objects, you may exile some of them from among permanents you control and the rest from among cards in your graveyard. You don't have to choose all permanents or all cards from your graveyard."},{"date":"2023-11-10","text":"The back faces of some cards with craft refer to cards \"used to craft\" it. This refers to the cards exiled as part of the cost of the craft ability of the front face. Those cards are considered to be \"used to craft\" that permanent as long as they remain exiled and the permanent remains on the battlefield, even if the permanent's controller changes or some of its characteristics change (because of a copy effect, for example.)"},{"date":"2023-11-10","text":"You may exile tokens you control as part of the materials required. However, because they aren't cards and won't stay in exile, any abilities that refer to what you \"used to craft\" the back faces won't refer to anything."}],"rarities":["common"]},"tombstone stairwell":{"name":"Tombstone Stairwell","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["World"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cumulative upkeep {1}{B} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)\nAt the beginning of each upkeep, if this enchantment is on the battlefield, each player creates a 2/2 black Zombie creature token with haste named Tombspawn for each creature card in their graveyard.\nAt the beginning of each end step and when this enchantment leaves the battlefield, destroy all tokens created with this enchantment. They can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[{"CumulativeUpkeep":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Zombie","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Zombie"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[{"type":"Owned","controller":"ScopedPlayer"},{"type":"InZone","zone":"Graveyard"}]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if ~ is on the battlefield, each player creates a 2/2 black Zombie creature token with haste named Tombspawn for each creature card in their graveyard.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, destroy all tokens created with ~. They can't be regenerated.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, destroy all tokens created with ~. They can't be regenerated.","constraint":null,"condition":null,"batched":false},{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9aaf1149-eccb-434a-a1a7-14b93fa50141","metadata":{"source_printing_ids":["f8fe2f99-7ec2-490c-8ec3-aa2fb4680826"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"All the tokens are put onto the battlefield simultaneously."},{"date":"2004-10-04","text":"Both the cumulative upkeep and the triggered ability trigger at the beginning of upkeep, so you can choose what order they resolve."},{"date":"2004-10-04","text":"Does not put the Zombies onto the battlefield if this card is not still on the battlefield when its ability resolves."},{"date":"2004-10-04","text":"If something changes the names of the tokens, then the \"at end of turn\" ability will still destroy them."},{"date":"2004-10-04","text":"You control the triggered ability, but each player controls the token creature they put onto the battlefield due to the ability's effect."},{"date":"2008-10-01","text":"This has the supertype world. When a world permanent enters, any world permanents that were already on the battlefield are put into their owners' graveyards. This is a state-based action called the \"world rule.\" The new world permanent stays on the battlefield. If two world permanents enter at the same time, they're both put into their owners' graveyards."}],"rarities":["rare"]},"tome scour":{"name":"Tome Scour","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player mills five cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":5},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":"Target player mills five cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"446a9d7e-9c1a-4e83-8342-2ed5acae2eed","metadata":{"source_printing_ids":["6445f013-8b50-4ea3-9013-df85289c2605","a67f6ee1-80bd-42cf-bcf6-6f856a6b2398","aed4cfec-5cea-4987-890e-825b2802e9f9","fdbdf96b-e7c5-42e5-9a16-03daafde40af"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M11","M14","PIO","PS11"],"rulings":[{"date":"2009-10-01","text":"If there are fewer than five cards in the targeted player’s library, that player puts all the cards from their library into their graveyard."}],"rarities":["common","uncommon"]},"too greedily, too deep":{"name":"Too Greedily, Too Deep","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. That creature deals damage equal to its power to each other creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. That creature deals damage equal to its power to each other creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"af65bbf9-e328-4b8b-8caa-c6dff743867b","metadata":{"source_printing_ids":["328b93f0-5078-4334-9c95-60ecdd17a388","4a8e2312-1a17-4f7b-bd9a-c510a4cf127b","595c37f7-2f5e-4055-ae85-3ad4e2c8cb5c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"If the card you return to the battlefield isn't a creature on the battlefield, it has no power and therefore deals no damage."}],"rarities":["rare"]},"torrent sculptor":{"name":"Torrent Sculptor","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ward {2} (Whenever this creature becomes the target of a spell or ability an opponent controls, counter it unless that player pays {2}.)\nWhen this creature enters, exile an instant or sorcery card from your graveyard. Put a number of +1/+1 counters on this creature equal to half that card's mana value, rounded up.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"DivideRounded","inner":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Target"}}},"divisor":2,"rounding":"Up"},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile an instant or sorcery card from your graveyard. Put a number of +1/+1 counters on ~ equal to half that card's mana value, rounded up.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"8a9fe2dd-50a7-4010-96ba-df4dec265e16","metadata":{"source_printing_ids":["77e7417d-36b9-4a47-b6d2-aa589711a5ba","87463b68-3642-41c7-a11c-67d524759b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["PRM","PSTX","STX"],"rulings":[{"date":"2021-04-16","text":"Flamethrower Sonata goes on the stack without a target. While it is resolving, you discard a card, then draw a card. When you discard an instant or sorcery card this way, the reflexive triggered ability triggers and you pick a target to be dealt damage. This is different from effects that say “If you do . . .” in that players can respond to the triggered ability knowing how much damage will be dealt."},{"date":"2021-04-16","text":"If a player casts a spell that targets multiple permanents their opponent controls with ward, each of those ward abilities will trigger. If that player doesn’t pay for all of them, the spell will be countered."},{"date":"2021-04-16","text":"If you have no cards in hand as Flamethrower Sonata resolves, you won’t be able to discard a card, but you will draw a card. No damage will be dealt."},{"date":"2021-04-16","text":"You choose which instant or sorcery card to exile as Torrent Sculptor’s enters-the-battlefield ability resolves. You must exile one if able."}],"rarities":["rare"]},"tracker":{"name":"Tracker","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{G}{G}, {T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green","Green"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{G}{G}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"86260d53-a68e-43cb-88ba-6a97c0b2f4f4","metadata":{"source_printing_ids":["35ffc69e-26f2-434f-8c89-2df108dd984a","74f0400c-35dd-4ba5-97d1-2e57689c9d53"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DRK","ME3"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."},{"date":"2009-10-01","text":"You may have Tracker target itself with its own ability. If you do, Tracker will deal damage to itself equal to its power, then immediately do it again."}],"rarities":["uncommon","rare"]},"traitor's roar":{"name":"Traitor's Roar","mana_cost":{"type":"Cost","shards":["BlackRed"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature. It deals damage equal to its power to its controller.\nConspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":["Conspire"],"abilities":[{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Untapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature. It deals damage equal to its power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Stack"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.78a: Conspire — when you cast this spell, if its conspire cost was paid, copy it; you may choose new targets for the copy.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"04e9ac31-3377-4a4c-9337-53ee0ada882a","additional_cost":{"type":"Optional","data":{"cost":{"type":"TapCreatures","count":2,"filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"SharesQuality","quality":"Color","reference":{"type":"SelfRef"}}]}}}},"metadata":{"source_printing_ids":["751e2700-6425-45b8-b026-8c78098f08b2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["SHM"],"rulings":[{"date":"2008-05-01","text":"If you use conspire to copy Traitor’s Roar, but you don’t change its target, the copy will resolve just fine but the original doesn’t resolve. That’s because the copy will resolve first, and as part of its resolution, it will tap the targeted creature. Then, when the original Traitor’s Roar tries to resolve, it will have an illegal target (since it must target an untapped creature)."}],"rarities":["common"]},"treasured find":{"name":"Treasured Find","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target card from your graveyard to your hand. Exile Treasured Find.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"e99d6c5c-b029-4cd1-bd7a-6f8ea91eb4a7","metadata":{"source_printing_ids":["0dc037e4-bbf3-4cea-b197-befb31d718a6","9317b616-eabe-461a-bd60-6dd8620becb4","a2c0e00b-2290-493f-a3fc-3b9bff2830cc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["DDM","GK1","RTR"],"rarities":["uncommon"]},"tribute to hunger":{"name":"Tribute to Hunger","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target opponent sacrifices a creature of their choice. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target opponent sacrifices a creature of their choice. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc5a501c-e16c-4d4b-a510-70a14272473e","metadata":{"source_printing_ids":["11f1b897-bb7d-4217-97a7-c89f2453c8fa","f77e0f88-2285-4b59-9165-9948c75d77a3","fcfc9bd3-4378-4305-b427-4e3dd4e1fba1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DDQ","FDN","ISD"],"rulings":[{"date":"2024-11-08","text":"Use the sacrificed creature's toughness as it last existed on the battlefield to determine how much life to gain."}],"rarities":["uncommon"]},"triskaidekaphile":{"name":"Triskaidekaphile","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"You have no maximum hand size.\nAt the beginning of your upkeep, if you have exactly thirteen cards in your hand, you win the game.\n{3}{U}: Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":3}},"sub_ability":null,"duration":null,"description":"{3}{U}: Draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, if you have exactly thirteen cards in your hand, you win the game.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"Controller"}}},"comparator":"EQ","rhs":{"type":"Fixed","value":13}},"batched":false}],"static_abilities":[{"mode":"NoMaximumHandSize","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You have no maximum hand size."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ef238ba8-acf0-4e62-9abd-5291886a32e8","metadata":{"source_printing_ids":["10c7b3b1-32f4-49b1-aa39-02d3ef29a727","1ed68800-3fc6-4b0e-a624-8be3beeed92f","2ddbaeed-ba00-476d-a68a-d98f179b62a6","6750e203-1215-4203-b5b8-3f1b18940839","779dadab-a4be-481f-a50f-4a80a3bf9ca9","b6db2d37-3533-4830-ab63-6724ece6fbea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","DBL","MID","PMID","PRM","SLD"],"rulings":[{"date":"2021-09-24","text":"Triskaidekaphile's triggered ability will trigger only if you have exactly thirteen cards in your hand as your upkeep starts. If you have fewer cards in your hand, you won't be able to draw cards during your upkeep in time to cause the ability to trigger."}],"rarities":["rare"]},"troll ascetic":{"name":"Troll Ascetic","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)\n{1}{G}: Regenerate this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Hexproof"],"abilities":[{"kind":"Activated","effect":{"type":"Regenerate","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{G}: Regenerate ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0585ea6a-ef78-4386-a22c-6b8d8fc6c03c","metadata":{"source_printing_ids":["430fa067-cecd-4958-851b-5908a0765063","5a87f701-ef4c-47dd-beec-8ae871306ffe","cbef1bfa-eb85-4f64-bd11-8af53bf4c3d4","d447186e-62a7-4767-bb85-6439fd795350","f01233c2-6df0-4f0e-8668-3855868731ea"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["10E","CM2","CMD","DDL","DPA","MRD","PS11"],"rarities":["rare"]},"trostani, selesnya's voice":{"name":"Trostani, Selesnya's Voice","mana_cost":{"type":"Cost","shards":["Green","Green","White","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dryad"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature you control enters, you gain life equal to that creature's toughness.\n{1}{G}{W}, {T}: Populate. (Create a token that's a copy of a creature token you control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Populate"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{G}{W}, {T}: Populate.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"e94ef397-f5c5-4b8d-ae27-528352fa1d1e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0eeccc8d-fe98-4868-939f-29277085aeff","34ea44f2-cb2f-4b86-83fc-fe507f05bb9d","9d1d9d86-5666-4e59-9766-137657b4e040","c2649bc6-2ed9-4d50-ad11-ae05d6df2c3d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C19","GK1","PLST","RTR"],"rulings":[{"date":"2012-10-01","text":"Trostani's first ability checks the creature's toughness as it resolves. If that creature has left the battlefield, use its toughness from when it was last on the battlefield. You can't lose life this way if that creature's toughness was less than 0."},{"date":"2024-01-12","text":"Any enters-the-battlefield abilities of the copied token will trigger when the new token enters the battlefield. Any \"as [this creature] enters the battlefield\" or \"[this creature] enters the battlefield with\" abilities of the copied token will also work."},{"date":"2024-01-12","text":"If you choose to copy a creature token that's a copy of another creature, the new creature token will copy the characteristics of whatever the original token is copying."},{"date":"2024-01-12","text":"If you control no creature tokens when you populate, nothing will happen."},{"date":"2024-01-12","text":"Populate doesn't target the creature token you're copying. You choose that creature token as you're taking the populate action. You can choose any creature token you control. If a spell or ability causes you to create a creature token and then instructs you to populate, you may choose to copy the token you just created, or you may choose to copy another creature token you control."},{"date":"2024-01-12","text":"The new creature token copies the characteristics of the original token as stated by the effect that created the original token."},{"date":"2024-01-12","text":"The new token doesn't copy whether the original token is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any noncopy effects that have changed its power, toughness, color, and so on."}],"rarities":["mythic"]},"turbulent fen":{"name":"Turbulent Fen","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Swamp","Forest"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {B} or {G}.)\nThis land enters tapped unless your opponents control eight or more lands.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless your opponents control eight or more lands.","condition":{"type":"UnlessControlsCountMatching","minimum":8,"filter":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[]}},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"114dd40d-5ad8-4913-a08f-572b9521eb5b","metadata":{"source_printing_ids":["9737159b-256c-4004-ba5f-0417c35e1b30","fa1f9d1d-f749-4a33-b6dc-52f97b416b3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If this land enters the battlefield at the same time as any number of lands your opponents control, those other lands are not counted when determining if this land enters the battlefield tapped or untapped."},{"date":"2026-03-20","text":"Unlike some other dual lands, Turbulent Fen has two basic land types. It's not basic, so effects that search for basic lands can't find it, but it does have the appropriate land types for effects such as that of Necroblossom Snarl (included in the Secrets of Strixhaven Commander decks)."}],"rarities":["rare"]},"twisted justice":{"name":"Twisted Justice","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice. You draw cards equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature of their choice. You draw cards equal to that creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"89c5dec1-cefe-4ce3-a9df-b5cb9fa73b35","metadata":{"source_printing_ids":["d8efa02d-c301-47e1-8cdf-26ff9e97a243"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["RAV"],"rarities":["uncommon"]},"ultima, origin of oblivion":{"name":"Ultima, Origin of Oblivion","mana_cost":{"type":"Cost","shards":[],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["God"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever Ultima attacks, put a blight counter on target land. For as long as that land has a blight counter on it, it loses all land types and abilities and has \"{T}: Add {C}.\"\nWhenever you tap a land for {C}, add an additional {C}.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"blight","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"lose all land types and abilities and has \"{T}: Add {C}.\""}],"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"that land has a blight counter on it"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"that land has a blight counter on it"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, put a blight counter on target land. For as long as that land has a blight counter on it, it loses all land types and abilities and has \"{T}: Add {C}.\"","constraint":null,"condition":null,"batched":false},{"mode":"TapsForMana","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you tap a land for {C}, add an additional {C}.","constraint":null,"condition":null,"batched":false,"taps_for_mana_produced":["Colorless"]}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"baa337ce-edc6-4ee5-a898-68e9dbb4ab93","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2ac1b165-27ff-47f3-b598-43f7f021093a","d55a4c02-1aa4-454c-9041-84937377a53b","e6e27054-03e1-424e-92d8-6e77d7683d79"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"The affected land keeps any other card types (such as artifact) and supertypes (such as basic or legendary) when it loses its land types."},{"date":"2025-06-06","text":"Ultima's last ability is a triggered mana ability. It doesn't use the stack and can't be responded to."}],"rarities":["rare"]},"uncivil unrest":{"name":"Uncivil Unrest","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Nontoken creatures you control have riot. (They enter with your choice of a +1/+1 counter or haste.)\nIf a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"modifications":[{"type":"AddKeyword","keyword":"Riot"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Nontoken creatures you control have riot."}],"replacements":[{"event":"DamageDone","execute":null,"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.","condition":null,"damage_modification":{"type":"Double"},"damage_source_filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]}},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":"It gains haste","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"description":"CR 702.136a: Riot — this permanent may enter with an additional +1/+1 counter; otherwise it gains haste.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"bd655e8b-f192-4635-9e23-357b6f89ef8f","metadata":{"source_printing_ids":["0a9e1b5e-233e-4066-9d03-d04a051d8cfb","31afae93-d3c7-49c3-9f00-2cd9621e0ff8","343c3e40-d551-4e2c-bb94-315b58151a33"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC","SLD"],"rulings":[{"date":"2023-04-14","text":"If another effect (or effects) modifies how much damage your creature with a +1/+1 counter on it would deal—by preventing some of it, for example—the player being dealt damage or the controller of the permanent being dealt damage chooses the order in which any such effects (including Uncivil Unrest’s) apply. If all of the damage is prevented, Uncivil Unrest’s effect no longer applies."},{"date":"2023-04-14","text":"If damage dealt by a creature you control with a +1/+1 counter on it is being divided or assigned among multiple permanents and/or players, that damage is divided or assigned before doubling. For example, if you attack with a 5/5 creature with trample and it’s blocked by a 2/2 creature, you can assign 2 damage to the blocker and 3 damage to the defending player. Those amounts are then doubled to 4 and 6, respectively."},{"date":"2023-04-14","text":"If you choose for the creature to gain haste, it gains haste indefinitely. It won’t lose it as the turn ends or as another player gains control of it."},{"date":"2023-04-14","text":"Riot is a replacement effect. Players can’t respond to your choice of +1/+1 counter or haste, and they can’t take actions while the creature is on the battlefield without one or the other."},{"date":"2023-04-14","text":"The damage is dealt by the same source as the original source of damage. The doubled damage isn’t dealt by Uncivil Unrest unless it was somehow the original source of damage."}],"rarities":["rare"]},"undying flames":{"name":"Undying Flames","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile cards from the top of your library until you exile a nonland card. Undying Flames deals damage to any target equal to that card's mana value.\nEpic (For the rest of the game, you can't cast spells. At the beginning of each of your upkeeps, copy this spell except for its epic ability. You may choose a new target for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":["Epic"],"abilities":[{"kind":"Spell","effect":{"type":"ExileFromTopUntil","player":{"type":"Controller"},"until":{"type":"NextMatches","filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile cards from the top of your library until you exile a nonland card. ~ deals damage to any target equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5db128ed-69c0-41f3-b8b4-fb7cefdb236c","metadata":{"source_printing_ids":["606206c7-1a8a-46f4-b368-cf18e02f3df8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOK"],"rulings":[{"date":"2005-06-01","text":"If you have no cards in your library, Undying Flames does nothing."}],"rarities":["rare"]},"unnatural hunger":{"name":"Unnatural Hunger","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nAt the beginning of the upkeep of enchanted creature's controller, this Aura deals damage equal to that creature's power to that player unless they sacrifice another creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of the upkeep of enchanted creature's controller, ~ deals damage equal to that creature's power to that player unless they sacrifice another creature of their choice.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"count":1},"payer":{"type":"TriggeringPlayer"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d37a361e-83e8-4f0a-bd09-3135fb918471","metadata":{"source_printing_ids":["3985f240-4289-4d48-978c-bb2ce2b54c36"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MMQ"],"rarities":["rare"]},"unstoppable plan":{"name":"Unstoppable Plan","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, untap all nonland permanents you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"UntapAll","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, untap all nonland permanents you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3f6f4c98-ed7e-4fb1-8bfe-4210a39f77f2","metadata":{"source_printing_ids":["62a95aeb-b1b0-42cd-ad67-fd13717d3c6c","aaeb5981-7e6a-4ffd-bb02-4757b2e92f08","ce40ff0e-04ae-4786-ac0c-54a66ffb48a6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT","PDFT"],"rarities":["rare"]},"unstoppable slasher":{"name":"Unstoppable Slasher","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Assassin"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever this creature deals combat damage to a player, they lose half their life, rounded up.\nWhen this creature dies, if it had no counters on it, return it to the battlefield tapped under its owner's control with two stun counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"DivideRounded","inner":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"ScopedPlayer"}}},"divisor":2,"rounding":"Up"},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they lose half their life, rounded up.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false,"enter_with_counters":[["stun",{"type":"Fixed","value":2}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it had no counters on it, return it to the battlefield tapped under its owner's control with two stun counters on it.","constraint":null,"condition":{"type":"Not","condition":{"type":"HadCounters","counter_type":null}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6662968e-ca9e-454c-be44-24ad10e43d3e","metadata":{"source_printing_ids":["0a30a301-8e87-46e7-89aa-cd55b1a14420","57d865cf-8c5f-4c27-a731-33564b01bc64","c78da035-6b5b-4136-9ab6-f622b64fdc54"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK","PJSC"],"rarities":["rare"]},"urge to feed":{"name":"Urge to Feed","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets -3/-3 until end of turn. You may tap any number of untapped Vampire creatures you control. If you do, put a +1/+1 counter on each of those Vampires.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":-3},"toughness":{"type":"Fixed","value":-3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Untapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":null,"properties":[]}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"multi_target":{"min":0,"max":null},"target_choice_timing":"Resolution","forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature gets -3/-3 until end of turn. You may tap any number of untapped Vampire creatures you control. If you do, put a +1/+1 counter on each of those Vampires.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c9f2f0ae-5869-43dc-a225-4dfe3d37c166","metadata":{"source_printing_ids":["041606a6-d20b-4241-ae5a-2dd004c47487","6f56b179-dedf-44fc-952a-dec22f30af49","b388d4d9-62b6-4174-897e-f933a4badcf9","eed371fb-b23b-41b0-9fa2-4cb1be8b77cc","ff8e3bff-1502-4dac-9d2d-784a988e5565"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["DDK","E02","J25","VOC","WWK"],"rulings":[{"date":"2010-03-01","text":"If the targeted creature is an illegal target by the time Urge to Feed resolves, the entire spell doesn't resolve. You can't tap any Vampires."},{"date":"2010-03-01","text":"If you cast Urge to Feed targeting an untapped Vampire creature you control with toughness 3, its toughness will be reduced to 0 by the -3/-3 effect. However, state-based actions aren't checked until the spell has finished resolving. You may then tap that Vampire and put a +1/+1 counter on it, raising its toughness to 1. It will remain on the battlefield."},{"date":"2010-03-01","text":"You don't choose which untapped Vampire creatures you control to tap (if any) until Urge to Feed resolves."}],"rarities":["uncommon"]},"urza's mine":{"name":"Urza's Mine","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Mine"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Power-Plant and an Urza's Tower, add {C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Power-Plant"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Tower"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Power-Plant and an Urza's Tower, add {C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"33e85a8a-86df-4cdc-a9cc-8cbabe92c3c0","metadata":{"source_printing_ids":["08dea8f6-bd32-44a3-bec4-93a5607819df","21079a99-690a-459a-b803-19585d8cf5fb","23c0e596-83c7-4d3f-903b-0c29276700ef","27886da1-9161-4bed-81b5-06da21a25f91","2a503f38-8117-4f17-9cf8-e92149b4ba44","2ee60a99-762b-4f82-9a26-3d3b5682f46b","32dbc719-d8aa-47ff-b7ea-20adadc99ec7","396bbb7d-ae61-4d8d-b931-9ed2f712832e","4e15ad45-dc96-48db-931c-1bbb95dfa580","546e0452-5304-41fa-9e3a-a3fa5a571315","5a295b97-85c5-4673-aea5-81e3d6379345","5c07c384-8ce9-4be0-a739-699a294fcf47","5eedb94c-058e-4c3a-96cf-e6624c03d26e","6c6c9f3e-6df7-459c-a1b0-d628f17bb7a6","703bae20-8833-474b-9356-f45d7b1efa4e","7a235785-b720-483b-bb28-6de440be2129","84a9cb92-438f-46d7-a8bd-a263f540bd88","897a79db-ec7a-450c-98ec-53337c564baa","97def2ea-97b5-4739-81cb-f7b299da76c7","99cf2e06-90cc-4acc-8874-5cd4b2a4abf9","c6bdb7f8-b5d3-491b-b24e-6852f80cd109","cd8617d2-a0e9-4fb4-85da-2c7e385be3f6","d2de2721-7f82-4cef-bca7-ac04dbb3779c","da68a5c0-84fe-4a8f-93b2-790eca3cc95c","ddf85792-470b-4b42-99ac-9cb43a575523","e17d4495-efce-40e3-aa94-27d45b4ce636","e4e89152-99a3-45cf-a61a-5635568a0401","e73bd2a6-676c-47cd-8608-1128cbd0c7cb","ec1c8759-ec90-420b-b9c3-33515e91b705","f0b8934e-9ff0-4c3e-987e-9c4fb1445b77"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2004-10-04","text":"If you have at least one of each of the three Urza's lands on the battlefield, you must take the 2 mana instead of just one."},{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza's power plant":{"name":"Urza's Power Plant","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Power-Plant"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Tower, add {C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Mine"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Tower"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Tower, add {C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"e11966cd-2ee3-4df4-b099-abf42dcdf0db","metadata":{"source_printing_ids":["00d705f6-4b8b-49e7-b420-5277893f14bd","00fe59e8-d1ab-4f74-a7f4-a8feca3705ee","09b23321-861f-4afa-904f-7c63e356f10b","1080d56c-ff6c-4ef6-b3af-707c238d5442","18074937-9ad1-4d96-b4c0-96af06cedac4","222dc48a-335d-48e2-ba3d-048ae4c5c925","300bccb2-aaaf-4cc5-a625-63ec42ae03de","3115c04a-ac26-4361-aecd-c6fb5f03a96f","3c933622-1db9-48ce-9d76-fa1bca42d615","446ced23-1991-4335-9ead-83ae4a6d09cf","4499c80b-72af-485c-9106-22967b5252cd","4a86d6b5-946e-41e4-9c78-edec3f5bb981","54445d1f-5426-47e9-9e02-0274cea7174f","5cc02459-83ae-4b6c-85a1-26eeaf7a2ee7","5deeb24b-4c91-456c-be93-4a5b1935514d","5e5786d5-355d-454c-b09b-e307a7a324d4","60b1bbc3-eab3-4e30-8ebc-f4ef5ef0282b","7aa1e9c9-3522-4944-8e01-6988b33a9bb8","91267f96-cc20-4724-bac6-2c1e6e4001de","936335d7-1c4a-4fcd-80ff-cd4d4fcab8c4","937a24e4-f1f7-48d2-bc31-b219b2f26f04","94896e0b-859c-47e4-bf27-35ed37b841e0","b0449a19-37f7-4169-9e32-928db5ec76fe","b0bbe643-3e07-4541-a2e6-45c63a5133cf","c9a294bd-e6f6-4b88-b34c-135aff907b17","c9fd7ce9-1fe4-4668-b421-ce3f06d637e9","df2a9344-38b5-4def-bb6e-87d837e6da54","e01bf216-3e4c-4373-8021-26a7110b5421","e237d921-6d84-402e-b5e3-6bbdb3028f57","e3d0ec69-69ba-4185-b268-5f6890ada0d6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2004-10-04","text":"If you have at least one of each of the three Urza's lands on the battlefield, you must take the 2 mana instead of just one."},{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza's saga":{"name":"Urza's Saga","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Enchantment","Land"],"subtypes":["Urza's","Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — This Saga gains \"{T}: Add {C}.\"\nII — This Saga gains \"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with 'This token gets +1/+1 for each artifact you control.'\"\nIII — Search your library for an artifact card with mana cost {0} or {1}, put it onto the battlefield, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"{T}: Add {C}.\""}],"duration":"UntilHostLeavesPlay","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Token","name":"Construct","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Construct"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +1/+1 for each artifact you control."}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with '~ gets +1/+1 for each artifact you control.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with '~ gets +1/+1 for each artifact you control.'\""}],"duration":"UntilHostLeavesPlay","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[{"type":"ManaCostIn","costs":[{"type":"Cost","shards":[],"generic":0},{"type":"Cost","shards":[],"generic":1}]}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"4c6a0c30-b547-4eff-8ff4-0ca25803c076","metadata":{"related_token_ids":["3b93e4cb-767f-55f7-b59f-05f4c78db185","c0107955-7c56-5df9-9df1-740a54f52416"],"source_printing_ids":["2138dfbb-a4e3-49db-b908-95d0b2b7e82f","9df37469-6e2d-4783-aad3-c897ecbc967d","c1e0f201-42cb-46a1-901a-65bb4fc18f6c","c7658ec0-3207-4c7e-b31a-30a2a9249595"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"restricted"},"printings":["MB2","MH2","PLST","PMH2","SCH","SLC"],"rulings":[{"date":"2021-06-18","text":"Although Urza's Saga has the Urza's land type, it doesn't interact with Urza's Tower, Urza's Mine, or Urza's Power Plant."},{"date":"2021-06-18","text":"Even though Urza's Saga is a land, it is also still a Saga, and it will be sacrificed after its last chapter ability resolves."},{"date":"2021-06-18","text":"If Urza's Saga loses all of its chapter abilities but is still a Saga, perhaps due to a card like Blood Moon, it will immediately be sacrificed."},{"date":"2021-06-18","text":"Urza's Saga gains an ability from its first and second chapters. It keeps those abilities for as long as it's on the battlefield."},{"date":"2021-06-18","text":"Urza's Saga is a land, so it can only be played as a land. It cannot be cast as a spell."},{"date":"2021-06-18","text":"While resolving the chapter III ability, you can find only a card with actual mana cost {0} or {1}, not mana value 0 or 1. For example, you couldn't find a card with mana cost {U} or one with mana cost {X}."}],"rarities":["rare"]},"urza's tower":{"name":"Urza's Tower","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Tower"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Mine"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Power-Plant"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"32fbb638-ab14-4e8b-a07a-d4c44e3496f2","metadata":{"source_printing_ids":["035cc927-7b24-4a18-98bd-6fc0a0d65cba","0696cc4b-45c9-424d-b472-8d530062fd52","09dd1ab7-e11d-4206-8aad-c3de4e2da5ec","0fc0146c-3f85-4ed5-b37c-f1eeea04143d","139f0169-80b1-4c9b-9e0f-370cedd0022c","1e9f09b3-dd2d-4ba9-a57e-4f3c1793f752","3ce1817d-1870-4011-809f-aef3841e779a","4a03554a-0ee7-4106-b3e4-4bc51f48032d","513e063c-b328-4e5f-8806-b232c38645f5","52263b78-9829-4778-b7a9-8c4a97d1c6df","530d6fd5-57f2-497d-8144-b3ce64a6c5cb","6aba1f0f-73b0-4898-8d07-43322e43d74e","7693a698-65be-4d85-8b9d-c02c1596b99d","86c6dc88-ef09-4b37-b9e8-c483cccd0e0e","8ed85655-fc59-4a57-bcf9-75e1899dff78","92fae767-8c14-46ef-a548-4f66225defdb","994e98f5-c18a-4ba8-ba15-1578f8c3262c","9bb66579-0840-4ec3-aa6a-731874662dbb","9e369f3f-354b-42bf-9b2f-286912730c6c","a0240c3c-7219-4d5d-ac85-c369e4b180eb","a53fe67f-5041-4ccc-b489-d4df97629b5d","b6a4d336-8138-4119-afdb-7f4be68c3079","c6bc2492-f8b6-446e-b848-0669ca0d88b4","c75672e0-fa2d-43c5-9381-e17f2fd6d3bc","cba9d0e3-9ff3-4aeb-9de6-c7695d88a31d","cc78f2e5-c02b-4f58-8510-660ca27d9a71","dc2c039e-fbf9-4e45-874d-b0ab0d923e52","e2424487-fffb-4af6-8f0f-b99ebf6360d6","e62d0539-242c-48b3-b611-6b0413e93068","f6ecf34e-7642-43d4-855b-36e125e4c69e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza, lord high artificer":{"name":"Urza, Lord High Artificer","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Artificer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When Urza enters, create a 0/0 colorless Construct artifact creature token with \"This token gets +1/+1 for each artifact you control.\"\nTap an untapped artifact you control: Add {U}.\n{5}: Shuffle your library, then exile the top card. Until end of turn, you may play that card without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"TapCreatures","count":1,"filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}},"sub_ability":null,"duration":null,"description":"Tap an untapped artifact you control: Add {U}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":5}},"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"TrackedSet","id":0},"without_paying_mana_cost":true,"mode":"Play","duration":"UntilEndOfTurn"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{5}: Shuffle your library, then exile the top card. Until end of turn, you may play that card without paying its mana cost.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Construct","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Construct"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +1/+1 for each artifact you control."}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 0/0 colorless Construct artifact creature token with \"~ gets +1/+1 for each artifact you control.\"","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"e87906d2-db1a-4e19-b910-adb4eb339945","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["230b6574-5ce0-5c34-96c1-7efa9a6d3f0e","3b93e4cb-767f-55f7-b59f-05f4c78db185","3df82ae6-2a99-52b1-a4da-a34ae0c882a1","bd5f51ee-08a2-5368-9dd0-cb3052e719ec","c0107955-7c56-5df9-9df1-740a54f52416"],"source_printing_ids":["18b26e53-1fc2-4d07-a56f-9000ed25580d","3e286a7c-9643-492f-8ce9-255499dfd1a7","45ab9672-8d85-41f6-9016-20c2988b037c","7b7a348a-51f7-4dc5-8fe7-1c70fea5e050","81329329-0154-4f89-a476-a54112dfa0b7","86d744cd-225c-4279-898a-858dc316cf7f","9e7fb3c0-5159-4d1f-8490-ce4c9a60f567","a88c6f09-a0b2-46c9-a291-59408dfa52b0","f0e626cc-b01a-4e20-9414-8ba6347041f0","f531402e-681f-4439-837c-4e184efd5a49"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DMR","FCA","H1R","MB2","MH1","PRM"],"rulings":[{"date":"2022-12-08","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-12-08","text":"If you cast a card \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those to cast the card."},{"date":"2022-12-08","text":"If you don't play the card exiled with Urza's last ability, it remains in exile."},{"date":"2022-12-08","text":"The token created by Urza's first ability will count itself, so it'll be at least 1/1."},{"date":"2022-12-08","text":"Urza's last ability doesn't change when you can play the exiled card. For example, if you exile a sorcery card, you can cast it only during your main phase when the stack is empty. If you exile a land card, you can play it only during your main phase and only if you have an available land play remaining."},{"date":"2022-12-08","text":"You can tap any untapped artifact you control to pay the cost of the mana ability, including an artifact creature you haven't controlled continuously since the beginning of your most recent turn. Tapping an Equipment this way won't affect its abilities or the equipped creature."}],"rarities":["mythic"]},"valeron wardens":{"name":"Valeron Wardens","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Monk"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Renown 2 (When this creature deals combat damage to a player, if it isn't renowned, put two +1/+1 counters on it and it becomes renowned.)\nWhenever a creature you control becomes renowned, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Renown":2}],"abilities":[],"triggers":[{"mode":"BecomeRenowned","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control becomes renowned, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Renown","count":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":"Renown 2","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"CR 702.112a: Renown 2 — when this creature deals combat damage to a player, if it isn't renowned, put 2 +1/+1 counters on it and it becomes renowned.","constraint":null,"condition":{"type":"Not","condition":{"type":"IsRenowned","subject":"Source"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d1202573-2105-4d4d-ae7d-7164974b6d89","metadata":{"source_printing_ids":["e693a7e7-d95e-4cd8-9524-ca5fc517189a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI"],"rulings":[{"date":"2015-06-22","text":"If a creature with renown deals combat damage to its controller because that damage was redirected, renown will trigger."},{"date":"2015-06-22","text":"If a renown ability triggers, but the creature leaves the battlefield before that ability resolves, the creature doesn’t become renowned. Any ability that triggers “whenever a creature becomes renowned” won’t trigger."},{"date":"2015-06-22","text":"Renown won’t trigger when a creature deals combat damage to a planeswalker or another creature. It also won’t trigger when a creature deals noncombat damage to a player."}],"rarities":["uncommon"]},"vanish into memory":{"name":"Vanish into Memory","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. You draw cards equal to that creature's power. At the beginning of your next upkeep, return that card to the battlefield under its owner's control. If you do, discard cards equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"Upkeep","player":0},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. You draw cards equal to that creature's power. At the beginning of your next upkeep, return that card to the battlefield under its owner's control. If you do, discard cards equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"d3beb624-f589-4ed5-97a0-11ad61481250","metadata":{"source_printing_ids":["3cdd22d7-b3b0-4cb5-846d-aa3d96a29c97","60dd9f6e-c848-4670-8de1-06f328ea7f71","6da89cfe-274f-452d-a5ca-b034534898c7","a6b697b5-cfa2-4f3f-a36f-a3f8b79c2060"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","CSP","DDI","MM3"],"rulings":[{"date":"2017-03-14","text":"If the creature exiled with Vanish into Memory isn't a creature card (for example, a crewed Vehicle), that card will still be returned to the battlefield, but not as a creature. Since the card returned to the battlefield has no toughness, you discard no cards."},{"date":"2017-03-14","text":"If the creature exiled with Vanish into Memory never returns to the battlefield (because it was a token creature, for example), you don't discard any cards."},{"date":"2017-03-14","text":"Vanish into Memory cares about the creature's power just before it left the battlefield and its toughness just after it returns to the battlefield. For example, if you target a 2/2 creature with two +1/+1 counters on it, you'll draw four cards, then when it returns to the battlefield without any counters on it, you'll discard two cards."}],"rarities":["uncommon"]},"vein drinker":{"name":"Vein Drinker","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\n{R}, {T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.\nWhenever a creature dealt damage by this creature this turn dies, put a +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{R}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature dealt damage by ~ this turn dies, put a +1/+1 counter on ~.","constraint":null,"condition":{"type":"DealtDamageBySourceThisTurn"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"705d89f6-13a8-4f40-a01a-3d5d0ce4f34e","metadata":{"source_printing_ids":["25ad3372-51cb-4b82-a23c-81938b7c01b6","b6402470-d829-4b9a-840c-1f97d6fd786f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ALA","C17"],"rulings":[{"date":"2008-10-01","text":"Each time a creature is put into a graveyard from the battlefield, check whether Vein Drinker had dealt damage to it at any time during that turn. If so, Vein Drinker's third ability will trigger. It doesn't matter whether the damage was combat damage or not. It also doesn't matter who controlled the creature or whose graveyard it was put into."},{"date":"2008-10-01","text":"If Vein Drinker's first ability causes Vein Drinker and the targeted creature to deal lethal damage to each other, they'll be destroyed at the same time. Vein Drinker's triggered ability will trigger, but it will have been put into a graveyard before it would receive any counters. The ability will do nothing when it resolves."},{"date":"2008-10-01","text":"When the first ability resolves, if the targeted creature is no longer on the battlefield, the ability doesn't resolve for having no legal targets. No damage is dealt."},{"date":"2008-10-01","text":"When the first ability resolves, if the targeted creature is still on the battlefield but Vein Drinker is not, Vein Drinker will still deal damage equal to its power as it last existed on the battlefield to the targeted creature."}],"rarities":["rare"]},"vendetta":{"name":"Vendetta","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"50a16634-ebf7-477f-ad6f-23332599f838","metadata":{"source_printing_ids":["039fc76d-3b7e-4329-a997-07c25509e421","2593e33c-9f54-4929-b256-41ce954e9612","67ced38e-0f33-4bda-8e18-09f6ac03a3d7","699e574f-2207-4798-a662-871634b8e36c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["MMQ","PLST","ROE","WC01"],"rulings":[{"date":"2010-06-15","text":"If the targeted creature is an illegal target by the time Vendetta resolves, the spell doesn't resolve. You won't lose life."},{"date":"2010-06-15","text":"If the targeted creature isn't destroyed due to umbra armor's effect, Vendetta continues to resolve. You lose life equal to the creature's current toughness (after the Aura with umbra armor has been destroyed)."},{"date":"2010-06-15","text":"The destroyed creature's last existence on the battlefield is checked to determine its toughness."}],"rarities":["common"]},"vengeful rebirth":{"name":"Vengeful Rebirth","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's mana value to any target.\nExile Vengeful Rebirth.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, ~ deals damage equal to that card's mana value to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"522297b1-493a-4c62-a82a-3017c44183e8","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal","line_index":0}],"metadata":{"source_printing_ids":["270a2f52-56b9-4eb5-b2ae-8dbee42a490c","80a504fb-b3ce-40f9-8fcb-86d5ad038e5d","a8bda13a-d58a-4a82-9798-30e3d6f1cfcf","b03bb160-8113-409a-a130-2b3fdc476e6a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ARB","CMD","MM2","PLST","UMA"],"rulings":[{"date":"2018-12-07","text":"If both targets are illegal, Vengeful Rebirth doesn’t resolve. It will be put into your graveyard."},{"date":"2018-12-07","text":"If the target card in your graveyard becomes an illegal target but the target permanent or player doesn’t, Vengeful Rebirth won’t return that card to your hand and it won’t deal any damage (because you didn’t return a nonland card to your hand this way). Vengeful Rebirth will still be exiled."},{"date":"2018-12-07","text":"If the target permanent or player becomes an illegal target but the target card in your graveyard doesn’t, Vengeful Rebirth will still return that card from your graveyard to your hand, but it won’t deal any damage. Vengeful Rebirth will then be exiled."},{"date":"2018-12-07","text":"You can return a land card to your hand with Vengeful Rebirth. It just won’t deal any damage to the target permanent or player if you do."}],"rarities":["uncommon"]},"venom blast":{"name":"Venom Blast","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put two +1/+1 counters on target creature you control. It deals damage equal to its power to up to one other target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put two +1/+1 counters on target creature you control. It deals damage equal to its power to up to one other target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c4b3dc5e-651f-4307-9d76-d728e5054a36","legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SPE"]},"verdant sun's avatar":{"name":"Verdant Sun's Avatar","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur","Avatar"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or another creature you control enters, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6ee71432-a44d-495e-86ea-d495d891c331","metadata":{"source_printing_ids":["9dbb5b6a-dc74-4e3e-9de1-5b379abdf2b4","cc2d03a9-815d-4662-a3ee-d6b24047128c","e8fce06a-56f7-4d0c-b094-ff147fec8256","f8fd0e28-2bb4-4529-bbfb-1d70a419a91b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["C21","CMR","LCC","PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"The entering creature's toughness is determined as the ability of Verdant Sun's Avatar resolves. If that creature has left the battlefield, use its toughness as it last existed on the battlefield. If the creature's toughness was less than 0, your life total won't change."}],"rarities":["rare"]},"vexing sphinx":{"name":"Vexing Sphinx","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sphinx"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nCumulative upkeep—Discard a card. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)\nWhen this creature dies, draw a card for each age counter on it.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"CumulativeUpkeep":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"age"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, draw a card for each age counter on it.","constraint":null,"condition":null,"batched":false},{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"c2affd47-2404-44b0-a571-e64e948130eb","metadata":{"source_printing_ids":["2c75f806-b900-403c-8de1-cc3173afc8f0","67a53a7e-f54c-410c-8cd2-7d3e0347bc6b","81cc1248-85c8-428f-ba08-96d188167eaa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CSP","DMR"],"rulings":[{"date":"2008-10-01","text":"Paying cumulative upkeep is always optional. If it's not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can't be made. For example, if a permanent with “cumulative upkeep {1}” has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either pay {4} or sacrifice the permanent."},{"date":"2022-12-08","text":"Paying cumulative upkeep is always optional. If it’s not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can’t be made. For example, if Vexing Sphinx has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either discard four cards or sacrifice it."}],"rarities":["rare"]},"vial smasher the fierce":{"name":"Vial Smasher the Fierce","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Berserker"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever you cast your first spell each turn, choose an opponent at random. Vial Smasher deals damage equal to that spell's mana value to that player or a planeswalker that player controls.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"TriggeringPlayer"},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"valid_source":null,"description":"Whenever you cast your first spell each turn, choose an opponent at random. ~ deals damage equal to that spell's mana value to that player or a planeswalker that player controls.","constraint":{"type":"NthSpellThisTurn","n":1},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"1b355139-4891-436c-9079-0ce17ecc2d65","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4e439cd0-5ba1-45af-a868-f408e0a50465","722b1e02-2268-4e02-8d09-9b337da2a844","a4dc32ca-89c9-4d3a-8809-846c34ef3592","cc7be939-2202-40fe-8899-a05682d76190"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","CMR","DSC","FCA","PRM","PZ2","SLD"],"rulings":[{"date":"2017-04-17","text":"Vial Smasher the Fierce is banned as a commander in Duel Commander format, but it may be part of your deck."},{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"The opponent to be dealt damage is chosen at random while the triggered ability is resolving. After that opponent is chosen, you choose whether damage will be dealt to that player or to a planeswalker they control, and if so, which planeswalker. No player may take any actions between the damage recipient being chosen and the damage being dealt."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"Vial Smasher has to be on the battlefield at the moment you cast your first spell. If that spell causes Vial Smasher to leave the battlefield as an additional cost to cast it, Vial Smasher's ability can't trigger. If that spell is Vial Smasher itself, Vial Smasher's ability can't trigger."},{"date":"2020-11-10","text":"Vial Smasher's triggered ability resolves before the spell that caused it to trigger. If Vial Smasher's ability resolves and the spell that caused it to trigger has been countered, use that spell's mana value as it last existed on the stack to determine how much damage is dealt."},{"date":"2020-11-10","text":"Vial Smasher's triggered ability triggers when you cast your first spell each turn, regardless of whose turn it is."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["mythic"]},"viashino heretic":{"name":"Viashino Heretic","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{R}, {T}: Destroy target artifact. This creature deals damage to that artifact's controller equal to the artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{R}, {T}: Destroy target artifact. ~ deals damage to that artifact's controller equal to the artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"36896550-151d-472c-bfc1-1d9bbf7cc04d","metadata":{"source_printing_ids":["143e435e-e3a1-45b0-81c3-bd47916df8ac","a9219bf5-96c5-4b7c-9eb9-53aa1fba28f5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLST","ULG"],"rarities":["uncommon"]},"vigor":{"name":"Vigor","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Incarnation"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Trample\nIf damage would be dealt to another creature you control, prevent that damage. Put a +1/+1 counter on that creature for each 1 damage prevented this way.\nWhen Vigor is put into a graveyard from anywhere, shuffle it into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from anywhere, shuffle it into its owner's library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"PostReplacementDamageTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"description":"If damage would be dealt to another creature you control, prevent that damage. Put a +1/+1 counter on that creature for each 1 damage prevented this way.","condition":null,"shield_kind":{"Prevention":{"amount":"All"}}}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"70787d8b-0a40-43ea-837a-9617dc13e7e5","metadata":{"source_printing_ids":["30d1b41d-f0bf-403c-a12d-1a1f5fc6bfb9","525b23c4-9a8e-4fbe-b4f9-584cc25ba758","5cede0be-1bdd-4392-beaf-b83d0b780eb7","6952b1c3-2a18-4ad5-8130-861fce1cb422","ea7047d8-8d32-48a3-829b-7eb5427ed53a","f2d78449-9e80-42e5-b525-068a3985e069"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BBD","DPA","LRW","PIP","PLST","PS11","TMC"],"rulings":[{"date":"2007-10-01","text":"Although this ability triggers when the Incarnation is put into a graveyard from the battlefield, it doesn't *specifically* trigger on leaving the battlefield, so it doesn't behave like other leaves-the-battlefield abilities. The ability will trigger from the graveyard."},{"date":"2007-10-01","text":"If the Incarnation had lost this ability while on the battlefield (due to Lignify, for example) and then was destroyed, the ability would still trigger and it would get shuffled into its owner's library. However, if the Incarnation lost this ability when it was put into the graveyard (due to Yixlid Jailer, for example), the ability wouldn't trigger and the Incarnation would remain in the graveyard."},{"date":"2007-10-01","text":"If the Incarnation is removed from the graveyard after the ability triggers but before it resolves, it will remain in its new zone when its owner shuffles their library. Similarly, if a replacement effect has the Incarnation move to a different zone instead of being put into the graveyard, the ability won't trigger at all."},{"date":"2007-10-01","text":"The last ability triggers when the Incarnation is put into its owner's graveyard from any zone, not just from on the battlefield."}],"rarities":["rare"]},"virulent emissary":{"name":"Virulent Emissary","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Assassin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3d4bec90-7bbc-4385-a2b8-303c7a8d0a0f","metadata":{"source_printing_ids":["0702efed-915e-466a-96bb-ac09af06b21e","6044d540-70ff-4ce3-9a26-4164e7543baa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL"],"rarities":["uncommon"]},"vivi ornitier":{"name":"Vivi Ornitier","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Wizard"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{0}: Add X mana in any combination of {U} and/or {R}, where X is Vivi Ornitier's power. Activate only during your turn and only once each turn.\nWhenever you cast a noncreature spell, put a +1/+1 counter on Vivi Ornitier and it deals 1 damage to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyCombination","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"color_options":["Blue","Red"]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":0}},"sub_ability":null,"duration":null,"description":"{0}: Add X mana in any combination of {U} and/or {R}, where X is ~'s power. Activate only during your turn and only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"},{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":1},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a noncreature spell, put a +1/+1 counter on ~ and it deals 1 damage to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"0452be2a-e97a-4269-a9e3-b616265ecb2e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0cfc4614-f6c1-4247-ab96-5bd41006ad85","25ef2d44-c261-4511-b96f-85e7a291e318","ada6aeb6-8c9f-4498-9326-b4da0fcb19a3","ecc1027a-8c07-44a0-bdde-fa2844cff694"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"banned","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Vivi Ornitier's first ability is a mana ability. It doesn't use the stack and it can't be responded to."},{"date":"2025-06-06","text":"Vivi Ornitier's last ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered or otherwise leaves the stack."}],"rarities":["mythic"]},"vivien's invocation":{"name":"Vivien's Invocation","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in a random order. When a creature is put onto the battlefield this way, it deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":7},"destination":"Battlefield","keep_count":1,"up_to":true,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in a random order. When a creature is put onto the battlefield this way, it deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e2b30d2-81e9-40cd-86dd-3ec5dd06ced0","metadata":{"source_printing_ids":["784c4711-223d-4b95-a163-87e57f87b8db"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M19","PM19"],"rulings":[{"date":"2018-07-13","text":"If the creature you put onto the battlefield leaves the battlefield before damage is dealt, its last known existence on the battlefield is used to determine how much damage it deals to the target creature."},{"date":"2018-07-13","text":"You don’t choose any targets as you cast Vivien’s Invocation. While that spell is resolving, you may put a creature card from among the cards you look at onto the battlefield. If you do, a separate ability triggers and you pick a target creature an opponent controls to be dealt damage."}],"rarities":["rare"]},"volatile fault":{"name":"Volatile Fault","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Cave"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}, {T}, Sacrifice this land: Destroy target nonbasic land an opponent controls. That player may search their library for a basic land card, put it onto the battlefield, then shuffle. You create a Treasure token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[{"type":"NotSupertype","value":"Basic"}]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}, {T}, Sacrifice ~: Destroy target nonbasic land an opponent controls. That player may search their library for a basic land card, put it onto the battlefield, then shuffle. You create a Treasure token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"95c44f28-f7fa-4785-83b9-0d81be0db0c8","metadata":{"related_token_ids":["7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85","f7e12dcc-910d-5b82-b637-0b972542ead5"],"source_printing_ids":["9385abf3-b067-4586-bf3d-175526cf8f0a","d9a42082-615c-4387-a77c-97ee94153c57"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","M3C"],"rulings":[{"date":"2023-11-10","text":"If Volatile Fault's ability resolves, the target nonbasic land's controller gets to search for a basic land card even if the land wasn't destroyed by Volatile Fault's ability. This may happen because the land has indestructible. In this case, you'll still create a Treasure token."},{"date":"2023-11-10","text":"If the target of Volatile Fault's last ability is illegal as the ability tries to resolve, it won't resolve and none of its effects will happen. You won't create a Treasure token."}],"rarities":["uncommon"]},"volcanic vision":{"name":"Volcanic Vision","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target instant or sorcery card from your graveyard to your hand. Volcanic Vision deals damage equal to that card's mana value to each creature your opponents control. Exile Volcanic Vision.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target instant or sorcery card from your graveyard to your hand. ~ deals damage equal to that card's mana value to each creature your opponents control. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"fe3b4c74-2bf8-464a-8f55-9de401a8c4b9","metadata":{"source_printing_ids":["37aacf2b-b08f-4804-88ff-7b61620801e9","979da13b-9be6-49cc-a62c-67eeea289612","bfc546d2-458c-4571-be42-aba7cb25793b","f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C16","C21","DDS","DTK","PDTK"],"rulings":[{"date":"2015-02-25","text":"If the target has {X} in its mana cost, X is 0."},{"date":"2015-02-25","text":"If the target instant or sorcery card becomes an illegal target before Volcanic Vision resolves, the spell won’t resolve and none of its effects will happen. No damage will be dealt and Volcanic Vision won’t be exiled."}],"rarities":["rare"]},"vraska's stoneglare":{"name":"Vraska's Stoneglare","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. You gain life equal to its toughness. You may search your library and/or graveyard for a card named Vraska, Regal Gorgon, reveal it, and put it into your hand. If you search your library this way, shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","source_zones":["Graveyard","Library"],"filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Named","name":"vraska, regal gorgon"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. You gain life equal to its toughness. You may search your library and/or graveyard for a card named Vraska, Regal Gorgon, reveal it, and put it into your hand. If you search your library this way, shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"c39e2046-173a-44b6-8e93-b22ede35485d","metadata":{"source_printing_ids":["27fc4db6-a5f5-4254-ae64-c8eaf2c98030"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GRN"],"rulings":[{"date":"2018-10-05","text":"If the target creature becomes an illegal target for Vraska’s Stoneglare, the spell doesn’t resolve. You don’t gain life or search for Vraska, Regal Gorgon."},{"date":"2018-10-05","text":"The amount of life gained is equal to the destroyed creature’s toughness as it last existed on the battlefield. If it wasn’t destroyed (most likely because it has indestructible), you gain life equal to its toughness as it currently exists on the battlefield."}],"rarities":["rare"]},"wall of roots":{"name":"Wall of Roots","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Plant","Wall"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Defender\nPut a -0/-1 counter on this creature: Add {G}. Activate only once each turn.","non_ability_text":null,"flavor_name":null,"keywords":["Defender"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"EffectCost","effect":{"type":"PutCounter","counter_type":"-0/-1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}}},"sub_ability":null,"duration":null,"description":"Put a -0/-1 counter on ~: Add {G}. Activate only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3a21a6ae-b2f2-4f0c-acfd-5f3e8d63fd2f","metadata":{"source_printing_ids":["04326924-55c4-4315-893a-6a05e0b7eb7f","999f9e72-97ed-430a-8c1c-26a54f8b7a08","aeb151d2-c313-44d2-972e-33487f070c23","b65cb901-bfb0-454a-97ef-138021e524ff","d80940ad-8e36-4226-ad5f-b54487c75c76","da80cb2d-2385-4a1a-9c93-c623102e9c50","e4e7d3b7-9b0c-463d-975c-ef81d7fd8dad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ARC","F08","IMA","MIR","NCC","P30A","PLST","PRM","TDC","TSB","WC98"],"rulings":[{"date":"2017-11-17","text":"If you must sacrifice a creature to pay a casting or activation cost that also includes mana, such as that of Bubbling Cauldron's abilities, you may put a -0/-1 counter on Wall of Roots to make its toughness 0 and then sacrifice it to pay that cost."}],"rarities":["common","special"]},"watery grave":{"name":"Watery Grave","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Island","Swamp"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {U} or {B}.)\nAs this land enters, you may pay 2 life. If you don't, it enters tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"PayLife","amount":{"type":"Fixed","value":2}},"decline":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, you may pay 2 life. If you don't, it enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Blue"],"scryfall_oracle_id":"fc9ec820-4245-4a96-b009-5308a818ca58","metadata":{"source_printing_ids":["057dd01a-65f5-4cb1-995c-27d70b9ec8cf","139b90cd-8272-457a-be32-1298145345be","47fde349-010e-4a2e-838e-e924dbeec355","5b8170dc-6a90-46fc-9989-7575f3d402b5","67ef01b3-93f7-41e8-834d-9f6768e3b16c","6e86eb36-f4cc-4a75-b43a-4dee463a3b33","7d4595f2-9297-40dc-b2dd-7144bbb401f7","81706879-ec5d-4b17-b4bc-5f7cb37557a5","8dcc3080-966d-497e-82c9-a7311630abd2","b248ff3a-e10d-4797-8c04-7f4094608d32","bef5692f-d3a9-4687-9cd8-1177acfad1f8","d854480d-a163-422b-a3dc-54dffd7b3eab","ef7f4762-4283-4368-948b-e60a29e78a0c","f3721bac-4e1c-438e-b0a2-a557dd530077"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["CLU","EOE","EXP","GRN","GTC","PEOE","PGRN","PRM","RAV","RVR","SLD","UNF"],"rulings":[{"date":"2018-10-05","text":"If an effect puts this land onto the battlefield tapped, you may pay 2 life, but it still enters tapped."},{"date":"2018-10-05","text":"Unlike most dual lands, this land has two basic land types. It's not basic, so cards such as District Guide can't find it, but it does have the appropriate land types for effects such as that of Drowned Catacomb (from the Ixalan set)."}],"rarities":["rare"]},"wayta, trainer prodigy":{"name":"Wayta, Trainer Prodigy","mana_cost":{"type":"Cost","shards":["Red","Green","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Haste\n{2}{G}, {T}: Target creature you control fights another target creature. This ability costs {2} less to activate if it targets two creatures you control.\nIf a creature you control being dealt damage causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[{"kind":"Activated","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"subject":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":2}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"this","description":"This ability costs {2} less to activate if it targets two creatures you control"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{2}{G}, {T}: Target creature you control fights another target creature. This ability costs {2} less to activate if it targets two creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"DoubleTriggers":{"cause":"ControlledCreatureDealtDamage"}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a creature you control being dealt damage causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[],"color_override":["Green","Red","White"],"color_identity":["Green","Red","White"],"scryfall_oracle_id":"e507df33-d150-4b21-8ddb-90799f412dd8","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["04f2d7ee-43a4-48e8-af64-d9fad4b9c5f1","103bbad8-afaf-4e34-b6d2-9cb9b312d39f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LCC"],"rulings":[{"date":"2023-11-10","text":"If you somehow control two copies of Wayta, Trainer Prodigy, a creature you control being dealt damage causes abilities to trigger three times, not four. A third Wayta, Trainer Prodigy causes abilities to trigger four times, a fourth causes abilities to trigger five times, and so on."},{"date":"2023-11-10","text":"Wayta, Trainer Prodigy's last ability affects only triggered abilities whose trigger conditions refer specifically to damage being dealt, such as the ability granted by Mephidross Vampire or the last ability of Wrathful Raptors. It does not affect triggered abilities that would trigger because of the results of that damage. For example, if you control an Ajani's Pridemate (\"Whenever you gain life, put a +1/+1 counter on Ajani's Pridemate\") and you activate Wayta, Trainer Prodigy's second ability targeting a creature you control with lifelink and another creature you control, the triggered ability of Ajani's Pridemate will still trigger only once."},{"date":"2023-11-10","text":"Wayta, Trainer Prodigy's last ability doesn't copy the triggered ability; it just causes the ability to trigger twice. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."}],"rarities":["mythic"]},"wedding ring":{"name":"Wedding Ring","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters, if it was cast, target opponent creates a token that's a copy of it.\nWhenever an opponent who controls an artifact named Wedding Ring draws a card during their turn, you draw a card.\nWhenever an opponent who controls an artifact named Wedding Ring gains life during their turn, you gain that much life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"ParentTarget"},"owner":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, if it was cast, target opponent creates a token that's a copy of it.","constraint":null,"condition":{"type":"WasCast"},"batched":false},{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent who controls an artifact named Wedding Ring draws a card during their turn, you draw a card.","constraint":null,"condition":{"type":"And","conditions":[{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"TriggeringPlayer","properties":[{"type":"Named","name":"wedding ring"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false},{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent who controls an artifact named Wedding Ring gains life during their turn, you gain that much life.","constraint":null,"condition":{"type":"And","conditions":[{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"TriggeringPlayer","properties":[{"type":"Named","name":"wedding ring"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0c34e962-99d9-4163-b852-4f61886546aa","metadata":{"related_token_ids":["2a0c52f6-dc87-5d78-bccc-2682d94072e7","553b5e02-de02-59fb-9901-28d367ab1c19","f7f1c18a-ecbe-5b99-ad80-2fcce898fc9c"],"source_printing_ids":["6d8fd9a7-d1bd-43bd-a136-49dc26621e4d","7f0b1400-0608-47fd-9c73-b7730bcf6b7f","831e9ee9-0b0b-4f73-9d01-bf94d90c5036","a79d396b-cd84-4088-8996-d33b19841286","b3df33ee-0db7-4240-a6fe-9a9e130353ce","bcac03a0-c4e3-4761-93f1-d4a64c0d46f8","f99645e5-4125-4f23-8911-0a027a0ac9fe"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["LCC","MAR","OMB","VOC","WHO"],"rulings":[{"date":"2021-11-19","text":"The trigger conditions of Wedding Ring's second and third abilities care about opponents who control any artifact named Wedding Ring, not just the token copy created by its first ability."}],"rarities":["mythic"]},"weed strangle":{"name":"Weed Strangle","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness. (Each clashing player reveals the top card of their library, then puts that card on their choice of the top or bottom. A player wins if their card had a greater mana value.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Clash"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EventOutcomeWon"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"af64ce09-b7d9-4db9-905e-c4356f242ced","metadata":{"source_printing_ids":["c1f7fb79-19a8-483a-bf91-e687f7da4e9c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW"],"rarities":["common"]},"well of lost dreams":{"name":"Well of Lost Dreams","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you gain life, you may pay {X}, where X is less than or equal to the amount of life you gained. If you do, draw X cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["X"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, you may pay {X}, where X is less than or equal to the amount of life you gained. If you do, draw X cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"b0394cf2-12a0-4d4f-87e0-fe8937e6faff","metadata":{"source_printing_ids":["26bbf680-cfdc-4d8f-93fc-5ffa15042191","4ee7d9a4-c36e-4989-b448-fa56705a4aa6","6bf1b915-7790-43f4-b308-a80a1be6ec29","a8c10535-c77e-4a40-b19f-23f7cb691230","aa00103a-6b87-416a-869a-557702844200","da828d8e-69a2-4900-a87a-111445220e1c","fe839cbc-7eae-4f86-be35-96542223347c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","C13","C17","C21","DST","LTC","PLST","SLD"],"rarities":["rare"]},"wernog, rider's chaplain":{"name":"Wernog, Rider's Chaplain","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Wernog, Rider's Chaplain enters or leaves the battlefield, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.\nPartner—Friends forever (You can have two commanders if both have this ability.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"FriendsForever"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"Investigate"}}},"offset":1},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"Investigate"}}},"offset":1},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"6cd03270-54cc-43e1-9b86-70c76960c841","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["d76af2c5-2e22-582a-bd84-97dc25d3601b"],"source_printing_ids":["25a4af68-6e5e-4b44-9c1c-25ecdbd555b5","39491011-bdf6-4e61-8534-fe26c1571f8f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD","SLX"],"rarities":["rare"]},"whirlpool drake":{"name":"Whirlpool Drake","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Drake"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, shuffle the cards from your hand into your library, then draw that many cards.\nWhen this creature dies, shuffle the cards from your hand into your library, then draw that many cards.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, shuffle the cards from your hand into your library, then draw that many cards.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, shuffle the cards from your hand into your library, then draw that many cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"aef9fcf0-b755-40f6-821d-836ae1b5497a","metadata":{"source_printing_ids":["251074d4-c4d1-426e-b364-0f306cfd07a1","6e866093-89a3-458d-8ebc-de805ef7885e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["APC","PLST"],"rarities":["uncommon"]},"white knight":{"name":"White Knight","mana_cost":{"type":"Cost","shards":["White","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"First strike (This creature deals combat damage before creatures without first strike.)\nProtection from black (This creature can't be blocked, targeted, dealt damage, or enchanted by anything black.)","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike",{"Protection":{"Color":"Black"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ddb021df-ae4a-4ac1-8353-d0b375761714","metadata":{"source_printing_ids":["0cb4cef5-99e4-4855-a782-801b2cb974ec","2e8f8a10-6984-46a7-a641-5f712dab5c57","32683d26-4b59-4460-b507-f3ab21daf151","3d8c11bc-9385-468a-8be8-52bc1b685782","3f4e1d67-dd73-43ee-aa85-b42c2a6fe243","401c4880-5598-44e6-a54b-6ea18e542a72","4be95f54-eb12-45ae-8ac8-c5b0ab7b6f1e","50abfba8-c9f9-4ebf-965a-4b425fe83129","50c3877e-9a84-4220-93a9-e7bfc67ce528","660f69ef-c04f-4f53-80e6-8190549ab12a","6eba1659-3ee7-4e5a-a6bd-8d6b1dc1c8cc","8e4c578c-1c36-4c29-86a5-7a664ffe34d0","a07a02b6-2c33-40d8-ad97-39b192d7e82d","a231e0b8-b3e3-4f4a-8baa-c56626b01685","aa901f02-16da-4ca3-af67-ef5e55572c3c","cb9cb8ed-7abb-4e71-b42f-5041dd0c0394","ce573cee-40e0-4740-8b86-538ad8a16bce","ef8529a0-0259-4ccd-a481-8ad1b5feadf9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","ATH","CED","CEI","DDG","F02","FBB","LEA","LEB","LGN","M10","M11","ME4","PLST","PRM","SUM","WC98"],"rarities":["uncommon"]},"white sun's twilight":{"name":"White Sun's Twilight","mana_cost":{"type":"Cost","shards":["X","White","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You gain X life. Create X 1/1 colorless Phyrexian Mite artifact creature tokens with toxic 1 and \"This token can't block.\" If X is 5 or more, destroy all other creatures. (Players dealt combat damage by a creature with toxic 1 also get a poison counter.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Phyrexian Mite","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Artifact","Creature","Phyrexian","Mite"],"colors":[],"keywords":[{"Toxic":1}],"tapped":false,"count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CostXPaid"}},"comparator":"GE","rhs":{"type":"Fixed","value":5}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You gain X life. Create X 1/1 colorless Phyrexian Mite artifact creature tokens with toxic 1 and \"~ can't block.\" If X is 5 or more, destroy all other creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a38828be-781e-4340-9c6f-f40b1d34773f","metadata":{"related_token_ids":["3ebcf5ed-caad-558d-8ab0-90afa791c054"],"source_printing_ids":["920c8d13-45e5-4ead-8617-0b3939bb9123","fff13d77-8133-4328-b91e-efce229bc331"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ONE","PONE"],"rulings":[{"date":"2023-02-04","text":"A player with ten or more poison counters loses the game. This is a state-based action and doesn't use the stack. In other words, it happens immediately and players can't respond to it, just like a player losing the game due to having 0 or less life."},{"date":"2023-02-04","text":"Any other effects of that damage, such as life gain from lifelink, still apply."},{"date":"2023-02-04","text":"Conversely, replacement effects that apply to the number of counters put on a player can modify the counters placed this way. For example, Vorinclex, Monstrous Raider's last two abilities can apply to counters placed this way."},{"date":"2023-02-04","text":"Damage dealt by a creature with toxic grants the same number of counters regardless of how much damage is dealt. Notably, if a replacement effect modifies the damage in some way (such as that of Gratuitous Violence), the number of counters given remains unchanged."},{"date":"2023-02-04","text":"If a creature with toxic deals combat damage to a creature or planeswalker, or if it deals noncombat damage, toxic has no effect and no player gets poison counters."},{"date":"2023-02-04","text":"Multiple instances of toxic are cumulative. For example, if a creature has toxic 2 and gains toxic 1 due to another effect, combat damage that creature deals to a player will cause that player to get 3 poison counters."},{"date":"2023-02-04","text":"Toxic doesn't change the amount of combat damage a creature deals. For example, if a 2/2 creature with toxic 1 deals combat damage to a player, that creature will deal 2 damage. The results of that damage are the player loses 2 life and gets a poison counter."}],"rarities":["rare"]},"willow geist":{"name":"Willow Geist","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Treefolk","Spirit"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhenever one or more cards leave your graveyard, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more cards leave your graveyard, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":true},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7a7096a7-ef1b-4015-b1eb-5c2174d7ec9a","metadata":{"source_printing_ids":["1c40c71c-4cdc-4a28-8ea3-4636c936f8aa","d99947ee-3a73-47aa-bd71-d29a0066314e","fcdcbffe-d1dc-4a95-b40a-636ca550dd7a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID","PMID","PRM"],"rulings":[{"date":"2021-09-24","text":"Use Willow Geist's power as it last existed on the battlefield to determine how much life you will gain as its last ability resolves."}],"rarities":["rare"]},"windcrag siege":{"name":"Windcrag Siege","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Mardu or Jeskai.\n• Mardu — If a creature attacking causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.\n• Jeskai — At the beginning of your upkeep, create a 1/1 red Goblin creature token. It gains lifelink and haste until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Lifelink"},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain lifelink and haste"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 1/1 red Goblin creature token. It gains lifelink and haste until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Jeskai"},"batched":false}],"static_abilities":[{"mode":{"DoubleTriggers":{"cause":"CreatureAttacking"}},"affected":null,"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Mardu"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a creature attacking causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Mardu","Jeskai"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Mardu or Jeskai.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"64df560a-905f-45d1-bc70-14d99e3112d3","metadata":{"related_token_ids":["624155e0-9fb2-5dc4-ab66-fb7cd6196d53"],"source_printing_ids":["31a8329b-23a1-4c49-a579-a5da8d01435a","b32111e6-c389-4dcd-9dcd-29ee7ee238e6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rarities":["rare"]},"winged portent":{"name":"Winged Portent","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {4}{G}{U} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDraw a card for each creature you control [with flying].","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Green","Blue"],"generic":4}}],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw a card for each creature you control with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw a card for each creature you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"378567f8-7aef-42b6-853e-8591641052e8","metadata":{"source_printing_ids":["3494a4fc-37e5-4095-a3bb-5cd9280f4c77","b8b369e3-5057-49ff-b87e-1126571334f5","bb0e4c76-4f2e-4d23-a5f7-faa63b2d2376"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"wish":{"name":"Wish","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play a card you own from outside the game this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchOutsideGame","filter":{"type":"Any"},"count":{"type":"UpTo","max":{"type":"Fixed","value":1}},"reveal":false,"destination":"Hand"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"You may play a card you own from outside the game this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2ccbf0ee-c856-4f67-8579-811fe8571a2e","metadata":{"source_printing_ids":["29c2d90f-bd33-402d-b5fd-ee1ae62b59cf","345d6907-aebf-43f9-b70e-098b364b2ec5","3ed021d2-e2bc-44b3-8934-4bd02e0a42ec"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","MB2","PAFR","PRM"],"rulings":[{"date":"2021-07-23","text":"In a casual game, a card you choose from outside the game comes from your personal collection. In a tournament event, a card you choose from outside the game must come from your sideboard. In Limited events, your sideboard includes an arbitrary number of basic lands. You may look at your sideboard at any time."},{"date":"2021-07-23","text":"You choose the card to play from outside the game at the time you are playing it, not at the time Wish resolves."},{"date":"2021-07-23","text":"You still need to pay all costs to play a card this way, and you must follow all normal timing rules."}],"rarities":["rare"]},"wishclaw talisman":{"name":"Wishclaw Talisman","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This artifact enters with three wish counters on it.\n{1}, {T}, Remove a wish counter from this artifact: Search your library for a card, put it into your hand, then shuffle. An opponent gains control of this artifact. Activate only during your turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"RemoveCounter","count":1,"counter_type":{"type":"OfType","data":"wish"},"target":null,"selection":"SingleObject"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}, Remove a wish counter from ~: Search your library for a card, put it into your hand, then shuffle. An opponent gains control of ~. Activate only during your turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"wish","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with three wish counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"81c70ae7-3c18-4c9b-8505-e4db9e0e6518","metadata":{"source_printing_ids":["07c17b01-ee5d-491a-8403-b3f819b778c4","69d0f5bd-ccea-49b2-bd79-ad5e4d850cf5","9da15685-69c4-4517-b5a7-cf929e2788ba","9ebcb070-953c-4b47-ad8a-ef207c65053f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ELD","FDN","MB2","PELD"],"rulings":[{"date":"2019-10-04","text":"Once Wishclaw Talisman runs out of wish counters, it remains on the battlefield. You can't activate its last ability at all."},{"date":"2019-10-04","text":"You choose which opponent gains control of Wishclaw Talisman while its ability is resolving. If that player later leaves the game, you regain control of Wishclaw Talisman."}],"rarities":["rare"],"bracket_signals":{"game_changer":false,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":true}},"wizard class":{"name":"Wizard Class","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nYou have no maximum hand size.\n{2}{U}: Level 2\nWhen this Class becomes level 2, draw two cards.\n{4}{U}: Level 3\nWhenever you draw a card, put a +1/+1 counter on target creature you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":"{2}{U}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{U}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ClassLevelGained","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes level 2","constraint":{"type":"AtClassLevel","level":2},"condition":null,"batched":false},{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you draw a card, put a +1/+1 counter on target creature you control.","constraint":null,"condition":{"type":"ClassLevelGE","level":3},"batched":false}],"static_abilities":[{"mode":"NoMaximumHandSize","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You have no maximum hand size."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"36f68aa3-9955-46f1-bc87-497f16ef5222","metadata":{"source_printing_ids":["6b429f7a-da0c-4570-87ed-9945a657fe11","715cf105-edf8-4d75-9279-c83431c087c6","d1f629fb-b097-4240-8560-ef47f5678f48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","BLC","PLST"],"rulings":[{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"wolverine riders":{"name":"Wolverine Riders","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each upkeep, create a 1/1 green Elf Warrior creature token.\nWhenever another Elf you control enters, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Elf Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Elf","Warrior"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, create a 1/1 green Elf Warrior creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Elf you control enters, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"09070db6-01f6-4a8a-b167-a7825e6959f4","metadata":{"related_token_ids":["0999559d-8026-5957-b8d4-25f3a486d4cd","ba573e3a-81c4-55a0-97c6-2aa6f0c7269e"],"source_printing_ids":["575d407c-c37e-4664-b2e3-217dfd5a78a2","70fd0439-294b-454c-b2af-e814b85f4590"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["J22","KHC"],"rulings":[{"date":"2021-02-05","text":"Use the toughness of the creature as the last ability resolves to determine how much life you gain. If the Elf is no longer on the battlefield at that time, use its toughness from when it was last on the battlefield."}],"rarities":["rare"]},"wort, the raidmother":{"name":"Wort, the Raidmother","mana_cost":{"type":"Cost","shards":["RedGreen","RedGreen"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When Wort enters, create two 1/1 red and green Goblin Warrior creature tokens.\nEach red or green instant or sorcery spell you cast has conspire. (As you cast the spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose new targets for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin","Warrior"],"colors":["Red","Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create two 1/1 red and green Goblin Warrior creature tokens.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":"Conspire"}},"affected":{"type":"Or","filters":[{"type":"Typed","type_filters":["Any"],"controller":"You","properties":[{"type":"HasColor","color":"Red"}]},{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"HasColor","color":"Green"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"HasColor","color":"Green"}]}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Each red or green instant or sorcery spell you cast has conspire."}],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"d6b67c7e-3b24-4f60-8e3a-c6ca45229d7f","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["7d6177c0-df09-58f5-a5b6-8b83d2c0e91e","a8ca3d69-47b9-5c17-92bd-52dd3199cb3b","afe81bef-8851-5a9e-882c-66c59e09994e"],"source_printing_ids":["535189ec-572f-44ed-9741-09b9f575fc40","9103a97c-ffb6-4584-b7fc-58835ba942c2","9b46b4ee-263a-4a4b-8fbc-3ea6fa9ba56b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C20","MM3","SHM"],"rulings":[{"date":"2017-03-14","text":"If a spell gains a second instance of conspire from Wort's ability, you may choose to pay for one, both, or none of those abilities. Each conspire ability triggers only if you tap two creatures specifically for that ability."},{"date":"2017-03-14","text":"If the spell has damage divided as it was cast (like Fiery Justice does), the division can't be changed (although the targets receiving that damage still can)."},{"date":"2017-03-14","text":"If the spell that's copied has an X whose value was determined as it was cast (like Bonfire of the Damned does), the copy will have the same value of X."},{"date":"2017-03-14","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode. A different mode can't be chosen."},{"date":"2017-03-14","text":"If you're casting a spell for its flashback cost, you can't pay another alternative cost (such as an overload cost or a Trap's alternative cost) instead. You may pay additional costs, such as conspire."},{"date":"2017-03-14","text":"Some spells instruct you to sacrifice a creature as an additional cost to cast that spell. If you sacrifice Wort to pay that cost, that spell won't have conspire at the moment it becomes cast, so conspire won't trigger, even if you tapped two creatures."}],"rarities":["rare"]},"wrench mind":{"name":"Wrench Mind","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player discards two cards unless they discard an artifact card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":"Target player discards two cards unless they discard an artifact card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"random":false,"self_ref":false},"payer":{"type":"Player"}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"484eeb13-fe74-45fe-b089-7beec87cfcdb","metadata":{"source_printing_ids":["173d2ac4-9850-47de-8ee5-f4aaeb018faf","360a6ada-b257-44b8-b830-aaa122474bce","36ce975b-c3df-4472-a6c1-2546df11b74e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["IMA","MRD","PLST"],"rulings":[{"date":"2004-12-01","text":"You can discard either one artifact card or two cards which may or may not be artifacts. If you really want to, you can discard two artifact cards."}],"rarities":["common"]},"x":{"name":"X","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Spy"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"As long as X is in X's owner's opponent's hand, X's owner may cast X and activate X's abilities. That opponent can't cast X and plays with their hand revealed.\n{U}{B}, {T}: Put X into target opponent's hand.\n{3}{U}{B}: You may play a land or cast a spell from the hand X is in. If you cast a spell this way, you cast it without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"put","description":"Put ~ into target opponent's hand"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{U}{B}, {T}: Put ~ into target opponent's hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"without_paying_mana_cost":false,"mode":"Play"},"cost":null,"sub_ability":null,"duration":null,"description":"play a land","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Hand"}]},"without_paying_mana_cost":false,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":"cast a spell from the hand ~ is in","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{U}{B}: You may play a land or cast a spell from the hand ~ is in. If you cast a spell this way, you cast it without paying its mana cost.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"Unrecognized","text":"~ is in ~'s owner's opponent's hand"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is in ~'s owner's opponent's hand, ~'s owner may cast ~ and activate ~'s abilities. That opponent can't cast ~ and plays with their hand revealed."}],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"ef10c6c6-8e84-46f6-8e11-cd35a2b8fbf1","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["055ddc8b-d230-4675-9741-138429e48a8f","f77f6e64-2470-4c6a-a92b-328e4edc3ea9"]},"legalities":{},"printings":["ULST","UST"],"rulings":[{"date":"2018-01-19","text":"You activate X’s first activated ability while X is on the battlefield under your control. This puts X into an opponent’s hand. That opponent plays with their hand revealed, and they’re not allowed to cast X or activate any of X’s abilities—but you are. You can activate X’s second ability to play one of the cards in that hand."},{"date":"2018-01-19","text":"You choose which card to play as X’s last ability resolves. Your opponent can respond to you activating the ability to get other cards out of their hand. Whatever’s left when the ability resolves is fair game."},{"date":"2018-01-19","text":"You don’t own the cards you play this way. An instant or sorcery cast this way will go to its owner’s graveyard. A creature card you cast this way will enter the battlefield under your control, but it will be put into its owner’s graveyard if it dies. The same is true for other permanent cards you cast or lands you play."},{"date":"2018-01-19","text":"You play the card as X’s last ability resolves, with one exception: You can’t play a land this way unless it’s your turn and you have an available land play. If you’re casting a spell this way, you do so as the ability resolves. Ignore any timing restrictions based on the card’s type. You can cast their sorceries or creatures during their turn, for example."}],"rarities":["rare"]},"xenograft":{"name":"Xenograft","mana_cost":{"type":"Cost","shards":["Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nEach creature you control is the chosen type in addition to its other types.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature you control is the chosen type in addition to its other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"76642e7a-3c8f-45b8-9cd7-dac8086bea87","metadata":{"source_printing_ids":["f52f08e1-b234-42e4-8f1f-485a4f6edb3b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"Creature cards not on the battlefield and creature spells are not affected."},{"date":"2011-06-01","text":"You must choose an existing _Magic_ creature type."},{"date":"2017-09-29","text":"Replacement effects that modify creatures of a certain type as they enter the battlefield will apply (or not apply) after you apply this effect. For example, if Warrior is the chosen creature type and you control Bramblewood Paragon, a Runeclaw Bear would enter the battlefield with an additional +1/+1 counter."}],"rarities":["rare"]},"yavimaya steelcrusher":{"name":"Yavimaya Steelcrusher","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ape","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\n{1}, Sacrifice this creature: Destroy target artifact.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{1}, Sacrifice ~: Destroy target artifact.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Tap","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ad181ee7-756f-4002-9009-023ea6172991","metadata":{"source_printing_ids":["25175622-7b68-4916-adf2-3bf2d82e8356"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"yuriko, the tiger's shadow":{"name":"Yuriko, the Tiger's Shadow","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Commander ninjutsu {U}{B} ({U}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand or the command zone tapped and attacking.)\nWhenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[{"CommanderNinjutsu":{"type":"Cost","shards":["Blue","Black"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"CommanderNinjutsu","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":[{"Subtype":"Ninja"}],"controller":"You","properties":[]},"description":"Whenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"a7043fbd-1dfd-42cf-be4b-cc343d0949e5","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3bd81ae6-e628-447a-a36b-597e63ede295","6e4ef5bf-f055-4f0a-b1f4-263081f39104","7af7847e-82e6-45ed-834d-6f3bcba44017","f058f8e8-aa01-4dc0-a6a5-0490521b83d4","f43fe61f-513e-4308-8194-99f73c6fa972","fe9be3e0-076c-4703-9750-2a6b0a178bc9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C18","CMM","CMR","FCA","J19","PL22","PLG21","PLST","PRM","PZ2"],"rulings":[{"date":"2020-11-10","text":"Activating Yuriko's commander ninjutsu ability isn't the same as casting Yuriko as a spell. You won't have to pay the commander tax to activate that ability, and activating that ability won't increase the commander tax to pay later."},{"date":"2020-11-10","text":"Although the ninjutsu ability has the creature enter the battlefield attacking, it was never declared as an attacking creature (for the purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2020-11-10","text":"Commander ninjutsu is a variant of ninjutsu that can be activated from the command zone as well as from your hand. Just as with regular ninjutsu, the Ninja enters attacking the player or planeswalker that the returned creature was attacking."},{"date":"2020-11-10","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."}],"rarities":["rare","mythic"]},"zaffai, thunder conductor":{"name":"Zaffai, Thunder Conductor","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Magecraft — Whenever you cast or copy an instant or sorcery spell, scry 1. If that spell's mana value is 5 or greater, create a 4/4 blue and red Elemental creature token. If that spell's mana value is 10 or greater, Zaffai deals 10 damage to an opponent chosen at random.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCastOrCopy","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Elemental","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"types":["Creature","Elemental"],"colors":["Blue","Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":10},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"EventSource"}}},"comparator":"GE","rhs":{"type":"Fixed","value":10}},"optional_targeting":false,"optional":false,"forward_result":false,"target_selection_mode":{"type":"Random"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"EventSource"}}},"comparator":"GE","rhs":{"type":"Fixed","value":5}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast or copy an instant or sorcery spell, scry 1. If that spell's mana value is 5 or greater, create a 4/4 blue and red Elemental creature token. If that spell's mana value is 10 or greater, ~ deals 10 damage to an opponent chosen at random.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"02d529df-6299-4e8f-9794-70c8061efdc4","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["e1298968-b8ac-529f-b963-afef12011187"],"source_printing_ids":["21420f60-6443-4dec-ae35-331706592e7a","ea1ab937-8647-4c83-99d5-6a40dffa4c9b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","OC21","PRM"],"rulings":[{"date":"2021-04-16","text":"\"That spell's mana value\" refers to the spell that caused the ability to trigger, not the card you look at when you scry."},{"date":"2021-04-16","text":"Each magecraft ability has a different effect, although they all have the same trigger condition, whenever you cast or copy an instant or sorcery spell."},{"date":"2021-04-16","text":"For example, if you control Archmage Emeritus and cast an instant or sorcery spell, Archmage Emeritus's magecraft ability will trigger and you will draw a card."},{"date":"2021-04-16","text":"If an effect creates a copy of an instant or sorcery spell, this will also cause the magecraft ability to trigger."},{"date":"2021-04-16","text":"If an effect creates multiple copies of an instant or sorcery spell, magecraft abilities trigger once for each copy created by the effect."},{"date":"2021-04-16","text":"If the instant or sorcery spell has {X} in its mana cost, X is the value chosen for X as the spell was cast."},{"date":"2021-04-16","text":"Some effects instruct you to copy an instant or sorcery card in a zone other than the stack. These copies do not cause magecraft abilities to trigger. However, most effects that do this also allow you to cast the copy, and casting the copy will cause magecraft abilities to trigger."},{"date":"2021-04-16","text":"The wrong card name was inadvertently included in Zaffai's printed rules text. The text above is correct and the full name of the card is Zaffai, Thunder Conductor."}],"rarities":["mythic"]},"zap":{"name":"Zap","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Zap deals 1 damage to any target.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ deals 1 damage to any target.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"56115482-3fd4-45fb-b800-be68c5509cf2","metadata":{"source_printing_ids":["7502ce01-b762-40fe-a064-c7b20b08a722"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["INV"],"rarities":["common"]},"ziatora, the incinerator":{"name":"Ziatora, the Incinerator","mana_cost":{"type":"Cost","shards":["Black","Red","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, you may sacrifice another creature. When you do, Ziatora deals damage equal to that creature's power to any target and you create three Treasure tokens.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":3},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may sacrifice another creature. When you do, ~ deals damage equal to that creature's power to any target and you create three Treasure tokens.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","Red"],"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"d46c3fb6-f1c7-4a96-ae42-5bce17fc7c1d","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["02eda719-658b-52e3-8f94-b66dda715865","4f940dc2-7698-5fda-9f9b-62ec43ec2012","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85"],"source_printing_ids":["1cc4c087-2996-4436-b2b4-21acd25375db","68cce7e2-8c4b-4c76-a38b-0fee85da3151","ba4fa4c8-f09f-4d97-a7d1-1b93caf7d4f9","be56f915-0c52-4824-b684-b0612ea76643","dbd6b307-c3a5-4dfd-b137-e1077700c51f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M3C","PSNC","SLD","SNC"],"rulings":[{"date":"2022-04-29","text":"Use the creature's power as it last existed on the battlefield to determine how much damage Ziatora deals."}],"rarities":["mythic"]}} +{"abattoir ghoul":{"name":"Abattoir Ghoul","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"First strike\nWhenever a creature dealt damage by this creature this turn dies, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature dealt damage by ~ this turn dies, you gain life equal to that creature's toughness.","constraint":null,"condition":{"type":"DealtDamageBySourceThisTurn"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2b211adb-de44-4468-b65d-907a09aa7e9d","metadata":{"source_printing_ids":["43297ddd-276f-4d2d-9d9c-937603d0e376","59cf0906-04fa-4b30-a7a6-3d117931154f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDQ","ISD"],"rulings":[{"date":"2011-09-22","text":"You'll gain life equal to the creature's last known toughness before it died. For example, if Abattoir Ghoul deals 3 first-strike damage to a 7/7 creature and then you give the creature -5/-5 before the regular combat damage step, you'll gain 2 life."}],"rarities":["uncommon"]},"abundance":{"name":"Abundance","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Land","Nonland"]}},"persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenLandOrNonlandKind"}]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":null,"description":"If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order.","condition":null}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"eccc9a54-2b56-4a02-9926-258d5b2e25fb","metadata":{"source_printing_ids":["46184f97-d5c9-4a98-9fd9-e19057ce9b7e","51d27db7-3c11-4896-a8f9-2f7f7beeec18","73a44759-1fa4-4a96-b668-316851e8a35a","7f3fff7e-f34d-4a99-a805-bd66c4e9f0cb","9ab8ad39-840e-474b-beb8-96a7c2a8d0fa","9bc359b0-8886-415b-a497-e98a2241084e","c2413999-49c8-4aee-9f1e-90728089d15f","f6d051fa-bd3a-4c94-ae41-34d89a7bb77d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","40K","C17","CMM","DDR","USG","ZNC"],"rulings":[{"date":"2004-10-04","text":"If no card of the chosen type is found before your library empties, you don't get a card, but you do get to order all the cards in your library any way you choose."},{"date":"2004-10-04","text":"If you use this on a multi-card draw, each replaced draw is handled separately. In other words, you reveal and then put on the bottom of the library for the first card, then do the same for the second, and so on. In a multi-card draw you do not have to choose how many of those draws will be replaced before you do any drawing or use of this card."},{"date":"2004-10-04","text":"This replacement effect replaces the draw, so nothing that triggers on a draw will trigger."},{"date":"2007-07-15","text":"If your library is empty, Abundance can prevent you from losing the game for being unable to draw a card. If an effect or turn-based action would cause you to draw a card, you can replace that draw with Abundance's replacement effect. (It doesn't matter that you'd be unable to actually draw a card.) Since Abundance's effect has you put a card into your hand instead of drawing a card, you'll never be forced to draw a card with an empty library."}],"rarities":["rare"]},"abzan falconer":{"name":"Abzan Falconer","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Outlast {W} ({W}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)\nEach creature you control with a +1/+1 counter on it has flying.","non_ability_text":null,"flavor_name":null,"keywords":[{"Outlast":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"ability_tag":{"type":"Outlast"},"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature you control with a +1/+1 counter on it has flying."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8b972819-507a-40a9-ab1f-1a674ea56083","metadata":{"source_printing_ids":["21ee4f3c-dc94-4156-b0ed-60fe6310451a","42560ce5-c7ac-422f-8f22-e2fb043861b7","5f03c34e-5304-4e62-a1ea-c8c9aa5f2342","8df1f5ca-b41d-4a8a-b7ba-9ca946ab35e8","9c06621d-a0c9-4c84-8b1a-cb0abd8390c4","a1b85829-afe8-4854-af4c-8ccf3b94da52","b52cc391-ea4e-4fe8-aac8-fffa682f290b","bedd68b3-baf2-4416-8107-79be8d2edaae","db62ac2c-0d24-4d6f-a6ca-cca4371a3bd7","f7e2b0e1-c9ea-4f91-b19e-73b1bd6a0884"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","C16","CM2","IMA","J21","KTK","MIC","MOC","PLST","ZNC"],"rulings":[{"date":"2014-09-20","text":"Several creatures with outlast also grant an ability to creatures you control with +1/+1 counters on them, including themselves. These counters could come from an outlast ability, but any +1/+1 counter on the creature will count."},{"date":"2014-09-20","text":"The cost to activate a creature's outlast ability includes the tap symbol ({T}). A creature's outlast ability can't be activated unless that creature has been under your control continuously since the beginning of your turn."}],"rarities":["uncommon"]},"aclazotz, deepest betrayal":{"name":"Aclazotz, Deepest Betrayal","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Bat","God"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nWhenever Aclazotz attacks, each opponent discards a card. For each opponent who can't, you draw a card.\nWhenever an opponent discards a land card, create a 1/1 black Bat creature token with flying.\nWhen Aclazotz dies, return it to the battlefield tapped and transformed under its owner's control.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, each opponent discards a card. For each opponent who can't, you draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"Discarded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Bat","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Bat"],"colors":["Black"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an opponent discards a land card, create a 1/1 black Bat creature token with flying.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":true,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to the battlefield tapped and transformed under its owner's control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fcdfe9d5-2743-4d3e-ab57-bf0f96beaa15","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["3e43a418-8c17-5ed2-b92b-42dbe4c96b4b"],"source_printing_ids":["627c392c-4d18-4eb2-a4e8-c668f61f5487","95775b13-2761-424e-9828-2275ec987368"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If a card that isn't a transforming double-faced card is a copy of Aclazotz, Deepest Betrayal, it won't return to the battlefield when it dies."},{"date":"2023-11-10","text":"The last ability of Temple of the Dead will resolve even if you have two or more cards in hand at that time."}],"rarities":["mythic"]},"acolyte of the inferno":{"name":"Acolyte of the Inferno","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Monk"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)\nWhenever this creature becomes blocked by a creature, it deals 2 damage to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Renown":1}],"abilities":[],"triggers":[{"mode":"BecomesBlocked","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"valid_source":null,"description":"Whenever ~ becomes blocked by a creature, it deals 2 damage to that creature.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Renown","count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":"Renown 1","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"CR 702.112a: Renown 1 — when this creature deals combat damage to a player, if it isn't renowned, put 1 +1/+1 counter on it and it becomes renowned.","constraint":null,"condition":{"type":"Not","condition":{"type":"IsRenowned","subject":"Source"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"35bf67e0-8141-4664-b762-2c613353e1eb","metadata":{"source_printing_ids":["186581c7-81a6-4c27-b8a9-ff7f7a4b1d40"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI"],"rulings":[{"date":"2015-06-22","text":"Acolyte of the Inferno's last ability triggers and resolves before combat damage is dealt. If that causes each creature blocking Acolyte of the Inferno to be destroyed, Acolyte of the Inferno will remain blocked and neither deal nor be dealt combat damage."},{"date":"2015-06-22","text":"Acolyte of the Inferno's last ability will trigger once for each creature that blocks it. Each of those creatures will be dealt 2 damage."},{"date":"2015-06-22","text":"If a creature with renown deals combat damage to its controller because that damage was redirected, renown will trigger."},{"date":"2015-06-22","text":"If a renown ability triggers, but the creature leaves the battlefield before that ability resolves, the creature doesn't become renowned. Any ability that triggers \"whenever a creature becomes renowned\" won't trigger."},{"date":"2015-06-22","text":"Renown won't trigger when a creature deals combat damage to a planeswalker or another creature. It also won't trigger when a creature deals noncombat damage to a player."}],"rarities":["uncommon"]},"ad nauseam":{"name":"Ad Nauseam","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal the top card of your library and put that card into your hand. You lose life equal to its mana value. You may repeat this process any number of times.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Reveal the top card of your library and put that card into your hand. You lose life equal to its mana value. You may repeat this process any number of times.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"repeat_until":{"type":"ControllerChoice"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"981b0e21-e5e6-4a1e-bfde-679d56623f7f","metadata":{"source_printing_ids":["0a4ce4a1-65e3-4b40-be35-8fc55a968ec8","a9f2c53e-ff58-4aa8-89a6-4f45628cc571"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"banned","timeless":"legal","vintage":"legal"},"printings":["2XM","ALA","SOA"],"rulings":[{"date":"2026-03-20","text":"Each time you put the revealed card into your hand and lose the appropriate amount of life, you decide whether to continue by revealing another card. You don't decide in advance how many cards to put into your hand this way."},{"date":"2026-03-20","text":"If a card in a player's library has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2026-03-20","text":"You may continue to reveal cards with Ad Nauseam even if your life total has been reduced to 0 or less. If you continue, you will continue to lose life, dropping your life total into negative numbers. As soon as you stop, you'll lose the game as a state-based action."}],"rarities":["rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"advanced reconstruction":{"name":"Advanced Reconstruction","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nAt the beginning of your first main phase, mill a card, then exile a card from your graveyard at random. You may play the exiled card this turn.\n{1}{R}: Level 2\nWhenever one or more cards leave your graveyard, this Class deals 2 damage to each opponent.\n{1}{R}: Level 3\nSpells you cast from anywhere other than your hand cost {2} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false,"target_selection_mode":{"type":"Random"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, mill a card, then exile a card from your graveyard at random. You may play the exiled card this turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":2},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more cards leave your graveyard, ~ deals 2 damage to each opponent.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":true}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"ClassLevelGE","level":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast from anywhere other than your hand cost {2} less to cast."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f00bc101-8082-4459-b987-f0c4b7a12344","metadata":{"source_printing_ids":["cc912fec-827d-4deb-8430-79f5ea31ca9b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If multiple cards leave your graveyard at the same time, Advanced Reconstruction's level 2 ability will trigger only once."},{"date":"2026-03-20","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying, add any cost increases, then apply any cost reductions (such as that of Advanced Reconstruction's level 3 ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."},{"date":"2026-03-20","text":"You pay all costs and follow all timing rules for cards played this way. For example, if the exiled card is a land card, you may play it only during your main phase while the stack is empty and only if you have an available land play remaining."}],"rarities":["rare"]},"agonizing demise":{"name":"Agonizing Demise","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)\nDestroy target nonblack creature. It can't be regenerated. If this spell was kicked, Agonizing Demise deals damage equal to that creature's power to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["Red"],"generic":1}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. If this spell was kicked, ~ deals damage equal to that creature's power to the creature's controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"41681a1f-0777-4b96-8c7e-d6a5d1b1c8fc","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}}]}},"metadata":{"source_printing_ids":["539ac5e1-4bad-4f70-abac-e70c406bebec","b7621aab-4839-45ef-bfa2-9aa2417bbec0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["DDH","INV"],"rulings":[{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["common"]},"ajani, nacatl avenger":{"name":"Ajani, Nacatl Avenger","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Ajani"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"[+2]: Put a +1/+1 counter on each Cat you control.\n[0]: Create a 2/1 white Cat Warrior creature token. When you do, if you control a red permanent other than Ajani, he deals damage equal to the number of creatures you control to any target.\n[−4]: Each opponent chooses an artifact, a creature, an enchantment, and a planeswalker from among the nonland permanents they control, then sacrifices the rest.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[{"Subtype":"Cat"}],"controller":"You","properties":[]}},"cost":{"type":"Loyalty","amount":2},"sub_ability":null,"duration":null,"description":"[+2]: Put a +1/+1 counter on each Cat you control.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Cat Warrior","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Cat","Warrior"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Create a 2/1 white Cat Warrior creature token. When you do, if you control a red permanent other than ~, he deals damage equal to the number of creatures you control to any target.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChooseAndSacrificeRest","categories":["Artifact","Creature","Enchantment","Planeswalker"],"chooser_scope":"EachPlayerSelf","choose_filter":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"sacrifice_filter":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each opponent chooses an artifact, a creature, an enchantment, and a planeswalker from among the nonland permanents they control, then sacrifices the rest.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","White"],"color_identity":["Red","White"],"scryfall_oracle_id":"2588f348-d7a3-46c8-9ace-dca53ed5ef99","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["d9743436-0dec-5c72-bfc5-54668a38d036"],"source_printing_ids":["0d16e8e0-31b2-4389-afd6-783c501f6fa0","e91ba1d4-3bca-45a2-ad9f-7abbcfe50dbd","f897d650-f1a2-4366-a025-f12c10310d96"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["MH3","PMH3"],"rarities":["mythic"]},"ajani, nacatl pariah":{"name":"Ajani, Nacatl Pariah","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Cat","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Ajani enters, create a 2/1 white Cat Warrior creature token.\nWhenever one or more other Cats you control die, you may exile Ajani, then return him to the battlefield transformed under his owner's control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Cat Warrior","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Cat","Warrior"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 2/1 white Cat Warrior creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Cat"}],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more other Cats you control die, you may exile ~, then return him to the battlefield transformed under his owner's control.","constraint":null,"condition":null,"batched":true}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"2588f348-d7a3-46c8-9ace-dca53ed5ef99","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["d9743436-0dec-5c72-bfc5-54668a38d036"],"source_printing_ids":["0d16e8e0-31b2-4389-afd6-783c501f6fa0","e91ba1d4-3bca-45a2-ad9f-7abbcfe50dbd","f897d650-f1a2-4366-a025-f12c10310d96"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"A permanent with more than one type may be chosen as any of its types. For example, an artifact creature may be chosen as the artifact, the creature, or both. Choosing the same permanent twice this way has the same result as choosing it once."},{"date":"2024-06-07","text":"A transforming double-faced card enters the battlefield with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or allows you to cast it transformed, in which case it enters with its back face up."},{"date":"2024-06-07","text":"Each face of a transforming double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a transforming double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2024-06-07","text":"Each transforming double-faced card in this set is cast with its front face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2024-06-07","text":"If an opponent doesn't control any permanents of one of the types, they'll still choose the permanents of the types they do control."},{"date":"2024-06-07","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter the battlefield at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Ral, Monsoon Mage, choosing to exile that permanent during the resolution of its triggered ability will cause it to remain in exile."},{"date":"2024-06-07","text":"In a case where you create more than one Cat Warrior creature token with Ajani, Nacatl Avenger's second ability (for example, because of the effect of Doubling Season), the reflexive ability will trigger once for each Cat Warrior you made this way. If a replacement effect causes you to create different tokens instead (for example, the effect of Divine Visitation), the creation of those tokens won't cause the reflexive ability to trigger."},{"date":"2024-06-07","text":"In some rare cases, a spell or ability may cause Ajani, Nacatl Pariah to transform while it's a creature (front face up) on the battlefield. If this happens, Ajani, Nacatl Avenger won't have any loyalty counters on him and will subsequently be put into his owner's graveyard."},{"date":"2024-06-07","text":"In the Commander variant, a double-faced card's color identity is determined by the mana costs and mana symbols in the rules text of both faces combined. If either face has a color indicator or basic land type, those are also considered. For example, Ral, Monsoon Mage's color identity is blue and red, since its front face is red and its back face has a blue and red color indicator."},{"date":"2024-06-07","text":"Lands can't be chosen and won't be sacrificed, even if they have any of the types referenced by Ajani, Nacatl Avenger's last ability."},{"date":"2024-06-07","text":"The back face of a transforming double-faced card usually has a color indicator that defines its color. Colorless back faces, such as lands, do not."},{"date":"2024-06-07","text":"The mana value of a transforming double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2024-06-07","text":"When Ajani, Nacatl Avenger's last ability resolves, starting with the next opponent in turn order, each opponent in turn order chooses permanents they control. Each opponent will know the choices made by players who chose before them. They then sacrifice all of their unchosen nonland permanents simultaneously."},{"date":"2024-06-07","text":"You can activate one of Ajani, Nacatl Avenger's loyalty abilities the turn he enters the battlefield. However, you may do so only during one of your main phases when the stack is empty. For example, if Ajani, Nacatl Avenger enters the battlefield during combat, there will be an opportunity for your opponent to remove him before you can activate one of his abilities."},{"date":"2024-06-07","text":"You don't choose a target for Ajani, Nacatl Avenger's second ability when you activate it. Rather, if you control a red permanent other than Ajani, Nacatl Avenger, a second \"reflexive\" ability triggers when you create a Cat Warrior creature token this way. You choose a target for that ability as it goes on the stack. Each player may respond to this triggered ability as normal."}],"rarities":["mythic"]},"alchemist's talent":{"name":"Alchemist's Talent","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nWhen this Class enters, create two tapped Treasure tokens.\n{1}{R}: Level 2\nTreasures you control have \"{T}, Sacrifice this artifact: Add two mana of any one color.\"\n{4}{R}: Level 3\nWhenever you cast a spell, if mana from a Treasure was spent to cast it, this Class deals damage equal to that spell's mana value to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":true,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create two tapped Treasure tokens.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell, if mana from a Treasure was spent to cast it, ~ deals damage equal to that spell's mana value to each opponent.","constraint":null,"condition":{"type":"ClassLevelGE","level":3},"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Artifact",{"Subtype":"Treasure"}],"controller":"You","properties":[]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":2},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{T}, Sacrifice ~: Add two mana of any one color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":{"type":"ClassLevelGE","level":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Treasures you control have \"{T}, Sacrifice ~: Add two mana of any one color.\""}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5a2dfff5-9dba-42f5-bcca-918c16f23807","metadata":{"related_token_ids":["4811acb4-e116-5e6b-8d42-707057b51299"],"source_printing_ids":["2fb8dace-c604-40fc-bbd4-5add5deb041a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC"],"rulings":[{"date":"2024-07-26","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2024-07-26","text":"Each Class starts with only the first of its three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2024-07-26","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2024-07-26","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2024-07-26","text":"If a spell has {X} in its mana cost, use the value chosen for X to determine that spell's mana value."},{"date":"2024-07-26","text":"There's no restriction on how many Class permanents you can control, whether they're the same or different classes. Each Class permanent tracks its own level separately."},{"date":"2024-07-26","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["rare"]},"alpha brawl":{"name":"Alpha Brawl","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature an opponent controls deals damage equal to its power to each other creature that player controls, then each of those creatures deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"damage_source":"Target"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target creature an opponent controls deals damage equal to its power to each other creature that player controls, then each of those creatures deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cfc023e0-9e9d-48ac-bfb5-74bfd5977dee","metadata":{"source_printing_ids":["e2ec168a-3e4f-4527-901a-bc28cc28d125"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DKA"],"rulings":[{"date":"2011-01-22","text":"Abilities like lifelink and deathtouch that care about any kind of damage are taken into account."},{"date":"2011-01-22","text":"Combat abilities like first strike, double strike, and trample don’t apply and will have no impact on Alpha Brawl’s effect."},{"date":"2011-01-22","text":"If the targeted creature has infect or wither, the damage it deals will result in -1/-1 counters being put on each creature it deals damage to. The power of those creatures will be reduced when they deal damage back to the targeted creature."},{"date":"2011-01-22","text":"None of the damage dealt due to Alpha Brawl is combat damage."},{"date":"2011-01-22","text":"The damage dealt by the targeted creature is not divided in any way. For example, if a 3/3 creature is targeted, it will deal 3 damage to each other creature controlled by its controller."},{"date":"2011-01-22","text":"The two parts of Alpha Brawl’s effect happen sequentially: first the targeted creature deals damage, then the other creatures deal damage. State-based actions aren’t checked in the middle, so creatures that are dealt lethal damage by the targeted creature will still deal damage."}],"rarities":["rare"]},"amazing spider-man":{"name":"Amazing Spider-Man","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spider","Human","Hero"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance, reach\nEach legendary spell you cast that's one or more colors has web-slinging {G}{W}{U}. (You may cast a spell for its web-slinging cost if you also return a tapped creature you control to its owner's hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance","Reach"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":{"WebSlinging":{"type":"Cost","shards":["Green","White","Blue"],"generic":0}}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"},{"type":"ColorCount","comparator":"GE","count":1}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Each legendary spell you cast that's one or more colors has web-slinging {G}{W}{U}."}],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"f1b7488c-c675-42e9-818a-24a50347ec2c","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["cd0b828b-461a-5835-8da5-0d684b505914"],"source_printing_ids":["2ec821c3-3e5c-4af8-a6ef-e2e77aa8668c","3ce33422-5dba-4a42-8375-dd8ccc692a7b","97fcf5a5-54e1-43f3-95e3-edc6215bf973","98912aae-4e42-4434-b979-9c85f09f8d6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["OM1","PMEI","PSPM","SPM"],"rarities":["mythic"]},"ambuscade":{"name":"Ambuscade","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e419975-e054-4c35-8845-a08589ebb08f","metadata":{"source_printing_ids":["4df71162-7e8f-47c5-aff4-59d82d8c674d","cfc06303-cb35-4feb-b23d-7ac0a2fa7ce3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["2X2","HOU"],"rulings":[{"date":"2017-07-14","text":"If the creature you control leaves the battlefield before Ambuscade resolves, Ambuscade has no effect and no damage is dealt. If the creature an opponent controls leaves the battlefield instead, the creature you control gets +1/+0 even though it won't deal any damage."}],"rarities":["common"]},"amphin mutineer":{"name":"Amphin Mutineer","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Salamander","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, exile up to one target non-Salamander creature. That creature's controller creates a 4/3 blue Salamander Warrior creature token.\nEncore {4}{U}{U} ({4}{U}{U}, Exile this card from your graveyard: For each opponent, create a token copy that attacks that opponent this turn if able. They gain haste. Sacrifice them at the beginning of the next end step. Activate only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Encore":{"type":"Cost","shards":["Blue","Blue"],"generic":4}}],"abilities":[{"kind":"Activated","effect":{"type":"Encore"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":4}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature",{"Non":{"Subtype":"Salamander"}}],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Salamander Warrior","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"types":["Creature","Salamander","Warrior"],"colors":["Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"ParentTargetController"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile up to one target non-Salamander creature. That creature's controller creates a 4/3 blue Salamander Warrior creature token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8910f79a-66c9-41b3-b55a-e3e651ae6f26","metadata":{"related_token_ids":["20871e74-cf51-5956-8184-09ff568097a5","2b48ec72-3a9d-5b4b-bd63-3e4266bd8848","3e95b37e-45a2-51f0-aeb1-c38e9e2a5d76","40a109ad-ee09-5f13-a852-dbaa5efbd124"],"source_printing_ids":["0f54f429-80c2-4f55-bb99-236f2c697985","4b45f225-0553-482b-8be4-9c7f3ccf0d0d","967b5ed9-7275-4564-8bf9-2748fea2f387","b465a22b-6fea-4bf8-b290-fa3e1a4aa6eb","c7be9d06-3651-47f4-9e44-00ecd4a15e3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","LCC","MKC","PRM","TDC"],"rulings":[{"date":"2020-11-10","text":"Each token must attack the appropriate player if able."},{"date":"2020-11-10","text":"Exiling the card with encore is a cost to activate the ability. Once you announce that you're activating it, no player may take actions until you've finished. They can't try to remove the card from your graveyard to stop you from paying the cost."},{"date":"2020-11-10","text":"If one of the tokens can't attack for any reason (such as being tapped), then it doesn't attack. If there's a cost associated with having it attack, you aren't forced to pay that cost, so it doesn't have to attack in that case either."},{"date":"2020-11-10","text":"If one of the tokens somehow is under another player's control as the delayed triggered ability resolves, you can't sacrifice that token. It remains on the battlefield indefinitely, even if you regain control of it later."},{"date":"2020-11-10","text":"If the target non-Salamander creature is an illegal target by the time Amphin Mutineer's ability tries to resolve, the ability doesn't resolve. No player creates a Salamander Warrior token."},{"date":"2020-11-10","text":"Opponents who have left the game aren't counted when determining how many tokens to create."},{"date":"2020-11-10","text":"The tokens copy only what's on the original card. Effects that modified that creature when it was previously on the battlefield won't be copied."},{"date":"2023-07-28","text":"If an effect stops a token from attacking a specific player, that token can attack any player, planeswalker, or battle, or not attack at all. If the effect stops the token from attacking a specific player unless a cost is paid, you don't have to pay that cost unless you want to attack that player."}],"rarities":["rare"]},"ancient brass dragon":{"name":"Ancient Brass Dragon","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. When you do, put any number of target creature cards with total mana value X or less from graveyards onto the battlefield under your control, where X is the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"target_constraints":[{"type":"TotalManaValue","comparator":"LE","value":{"type":"Ref","qty":{"type":"EventContextAmount"}}}],"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. When you do, put any number of target creature cards with total mana value X or less from graveyards onto the battlefield under your control, where X is the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"7d79fb4e-2ca0-404a-9663-1f5abce6e733","metadata":{"source_printing_ids":["631a9966-b5d2-4696-a2f1-2d56fccad9b2","6430c61b-407d-471d-9012-07f1ddef28aa","763d7fcb-e5f0-4438-8d35-8beb4cc015e4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG","PCLB"],"rarities":["mythic"]},"ancient bronze dragon":{"name":"Ancient Bronze Dragon","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. When you do, put X +1/+1 counters on each of up to two target creatures, where X is the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. When you do, put X +1/+1 counters on each of up to two target creatures, where X is the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8ce74097-97b1-493d-9585-bd1336f95927","metadata":{"source_printing_ids":["6261fba2-0420-4271-87f4-f168a1e74c9b","781af4dd-9e3c-48af-80e9-b52c427d2120","9b957a1f-6d26-47bb-84ba-81acc01a8dae","b571077e-a4a5-4442-99d9-558a4ffe55e9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG","PCLB","SLD"],"rarities":["mythic"]},"ancient copper dragon":{"name":"Ancient Copper Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elder","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature deals combat damage to a player, roll a d20. You create a number of Treasure tokens equal to the result.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":20,"results":[]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, roll a d20. You create a number of Treasure tokens equal to the result.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48daee9d-ddaf-410f-8c3a-12fa1064ab56","metadata":{"related_token_ids":["7fb44e8f-f3f6-5834-b4ef-a0249adacc31"],"source_printing_ids":["0c9ac08c-11ce-4e8a-8ea8-c18cfc745ac7","3836dddd-a7e4-499f-ad49-ce298aa65720","e12d32a7-60b4-4e49-b279-970b170c1a9c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","FCA","HBG","PCLB"],"rarities":["mythic"]},"ancient greenwarden":{"name":"Ancient Greenwarden","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Reach (This creature can block creatures with flying.)\nYou may play lands from your graveyard.\nIf a land entering causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":["Reach"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."},{"mode":{"DoubleTriggers":{"cause":{"EntersBattlefield":{"core_types":["Land"]}}}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a land entering causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3bcf090c-e890-4a9f-a8aa-6079e4ec9947","metadata":{"source_printing_ids":["12a0bf5c-a165-48f1-9a57-3a7cc9f3b0f9","7109092e-52c3-417b-a2c0-340eabb5af9d","c6a058aa-f620-4a1f-af32-6e6be2cb3e4b","d0a63737-8da7-4e92-89d2-742419530fc9","dfe08e59-fdc4-436f-b05c-6ad386c46310"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J25","OTC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"An ability that triggers whenever you play a land won't trigger an additional time."},{"date":"2020-09-25","text":"Ancient Greenwarden allows you to play a modal double-faced card's land face, but not a nonland face."},{"date":"2020-09-25","text":"Ancient Greenwarden doesn't allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2020-09-25","text":"Ancient Greenwarden doesn't change the times when you can play those lands. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."},{"date":"2020-09-25","text":"Ancient Greenwarden's effect doesn't copy the triggered ability; it causes the ability to trigger twice. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."},{"date":"2020-09-25","text":"Ancient Greenwarden's third ability affects a land's own enters-the-battlefield triggered abilities as well as other triggered abilities that trigger when that land enters the battlefield, such as landfall abilities. Such triggered abilities start with \"when\" or \"whenever.\""},{"date":"2020-09-25","text":"If a land entering the battlefield at the same time as Ancient Greenwarden (including Ancient Greenwarden itself if an effect causes it to be a land) causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."},{"date":"2020-09-25","text":"If you control two Ancient Greenwardens, a land entering the battlefield causes abilities to trigger three times, not four. A third Ancient Greenwarden causes abilities to trigger four times, a fourth causes abilities to trigger five times, and so on."},{"date":"2020-09-25","text":"Look at each permanent as it exists on the battlefield, taking into account continuous effects, to determine whether any triggered abilities will trigger multiple times. For example, if you control Ashaya, Soul of the Wild, a nontoken creature entering the battlefield will cause any appropriate abilities to trigger an additional time."},{"date":"2020-09-25","text":"Replacement effects are unaffected by Ancient Greenwarden's third ability. This includes any abilities that apply \"as [this land] enters the battlefield\" and any ability that says the land enters the battlefield with counters."},{"date":"2020-09-25","text":"The trigger event doesn't have to specifically refer to \"lands.\" For example, an ability that triggers \"whenever a creature enters the battlefield under your control\" would trigger twice if the entering land is also a creature."}],"rarities":["mythic"]},"angelic chorus":{"name":"Angelic Chorus","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control enters, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control enters, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e66b12ff-45da-46dc-9148-bd8ea9b7fde0","metadata":{"source_printing_ids":["907bf221-a1bf-41ab-9b7e-e5a64c385642","d9e966cb-bb42-49d8-b351-114619b31497","f835ff5d-e03d-4a93-98bb-704eaa1e2b64"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","BBD","USG"],"rulings":[{"date":"2004-10-04","text":"Angelic Chorus does not trigger when creatures phase in or change controllers."},{"date":"2004-10-04","text":"This does not trigger on a permanent being turned into a creature. That is just a permanent changing type, not something entering."}],"rarities":["rare"]},"arabella, abandoned doll":{"name":"Arabella, Abandoned Doll","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact","Creature"],"subtypes":["Toy"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever Arabella attacks, it deals X damage to each opponent and you gain X life, where X is the number of creatures you control with power 2 or less.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it deals X damage to each opponent and you gain X life, where X is the number of creatures you control with power 2 or less.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"7c4bbb1b-29c4-4e06-aed0-b361293a585b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["f683d5a1-b8bf-446f-9fe3-88a4398bf3cf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"The value of X is determined only once, as Arabella's ability resolves."}],"rarities":["uncommon"]},"aradesh, the founder":{"name":"Aradesh, the Founder","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhenever a creature you control attacks, if it enlisted a creature this combat, the creature that attacked gains double strike until end of turn. If that creature's power is 4 or greater, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"the","description":"the creature that attacked gains double strike"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control attacks, if it enlisted a creature this combat, the creature that attacked gains double strike until end of turn. If that creature's power is 4 or greater, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"32620b26-10b9-47a7-bfa7-ca590ab5fa50","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3382f11f-c32f-46cb-a578-d82e545691c3","6701dae4-348e-40f6-9db4-d6f0039be831","b76832a0-8690-4843-8be4-1eba89ada995","c569396f-99cf-44c5-bb64-f59a4891efd1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Aradesh’s last ability has an intervening if clause. If a creature that attacks hasn’t enlisted a creature this combat, the ability won’t trigger at all for that creature."},{"date":"2024-03-08","text":"It doesn’t matter what happens to the enlisted creature after Aradesh’s last ability triggers. As long as the creature that attacked enlisted a creature this combat, when Aradesh’s last ability resolves, the creature that attacked will still get double strike, and if that creature’s power is 4 or greater, you’ll still draw a card."},{"date":"2024-03-08","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2024-03-08","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2024-03-08","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2024-03-08","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["rare"]},"arcane adaptation":{"name":"Arcane Adaptation","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nCreatures you control are the chosen type in addition to their other types. The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield."},"cost":null,"sub_ability":null,"duration":null,"description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control are the chosen type in addition to their other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"2188c03f-11b6-4651-914a-b4fdd59127e3","metadata":{"source_printing_ids":["b0384a47-b189-4e10-b847-1819d3ca5f8e","bf3edaaf-cf63-4e17-94ae-9d9991d9fb5f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"Replacement effects that modify creatures of a certain type as they enter the battlefield will apply after you apply Arcane Adaptation’s effect. This is a change from previous rules. If you control Arcane Adaptation and the Aether Revolt card Metallic Mimic, with the same creature type chosen for both, then any creature you control will enter the battlefield with an additional +1/+1 counter on it."},{"date":"2018-01-19","text":"To choose a creature type, you must choose an existing creature type, such as Vampire or Knight. You can’t choose multiple creature types, such as “Vampire Knight.” Card types such as artifact can’t be chosen, nor can subtypes that aren’t creature types, such as Jace, Vehicle, or Treasure."}],"rarities":["rare"]},"archangel of tithes":{"name":"Archangel of Tithes","mana_cost":{"type":"Cost","shards":["White","White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nAs long as this creature is untapped, creatures can't attack you or planeswalkers you control unless their controller pays {1} for each of those creatures.\nAs long as this creature is attacking, creatures can't block unless their controller pays {1} for each of those creatures.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"SourceIsTapped"}},{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":1},"scaling":{"type":"PerAffectedCreature"},"defended":"PlayerOrPlaneswalker"}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is untapped, creatures can't attack you or planeswalkers you control unless their controller pays {1} for each of those creatures."},{"mode":"CantBlock","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"And","conditions":[{"type":"SourceIsAttacking"},{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":1},"scaling":{"type":"PerAffectedCreature"}}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is attacking, creatures can't block unless their controller pays {1} for each of those creatures."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ff5caed4-0276-476d-8fae-edae2536df7f","metadata":{"source_printing_ids":["1af50bf1-c51e-4592-86bf-4197ec85a45d","2f338a9f-2af0-4e0f-9de1-17fc51145c46","c853d04c-864b-491c-8c6f-72d2d4874d2f","d34f043c-d01e-4462-b381-39748d7fa31b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ORI","OTJ","PLST","POTJ"],"rulings":[{"date":"2015-06-22","text":"If you control an untapped Archangel of Tithes, your opponents can choose to not attack with a creature that must attack if able. The same is true with respect to an attacking Archangel of Tithes and a creature that must block if able."}],"rarities":["mythic"]},"archdruid's charm":{"name":"Archdruid's Charm","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Search your library for a creature or land card and reveal it. Put it onto the battlefield tapped if it's a land card. Otherwise, put it into your hand. Then shuffle.\n• Put a +1/+1 counter on target creature you control. It deals damage equal to its power to target creature you don't control.\n• Exile target artifact or enchantment.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Land"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3c1ef404-e2c6-486d-a5a2-d5779c71d498","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Search your library for a creature or land card and reveal it. Put it onto the battlefield tapped if it's a land card. Otherwise, put it into your hand. Then shuffle.","Put a +1/+1 counter on target creature you control. It deals damage equal to its power to target creature you don't control.","Exile target artifact or enchantment."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["00c2c17b-889b-416b-af58-c4039efec2bb","5caae5ae-845f-42c2-b1ae-956df2739433"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM","PMKM"],"rulings":[{"date":"2024-02-02","text":"If you choose the second mode and the creature you don't control is not a legal target as Archdruid's Charm resolves, you'll still put a +1/+1 counter on your creature."},{"date":"2024-02-02","text":"If you choose the second mode and your creature is not a legal target as Archdruid's Charm resolves, you won't put a +1/+1 counter on it, and no damage will be dealt."},{"date":"2024-02-02","text":"You can't choose the second mode for Archdruid's Charm unless you and another player have creatures to target."}],"rarities":["rare"]},"archelos, lagoon mystic":{"name":"Archelos, Lagoon Mystic","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Turtle","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"As long as Archelos is tapped, other permanents enter tapped.\nAs long as Archelos is untapped, other permanents enter untapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"description":"As long as ~ is tapped, other permanents enter tapped.","condition":{"type":"SourceTappedState","tapped":true},"destination_zone":"Battlefield"},{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Untap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"description":"As long as ~ is untapped, other permanents enter untapped.","condition":{"type":"SourceTappedState","tapped":false},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"fd19a009-d1ab-4148-a829-3d4c3af1b0b2","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["25e5643c-26d9-4ada-bc03-cafda0f64f40","d45ec78e-6190-46af-8057-834f5ca41ec8","eafb8740-1bab-4f5e-96d1-79f1f04cc0d8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","DMC","PRM"],"rulings":[{"date":"2020-11-10","text":"Archelos's abilities don't apply to itself as it enters the battlefield, nor do they apply to any permanents entering the battlefield at the same time."},{"date":"2020-11-10","text":"If another replacement effect says that a permanent enters the battlefield tapped while Archelos is untapped, the entering permanent's controller chooses whether the permanent enters tapped or untapped. If a permanent is simply put onto the battlefield tapped without a replacement effect being applied, it always enters untapped if Archelos is untapped."},{"date":"2020-11-10","text":"If more than one Archelos is on the battlefield, the controller of an entering permanent chooses how to order the replacement effects."}],"rarities":["rare"]},"archon of redemption":{"name":"Archon of Redemption","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Archon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever this creature or another creature you control with flying enters, you may gain life equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"},{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control with flying enters, you may gain life equal to that creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"434e58f4-4237-454f-a2d0-61885c9aafaa","metadata":{"source_printing_ids":["1f7dfcf6-c41b-48d6-a3b4-4b4a7bed82eb","2243270a-2e7c-4239-af2e-9b6b47124237","a9e8eb41-3800-4553-843b-ec27a44e8d55"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["JMP","SCD","WWK"],"rulings":[{"date":"2010-03-01","text":"The creature’s power is determined as the triggered ability resolves, so it will take into account any effects that modify it. If the creature has left the battlefield by the time the triggered ability resolves, its last existence on the battlefield is checked to determine its power."}],"rarities":["rare"]},"argivian cavalier":{"name":"Argivian Cavalier","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Orc","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhen this creature enters, create a 1/1 white Soldier creature token.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Soldier","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Soldier"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 white Soldier creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c45090bd-a589-45a0-8388-025b8e0b3487","metadata":{"related_token_ids":["d3eecb4c-1ec3-5770-893f-3e89c455ebe9"],"source_printing_ids":["57746e72-ba9f-4717-a4a2-6c6a039080c3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"armored kincaller":{"name":"Armored Kincaller","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may reveal a Dinosaur card from your hand. If you do or if you control another Dinosaur, you gain 3 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Controller"},"card_filter":{"type":"Typed","type_filters":[{"Subtype":"Dinosaur"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Or","conditions":[{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Dinosaur"}],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may reveal a Dinosaur card from your hand. If you do or if you control another Dinosaur, you gain 3 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6aad6906-96ec-4994-bfc3-9a76f893bc8c","metadata":{"source_printing_ids":["223a1876-e413-4f07-ac39-c52d29384bef","b76a46a1-a63e-460a-98c5-699dd1c827aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["J25","LCI"],"rulings":[{"date":"2023-11-10","text":"Whether or not you control another Dinosaur is checked only as Armored Kincaller's ability is resolving. It doesn't matter if you still control Armored Kincaller at the time, or if it's still a Dinosaur."}],"rarities":["common"]},"artifact mutation":{"name":"Artifact Mutation","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. It can't be regenerated. Create X 1/1 green Saproling creature tokens, where X is that artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. It can't be regenerated. Create X 1/1 green Saproling creature tokens, where X is that artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"e77e8768-3ea8-44f9-aba6-1e023e006946","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","993318ee-4e8f-58a6-b55f-894b9310a3d9","b0e11732-60f4-5695-a354-73642be29b5d","b97a960d-5d34-5fd0-a94c-af7bb41c3edb"],"source_printing_ids":["ad22e43b-e244-43f2-bb2a-f94b777a4602","b2f5de3e-f3ca-439f-8b7c-f0b1807f34b4","b3bbecfc-0983-4ade-b00a-2bac2cad8d2f","d5eef49c-a80f-4622-ba77-999f9151c841","fed09083-a259-4ab5-bb85-aeab9d0b1f7c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C16","C20","INV","NCC","SLD"],"rulings":[{"date":"2004-10-04","text":"This spell is countered and you get no Saprolings if the artifact is an illegal target on resolution."}],"rarities":["rare"]},"ashaya, soul of the wild":{"name":"Ashaya, Soul of the Wild","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Variable","value":"*"},"toughness":{"type":"Variable","value":"*"},"loyalty":null,"defense":null,"oracle_text":"Ashaya's power and toughness are each equal to the number of lands you control.\nNontoken creatures you control are Forest lands in addition to their other types. (They're still affected by summoning sickness.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}}}},{"type":"SetDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":"~'s power and toughness are each equal to the number of lands you control."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"modifications":[{"type":"AddSubtype","subtype":"Forest"},{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Nontoken creatures you control are Forest lands in addition to their other types."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"162572f2-1757-42e9-bd97-e6bd9a762c0e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0a74b4e6-f6c9-4fef-a83c-a285a541e720","74943390-d25f-47cb-90bb-cbf70c87f4a2","813057d4-ec5b-4ec4-a6ad-8f53cc49b827","8a6a883f-55e2-43f5-90a9-34494c14c0c4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"A land that's a Forest has the intrinsic mana ability \"{T}: Add {G}.\""},{"date":"2020-09-25","text":"As long as Ashaya is on the battlefield, it's affected by its second ability and thus its first ability counts itself."},{"date":"2020-09-25","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to Ashaya may become lethal if lands you control leave the battlefield during that turn."},{"date":"2020-09-25","text":"The ability that defines Ashaya's power and toughness applies in all zones, not just the battlefield."},{"date":"2020-09-25","text":"You can't play creature cards as lands; you'll still have to cast them as spells, and they'll enter the battlefield as lands (in addition to their other types)."}],"rarities":["mythic"]},"assault":{"name":"Assault","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Assault deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 2 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"fcdeb83f-531c-4087-9254-7f19eb065f00","metadata":{"related_token_ids":["b804cdc2-1aaf-5dee-9760-fc9e88a37542","ed4b719a-b918-59b4-ba00-ecf427f0643f"],"source_printing_ids":["0ec6a889-c941-4898-a2f6-4d3863faf535","4a9f1e99-9de8-45cb-b035-4f920477e2e5","9b2ca0a2-0a18-4d9e-b953-52018af3c65b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"layout":"split","printings":["DMR","HOP","INV","TSB"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon","special"]},"assert perfection":{"name":"Assert Perfection","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to up to one target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to up to one target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecf574a5-6410-466d-a726-732134f904b2","metadata":{"source_printing_ids":["6995b308-5582-4ca1-ab10-a536d5ca0a6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL"],"rulings":[{"date":"2025-11-17","text":"If either target is an illegal target as Assert Perfection tries to resolve, the creature you control won't deal damage."}],"rarities":["common"]},"atarka's command":{"name":"Atarka's Command","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Your opponents can't gain life this turn.\n• Atarka's Command deals 3 damage to each opponent.\n• You may put a land card from your hand onto the battlefield.\n• Creatures you control get +1/+1 and gain reach until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantGainLife","affected":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"modifications":[{"type":"AddStaticMode","mode":"CantGainLife"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't gain life"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":3},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1},{"type":"AddKeyword","keyword":"Reach"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +1/+1 and gain reach"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"1943cbb0-2b12-4450-90af-060b8c8627c3","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Your opponents can't gain life this turn.","~ deals 3 damage to each opponent.","You may put a land card from your hand onto the battlefield.","Creatures you control get +1/+1 and gain reach until end of turn."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["903d78c9-c5b3-45c3-a6d0-7e92b4196ae3","c57b152e-c94e-4c10-9f0d-d960e878a430","fa86ff7b-04c7-415a-835b-ae9886f172df"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","DTK","HA5","PDTK"],"rulings":[{"date":"2015-02-25","text":"As the spell resolves, follow the instructions of the modes you chose in the order they are printed on the card. For example, if you chose the second and fourth modes of Ojutai's Command, you would gain 4 life and then draw a card. (The order won't matter in most cases.)"},{"date":"2015-02-25","text":"If a Command is copied, the effect that creates the copy will usually allow you to choose new targets for the copy, but you can't choose new modes."},{"date":"2015-02-25","text":"If all targets for the chosen modes become illegal before the Command resolves, the spell won't resolve and none of its effects will happen. If at least one target is still legal, the spell will resolve but will have no effect on any illegal targets."},{"date":"2015-02-25","text":"If you choose the third mode and put a land card onto the battlefield, that doesn't count as playing a land. For example, you can both play a land and put a land onto the battlefield this way during your turn."},{"date":"2015-02-25","text":"The first mode won't affect life that was gained earlier in the turn."},{"date":"2015-02-25","text":"You can choose a mode only if you can choose legal targets for that mode. Ignore the targeting requirements for modes that aren't chosen. For example, you can cast Ojutai's Command without targeting a creature spell provided you don't choose the third mode."},{"date":"2015-02-25","text":"You choose the two modes as you cast the spell. You must choose two different modes. Once modes are chosen, they can't be changed."}],"rarities":["rare"]},"augury adept":{"name":"Augury Adept","mana_cost":{"type":"Cost","shards":["WhiteBlue","WhiteBlue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kithkin","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to a player, reveal the top card of your library and put that card into your hand. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, reveal the top card of your library and put that card into your hand. You gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"be5a65fd-0d06-4771-bee7-0e42cc9871da","metadata":{"source_printing_ids":["4ba392e1-f310-4496-9d29-99a8783cc0f3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","SHM"],"rarities":["rare"]},"auntie ool, cursewretch":{"name":"Auntie Ool, Cursewretch","mana_cost":{"type":"Cost","shards":["Black","Red","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Warlock"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Ward—Blight 2. (To blight 2, a player puts two -1/-1 counters on a creature they control.)\nWhenever one or more -1/-1 counters are put on a creature, draw a card if you control that creature. If you don't control it, its controller loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":0}}}],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more -1/-1 counters are put on a creature, draw a card if you control that creature. If you don't control it, its controller loses 1 life.","constraint":null,"condition":null,"counter_filter":{"counter_type":"M1M1"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","Red"],"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"e3cd53c1-86bd-4177-adb0-a1fa693b44c6","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["9a2e4252-9fbc-4d43-8935-db2cafaa7b5f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["ECC"],"rulings":[{"date":"2025-11-17","text":"All of the -1/-1 counters must be put on a single creature. You can't choose to split them up between multiple creatures."},{"date":"2025-11-17","text":"If a creature has +1/+1 counters and -1/-1 counters on it, state-based actions remove the same number of each so that it has only one kind of those counters on it. For example, if a creature has three +1/+1 counters on it and two -1/-1 counters are put on it, state-based actions will remove two of each of those kinds of counters, leaving the creature with just one +1/+1 counter."},{"date":"2025-11-17","text":"If a creature that has +1/+1 counters on it receives enough -1/-1 counters to cause it to be destroyed by lethal damage or put into its owner's graveyard for having 0 or less toughness, effects that refer to the counters on that creature when it died will see all of those +1/+1 and -1/-1 counters."},{"date":"2025-11-17","text":"If you can't place -1/-1 counters on any creatures you control (probably because you control no creatures), you can't choose to blight."},{"date":"2025-11-17","text":"Once you've announced that you're casting a spell or activating an ability, players can't take actions until you've finished doing so. Notably, opponents can't try to destroy or otherwise remove your creatures to stop you from blighting as part of paying the cost of that spell or ability."},{"date":"2025-11-17","text":"The creature you choose to put -1/-1 counters on doesn't have to have enough toughness to survive the process. For example, if you blight 2, you can choose to put the counters on a 1/1 creature you control."}],"rarities":["mythic"]},"aura mutation":{"name":"Aura Mutation","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target enchantment. Create X 1/1 green Saproling creature tokens, where X is that enchantment's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target enchantment. Create X 1/1 green Saproling creature tokens, where X is that enchantment's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"19bb51dd-2b93-45f0-927d-bbafddadd0a3","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","b0e11732-60f4-5695-a354-73642be29b5d","b4472ae3-d346-5d13-8183-1aeeba37741d","b97a960d-5d34-5fd0-a94c-af7bb41c3edb"],"source_printing_ids":["0526debc-6eca-413e-b68c-50aa70927058","31bddc53-fa0c-4aa5-a92a-fa247e5330db","38421179-615e-4aba-91a4-503bfee05403","7240e52a-e435-46f1-ad68-96d6e12e123c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C16","INV","NCC","SCD"],"rulings":[{"date":"2004-10-04","text":"This spell doesn't resolve and you get no Saprolings if the enchantment is an illegal target on resolution."}],"rarities":["rare"]},"avatar destiny":{"name":"Avatar Destiny","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature you control\nEnchanted creature gets +1/+1 for each creature card in your graveyard and is an Avatar in addition to its other types.\nWhen enchanted creature dies, mill cards equal to its power. Return this card to its owner's hand and up to one creature card milled this way to the battlefield under your control.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, mill cards equal to its power. Return this card to its owner's hand and up to one creature card milled this way to the battlefield under your control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1},{"type":"AddSubtype","subtype":"Avatar"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+1 for each creature card in your graveyard and is an Avatar in addition to its other types."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecb81888-589b-4486-a444-e0c26384854e","metadata":{"source_printing_ids":["19b71bf7-d354-4729-a160-b85402c084f3","4d74da72-8443-4fce-9d64-d2041f6a3292"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rarities":["rare"]},"avatar roku":{"name":"Avatar Roku","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Avatar"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Firebending 4 (Whenever this creature attacks, add {R}{R}{R}{R}. This mana lasts until end of combat.)\n{8}: Create a 4/4 red Dragon creature token with flying and firebending 4.","non_ability_text":null,"flavor_name":null,"keywords":[{"Firebending":{"type":"Fixed","value":4}}],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Dragon","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"types":["Creature","Dragon"],"colors":["Red"],"keywords":["Flying",{"Firebending":{"type":"Fixed","value":4}}],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":8}},"sub_ability":null,"duration":null,"description":"{8}: Create a 4/4 red Dragon creature token with flying and firebending 4.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f26f270-26d9-46d3-957f-19f52d51eb03","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["566d2a4c-5be0-573a-964f-89a13982c567"],"source_printing_ids":["4a8bdef0-c50c-4a30-81bc-507a8289a81b","95f2f5af-d405-4534-8683-5a9001f997b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["PTLA","TLA"],"rarities":["mythic"]},"aven interrupter":{"name":"Aven Interrupter","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bird","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flash\nFlying\nWhen this creature enters, exile target spell. It becomes plotted. (Its owner may cast it as a sorcery on a later turn without paying its mana cost.)\nSpells your opponents cast from graveyards or from exile cost {2} more to cast.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"StackSpell"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"Plotted","turn_plotted":0},"target":{"type":"ParentTarget"},"grantee":{"type":"ObjectOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile target spell. It becomes plotted.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Raise","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InAnyZone","zones":["Graveyard","Exile"]}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"Opponent","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells your opponents cast from graveyards or from exile cost {2} more to cast."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d31fd12f-b4dd-4bc3-ace4-703dabd0f607","metadata":{"source_printing_ids":["75143fdb-5651-4289-86df-76c9655a0599","d3ca43a4-d194-440f-8099-f1fa103a108d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ","PWCS"],"rulings":[{"date":"2024-04-12","text":"Exiling a card using its plot ability is a special action. Once you announce you're taking that action, no other player can respond by trying to remove that card from your hand."},{"date":"2024-04-12","text":"If a plotted card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-04-12","text":"If the plotted card's owner casts it, the spell has no relation to the spell that player originally cast. Any choices made for the original spell or effects affecting the original spell aren't carried over to the new one."},{"date":"2024-04-12","text":"If you're casting a plotted card from exile without paying its mana cost, you can't choose to cast it for any other alternative costs. You can, however, pay additional costs, such as kicker costs. If the plotted card has any mandatory additional costs, those must still be paid to cast the spell."},{"date":"2024-04-12","text":"Plot abilities are written \"Plot [cost],\" which means \"Any time you have priority during your main phase while the stack is empty, you may pay [cost] and exile this card from your hand. It becomes plotted.\""},{"date":"2024-04-12","text":"Spells that can't be countered can still be exiled by Aven Interrupter's triggered ability. They won't resolve."},{"date":"2024-04-12","text":"You can't cast a plotted card on the same turn it became plotted. On any future turn, you may cast that card from exile without paying its mana cost during your main phase while the stack is empty."},{"date":"2024-06-07","text":"If an instant or a card with flash is plotted this way, you can still cast it only when you have priority during your main phase while the stack is empty."}],"rarities":["rare"]},"backlash":{"name":"Backlash","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature. That creature deals damage equal to its power to its controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Untapped"}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature. That creature deals damage equal to its power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"3db9bf7b-da4e-428f-aa5d-a0cd1afeb16c","metadata":{"source_printing_ids":["a3a1d840-a5b0-449a-a1ba-95f3d9bff008","dadf030d-5451-43fc-bf0c-c1629fdf88ec"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["INV","PLST"],"rulings":[{"date":"2004-10-04","text":"Being untapped is a targeting restriction. If the target is tapped before this spell resolves, then this spell doesn’t resolve."}],"rarities":["uncommon"]},"badgermole cub":{"name":"Badgermole Cub","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Badger","Mole"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, earthbend 1. (Target land you control becomes a 0/0 creature with haste that's still a land. Put a +1/+1 counter on it. When it dies or is exiled, return it to the battlefield tapped.)\nWhenever you tap a creature for mana, add an additional {G}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 1.","constraint":null,"condition":null,"batched":false},{"mode":"TapsForMana","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"],"contribution":"Additional"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you tap a creature for mana, add an additional {G}.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2b0afb89-0944-4861-b9c3-e909e2ac215e","metadata":{"source_printing_ids":["340c5799-4964-44dd-8c48-8f3f3aba5211","be16c053-99e1-4921-8530-5135c989149d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"An ability that triggers \"whenever you tap a creature for mana\" triggers only if you activate a mana ability of a creature including {T} in its cost. Mana abilities that don't include the {T} symbol and instead say \"Tap an untapped creature you control\" or similar won't cause Badgermole Cub's second ability to trigger. Similarly, it won't trigger if you tap a creature to activate a mana ability of another object (even if that mana ability also includes {T})."},{"date":"2025-10-02","text":"Badgermole Cub's last ability is a triggered mana ability. It doesn't use the stack and can't be responded to."}],"rarities":["mythic"]},"balance":{"name":"Balance","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player chooses a number of lands they control equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"ScopedPlayer","properties":[]}}},"right":{"type":"Ref","qty":{"type":"ControlledByEachPlayer","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"aggregate":"Min"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"ScopedPlayer"}}},"right":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"AllPlayers","aggregate":"Min"}}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Difference","left":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]}}},"right":{"type":"Ref","qty":{"type":"ControlledByEachPlayer","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"aggregate":"Min"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":"Each player chooses a number of lands they control equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"17fa98cd-ed8f-483f-9525-7e989a82ebb2","metadata":{"source_printing_ids":["0caf528a-1a26-4bf2-bb82-2dbbe4681d74","0f2c32a0-ee97-4239-94e3-aabab91dab83","107cfaa9-3457-4f59-89ad-4c7b57a87f14","1896db0e-efd3-46a6-8f98-eb744bbac72f","3095d590-f105-4338-b96c-4fc2972912ca","39a28a50-3130-485d-975c-26a0f40681a3","3f4f3c43-11bb-4678-b8fe-11e55a7d7831","5086b4dc-8066-4487-bd09-a04432291a54","6f9ea46a-411f-40ce-a873-a905180093f4","7ecf2cae-8bb6-48a9-9fb0-2930ce2a540a","8352e8b6-c947-49f3-a653-a6af65d3e9c3","8745833d-fa67-4af7-9f35-534ad99e7bef","8bf4940c-e83d-434a-80bb-48b087165379","a21b08d4-b43d-4c93-99e7-39dfe83ced91","a8619034-173c-4950-a0b4-1ae1dcfd0bc5","b17530a1-7be3-4af3-aa98-9476c69fa766","ce648aa3-098b-4af0-a433-fd290bc85904","d2823b1d-39bf-41ee-8e8b-99f12797408e","db3e219d-8e5e-44c7-97b3-2d489e2808b9","f48bc615-b40c-4c9d-9eda-a4f1cae6ac75","f5f345ec-d0a5-461f-b78f-5f888c6a828b"]},"legalities":{"commander":"banned","duel":"banned","legacy":"banned","oathbreaker":"banned","premodern":"banned","vintage":"restricted"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","EMA","FBB","G04","LEA","LEB","ME4","OLEP","PLST","PRM","PTC","SLD","SUM","V09","VMA"],"rulings":[{"date":"2016-06-08","text":"Balance doesn't have targets, so permanents that can't be targeted, such as a creature with shroud or protection from white, are valid choices to be sacrificed."},{"date":"2016-06-08","text":"Each type of object is counted during the corresponding part of the process. Cards in hand are counted after lands have been sacrificed, and creatures on the battlefield are counted after cards have been discarded. Thus, a land creature sacrificed to the first part of the spell would not be counted when determining how many creatures are on the battlefield for the last part."},{"date":"2016-06-08","text":"First the player whose turn it is chooses which lands (if any) to keep, then each other player in turn order does the same. Each player will know the choices made by the players who chose before them. All of the unchosen lands are then sacrificed simultaneously. Then the process is repeated for cards in hand, except that no cards are revealed until all players have chosen what to discard, at which point those cards are all discarded simultaneously. Lastly, the process is repeated for creatures, and players will again know earlier choices made when deciding what to sacrifice. All of the unchosen creatures are then sacrificed simultaneously."}],"rarities":["rare","mythic"]},"balduvian berserker":{"name":"Balduvian Berserker","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kor","Berserker"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhen this creature dies, it deals damage equal to its power to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, it deals damage equal to its power to any target.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"3a7b1d1c-1724-4208-943b-650a5d773653","metadata":{"source_printing_ids":["c35bab2f-8464-4968-8c50-8807638d687b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To determine the amount of damage it deals, use Balduvian Berserker’s power as it last existed on the battlefield, not its power in the graveyard."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"baleful mastery":{"name":"Baleful Mastery","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may pay {1}{B} rather than pay this spell's mana cost.\nIf the {1}{B} cost was paid, an opponent draws a card.\nExile target creature or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":0}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"If the {1}{B} cost was paid, an opponent draws a card.\nExile target creature or planeswalker.","target_prompt":null,"condition":{"type":"AlternativeManaCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"adfcdadd-ddda-477b-8e72-0cae2430fb63","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"metadata":{"source_printing_ids":["26e07454-2cca-4b9e-b175-e97c65b0d7b5","35f1a6ba-e46f-44fb-93f4-fb883d677b36","579e20e7-1395-4a6c-a836-ae3419fc8808","fcefe86f-9998-4259-bf71-2b2ed1d6bf50"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["OTC","PLST","PRM","PSTX","STX"],"rulings":[{"date":"2021-04-16","text":" If an effect increases or decreases the cost of spells you cast, that cost increase or decrease is applied to the alternative cost you chose to pay. In that case, the cost was still paid for the purposes of the effect, even if you paid more or less for it when it was cast."},{"date":"2021-04-16","text":" If you choose to pay one alternative cost, you can't pay any other alternative costs. For example, if an effect lets you cast a \"Mastery\" spell \"without paying its mana cost,\" you can't also choose to pay its given alternative cost."},{"date":"2021-04-16","text":" If you copy a \"Mastery\" spell and the alternative cost was paid, the copy will resolve as though the cost was paid."},{"date":"2021-04-16","text":" In a multiplayer game, you choose which opponent takes the prescribed action as the spell resolves."},{"date":"2021-04-16","text":" The mana value of a spell on the stack is determined by its mana cost, not any alternative costs you used to pay for it."}],"rarities":["rare"]},"balloon stand":{"name":"Balloon Stand","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Attraction"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Visit — Choose one.\n• Create a 1/1 red Balloon creature token with flying.\n• Sacrifice a Balloon. If you do, target creature gains flying until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"• Create a 1/1 red Balloon creature token with flying."},"cost":null,"sub_ability":null,"duration":null,"description":"• Create a 1/1 red Balloon creature token with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"• Sacrifice a Balloon. If you do, target creature gains flying until end of turn."},"cost":null,"sub_ability":null,"duration":null,"description":"• Sacrifice a Balloon. If you do, target creature gains flying until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"VisitAttraction","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"choose","description":"Choose one"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":null,"constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"abb6f51b-2a14-44ac-8c19-e135c9deb1ea","metadata":{"related_token_ids":["aeaa0582-78d4-5bbb-848d-472aa3bbb01c"],"source_printing_ids":["26bb8928-8178-439b-803e-35f5681b8ff4","2e9eaed8-e956-4fb2-a23d-3d442cd2fa5c","41a7de59-f3d4-4092-b23d-0e519a108ced","7412ea3f-646c-41bd-be94-cf2a2c0cee14"]},"legalities":{"commander":"legal","duel":"banned","oathbreaker":"banned"},"printings":["UNF"],"rarities":["uncommon"]},"baneful omen":{"name":"Baneful Omen","mana_cost":{"type":"Cost","shards":["Black","Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, you may reveal the top card of your library. If you do, each opponent loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may reveal the top card of your library. If you do, each opponent loses life equal to that card's mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc1711cf-c62b-436b-ba35-56bef8ef14d0","metadata":{"source_printing_ids":["2bff6e03-b6af-4f54-b365-9a6db2dbb595"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ROE"],"rarities":["rare"]},"baneslayer angel":{"name":"Baneslayer Angel","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying, first strike, lifelink, protection from Demons and from Dragons","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Flying","Lifelink",{"Protection":{"CardType":"demons"}},{"Protection":{"CardType":"dragons"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0e11792b-7fe5-4208-aa0b-e5d09b2b65fe","metadata":{"source_printing_ids":["0b0974b4-b306-4026-b0a8-22bd9da3e384","4bd3014b-94bb-4a9f-92cf-239a2dcc7e97","6764ea7b-ccb3-4f39-b8ba-654a186210b9","ff70c4ff-a241-4333-bd8f-9f0ed5a0333b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M11","M21","PM21","PRM","V15"],"rulings":[{"date":"2009-10-01","text":"“Protection from Demons and from Dragons” means the following: -- Baneslayer Angel can't be blocked by creatures with the creature type Demon or the creature type Dragon. -- Baneslayer Angel can't be targeted abilities from sources with the creature type Demon or the creature type Dragon, or by spells with either of those types. -- All damage that would be dealt to Baneslayer Angel by sources with the creature type Demon or the creature type Dragon is prevented. -- Baneslayer Angel can't be enchanted by Auras or equipped by artifacts that have somehow gotten the creature type Demon or the creature type Dragon."}],"rarities":["mythic"]},"banewasp affliction":{"name":"Banewasp Affliction","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, that creature's controller loses life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, that creature's controller loses life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c1cb870a-8c1f-435c-b678-e456c4d2d627","metadata":{"source_printing_ids":["fef85030-d591-407d-8045-c595326dd6fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ALA","PS11"],"rulings":[{"date":"2008-10-01","text":"The player who loses life is the player who controlled the creature when it was put into a graveyard. This may not be the player whose graveyard it was put into. That player loses life equal to the creature’s toughness as it last existed on the battlefield."}],"rarities":["common"]},"barbarian class":{"name":"Barbarian Class","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nIf you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll.\n{1}{R}: Level 2\nWhenever you roll one or more dice, target creature you control gets +2/+0 and gains menace until end of turn.\n{2}{R}: Level 3\nCreatures you control have haste.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"If you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll."},"cost":null,"sub_ability":null,"duration":null,"description":"If you would roll one or more dice, instead roll that many dice plus one and ignore the lowest roll.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{R}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":2}},"sub_ability":null,"duration":null,"description":"{2}{R}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"RolledDie","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Menace"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +2/+0 and gains menace"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you roll one or more dice, target creature you control gets +2/+0 and gains menace until end of turn.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":true}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"ClassLevelGE","level":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control have haste."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"59faa1b9-17aa-4f2c-a8f8-17ab50392b36","metadata":{"source_printing_ids":["647c2269-bdc7-4455-9158-73abbff6e50e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rulings":[{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"barkweave crusher":{"name":"Barkweave Crusher","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cbac75c6-6006-4025-b893-8828965b5f97","metadata":{"source_printing_ids":["41c62c55-7b04-4987-9047-1322c842bb59"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"barrensteppe siege":{"name":"Barrensteppe Siege","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Abzan or Mardu.\n• Abzan — At the beginning of your end step, put a +1/+1 counter on each creature you control.\n• Mardu — At the beginning of your end step, if a creature died under your control this turn, each opponent sacrifices a creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, put a +1/+1 counter on each creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Abzan"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if a creature died under your control this turn, each opponent sacrifices a creature of their choice.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"And","conditions":[{"type":"ChosenLabelIs","label":"Mardu"},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ZoneChangeCountThisTurn","from":"Battlefield","to":"Graveyard","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Abzan","Mardu"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Abzan or Mardu.","condition":null,"destination_zone":"Battlefield"}],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"228d3307-69a9-45ce-a610-77754ed50877","metadata":{"source_printing_ids":["2556a35b-2229-42c7-8cb3-c8c668403dd2","c09d4015-f101-4529-a603-c66192dcfd92"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Barrensteppe Siege’s Mardu ability will check as the end step starts to see if a creature died under your control this turn. If none did, the ability won’t trigger at all."},{"date":"2025-04-04","text":"If you somehow control Barrensteppe Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"bartz and boko":{"name":"Bartz and Boko","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Bird"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Affinity for Birds (This spell costs {1} less to cast for each Bird you control.)\nWhen Bartz and Boko enters, each other Bird you control deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[{"Affinity":{"type_filters":[{"Subtype":"Bird"}],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each other Bird you control deals damage equal to its power to target creature an opponent controls.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2d995c47-e548-4fc4-9182-fef46af20ca5","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1b9a92f8-2044-4554-aec9-00b410dada35","d818d574-2832-4a7a-a13b-aa6e695fdaa5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Bartz and Boko's last ability targets only one creature, regardless of how many Birds you control."}],"rarities":["rare"]},"battery":{"name":"Battery","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create a 3/3 green Elephant creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Elephant","power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"types":["Creature","Elephant"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Create a 3/3 green Elephant creature token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"fcdeb83f-531c-4087-9254-7f19eb065f00","metadata":{"related_token_ids":["b804cdc2-1aaf-5dee-9760-fc9e88a37542","ed4b719a-b918-59b4-ba00-ecf427f0643f"],"source_printing_ids":["0ec6a889-c941-4898-a2f6-4d3863faf535","4a9f1e99-9de8-45cb-b035-4f920477e2e5","9b2ca0a2-0a18-4d9e-b953-52018af3c65b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"layout":"split","printings":["DMR","HOP","INV","TSB"],"rarities":["uncommon","special"]},"bear cub":{"name":"Bear Cub","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bear"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ed206651-3d9b-4546-8d45-0682817192fd","metadata":{"source_printing_ids":["1ceb41a1-c5fb-4d4b-b063-d24820007040","a3d36d12-22e4-4889-8f01-5f54de39e379","d8662ebb-068b-41d2-b504-4b5854e4d4aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J21","P02","PLST"],"rarities":["common"]},"beastie beatdown":{"name":"Beastie Beatdown","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control and target creature an opponent controls.\nDelirium — If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.\nThe creature you control deals damage equal to its power to the creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose target creature you control and target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Delirium — If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.\nThe creature you control deals damage equal to its power to the creature an opponent controls.","target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"DistinctCardTypes","source":{"type":"Zone","zone":"Graveyard","scope":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"3da5fbe2-e47b-4a1d-9e73-393f37314fa3","metadata":{"source_printing_ids":["5f889c95-46af-4fd9-aff2-573d5384fd58"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"If either creature is an illegal target as Beastie Beatdown tries to resolve, the creature you control won't deal damage. If the creature you control is an illegal target, you won't put two +1/+1 counters on it even if you have delirium."},{"date":"2024-09-20","text":"You can't cast Beastie Beatdown unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"belbe, corrupted observer":{"name":"Belbe, Corrupted Observer","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Phyrexian","Zombie","Elf"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each postcombat main phase, the active player adds {C}{C} for each of your opponents who lost life this turn. (Damage causes loss of life.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"OpponentLostLife"}}}}},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PostCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each postcombat main phase, the active player adds {C}{C} for each of your opponents who lost life this turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"f1c303d8-6d77-4bc6-82d1-2a409a6f2cfd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["b4427e73-8c60-490d-8ae3-53e872a5163e","ee6c3f6e-3c46-47b2-abcc-8aeb2f12d2fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"If an effect creates an additional combat phase in a turn, it may also create an additional main phase after that combat phase. Belbe's ability triggers at the beginning of each of these postcombat main phases."},{"date":"2020-11-10","text":"If an opponent loses life before their own postcombat main phase, Belbe will reward their suffering with mana."},{"date":"2020-11-10","text":"If an opponent lost life and subsequently lost the game, Belbe's triggered ability still counts that player to determine how much mana to add."}],"rarities":["rare"]},"benalish faithbonder":{"name":"Benalish Faithbonder","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Vigilance"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"278db664-4235-40f0-a926-3074a0e038c1","metadata":{"source_printing_ids":["084d77df-a899-406f-9d79-e3fa3abeaebc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"benalish knight-counselor":{"name":"Benalish Knight-Counselor","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Enlist\nWhenever Benalish Knight-Counselor enlists a creature, you get a one-time boon with \"When you cast a creature spell, that creature enters with a +1/+1 counter on it.\"","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"\"when you cast a creature spell, that creature enters with a +1/+1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Whenever ~ enlists a creature, you get a one-time boon with \"When you cast a creature spell, that creature enters with a +1/+1 counter on it.\"","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e792e7d3-43c3-4a99-be04-318af41399b0","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDMU"]},"betor, ancestor's voice":{"name":"Betor, Ancestor's Voice","mana_cost":{"type":"Cost","shards":["White","Black","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit","Dragon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nAt the beginning of your end step, put a number of +1/+1 counters on up to one other target creature you control equal to the amount of life you gained this turn. Return up to one target creature card with mana value less than or equal to the amount of life you lost this turn from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"LifeLostThisTurn","player":{"type":"Controller"}}}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, put a number of +1/+1 counters on up to one other target creature you control equal to the amount of life you gained this turn. Return up to one target creature card with mana value less than or equal to the amount of life you lost this turn from your graveyard to the battlefield.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","White"],"color_identity":["Black","Green","White"],"scryfall_oracle_id":"990b5e12-6e04-4832-9d64-87278f12cbda","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2e261489-8dde-4594-8868-69f432f03d03"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TDC"],"rarities":["mythic"]},"birthing ritual":{"name":"Birthing Ritual","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, if you control a creature, look at the top seven cards of your library. Then you may sacrifice a creature. If you do, you may put a creature card with mana value X or less from among those cards onto the battlefield, where X is 1 plus the sacrificed creature's mana value. Put the rest on the bottom of your library in a random order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":7},"destination":"Battlefield","keep_count":1,"up_to":true,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}},"offset":1}}]},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you control a creature, look at the top seven cards of your library. Then you may sacrifice a creature. If you do, you may put a creature card with mana value X or less from among those cards onto the battlefield, where X is 1 plus the sacrificed creature's mana value. Put the rest on the bottom of your library in a random order.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ControlsType","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"37a5ab64-12e4-4aad-9a09-46a26fe9953b","metadata":{"source_printing_ids":["004bbc84-b57b-4393-889e-dff95e8f334c","4820d223-4ea1-4850-931c-3d2ab5eb003b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Birthing Ritual's ability checks if you control a creature at the beginning of your end step. If you don't, the ability won't trigger."},{"date":"2024-06-07","text":"If Birthing Ritual's ability does trigger but you control no creatures when it tries to resolve, the ability will do nothing."},{"date":"2024-06-07","text":"If one of the revealed creature cards has {X} in its mana cost, X is 0 when determining that card's mana value."},{"date":"2024-06-07","text":"Use the mana value of the sacrificed creature as it last existed on the battlefield to determine the value of X."}],"rarities":["mythic"]},"bite down on crime":{"name":"Bite Down on Crime","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, you may collect evidence 6. This spell costs {2} less to cast if evidence was collected. (To collect evidence 6, exile cards with total mana value 6 or greater from your graveyard.)\nTarget creature you control gets +2/+0 until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +2/+0 until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"AdditionalCostPaid"},"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {2} less to cast if evidence was collected."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ff387264-31da-4f6b-88c6-2843f56acbda","additional_cost":{"type":"Optional","data":{"cost":{"type":"CollectEvidence","amount":6}}},"metadata":{"source_printing_ids":["29bbfe93-8225-444c-835b-33ffa006ef66"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM"],"rulings":[{"date":"2024-02-02","text":"If either target is an illegal target as Bite Down on Crime tries to resolve, the creature you control won't deal damage."},{"date":"2024-02-02","text":"If you can't exile enough cards to meet or exceed the required mana value, you can't choose to collect evidence at all."},{"date":"2024-02-02","text":"Once you've announced that you're casting a spell, players can't take actions until you've finished doing so. Notably, opponents can't try to remove cards from your graveyard to stop you from collecting evidence."}],"rarities":["common"]},"blood artist":{"name":"Blood Artist","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or another creature dies, target player loses 1 life and you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever ~ or another creature dies, target player loses 1 life and you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"310f141c-7f37-4729-aed6-dd9c09db448d","metadata":{"source_printing_ids":["036f387a-8dee-482e-b3e3-cf79b54c61e1","1bcda0fd-0def-41ef-932a-85e83acce99d","2e1fb442-68ff-4249-8e44-87edf6fae211","465d8c18-c76b-488a-a4ec-ec0d2267a307","5587191b-b56a-452d-8a18-1622df83c267","693dd112-d04a-4404-8fce-74f7e5497312","7752646a-463d-4fdd-8754-e41ef8107108","877558c4-f633-4510-97db-f1205a080ecb","8a5b65ed-250c-42a6-84c0-ac06662ca5ed","9ca6d92a-45d3-4d67-8ae9-f25dd4a86739","b5275d76-2947-4219-be21-614c7421614a","b7f1c316-cf2f-4bbf-89a1-79c8043bdd96","c4c1641d-c4ea-4657-a0ae-db09bba83a0f","cf25a260-009c-44d5-86b5-b027329a6ff8","e93e65d6-c2c8-4ab6-9296-7b21ff2ff8bf","fe97a73f-33fd-4394-a393-ceb41a214820"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","AVR","C17","DSC","EMA","INR","J22","JMP","LCC","PLST","PRM","SLD","SOC","VOC"],"rulings":[{"date":"2016-06-08","text":"If Blood Artist and one or more other creatures die at the same time, its ability will trigger for each of those creatures."}],"rarities":["uncommon","rare"]},"blood poet":{"name":"Blood Poet","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Spark (Activate spark abilities by spending or giving yourself spark counters. Activate only one spark ability per turn, and only as a sorcery.)\n[+1]: Blood Poet gains lifelink until end of turn.\n[−3]: Target opponent discards a card. You gain life equal to its converted mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Spark"},"cost":null,"sub_ability":null,"duration":null,"description":"Spark","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Lifelink"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain lifelink"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[+1]: ~ gains lifelink until end of turn.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Target opponent discards a card. You gain life equal to its converted mana cost.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c74655d1-25a2-4208-8507-95fccff2a694","metadata":{"source_printing_ids":["841c3f47-ee6d-4a87-9c5b-57a911b312fe","c3783d59-c2cc-4fff-afd7-c32418fa36ec"]},"legalities":{},"printings":["CMB1","CMB2"],"rulings":[{"date":"2019-11-12","text":"If Blood Poet loses spark, its spark abilities can’t be activated."},{"date":"2019-11-12","text":"You can activate only one spark ability from among permanents you control each turn, no matter how many permanents you control with spark abilities."}],"rarities":["rare"]},"bloodghast":{"name":"Bloodghast","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Spirit"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"This creature can't block.\nThis creature has haste as long as an opponent has 10 or less life.\nLandfall — Whenever a land you control enters, you may return this card from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Graveyard"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, you may return this card from your graveyard to the battlefield.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"Opponent","aggregate":"Min"}}},"comparator":"LE","rhs":{"type":"Fixed","value":10}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ has haste as long as an opponent has 10 or less life."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e97f9c2b-b41e-4f36-9245-77c0ac125647","metadata":{"source_printing_ids":["08e01310-d192-41e9-a6f0-0edbd6fb3cfb","2cdbfc1d-b8f3-4e46-ac60-7fbf8fade29e","3489de46-e90c-483e-ac2b-547497f64e82","4560bd1f-eb63-45bc-a8c7-b5de200facc9","63870c81-63bf-4a9a-aeb5-74c6eaded9f1","730c521f-ba12-48fb-b18f-6bb55423a551","77534750-fa92-42b4-8f32-be437eca64ad","87089d28-46a7-4247-a784-c34b9f822172","97d42d32-c9c8-4def-a48b-0590ea572e33","cee85485-598f-4dfc-aa0b-7b1de86c7788","fdceefe6-f083-4955-b53a-8e6f8aeb2083"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT","HA7","IMA","LCC","PDFT","PLST","SLD","SOC","ZEN"],"rulings":[{"date":"2009-10-01","text":"Bloodghast's landfall ability triggers only if it's already in your graveyard at the time a land enters under your control."},{"date":"2025-07-25","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2025-07-25","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2025-07-25","text":"Whenever a land you control enters, each landfall ability of permanents you control will trigger. You can put them on the stack in any order. The last ability you put on the stack will be the first one to resolve. As a result, you can have those abilities resolve in the order of your choosing."}],"rarities":["rare"]},"bog imp":{"name":"Bog Imp","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Imp"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying (This creature can't be blocked except by creatures with flying or reach.)","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"45b94e3c-a905-435b-aee5-bec9239fd24c","metadata":{"source_printing_ids":["0aa5efb5-d893-4126-af86-28a29e029ea8","33eb7e04-dc9f-40ee-93d1-39df5e9e8f1f","79073387-b835-4079-aa22-76c866488fbe","7f1e2c65-d2b0-4bf7-b302-d755e9259ce2","846f5cda-3d93-4dfd-b1c3-1dff7b814d98","94903771-d0d0-49dd-b28a-438ef4bdf416","c11924b2-c290-47a1-803d-b00c433cf840","c50c3053-3cf3-40d3-bc9e-2fc292f11c34","cea56b32-e0cc-4261-a5a8-c85cb6bd55ad","d3f70e3a-b094-45f9-8e34-02db116292ce","e3bb7271-634a-4612-9073-7a5438e8c2b8","fa02b4a5-8302-483c-9f38-b559974a601c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["4BB","4ED","5ED","6ED","7ED","8ED","9ED","DRK","ITP","POR","REN","RQS","S99"],"rarities":["common"]},"bolas's citadel":{"name":"Bolas's Citadel","mana_cost":{"type":"Cost","shards":["Black","Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may play lands and cast spells from the top of your library. If you cast a spell this way, pay life equal to its mana value rather than pay its mana cost.\n{T}, Sacrifice ten nonland permanents: Each opponent loses 10 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":10}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"count":10}]},"sub_ability":null,"duration":null,"description":"{T}, Sacrifice ten nonland permanents: Each opponent loses 10 life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Play","alt_cost":{"type":"PayLife","amount":{"type":"Ref","qty":{"type":"SelfManaValue"}}}}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands and cast spells from the top of your library. If you cast a spell this way, pay life equal to its mana value rather than pay its mana cost."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2bd111bb-ce02-414c-b5b7-e0e037d8d96b","metadata":{"source_printing_ids":["5a16665a-2600-460a-a5ad-417930fda62c","7572bb1d-0578-4ebb-9180-dbb709ec9a5c","d2124603-d20e-40eb-97f0-a66323397ac2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","MB2","PLG21","PRM","PWAR","SLD","WAR"],"rulings":[{"date":"2019-05-03","text":"Bolas's Citadel lets you look at the top card of your library whenever you want (with one restriction—see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2019-05-03","text":"Bolas's Citadel may be one of the permanents you sacrifice to activate its last ability."},{"date":"2019-05-03","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2019-05-03","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast the top card of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2019-05-03","text":"If you cast a spell for another cost \"rather than pay its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, such as that of Spark Harvest, those must be paid to cast the card."},{"date":"2019-05-03","text":"In a Two-Headed Giant game, the last ability of Bolas's Citadel causes the opposing team to lose 20 life."},{"date":"2019-05-03","text":"You can play a land card from the top of your library only if you have available land plays remaining."},{"date":"2019-05-03","text":"You must follow the normal timing permissions and restrictions of the cards you play from your library."}],"rarities":["rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"bonecrusher giant":{"name":"Bonecrusher Giant","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature becomes the target of a spell, this creature deals 2 damage to that spell's controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"TriggeringSpellController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"Whenever ~ becomes the target of a spell, ~ deals 2 damage to that spell's controller.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d72f5f-8f5d-4180-b514-f22ff5482902","metadata":{"source_printing_ids":["09fd2d9c-1793-4beb-a3fb-7a869f660cd4","3a6431fd-4b79-488e-a0c0-57731616bd08","b5b71cd2-de35-451f-b16e-2e3936169407","c402a722-d412-4598-8a1e-edb889b957e8","ff984a4c-1818-4f8f-a9d7-fce57e77937d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["CLB","ELD","PELD","PLST","PRM"],"rulings":[{"date":"2019-10-04","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Giant Killer is a white creature card whose mana value is 1. It can't be the target of the triggered ability of Mystic Sanctuary."},{"date":"2019-10-04","text":"Bonecrusher Giant's ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2019-10-04","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2019-10-04","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to cast it as a permanent later."},{"date":"2019-10-04","text":"If a spell targets Bonecrusher Giant more than once, its ability triggers only once."},{"date":"2019-10-04","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to cast it as a permanent spell."},{"date":"2019-10-04","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to cast the copy as a permanent."},{"date":"2019-10-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2019-10-04","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2019-10-04","text":"If the chosen target is an illegal target by the time Stomp tries to resolve, the spell won't resolve. Damage can be prevented as usual."},{"date":"2019-10-04","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if Giant Killer is exiled with the last ability of Vivien, Champion of the Wilds, you can't cast it as Chop Down."},{"date":"2019-10-04","text":"Protection prevents damage, so protection will be unable to prevent damage after Stomp has resolved. However, this won't allow a spell or ability to target illegally, even if that spell or ability would cause damage to be dealt."},{"date":"2019-10-04","text":"Stomp only stops damage from being prevented by effects that specifically use the word \"prevent.\""},{"date":"2019-10-04","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2019-10-04","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you'll be able to cast it only during your main phase while the stack is empty."}],"rarities":["rare"]},"bonesplitter":{"name":"Bonesplitter","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Equipped creature gets +2/+0.\nEquip {1}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":null,"duration":null,"description":"Equip {1}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature gets +2/+0."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"452e3f5f-ce17-4682-966b-5cc100210aee","metadata":{"source_printing_ids":["465a7990-c9f9-4716-a833-fd41458b9cee","690972a8-72df-4050-a353-16e45589167c","b09dad6d-ec9a-40b4-b136-7a8b58a42a3b","bda22fad-8149-42fb-b915-2c2580efb353"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["CMR","HA4","MMA","MRD","PAL03","PLST","PRM","PSAL","TD0","TD2"],"rarities":["common"]},"boon reflection":{"name":"Boon Reflection","mana_cost":{"type":"Cost","shards":["White"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would gain life, you gain twice that much life instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"GainLife","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would gain life, you gain twice that much life instead.","condition":null}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b86d3142-568a-4eea-b1ae-5fcfc1453533","metadata":{"source_printing_ids":["0d4032a7-600c-4b30-a012-fe3cde1be9c9","1a27ba4d-53af-427d-9e51-be04db077fac"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","SHM"],"rulings":[{"date":"2020-08-07","text":"If an effect would set your life total to a specific number that's higher than your current life total, that effect would cause you to gain life equal to the difference. Boon Reflection will then double the amount of life that effect would cause you to gain. For example, if you have 3 life and an effect says that your life total “becomes 10,” your life total will actually become 17."},{"date":"2020-08-07","text":"In a Two-Headed Giant game, only Boon Reflection's controller is affected by it. If that player's teammate gains life, Boon Reflection will have no effect, even when that life gain is applied to the shared team life total."},{"date":"2020-08-07","text":"The effects of multiple Boon Reflections are cumulative. For example, if you control two Boon Reflections, you'll gain four times the original amount of life. If you control three Boon Reflections, you'll gain eight times the original amount, and so on."}],"rarities":["rare"]},"boros fury-shield":{"name":"Boros Fury-Shield","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Prevent all combat damage that would be dealt by target attacking or blocking creature this turn. If {R} was spent to cast this spell, Boros Fury-Shield deals damage to that creature's controller equal to the creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"CombatDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ManaColorSpent","color":"Red","minimum":1},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"20eff2ce-f26d-48a2-8a1f-435a7e2968c8","metadata":{"source_printing_ids":["c46b2f5c-3c7a-4421-9d6f-81197e93d8d0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["RAV"],"rulings":[{"date":"2005-10-01","text":"If red mana was spent, Boros Fury-Shield, not the target creature, deals the damage to the creature’s controller."}],"rarities":["common"]},"bottle golems":{"name":"Bottle Golems","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"46334ae3-e496-4f15-8033-0f42ee0ae375","metadata":{"source_printing_ids":["513a36a1-b2e3-4779-b8a7-66f01c488bf0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["MH2"],"rulings":[{"date":"2021-06-18","text":"Use Bottle Golems' power when it was on the battlefield to determine the amount of life you gain. This may be different than its power in the graveyard."}],"rarities":["common"]},"boulderbranch golem":{"name":"Boulderbranch Golem","mana_cost":{"type":"Cost","shards":[],"generic":7},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Prototype {3}{G} — 3/3 (You may cast this spell with different mana cost, color, and size. It keeps its abilities and types.)\nWhen this creature enters, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[{"Prototype":{"cost":{"type":"Cost","shards":["Green"],"generic":3},"power":3,"toughness":3}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"82caf3e2-da42-4851-b4db-546e2403c4bf","metadata":{"source_printing_ids":["6e6e5338-9b95-4ac7-a57c-5efaa6423531"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRO"],"rulings":[{"date":"2022-10-14","text":"A prototype card is a colorless card in every zone except the stack or the battlefield, as well as while on the stack or the battlefield if not cast as a prototyped spell. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Blitz Automaton is a colorless creature card with mana value 7. It can't be the target of Recommission, a spell that targets an artifact or creature card with mana value 3 or less in your graveyard."},{"date":"2022-10-14","text":"Casting a prototyped spell isn't the same as casting it for an alternative cost, and an alternative cost may be applied to a spell cast this way. For example, if an effect allows you to cast an artifact card without paying its mana cost, you could either cast Blitz Automaton normally, or as a prototyped spell."},{"date":"2022-10-14","text":"If Boulderbranch Golem leaves the battlefield before its enters-the-battlefield triggered ability resolves, use its power as it last existed on the battlefield to determine how much life is gained, not its power in the zone it moved to."},{"date":"2022-10-14","text":"If an effect copies a prototyped spell, that copy (as well as the token it becomes on the battlefield) will have the same characteristics as the prototyped spell. Similarly, if an effect creates a token that's a copy of a prototyped permanent or causes another permanent to become a copy of it, the copy would have the same characteristics as the prototyped permanent."},{"date":"2022-10-14","text":"Regardless of how it was cast, a prototype card always has the same name, abilities, types, and so on. Only the mana cost, mana value, color, power, and toughness change depending on whether the card was cast as a prototyped spell."},{"date":"2022-10-14","text":"The prototype ability functions in any zone that the spell could be cast from. For example, if an effect allows you to cast artifact spells from your graveyard, you could cast a prototyped Blitz Automaton from your graveyard."},{"date":"2022-10-14","text":"When cast as a prototyped spell, that spell has the mana cost, power, and toughness characteristics shown in its colored, secondary text box rather than the normal values of those characteristics. Its color and mana value are determined by that mana cost. The permanent that spell becomes as it resolves has the same characteristics. If the spell leaves the stack in any other way, or the permanent it becomes leaves the battlefield, it immediately resumes using its normal characteristics."},{"date":"2022-10-14","text":"When casting a prototyped spell, use only its prototype characteristics to determine whether it's legal to cast it. For example, if Blitz Automaton is exiled with the last ability of Chandra, Dressed to Kill, you would be able to cast it for {2}{R} (because it's a red spell), even though you wouldn't be able to cast it as a colorless spell for its normal cost."}],"rarities":["common"]},"bounteous kirin":{"name":"Bounteous Kirin","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kirin","Spirit"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever you cast a Spirit or Arcane spell, you may gain life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Spirit"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Arcane"}],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a Spirit or Arcane spell, you may gain life equal to that spell's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"31d572b8-2c5e-4819-b2a6-e7ef90872d9e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1d7fe65e-81b1-4e69-913a-25fc99d96d81"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOK"],"rulings":[{"date":"2005-06-01","text":"If the Spirit or Arcane spell has {X} in the mana cost, then you use the value of {X} on the stack. For example, Shining Shoal costs {X}{W}{W}. If you choose X = 2, then Shining Shoal’s mana value is 4. Shining Shoal also has an ability that says “You may exile a white card with mana value X from your hand rather than pay Shining Shoal’s mana cost”; if you choose to pay the alternative cost and exile a card with mana value 2, then X is 2 while Shining Shoal is on the stack and its mana value is 4."}],"rarities":["rare"]},"braids, arisen nightmare":{"name":"Braids, Arisen Nightmare","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Nightmare"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, you may sacrifice an artifact, creature, enchantment, land, or planeswalker. If you do, each opponent may sacrifice a permanent of their choice that shares a card type with it. For each opponent who doesn't, that player loses 2 life and you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"SharesQuality","quality":"CardType","reference":{"type":"ParentTarget"}}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may sacrifice an artifact, creature, enchantment, land, or planeswalker. If you do, each opponent may sacrifice a permanent of their choice that shares a card type with it. For each opponent who doesn't, that player loses 2 life and you draw a card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e0445c80-fa53-4c3e-881e-940e9fce7f57","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1e20d56c-20df-4fe9-a329-df5768a180af","4ff97c69-6a6b-401c-b0a1-55fa81045d19","9f8937d6-a1a0-4930-968f-29fa611528e5","f2559ff7-a97c-40c6-942f-36998eafb050","f96223d0-04c4-40c2-87a9-0c6bc74adddb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","DSC","EOC","GDY","PDMU","PRM","PWCS"],"rulings":[{"date":"2022-09-09","text":"If the permanent that you sacrifice as you resolve Braids's triggered ability has more than one card type, each opponent may choose to sacrifice any permanent they control that shares any card type with it. For example, if the permanent you sacrifice is an artifact creature, one opponent might choose to sacrifice an artifact and another opponent might choose to sacrifice a creature."}],"rarities":["rare"]},"brainstealer dragon":{"name":"Brainstealer Dragon","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon","Horror"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, exile the top card of each opponent's library. You may play those cards for as long as they remain exiled. If you cast a spell this way, you may spend mana as though it were mana of any color to cast it.\nWhenever a nonland permanent an opponent owns enters the battlefield under your control, they lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[{"type":"InZone","zone":"Library"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"TrackedSet","id":0},"without_paying_mana_cost":false,"mode":"Play"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast it"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"they remain exiled"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, exile the top card of each opponent's library. You may play those cards for as long as they remain exiled. If you cast a spell this way, you may spend mana as though it were mana of any color to cast it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[{"type":"Owned","controller":"Opponent"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a nonland permanent an opponent owns enters the battlefield under your control, they lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"13cb958f-1e66-4219-901a-ff58275c8475","metadata":{"source_printing_ids":["0984b1f1-dfc8-4cb9-90a3-e084950438bf","884d4eea-77c0-4b78-bb83-3f855cc77298","bdeda32b-9c70-47c6-bfbe-06b651af1ce1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","OTC"],"rarities":["rare"]},"breaking":{"name":"Breaking","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player mills eight cards.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":8},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":"Target player mills eight cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"043370fd-9cfe-47ce-8019-e915cee1ae95","metadata":{"source_printing_ids":["66724f4e-59dd-4c70-b09b-49947320e6d1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PDGM","PRM"],"rulings":[{"date":"2013-04-15","text":"Entering doesn’t target any creature card. You choose which card you’re putting onto the battlefield as Entering resolves. You can choose any creature card in a graveyard at time, including one put into a graveyard because of Breaking if you cast Breaking // Entering as a fused split spell."},{"date":"2013-04-15","text":"If a player names a card, the player may name either half of a split card, but not both. A split card has the chosen name if one of its two names matches the chosen name."},{"date":"2013-04-15","text":"If you cast a split card with fuse from your hand without paying its mana cost, you can choose to use its fuse ability and cast both halves without paying their mana costs."},{"date":"2013-04-15","text":"If you’re casting a split card with fuse from any zone other than your hand, you can’t cast both halves. You’ll only be able to cast one half or the other."},{"date":"2013-04-15","text":"On the stack, a split spell that hasn’t been fused has only that half’s characteristics and mana value. The other half is treated as though it didn’t exist."},{"date":"2013-04-15","text":"Some split cards with fuse have two halves that are both multicolored. That card is multicolored no matter which half is cast, or if both halves are cast. It’s also multicolored while not on the stack."},{"date":"2013-04-15","text":"Some split cards with fuse have two monocolor halves of different colors. If such a card is cast as a fused split spell, the resulting spell is multicolored. If only one half is cast, the spell is the color of that half. While not on the stack, such a card is multicolored."},{"date":"2013-04-15","text":"To cast a fused split spell, pay both of its mana costs. While the spell is on the stack, its mana value is the total amount of mana in both costs."},{"date":"2013-04-15","text":"When a fused split spell resolves, follow the instructions of the left half first, then the instructions on the right half."},{"date":"2013-04-15","text":"When resolving a fused split spell with multiple targets, treat it as you would any spell with multiple targets. If all targets are illegal when the spell tries to resolve, the spell doesn’t resolve and none of its effects happen. If at least one target is still legal at that time, the spell resolves, but an illegal target can’t perform any actions or have any actions performed on it."},{"date":"2013-04-15","text":"You can choose the same object as the target of each half of a fused split spell, if appropriate."}],"rarities":["rare"]},"breeches, the blastmaker":{"name":"Breeches, the Blastmaker","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever you cast your second spell each turn, you may sacrifice an artifact. If you do, flip a coin. When you win the flip, copy that spell. You may choose new targets for the copy. When you lose the flip, Breeches deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"FlipCoin","win_effect":null,"lose_effect":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"when","description":"When you win the flip, copy that spell"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"valid_source":null,"description":"Whenever you cast your second spell each turn, you may sacrifice an artifact. If you do, flip a coin. When you win the flip, copy that spell. You may choose new targets for the copy. When you lose the flip, ~ deals damage equal to that spell's mana value to any target.","constraint":{"type":"NthSpellThisTurn","n":2},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"8514f20a-50c7-4319-84cb-2bf263548234","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["cf3bda9e-42af-4f99-a504-c96c25c2794b","fcde5cd5-4ce6-4b94-8d97-534a647dbfc1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Breeches's triggered ability triggers without requiring a target. It sets up two delayed triggered abilities: one that triggers when you win the flip, and one that triggers when you lose the flip. Only one of these abilities will trigger, based on the result of the flip. If you lost the flip, you'll choose a target for that delayed triggered ability at that time. Players can respond to the delayed triggered ability knowing its target and how much damage will be dealt, as normal."},{"date":"2024-04-12","text":"If the spell that's copied has an X whose value was determined as it was cast, the copy will have the same value of X."},{"date":"2024-04-12","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode or modes. You can't choose different ones."},{"date":"2024-04-12","text":"If you don't sacrifice an artifact, you won't flip a coin, and neither delayed triggered ability will trigger."},{"date":"2024-04-12","text":"If you win the flip, the copy created by Breeches's delayed triggered ability will have the same targets as the spell it's copying unless you choose new ones. You may change any number of the targets, including all of them or none of them. The new targets must be legal."},{"date":"2024-04-12","text":"Spells that were cast before Breeches entered the battlefield count. If Breeches was the first spell you cast this turn, the next spell you cast this turn is your second spell."},{"date":"2024-04-12","text":"The copy made by Breeches's delayed triggered ability is created on the stack, so it's not \"cast.\""},{"date":"2024-04-12","text":"You can't choose to pay any additional costs for the copy. However, effects based on any additional costs that were paid for the original spell are copied as though those same costs were paid for the copy too."}],"rarities":["rare"]},"breeding pool":{"name":"Breeding Pool","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Forest","Island"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {G} or {U}.)\nAs this land enters, you may pay 2 life. If you don't, it enters tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"PayLife","amount":{"type":"Fixed","value":2}},"decline":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, you may pay 2 life. If you don't, it enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"20283c4a-f1f0-42f0-bc08-6da87474426b","metadata":{"source_printing_ids":["19477aca-b8db-4061-9a78-ebb189a9df22","1c575871-9b46-4cd4-8596-54dc04f76456","29ded082-0e6e-4aed-90cc-1bc4aea77dfa","3c750d5a-f743-41ff-b5ba-02025ca0bec2","4f36e582-e734-4159-b156-5a99d844f2ff","5656d6f2-ca19-452d-870c-d5e7a3dc9432","830eb270-f7aa-4694-8fe1-7c19e148a39f","9b35c030-029d-4286-ab79-0165c8688c6c","b98b2a35-ec2b-47fe-903d-dd292e469a3c","bb54233c-0844-4965-9cde-e8a4ef3e11b8","cebd6adc-cfb1-4cbb-abf5-9f2913c81898","ece3bcdd-cb33-4923-b919-ba57a327d3cd","f920e32c-8a4b-4152-be3a-02810f3e5f13","fda15a78-a370-4cc6-a4df-92200d6ca826"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["CLU","DIS","EOE","EXP","GTC","PEOE","PRM","PRNA","RNA","RVR","SLD","UNF"],"rulings":[{"date":"2018-10-05","text":"If an effect puts this land onto the battlefield tapped, you may pay 2 life, but it still enters tapped."},{"date":"2018-10-05","text":"Unlike most dual lands, this land has two basic land types. It's not basic, so cards such as District Guide can't find it, but it does have the appropriate land types for effects such as that of Drowned Catacomb (from the Ixalan set)."}],"rarities":["rare"]},"bribery":{"name":"Bribery","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"6d194882-ca37-49bb-ac9f-a751c53850a8","metadata":{"source_printing_ids":["49fd737a-d7da-421b-a741-d6d0d213299f","99c7c1d0-dc6b-413f-8346-54728a4c7b14","a70f54e4-3297-4bf4-8aa8-e4be4965e961","d452456c-f828-4301-9b4f-8a0e77525d5f","d820fed7-fbe8-4175-834a-33b6742481ea","dfc0ea8a-62f6-49e8-8eec-9748870bc596","e0b099ef-4b43-4b63-a7fc-cec19cf29f4e","e7b8a9a2-55d8-4cf8-9912-787bdbc90ebb","eb0cb4bc-c2de-4d4a-8daa-df68350239a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["8ED","CMM","J13","MMQ","PRM","SLD","TLE"],"rulings":[{"date":"2004-10-04","text":"You put the creature onto the battlefield, so you control it and any \"enters\" abilities it has."}],"rarities":["rare","mythic"]},"brightmare":{"name":"Brightmare","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Unicorn"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, tap up to one target creature. You gain life equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, tap up to one target creature. You gain life equal to that creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"32025108-0dba-40bd-88db-5fcc48e3d054","metadata":{"source_printing_ids":["0fc18921-59f5-413f-a221-dc47d31b2ec8","dfb4aab6-144d-437d-8936-7220a27aae13","e1f3af80-3fdd-4a35-b7a4-a8a419057e23"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","JMP"],"rulings":[{"date":"2020-06-23","text":"Brightmare's ability can target a tapped creature. If the target creature is already tapped when the ability resolves, that creature just remains tapped and you gain life equal to its power."},{"date":"2020-06-23","text":"If the target creature is an illegal target by the time Brightmare's ability tries to resolve, the ability won't resolve. You won't gain any life."}],"rarities":["uncommon"]},"brigid, clachan's heart":{"name":"Brigid, Clachan's Heart","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kithkin","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature enters or transforms into Brigid, Clachan's Heart, create a 1/1 green and white Kithkin creature token.\nAt the beginning of your first main phase, you may pay {G}. If you do, transform Brigid.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Kithkin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Kithkin"],"colors":["Green","White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters, create a 1/1 green and white Kithkin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Transformed","execute":{"kind":"Spell","effect":{"type":"Token","name":"Kithkin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Kithkin"],"colors":["Green","White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"SelfRef"},"description":"Whenever ~ transforms into ~, create a 1/1 green and white Kithkin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, you may pay {G}. If you do, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"60fc89a1-cc6f-4a32-84c3-09abf7a4a1df","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["87bee785-9a5c-5fdc-bda0-b6053886e6bd"],"source_printing_ids":["887002ae-794b-427c-9f98-e909b22313d9","cb7d5bbb-4f68-4e38-8bb0-a95af21b24c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["ECL","PECL"],"rarities":["rare"]},"brigid, doun's mind":{"name":"Brigid, Doun's Mind","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Kithkin","Soldier"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{T}: Add X {G} or X {W}, where X is the number of other creatures you control.\nAt the beginning of your first main phase, you may pay {W}. If you do, transform Brigid.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}}},"color_options":["Green","White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add X {G} or X {W}, where X is the number of other creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, you may pay {W}. If you do, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green","White"],"scryfall_oracle_id":"60fc89a1-cc6f-4a32-84c3-09abf7a4a1df","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["87bee785-9a5c-5fdc-bda0-b6053886e6bd"],"source_printing_ids":["887002ae-794b-427c-9f98-e909b22313d9","cb7d5bbb-4f68-4e38-8bb0-a95af21b24c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["ECL","PECL"],"rarities":["rare"]},"brokers charm":{"name":"Brokers Charm","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature or planeswalker an opponent controls.\n• Destroy target enchantment.\n• Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"a90de2b8-4d71-4d0e-82b3-3b7ab194165b","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature or planeswalker an opponent controls.","Destroy target enchantment.","Draw two cards."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["0aac0943-6c9a-4c65-9d17-3ca0f2ba2340","51157e88-32c5-4add-9127-565d3833ce21","74c9c315-1cf4-468e-a74a-b5f3be4a63a1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["SNC"],"rulings":[{"date":"2022-04-29","text":"If you choose the first mode and your creature is not a legal target as Brokers Charm resolves, no damage will be dealt."},{"date":"2022-04-29","text":"If you choose the first mode and your opponent's creature or planeswalker is not a legal target as Brokers Charm resolves, your creature will still get +1/+0"},{"date":"2022-04-29","text":"You can't choose the first mode for Brokers Charm unless your opponent has a creature or planeswalker to target."}],"rarities":["uncommon"]},"bronzehide lion":{"name":"Bronzehide Lion","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{G}{W}: This creature gains indestructible until end of turn.\nWhen this creature dies, return it to the battlefield. It's an Aura enchantment with enchant creature you control and \"{G}{W}: Enchanted creature gains indestructible until end of turn,\" and it loses all other abilities.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain indestructible"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":0}},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{G}{W}: ~ gains indestructible until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"grants":[{"type":"RemoveAllAbilities"},{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Unimplemented","name":"gain","description":"gain indestructible until end of turn,"},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":0}},"sub_ability":null,"duration":null,"description":"{G}{W}: Enchanted creature gains indestructible until end of turn,","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to the battlefield. It's an Aura enchantment with enchant creature you control and \"{G}{W}: Enchanted creature gains indestructible until end of turn,\" and it loses all other abilities.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"0db3b29e-e21c-4240-8e5e-959ba6bcf706","metadata":{"source_printing_ids":["8fdafadb-fa04-4282-b576-b85e79c242c9","c65f4d9d-aa87-439c-8db5-3789cabcce4c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PRM","PTHB","THB"],"rulings":[{"date":"2020-01-24","text":"If a nontoken permanent is a copy of Bronzehide Lion, it returns from its owner's graveyard as an Aura with the two abilities granted by Bronzehide Lion and none of its normal abilities. If it has any enters-the-battlefield replacement effects, those won't apply. The Aura keeps its name, colors, and any supertypes it may have."},{"date":"2020-01-24","text":"If a token is a copy of Bronzehide Lion, it won't return from its owner's graveyard."},{"date":"2020-01-24","text":"If you control but don't own Bronzehide Lion, you'll return it to the battlefield when it dies, not its owner. It'll enchant a creature you control."},{"date":"2020-01-24","text":"You choose a creature you control for Bronzehide Lion to enchant as it returns to the battlefield. If there's nothing it can legally enchant, it remains in its owner's graveyard."}],"rarities":["rare"]},"brood birthing":{"name":"Brood Birthing","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you control an Eldrazi Spawn, create three 0/1 colorless Eldrazi Spawn creature tokens. They have \"Sacrifice this token: Add {C}.\" Otherwise, create one of those tokens.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"If"}],"controller":"You","properties":[]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice ~: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If you control an Eldrazi Spawn, create three 0/1 colorless Eldrazi Spawn creature tokens. They have \"Sacrifice ~: Add {C}.\" Otherwise, create one of those tokens."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e7d1c762-69d0-401d-8035-6e9744baf9d8","metadata":{"related_token_ids":["72736a8e-7059-58e0-83df-1a88d355766b"],"source_printing_ids":["0e44f7ff-1cfa-4bc4-a0f7-9d71ba48a97a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ROE"],"rulings":[{"date":"2010-06-15","text":"If you put a single token onto the battlefield this way, it's exactly like the ones specified earlier: it's a 0/1 colorless Eldrazi Spawn creature token that has \"Sacrifice this creature: Add {C}.\""},{"date":"2010-06-15","text":"Whether you control an Eldrazi Spawn is checked as Brood Birthing resolves."}],"rarities":["common"]},"bruse tarl, roving rancher":{"name":"Bruse Tarl, Roving Rancher","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Oxen you control have double strike.\nWhenever Bruse Tarl enters or attacks, exile the top card of your library. If it's a land card, create a 2/2 white Ox creature token. Otherwise, you may cast it until the end of your next turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Ox","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Ox"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Land"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, exile the top card of your library. If it's a land card, create a 2/2 white Ox creature token. Otherwise, you may cast it until the end of your next turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Ox"}],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"DoubleStrike"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Oxen you control have double strike."}],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"c22589e1-1721-43a3-897e-990af6ebcffa","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0c6204e4-e3fc-51cd-9496-4b2da24e3783","1fdbd699-ae54-51c4-91db-3150c59e0787"],"source_printing_ids":["026257bf-f4e7-45f8-9c93-7248f201c583","286c55c2-dcc1-4e87-a83f-9981d28ab62d","40196502-3887-4315-bff4-de39f82796fc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","PLST","POTJ"],"rulings":[{"date":"2024-04-12","text":"Bruse Tarl's ability doesn't allow you to play land cards that it exiles. But hey, free Oxen."},{"date":"2024-04-12","text":"If Bruse Tarl leaves the battlefield after other Oxen you control have dealt first-strike damage but before regular combat damage, those Oxen won't deal regular combat damage (unless they still have double strike for some other reason) ."},{"date":"2024-04-12","text":"You pay all costs and follow all normal timing rules for spells cast from exile with Bruse Tarl's last ability. For example, if you exile a creature card this way, you must wait until your main phase to cast it."}],"rarities":["rare"]},"bucknard's everfull purse":{"name":"Bucknard's Everfull Purse","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{1}, {T}: Roll a d4 and create a number of Treasure tokens equal to the result. The player to your right gains control of this artifact.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RollDie","count":{"type":"Fixed","value":1},"sides":4,"results":[]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GiveControl","target":{"type":"SelfRef"},"recipient":{"type":"Neighbor","direction":{"type":"Right"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}: Roll a d4 and create a number of Treasure tokens equal to the result. The player to your right gains control of ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"f70b9eee-3874-4391-8df8-e10bbd19307e","metadata":{"related_token_ids":["6a613aa7-be49-5cc5-abd3-4fab87bb0065","8cfc974b-4493-5d52-af68-ace05fa34f90"],"source_printing_ids":["38b51dbb-7d8e-41fc-9768-627fd4692555","57073533-dcd8-4a86-9aa8-d7205d3799e1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","PLST"],"rulings":[{"date":"2021-07-23","text":"An ability that tells you to roll a die will also specify what to do with the result of that roll. Most often, this is in the form of a “results table” in the card text."},{"date":"2021-07-23","text":"An effect that says “choose a target, then roll a d20” or similar still uses the normal process of putting an ability on the stack and resolving it. Choosing targets is part of putting the ability on the stack and rolling the d20 happens later, as the ability resolves."},{"date":"2021-07-23","text":"Dice are identified by the number of faces each one has. For example, a d20 is a twenty-sided die."},{"date":"2021-07-23","text":"Dice used must have equally likely outcomes and the roll must be fair. Although physical dice are recommended, digital substitutes are allowed, provided they have the same number of equally likely outcomes as specified in the original roll instruction."},{"date":"2021-07-23","text":"Some abilities, like that of Pixie Guide and Barbarian Class, replace rolling a die with rolling extra dice and ignoring the lowest roll. The ignored rolls are not considered for the effect that instructed you to roll a die, and do not cause abilities to trigger. For all intents and purposes, once you determine which dice count, any extra dice were never rolled."},{"date":"2021-07-23","text":"Some effects instruct you to roll again. This uses the same number and type of dice as the original roll, and that roll will use the same set of possible outcomes."},{"date":"2021-07-23","text":"Some effects may modify the result of a die roll. This may be part of the instruction to roll a die or it may come from other cards. Anything that references the “result” of a die roll is looking for the result after these modifications. Anything that is looking for the “natural result” is looking for the number shown on the face of the die before these modifications."},{"date":"2021-07-23","text":"The instruction to roll a die and the effect that occurs because of the result are all part of the same ability. Players do not get the chance to respond to the ability after knowing the result of the roll."},{"date":"2021-07-23","text":"Tournament events have more specific rules regarding dice and die-rolling. For more information, please see the most recent version of the Magic Tournament Rules at https://wpn.wizards.com/en/document/magic-gathering-tournament-rules."},{"date":"2021-07-23","text":"While playing Planechase, rolling the planar die will cause any ability that triggers whenever a player rolls one or more dice to trigger. However, any effect that refers to a numerical result will ignore the rolling of the planar die."}],"rarities":["uncommon"]},"calibrated blast":{"name":"Calibrated Blast","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal cards from the top of your library until you reveal a nonland card. Put the revealed cards on the bottom of your library in a random order. When you reveal a nonland card this way, Calibrated Blast deals damage equal to that card's mana value to any target.\nFlashback {3}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Red","Red"],"generic":3}}}],"abilities":[{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Reveal cards from the top of your library until you reveal a nonland card. Put the revealed cards on the bottom of your library in a random order. When you reveal a nonland card this way, ~ deals damage equal to that card's mana value to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d9f5fc77-40df-4872-b633-6bf5a22a8831","metadata":{"source_printing_ids":["1a8284eb-a604-4e86-a140-7c703b52c806","37962700-e4d9-419e-8972-d3fd955ff40e","70d81763-46c0-4e5e-9292-04a8aa461682"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH2","PMH2","PRM"],"rulings":[{"date":"2021-06-18","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-06-18","text":"Calibrated Blast goes on the stack without a target. When you reveal a nonland card during its resolution, its reflexive triggered ability triggers and you pick a target to be dealt damage. You'll know the mana value of the revealed nonland card and how much damage will be dealt."},{"date":"2021-06-18","text":"The nonland card revealed this way ends up on the bottom of the library with the other cards."},{"date":"2021-06-18","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-06-18","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-06-18","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."},{"date":"2021-06-18","text":"“Flashback [cost]” means “You may cast this card from your graveyard by paying [cost] rather than paying its mana cost” and “If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.”"}],"rarities":["rare"]},"cancel":{"name":"Cancel","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"7d00fb28-ea6c-49a9-b4af-ffb38860a9a7","metadata":{"source_printing_ids":["1850d1d5-f506-4e50-9d51-408f987bbbbd","2667f1d1-18d3-4bb4-a071-dd65b237d733","475bff39-220a-4490-9c2e-d311e306a6db","479f56c2-8256-4325-909a-bf460505dbc5","59e14910-ee2e-49ae-855e-46a8ab6cad82","6a6932af-c7e7-49e9-963e-97e680a53da5","7258e651-868a-4f63-9454-6c6c95d25387","954eec32-7e40-452d-94c2-f704b819f338","9cff3fae-e072-4068-a1de-27de3d89c532","9e557f54-3d9d-4610-a0d0-5874feacc76e","9f540dcb-8d0b-4d33-8c0d-893fa5db54eb","b4e175f7-f649-451b-9ee5-ad1140b2e8a7","c464b856-e3c0-4b06-a2b0-6663a9aafd26","c6151721-0642-40c6-9f55-02f0cd94cdd2","c8153fad-8a06-46f3-8a5a-2d0d4841191a","cf6e5ad6-ffe2-4588-b357-c415c33fbc11","d0bf9f71-c592-4064-b7b3-172c26e5605b","fd994a26-65ff-43be-8d52-476e887d3ed2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","AKH","ALA","DPA","FDN","KTK","M10","M11","M12","M14","M15","M19","M21","P10","PC2","PCA","PLST","PRM","PS11","RTR","TSP","XLN","ZEN"],"rarities":["common"]},"centaur courser":{"name":"Centaur Courser","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2f5bf099-2e01-4e1c-9ebf-0ce0ac66939e","metadata":{"source_printing_ids":["03354b67-7df2-4b4b-a996-a37550e58561","3b625203-6c50-4b14-928c-6b0aec1375a2","44a5f7db-ea4e-4af5-9d4a-0335db6ea0e9","bae6eb55-4bf9-4418-b667-a9a761f91ef9","e8b67ee8-3189-4426-8b1a-b540267768fd","eb7eb6f0-a329-4fcd-ba23-ec435659441d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M13","M15","M19","M20","PLST"],"rarities":["common"]},"chain of acid":{"name":"Chain of Acid","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target noncreature permanent. Then that permanent's controller may copy this spell and may choose a new target for that copy.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Creature"}],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target noncreature permanent. Then that permanent's controller may copy this spell and may choose a new target for that copy.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0b1a27bd-bb98-44f8-8357-666fabfeabf0","metadata":{"source_printing_ids":["1d47ddca-a363-4ab7-b7f2-d0e0043c9916"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS"],"rarities":["uncommon"]},"chain of smog":{"name":"Chain of Smog","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player discards two cards. That player may copy this spell and may choose a new target for that copy.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player discards two cards. That player may copy this spell and may choose a new target for that copy.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"ea14c26b-bf2f-48b4-b879-6e63069ded1f","metadata":{"source_printing_ids":["6bfe64f9-8b03-41f6-a47b-fade397ad9d1","a56d9468-9d33-48e3-b41c-942653669b1a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","PLST"],"rarities":["uncommon"]},"champion of the path":{"name":"Champion of the Path","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Sorcerer"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, behold an Elemental and exile it. (Exile an Elemental you control or an Elemental card from your hand.)\nWhenever another Elemental you control enters, it deals damage equal to its power to each opponent.\nWhen this creature leaves the battlefield, return the exiled card to its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elemental"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Elemental you control enters, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TrackedSet","id":0},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, return the exiled card to its owner's hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"b326ccd5-8ad2-441c-9d73-82ee6390dd36","additional_cost":{"type":"Required","data":{"type":"Behold","count":1,"filter":{"type":"Typed","type_filters":[{"Subtype":"Elemental"}],"controller":null,"properties":[]},"action":"ExileChosen"}},"metadata":{"source_printing_ids":["874a32a5-0a9b-4225-a877-bb6e74cd6c5f","e369cd31-3e22-47eb-bf6a-00d823651710"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL","PECL"],"rulings":[{"date":"2025-11-17","text":"If Champion of the Path is countered or otherwise fails to resolve, the beheld card will remain in exile indefinitely."},{"date":"2025-11-17","text":"If an Elemental you control that isn't a creature enters (probably because it's a kindred permanent with the Elemental subtype), Champion of the Path's second ability will still trigger. If that Elemental still isn't a creature when the ability resolves, the ability won't deal any damage."},{"date":"2025-11-17","text":"If the Elemental that caused Champion of the Path's second ability to trigger is no longer on the battlefield when that ability resolves, use that Elemental's power as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"champion of wits":{"name":"Champion of Wits","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may draw cards equal to its power. If you do, discard two cards.\nEternalize {5}{U}{U} ({5}{U}{U}, Exile this card from your graveyard: Create a token that's a copy of it, except it's a 4/4 black Zombie Snake Wizard with no mana cost. Eternalize only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Eternalize":{"type":"Mana","data":{"type":"Cost","shards":["Blue","Blue"],"generic":5}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["Black"]},{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":5}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may draw cards equal to its power. If you do, discard two cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3fd8ba0c-75ec-43ea-8706-f71e6cf1d236","metadata":{"related_token_ids":["aee15eef-bfdf-5d72-80b1-87527824b5fe"],"source_printing_ids":["0e41318b-7939-4c2c-a5f1-9eb44a374d90","489e339b-3bc6-4221-9734-d796b65910d2","b685b930-3201-4eb1-ac29-9c926651d118","cce2fce1-8172-43ed-937d-a543a474ef46","cf76d414-9424-4fd5-a1ff-2ff345ad6b0a","d765221d-9718-47eb-aa49-9c0719337139"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","AKR","C21","DRC","HOU","NCC","PHOU"],"rulings":[{"date":"2017-07-14","text":"For each card with eternalize, a corresponding game play supplement token can be found in some Hour of Devastation booster packs. These supplements are not required to play with cards with eternalize; you can use the same items to represent an eternalized token as you would any other token."},{"date":"2017-07-14","text":"If a creature card with eternalize is put into your graveyard during your main phase, you'll have priority immediately afterward. You can activate its eternalize ability before any player can try to exile it, such as with Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"If the card copied by the token had any “when [this permanent] enters the battlefield” abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any “as [this permanent] enters the battlefield” or “[this permanent] enters the battlefield with” abilities that the token has copied will also work."},{"date":"2017-07-14","text":"Once you've activated an eternalize ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"The token copies exactly what was printed on the original card and nothing else, except the characteristics specifically modified by eternalize. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-07-14","text":"The token is a Zombie in addition to its other types and is black instead of its other colors. Its base power and toughness are 4/4. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."},{"date":"2017-07-14","text":"Use Champion of Wits's power as the first ability resolves to determine if you want to use the ability and how many cards you draw if you do. If you use the ability, you discard two cards regardless of how many cards you draw. If Champion of Wits leaves the battlefield before that ability resolves, use its last known power."}],"rarities":["rare"]},"charge":{"name":"Charge","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control get +1/+1 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures you control get +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"36b5022d-fa62-46ea-97ab-23c0f60f62a5","metadata":{"source_printing_ids":["000eded9-854c-408a-aadf-c26209e27432","8b46269c-35d3-4f8f-8fef-f58cf8be4054"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DOM","PLST"],"rulings":[{"date":"2018-04-27","text":"Charge affects only creatures you control at the time it resolves. Creatures you begin to control later in the turn won’t get +1/+1."}],"rarities":["common"]},"chastise":{"name":"Chastise","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target attacking creature. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target attacking creature. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b7553f3f-5de1-409c-a184-e12e40f017ab","metadata":{"source_printing_ids":["1169dab7-8f4c-474d-9289-42765a275376","1cbdf926-95a5-4144-b707-85483a78f808","78e0d3d9-8c28-46d7-9fab-c115e6c8682f","80972578-36fb-4bc2-9593-f9b10fb8424c","fd561226-9bb8-47f9-b5be-8a0aecdbfad0","fe622c34-7b41-4855-a07f-a2ff773a2745"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","9ED","JUD","PLST"],"rarities":["uncommon"]},"chatterstorm":{"name":"Chatterstorm","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create a 1/1 green Squirrel creature token.\nStorm (When you cast this spell, copy it for each spell cast before it this turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Squirrel","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Squirrel"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Create a 1/1 green Squirrel creature token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7e6c7b57-bd6a-4ac8-bcab-c3a879f479c2","metadata":{"related_token_ids":["20cf468e-53c0-55c9-81f0-7ed254feac63","da457623-e6de-51b0-a22f-e279640934a9"],"source_printing_ids":["4c1b91d8-39c4-4ab1-996b-2a5a78243fd4","9426c906-e665-40a4-823a-0245bc39fbda","aa2bb6af-ba3d-410a-9cc7-85ac0f5b5f5b","b34f0ac1-6894-4761-b62c-b85d927acf09"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"banned","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","J21","MH2"],"rulings":[{"date":"2021-06-18","text":" A copy of a spell can be countered like any other spell, but it must be countered individually. Countering a spell with storm won't affect the copies."},{"date":"2021-06-18","text":" If a spell with storm has targets, you may choose new targets for any of the copies. You can make different choices for each copy."},{"date":"2021-06-18","text":" Spells cast from zones other than a player's hand and spells that were countered or otherwise failed to resolve are counted by the storm ability."},{"date":"2021-06-18","text":" The copies are put directly onto the stack. They aren't cast and won't be counted by other spells with storm cast later in the turn."},{"date":"2021-06-18","text":" The triggered ability that creates the copies can itself be countered by anything that can counter a triggered ability. If it is countered, no copies will be put onto the stack."}],"rarities":["common"]},"chop down":{"name":"Chop Down","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature with power 4 or greater. (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"GE","value":{"type":"Fixed","value":4}}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature with power 4 or greater.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"91e71279-c9d2-4873-916a-59da03a65741","metadata":{"source_printing_ids":["75754468-2850-42e6-ab22-61ff7b9d1214","cdbd2541-71a3-4945-8a9d-db9e59c86784","d0960ccb-6952-4398-aa94-816e6fb04c2d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["ELD","PELD","PLST","PRM"],"rarities":["rare"]},"chord of calling":{"name":"Chord of Calling","mana_cost":{"type":"Cost","shards":["X","Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nSearch your library for a creature card with mana value X or less, put it onto the battlefield, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":["Convoke"],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a creature card with mana value X or less, put it onto the battlefield, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6789a170-f2c5-4fc0-8a45-2b2361e67410","metadata":{"source_printing_ids":["0a7695cc-7b6b-499d-9f5a-729082fc72e9","4f009d4a-3b50-40ae-b52e-0b9535049265","5ef345fc-e64e-4053-b643-2f8648a5473a","b18fe7e0-8344-40cc-b242-83f01c6be7a6","bae7a7e5-321d-4fb7-ab5e-cf35f0885bdd","cd9f1d2c-4fc7-40c5-aa81-afa4c7a7eef3","dac257a9-39bf-4185-9d2e-f80f0848a96a","e064174b-8f07-4fea-9eef-c3b5d0220b1a","f3ae21be-760d-4f67-ae06-ac4c8e333d1a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","EA3","M15","P30A","PRM","RAV","RVR","SLD"],"rulings":[{"date":"2020-08-07","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2024-01-12","text":"Because convoke isn't an alternative cost, it can be used in conjunction with alternative costs."},{"date":"2024-01-12","text":"If a creature you control has a mana ability with {T} in the cost, activating that ability while casting a spell with convoke will result in the creature being tapped before you pay the spell's costs. You won't be able to tap it again for convoke. Similarly, if you sacrifice a creature to activate a mana ability while casting a spell with convoke, that creature won't be on the battlefield when you pay the spell's costs, so you won't be able to tap it for convoke."},{"date":"2024-01-12","text":"Tapping a multicolored creature using convoke will pay for {1} or one mana of your choice of any of that creature's colors."},{"date":"2024-01-12","text":"Tapping an untapped creature that's attacking or blocking to convoke a spell won't cause that creature to stop attacking or blocking."},{"date":"2024-01-12","text":"When calculating a spell's total cost, include any alternative costs, additional costs, or anything else that increases or reduces the cost to cast the spell. Convoke applies after the total cost is calculated. Convoke doesn't change a spell's mana cost or mana value."},{"date":"2024-01-12","text":"When using convoke to cast a spell with {X} in its mana cost, first choose the value for X. That choice, plus any cost increases or decreases, will determine the spell's total cost. Then you can tap creatures you control to help pay that cost. For example, if you cast Chord of Calling (a spell with convoke and mana cost {X}{G}{G}{G}) and choose X to be 3, the total cost is {3}{G}{G}{G}. If you tap two green creatures and two red creatures, you'll have to pay {1}{G}."},{"date":"2024-01-12","text":"You can tap any untapped creature you control to convoke a spell, even one you haven't controlled continuously since the beginning of your most recent turn."}],"rarities":["rare"]},"cinder cloud":{"name":"Cinder Cloud","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. If a white creature dies this way, ~ deals damage to that creature's controller equal to the creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f64ea1a7-0e10-4549-8056-25ebc2ce0175","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature. If a white creature dies this way, Cinder Cloud deals damage to that creature's controller equal to the creature's ","line_index":0}],"metadata":{"source_printing_ids":["1938cb88-5ff5-4bf2-8a15-26b8cb39d00c","f044c470-50ce-4a6c-b8ab-665357c3c11e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR","PLST"],"rarities":["uncommon"]},"circus of the sun":{"name":"Circus of the Sun","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Las Vegas"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you planeswalk here or at the beginning of your upkeep, create two 1/1 red performer creature tokens with flying and haste.\nWhenever one or more creatures you control with flying deal combat damage to a player, you may return it to your hand. If you do, draw cards equal to its power.\nWhenever Chaos ensues, put a flying counter on up to one target creature. It becomes a Performer in addition to its other types.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":{"Unknown":"Whenever you planeswalk here or at the beginning of your upkeep"},"execute":{"kind":"Spell","effect":{"type":"Token","name":"Performer","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Performer"],"colors":["Red"],"keywords":["Flying","Haste"],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you planeswalk here or at the beginning of your upkeep, create two 1/1 red performer creature tokens with flying and haste.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TriggeringSource"},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]},"description":"Whenever one or more creatures you control with flying deal combat damage to a player, you may return it to your hand. If you do, draw cards equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"flying","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddSubtype","subtype":"Performer"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become a Performer in addition to its other types"}],"duration":"Permanent","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever Chaos ensues, put a flying counter on up to one target creature. It becomes a Performer in addition to its other types.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"fb061505-a3d6-45a4-a9ba-2adb1883c77d","metadata":{"source_printing_ids":["c1fd6112-f71c-4f3d-979a-9a1178132338"]},"legalities":{},"printings":["PUNK"],"rarities":["common"]},"citadel siege":{"name":"Citadel Siege","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of combat on your turn, put two +1/+1 counters on target creature you control.\n• Dragons — At the beginning of combat on each opponent's turn, tap target creature that player controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put two +1/+1 counters on target creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on each opponent's turn, tap target creature that player controls.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"40f66e21-5b60-4e42-927d-65397e7ad544","metadata":{"source_printing_ids":["239c373a-465c-4cda-9895-624871d8606e","44c40250-6f58-4590-b745-1aa95c1da2e8","871fcb2a-136c-4efe-b5cd-bec102b02e4b","9c13bc7c-a536-44d0-8c89-49ff33bee326","c6e693ad-3e49-4692-a35a-06e9e4e8027e","ce58a8bd-e979-41e0-a533-7408830e0154"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C16","C21","CM2","FRF","MIC"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."}],"rarities":["rare"]},"clear shot":{"name":"Clear Shot","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+1 until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+1 until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0b8defd2-8530-47d7-a0c6-27aa5162dff6","metadata":{"source_printing_ids":["12fa1d34-7e32-45b7-9f6f-68f152f75d1a","27476d9c-006d-4227-a5f2-49c7234b84a1","4f362332-3682-4638-bc8b-6984f48e3464","52f8a75e-8183-443d-b6cd-3c4d47d8e110","79a04353-21a6-4540-8a1c-dffa715e92c6","88b8905b-68d3-491b-b7fe-eed74841e9a0","a7ff66fc-bd38-4607-b394-8c4e09affec8","b11a76bd-3239-49f6-b125-b5bad907695c","cfbea1eb-8270-416d-842c-c61d619a75df","e2ccc15f-cb17-44b9-bfd2-a216431b63a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","DBL","EMN","INR","J25","MID","OTP","PIO","PLST","SIR"],"rulings":[{"date":"2020-08-07","text":"As Clear Shot tries to resolve, if either creature is an illegal target, the creature you control won't deal damage. If the creature you control is a legal target but the other creature isn't, your creature will still get +1/+1."},{"date":"2020-08-07","text":"You can't cast Clear Shot unless you choose a creature you control and a creature you don't control as targets."}],"rarities":["common","uncommon"]},"cleric class":{"name":"Cleric Class","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nIf you would gain life, you gain that much life plus 1 instead.\n{3}{W}: Level 2\nWhenever you gain life, put a +1/+1 counter on target creature you control.\n{4}{W}: Level 3\nWhen this Class becomes level 3, return target creature card from your graveyard to the battlefield. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":3}},"sub_ability":null,"duration":null,"description":"{3}{W}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{W}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, put a +1/+1 counter on target creature you control.","constraint":null,"condition":{"type":"ClassLevelGE","level":2},"batched":false},{"mode":"ClassLevelGained","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes level 3","constraint":{"type":"AtClassLevel","level":3},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"GainLife","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"EventContextAmount"}},"offset":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would gain life, you gain that much life plus 1 instead.","condition":null}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f0ead7f5-5c82-40fd-8e89-3e3c5d31fbad","metadata":{"source_printing_ids":["47ce8b7e-d8e1-489a-a69e-99089eeb8739","48e8de7c-3e9a-4569-8968-c4a5fc81acaa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","PLST"],"rulings":[{"date":"2021-07-23","text":"An ability that triggers “whenever you gain life” triggers just once for each life gain event, no matter how much life you gain."},{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Each creature with lifelink dealing combat damage causes a separate life gain event. For example, if two creatures you control with lifelink deal combat damage at the same time, you will gain 2 additional life from Cleric Class's first ability and its level 2 ability will trigger twice. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, and/or planeswalkers at the same time (perhaps because it has trample or was blocked by more than one creature), you will only gain 1 additional life and the ability will trigger only once."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"If you gain an amount of life “for each” of something, that life is gained as one event and the ability will trigger only once."},{"date":"2021-07-23","text":"If you gain life at the same time a creature is dealt lethal damage, it dies before Cleric Class's level 2 ability can put a +1/+1 counter on it."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"When Cleric Class's level 3 ability resolves, you gain life equal to the creature's toughness as it exists on battlefield, which may be different than its toughness in the graveyard."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"cloud key":{"name":"Cloud Key","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this artifact enters, choose artifact, creature, enchantment, instant, or sorcery.\nSpells you cast of the chosen type cost {1} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenCardType"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast of the chosen type cost {1} less to cast."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose artifact, creature, enchantment, instant, or sorcery.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"2a838818-d590-4374-9a63-d9e6381a0f0d","metadata":{"source_printing_ids":["3b348e66-0552-4650-82d5-67af84df5462","6f880de5-8fc5-4e4e-a4bb-cc3e61a7697b","b851ab76-e40e-4232-b120-0bc1905ef0b4","b893ab56-44a6-4b3c-bb3e-6deec298cbce"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","EOC","FUT","PLST","TSR"],"rulings":[{"date":"2021-03-19","text":"The cost reduction applies only to generic mana in the cost of spells of the chosen type you cast."},{"date":"2021-03-19","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as a flashback cost), add any cost increases (such as kicker costs), then apply any cost reductions (such as that of Cloud Key's ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."}],"rarities":["rare"]},"coalition relic":{"name":"Coalition Relic","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add one mana of any color.\n{T}: Put a charge counter on this artifact.\nAt the beginning of your first main phase, remove all charge counters from this artifact. Add one mana of any color for each charge counter removed this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"charge","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Put a charge counter on ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"charge","count":-1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"PreviousEffectAmount"}},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, remove all charge counters from ~. Add one mana of any color for each charge counter removed this way.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"008cb342-79f5-4df6-a6b7-0e9e22ed693f","metadata":{"source_printing_ids":["02c532e8-21f1-4d6f-a931-1ea48a6aeea2","54f816e4-76ed-4f09-8398-a73e06dce3e6","73f27b75-d400-46fd-acec-6b55a1e801ee","7a7c98b0-d64d-4d0a-b284-1187a8e7095e","9f83d87c-9ff7-4151-a266-bd77680a899b","a9fae620-8fa5-44db-8326-11cb323c626e","af9f452e-f66c-426f-bad7-645538f2097f","ef44324a-32bd-47e9-8fd9-258ba668de53"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","DDE","DMC","FUT","M3C","PLST","TSR"],"rulings":[{"date":"2021-03-19","text":"If you remove multiple charge counters from Coalition Relic at once, you may add a different color of mana for each one."},{"date":"2021-03-19","text":"Only the first main phase each turn is considered a precombat main phase, even if additional main phases or combat phases are created."}],"rarities":["rare"]},"coalition skyknight":{"name":"Coalition Skyknight","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Flying"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dc763f20-73e7-4db7-9e98-6f419b8fba84","metadata":{"source_printing_ids":["8b12da45-aff4-406d-83a3-39ecaff6ff56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"coalition warbrute":{"name":"Coalition Warbrute","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Minotaur","Berserker"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nTrample","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Trample"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"84d67d87-2696-4c2f-9f10-29d5832bfbb6","metadata":{"source_printing_ids":["554c422f-2a1b-47c0-9358-42b85cdbb84e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"collision":{"name":"Collision","mana_cost":{"type":"Cost","shards":["RedGreen"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Collision deals 6 damage to target creature with flying.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":6},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithKeyword","value":"Flying"}]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 6 damage to target creature with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"197ce21b-3387-4e76-a49c-04b9c371c031","metadata":{"source_printing_ids":["9bd15da6-2b86-4dba-951d-318c7d9a5dde"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"colossus":{"name":"Colossus","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets +4/+2 and gains trample until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":4},{"type":"AddToughness","value":2},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +4/+2 and gains trample"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Target creature gets +4/+2 and gains trample until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"197ce21b-3387-4e76-a49c-04b9c371c031","metadata":{"source_printing_ids":["9bd15da6-2b86-4dba-951d-318c7d9a5dde"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rarities":["uncommon"]},"combat celebrant":{"name":"Combat Celebrant","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"If this creature hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after this phase, there is an additional combat phase. (An exerted creature won't untap during your next untap step.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Exerted","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"scope":{"type":"All"},"state":{"type":"Untap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"AdditionalPhase","target":{"type":"Controller"},"phase":"BeginCombat","after":"EndCombat","followed_by":[],"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"If ~ hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after this phase, there is an additional combat phase.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5e15ff93-99a0-4000-918e-4bd2c257188d","parse_warnings":[{"type":"SwallowedClause","detector":"Duration_ThisTurn","description":"If this creature hasn't been exerted this turn, you may exert it as it attacks. When you do, untap all other creatures you control and after","line_index":0}],"metadata":{"source_printing_ids":["0be1c60b-511b-4d88-93d3-7910c082245a","28b63c3d-2e55-4343-b49a-11fa602ec473","3e611db6-0819-487c-bc05-17c92d79c75b","a505914a-a3e0-413e-8781-fc5407cd024b","b943300e-e6af-4e7f-b936-62ef9c314916"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","AKR","BLC","J25","LTC","PAKH"],"rulings":[{"date":"2017-04-18","text":"All cards in the Amonkhet set that let you exert a creature let you do so as you declare it as an attacking creature, as do some of the cards in the Hour of Devastation set. You can't do so later in combat, and creatures put onto the battlefield attacking can't be exerted. Any abilities that trigger on exerting an attacking creature will resolve before blockers are declared."},{"date":"2017-04-18","text":"Combat Celebrant's ability untaps all of your creatures, not just the ones that are attacking."},{"date":"2017-04-18","text":"If an exerted creature is already untapped during your next untap step (most likely because it had vigilance or an effect untapped it), exert's effect preventing it from untapping expires without having done anything."},{"date":"2017-04-18","text":"If you exert Combat Celebrant, you get an additional combat phase even if Combat Celebrant doesn't survive the first combat phase."},{"date":"2017-04-18","text":"If you exert multiple Combat Celebrants in one combat phase, you'll have that many additional combat phases, but all of your creatures are untapped only during the current combat phase. You'll need to exert the Combat Celebrants one at a time, in multiple combat phases, to untap your attacking creatures and attack with them in each combat step."},{"date":"2017-04-18","text":"If you gain control of another player's creature until end of turn and exert it, it will untap during that player's untap step."},{"date":"2017-04-18","text":"There's no main phase between your combat phases, so you'll have no opportunity to cast spells or activate abilities that could only be cast any time you could cast a sorcery. For example, you won't be able to cast another creature or equip Equipment between combats."},{"date":"2017-04-18","text":"Untapping an attacking creature doesn't remove it from combat."},{"date":"2017-04-18","text":"You can't exert a creature unless an effect allows you to do so. Similar effects that \"tap and freeze\" a creature (such as that of Decision Paralysis) don't exert that creature."}],"rarities":["mythic"]},"common black removal":{"name":"Common Black Removal","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one. Destroy target creature, then —\n• Create a Food token.\n• Create a Treasure token.\n• Put a menace counter on a creature you control.\n• That creature's controller mills cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"menace","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f64eff0e-dda7-457b-adf9-aa4e537f4f58","modal":{"min_choices":1,"max_choices":1,"mode_count":4,"mode_descriptions":["Create a Food token.","Create a Treasure token.","Put a menace counter on a creature you control.","That creature's controller mills cards equal to its power."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["44ba16ca-bc75-4d7b-9f40-547ff76ac02b"]},"legalities":{},"printings":["MB2"],"rulings":[{"date":"2024-11-08","text":"For many playtest cards, you’ll need to make a generous assumption that basic game rules would be updated to allow them to work. The Mystery Booster 2 Playtest Card Notes section (reproduced here in individual Gatherer rulings) provides guidance for fitting these cards into the existing rules structure."},{"date":"2024-11-08","text":"Playtest cards aren’t legal for play in any tournament format other than Mystery Booster Limited formats. On the other hand, we expect they will spice up a wide variety of non-tournament games (as long as everyone’s on the same page about using them!)."},{"date":"2024-11-08","text":"Playtest cards use a modified version of game symbols, such as {T} and {W}. These modified symbols should be treated as the standard symbols during play."}],"rarities":["rare"]},"conclave mentor":{"name":"Conclave Mentor","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"If one or more +1/+1 counters would be put on a creature you control, that many plus one +1/+1 counters are put on that creature instead.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"AddCounter","execute":null,"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"If one or more +1/+1 counters would be put on a creature you control, that many plus one +1/+1 counters are put on that creature instead.","condition":null,"quantity_modification":{"type":"Plus","value":1},"counter_match":{"type":"OfType","data":"P1P1"}}],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"a2fe5937-212c-4e71-8d6e-f408b38100aa","metadata":{"source_printing_ids":["2e2d72f6-bde3-49fb-976e-2d0c4dce60e3","93cc7133-1814-4a77-95cc-22b93e63db50","a328a93a-e720-46d5-a190-cc65d1c90cea","c6d36786-6e36-4a9b-97ad-ad7d9d2b8d92"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","M21","MOC","PLST"],"rulings":[{"date":"2020-06-23","text":"Conclave Mentor's first ability doesn't apply to itself if it's somehow entering the battlefield with a +1/+1 counter on it."},{"date":"2020-06-23","text":"If a creature you control would enter the battlefield with a number of +1/+1 counters on it, it enters with that many plus one instead."},{"date":"2020-06-23","text":"If two or more effects attempt to modify how many counters would be put onto a creature you control, you choose the order to apply those effects, no matter who controls the sources of those effects."},{"date":"2020-06-23","text":"If you control two Conclave Mentors, the number of +1/+1 counters put on a creature is two plus the original number. Three Conclave Mentors add three, and so on."},{"date":"2020-06-23","text":"Use Conclave Mentor's power as it last existed on the battlefield to determine how much life you gain."}],"rarities":["uncommon"]},"consecrate":{"name":"Consecrate","mana_cost":{"type":"Cost","shards":["WhiteBlack"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target card from a graveyard.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target card from a graveyard.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"20e7a93f-77ce-466b-8586-35d390689d0c","metadata":{"source_printing_ids":["00320106-ce51-46a9-b0f9-79b3baf4e505"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rulings":[{"date":"2019-01-25","text":"If the creature's power is negative, you don't lose or gain life."},{"date":"2019-01-25","text":"If the target player controls more than one creature with the greatest power among creatures they control, that player chooses which to sacrifice."},{"date":"2019-01-25","text":"The amount of life gained while Consume resolves is equal to the power of the creature as it last existed on the battlefield."},{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"consume":{"name":"Consume","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature with the greatest power among creatures they control. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Aggregate","function":"Max","property":"Power","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature with the greatest power among creatures they control. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"20e7a93f-77ce-466b-8586-35d390689d0c","metadata":{"source_printing_ids":["00320106-ce51-46a9-b0f9-79b3baf4e505"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["RNA"],"rarities":["uncommon"]},"consuming ferocity":{"name":"Consuming Ferocity","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant non-Wall creature\nEnchanted creature gets +1/+0.\nAt the beginning of your upkeep, put a +1/+0 counter on enchanted creature. If that creature has three or more +1/+0 counters on it, it deals damage equal to its power to its controller, then destroy that creature and it can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"+1/+0","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"ParentTarget"},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetHasKeywordInstead","keyword":{"Unknown":"three or more +1/+0 counters on it"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetHasKeywordInstead","keyword":{"Unknown":"three or more +1/+0 counters on it"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, put a +1/+0 counter on enchanted creature. If that creature has three or more +1/+0 counters on it, it deals damage equal to its power to its controller, then destroy that creature and it can't be regenerated.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+0."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"8efbe68c-622c-4986-a375-7e0bf780eb2e","metadata":{"source_printing_ids":["05835e35-f4f8-4513-b5a1-9e31b21168f0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["uncommon"]},"consuming sepulcher":{"name":"Consuming Sepulcher","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, each opponent loses 1 life and you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses 1 life and you gain 1 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black"],"color_identity":["Black"],"scryfall_oracle_id":"883a4180-9ede-4249-a4b8-3a29c998fb63","metadata":{"source_printing_ids":["dbaa9a2d-e9fd-4746-a26c-f99ae731f024"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rarities":["common"]},"consuming vapors":{"name":"Consuming Vapors","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice. You gain life equal to that creature's toughness.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","non_ability_text":null,"flavor_name":null,"keywords":["Rebound"],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature of their choice. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a10ce333-48d7-499b-9355-f381f2395497","metadata":{"source_printing_ids":["008de17e-aa79-4d4c-ab66-d516eca49e42","7b6e74a3-f390-4ad2-93de-930af0e5585c","9d47bea4-3286-4a96-ab61-f4865ed03ac5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C17","ROE"],"rulings":[{"date":"2010-06-15","text":"At the beginning of your upkeep, all delayed triggered abilities created by rebound effects trigger. You may handle them in any order. If you want to cast a card this way, you do so as part of the resolution of its delayed triggered ability. Timing restrictions based on the card's type (if it's a sorcery) are ignored. Other restrictions are not (such as the one from Rule of Law)."},{"date":"2010-06-15","text":"If a replacement effect would cause a spell with rebound that you cast from your hand to be put somewhere else instead of your graveyard (such as Leyline of the Void might), you choose whether to apply the rebound effect or the other effect as the spell resolves."},{"date":"2010-06-15","text":"If a spell with rebound that you cast from your hand doesn't resolve for any reason (due being countered by a spell like Cancel, or because all of its targets are illegal), rebound has no effect. The spell is simply put into your graveyard. You won't get to cast it again next turn."},{"date":"2010-06-15","text":"If the targeted player doesn't sacrifice a creature (because the player didn't control any creatures or due to Tajuru Preserver, perhaps), you gain no life."},{"date":"2010-06-15","text":"If you are unable to cast a card from exile this way, or you choose not to, nothing happens when the delayed triggered ability resolves. The card remains exiled for the rest of the game, and you won't get another chance to cast the card. The same is true if the ability is countered (due to Stifle, perhaps)."},{"date":"2010-06-15","text":"If you cast a card from exile this way, it will go to your graveyard when it resolves, fails to resolve, or is countered. It won't go back to exile."},{"date":"2010-06-15","text":"If you cast a spell with rebound from anywhere other than your hand (such as from your graveyard due to Sins of the Past, from your library due to cascade, or from your opponent's hand due to Sen Triplets), rebound won't have any effect. If you do cast it from your hand, rebound will work regardless of whether you paid its mana cost (for example, if you cast it from your hand due to Maelstrom Archangel)."},{"date":"2010-06-15","text":"If you cast a spell with rebound from your hand and it resolves, it isn't put into your graveyard. Rather, it's exiled directly from the stack. Effects that care about cards being put into your graveyard won't do anything."},{"date":"2010-06-15","text":"Rebound will have no effect on copies of spells because you don't cast them from your hand."},{"date":"2010-06-15","text":"The sacrificed creature's last known existence on the battlefield is checked to determine its toughness."}],"rarities":["rare"]},"coralhelm commander":{"name":"Coralhelm Commander","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Level up {1} ({1}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 2-3\n3/3\nFlying\nLEVEL 4+\n4/4\nFlying\nOther Merfolk creatures you control get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":[],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"Flying"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":2,"maximum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 2-3 / 3/3 / Flying"},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Merfolk"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":4},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Merfolk creatures you control get +1/+1."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"AddKeyword","keyword":"Flying"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":4},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 4+ / 4/4 / Flying"}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"0ca0a186-026d-4cec-9c23-15d94e6acca9","metadata":{"source_printing_ids":["46246d37-dfce-4977-854e-ee79d47cea05","4f8d1bea-58cd-4483-a70a-0330ad5ab4a1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LCC","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature's level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler's power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature's power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler's power or toughness to a specific value, including the effects from a level symbol's ability, apply in timestamp order. The timestamp of each level symbol's ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler's printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don't overwrite any other abilities it may have. In particular, they don't overwrite the creature's level up ability; it always has that."}],"rarities":["rare"]},"corpse harvester":{"name":"Corpse Harvester","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{B}, {T}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, put them into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Swamp"}],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":2},"reveal":true,"selection_constraint":{"type":"MatchEachFilter","filters":[{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Swamp"}],"controller":null,"properties":[]}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}{B}, {T}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, put them into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f02ad6fa-7a82-471a-979e-0bb9ba866ef6","metadata":{"source_printing_ids":["0d09c2c8-526b-4693-bbaa-109911ce5281","b49430a6-8572-4959-a8ae-4b6fdcef440f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["HOP","LGN","PLST"],"rulings":[{"date":"2004-10-04","text":"You do not have to find a Zombie card or swamp card if you do not want to, even if you have them in your library."}],"rarities":["uncommon"]},"counterspell":{"name":"Counterspell","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"cc187110-1148-4090-bbb8-e205694a39f5","metadata":{"source_printing_ids":["02da8709-4228-4fed-9d2d-781e686661df","053f724c-c88d-44c0-9902-6400c064640b","0a1b4e2e-5459-4fae-81d9-1e882647daac","0a448077-3b1f-4efd-a606-e3ff40fe1621","0c9a7cb0-5bff-48ff-b620-2838816ac9b5","0df55e3f-14de-46ef-b6b1-616618724d9e","113675bf-4916-4902-a40f-4b587ac0bebe","13c474f7-38f1-4e46-8619-dd2a1b23c158","14b62ca7-2147-422e-97dd-573b474ef97f","180fa82e-9e25-4a9c-b9a7-3e1dffaaa5ea","18388c02-8b29-4f83-877b-706c68a9ee29","1920dae4-fb92-4f19-ae4b-eb3276b8dac7","1b73577a-8ca1-41d7-9b2b-7300286fde43","22b31ea9-f967-4e5a-b293-c7773cc4a0ba","29bb1b85-9444-4bfa-b622-092a6873631c","2a6c681a-2b5f-4c4e-81c3-91e8aba47985","2c358d75-01ad-4487-8104-425124b96aae","4652c51c-881f-4732-872d-17f60847ef29","47973a25-a600-49ed-b92e-83cdd65be1e3","4a196a26-d03e-4535-940c-0e7976da216d","4dd995aa-6aa1-495e-8d00-37fdbdbdbc7b","4f616706-ec97-4923-bb1e-11a69fbaa1f8","500e6211-c101-43f1-a03a-1750f762deaf","52042404-12db-4914-bfa0-8249a5942088","5323b7eb-976b-49fa-bc95-53337b43f9a3","5932f2dc-3bb6-4f5e-8e8d-c62e7413ac0a","5d93b770-dc46-46ad-aefe-282dac8cc246","62504a3f-df9f-4fab-a5fc-50fc39288052","6522cc61-397d-4754-9a7f-9f9d50f85922","68787949-4c50-47a1-a28c-05ea37dd13cd","6ac949a7-51ea-4c7e-ad46-87e5ee88b99b","6c4de9a0-b778-4e58-ab7d-23aeddffc5af","703dc932-3f90-47e9-8d13-aad1b65f1651","71cfcba5-1571-48b8-a3db-55dca135506e","79976df3-e989-4f99-8534-dca962f85e3d","7bd03c80-7812-4704-9e07-9cf73b49c01f","7c3271da-cc20-48c2-ac61-b64a8e47f9e5","7c666b4b-c4ff-40ca-9d16-c76aafebaa83","7e47212d-399e-4121-92d4-9fb0d85767cb","8493131c-0a7b-4be6-a8a2-0b425f4f67fb","87284999-8b35-4142-a711-0c9e1bdc8e1a","885b5ca4-b8e4-4a66-9508-a12396959253","8bed211e-f3ec-4e9e-b9a7-0989930dd049","976f36ce-57b0-4364-9009-b3bbf5763050","9e11bf7c-f439-4529-b29a-d711359807ef","a457f404-ddf1-40fa-b0f0-23c8598533f4","a7b5b4b1-1df0-46c4-97ff-f0ca2d1c91fb","aedbcbaa-40f0-485f-8427-778edc2d2ec0","b230b4f7-0e2a-42ba-a780-27c9714b70a2","b975289d-d8b8-46b4-8c60-d6ed4b594519","cca8eb95-d071-46a4-885c-3da25b401806","ce30f926-bc06-46ee-9f35-0cdf09a67043","d14d5ff3-40c0-4f22-91ad-d6c8447cb9e0","dacdd380-71cf-4832-bd02-3697501325f3","e8493631-6c9c-40a8-b7de-ecf26ba6bf7d","ec4fb462-9226-43cb-862f-7467762e6c8b","ee0d3f5f-7790-4772-bead-5d7114a23e94","f35ec9da-f38b-4b7f-9eb5-090ca7755668","f5c6f284-fc07-4849-8210-80f12f77f518"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","A25","BRB","BTD","CED","CEI","CMM","CMR","DD2","DMR","DSC","EMA","F05","FBB","FCA","G00","GN3","ICE","JVC","LEA","LEB","MAR","MB2","ME2","ME4","MH2","MMQ","MP2","OMB","PF24","PF26","PLGM","PLST","PMEI","PRM","PTC","PURL","S99","SCD","SLD","SS1","STA","SUM","TMP","TPR","VMA","WC00","WC01","WC02","WC97","WC98"],"rarities":["common","uncommon","rare"]},"cragganwick cremator":{"name":"Cragganwick Cremator","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant","Shaman"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, discard a card at random. If you discard a creature card this way, this creature deals damage equal to that card's power to target player or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"random":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, discard a card at random. If you discard a creature card this way, ~ deals damage equal to that card's power to target player or planeswalker.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f8ea46e2-84ca-4dcb-b675-a2374bc967bc","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"When this creature enters, discard a card at random. If you discard a creature card this way, this creature deals damage equal to that card'","line_index":0}],"metadata":{"source_printing_ids":["2a5b228b-4ea3-426f-a74b-1efd35592ccb","4b13d612-f5d4-4423-99bc-359c47a8aa99","c9297506-8656-483d-892e-217ecd8bab0c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","PLST","SHM"],"rulings":[{"date":"2020-08-07","text":"Cragganwick Cremator deals damage equal to the discarded creature card's power as it exists in your graveyard."},{"date":"2020-08-07","text":"If the target player or planeswalker is an illegal target by the time the ability tries to resolve, the ability won't resolve. You won't discard a card."},{"date":"2020-08-07","text":"If you have no cards in hand when Cragganwick Cremator's ability resolves, you don't discard anything."},{"date":"2020-08-07","text":"You choose the target player or planeswalker when the ability is put onto the stack. You won't know how much damage will be dealt until the ability resolves."}],"rarities":["rare"]},"creature bond":{"name":"Creature Bond","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, this Aura deals damage equal to that creature's toughness to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, ~ deals damage equal to that creature's toughness to the creature's controller.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"70492e32-ba4d-4314-b016-892fb15f7a23","metadata":{"source_printing_ids":["131b80ad-1ffe-449d-a595-74c65f6605cd","1f9e4aa8-4ca7-4893-81d7-98205246f357","4ce48b24-a65e-42d9-a147-8f89028fada7","5d89669b-f08a-400c-8673-7ffd91c05f5d","678e1ddd-caf8-4565-b9c0-cea2891a531e","717c5ee5-a033-4a58-bdcb-ef54e6c8b7a9","90e7626d-0b49-4ab8-91f6-4921448a4520","e83cd6e8-0460-44ed-8255-e4b82bca4d16","ee4bd7d1-77e5-46e5-a594-c24469e88c4c","fb601439-7610-4bf7-a2f3-5fb6e9a0d82c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","FBB","LEA","LEB","SUM"],"rarities":["common"]},"crossway troublemakers":{"name":"Crossway Troublemakers","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Attacking Vampires you control have deathtouch and lifelink. (Any amount of damage they deal to a creature is enough to destroy it. Damage dealt by those creatures also causes their controller to gain that much life.)\nWhenever a Vampire you control dies, you may pay 2 life. If you do, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Fixed","value":2}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a Vampire you control dies, you may pay 2 life. If you do, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Attacking"}]},"modifications":[{"type":"AddKeyword","keyword":"Deathtouch"},{"type":"AddKeyword","keyword":"Lifelink"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Attacking Vampires you control have deathtouch and lifelink."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"1a362e4d-6c02-4b67-ab63-c6622e505195","metadata":{"source_printing_ids":["03a5e19c-4cb8-4bd7-923c-4db747dc6ca3","38a61199-7471-4568-bc86-b8cc48b91c2c","431711c5-c04f-4d34-97c9-5199cfbf9da9","74b7a5dc-da8f-49dd-8182-45b851335be4","95ef4f86-9b96-4181-9442-44adce180984"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J25","LCC","PRM","VOC"],"rulings":[{"date":"2021-11-19","text":"You may pay 2 life only once for each Vampire that dies. You can't pay multiple times for the same triggered ability and draw multiple cards."}],"rarities":["rare"]},"crucible of worlds":{"name":"Crucible of Worlds","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play lands from your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"33c722cf-b4bf-431f-aefd-ee96241a7fbf","metadata":{"source_printing_ids":["0dccb71b-a25a-4ef8-b2ab-716fd38dcc0b","20b7357c-7afc-466a-b74c-a7a8a4c5a4b1","2f314ca8-19fa-4cc9-9d23-c280de3b79bc","312a6058-de08-487d-95bd-b3c56807fdd6","43ca51fb-46f9-42c1-8e2f-442c9425adfb","5d7ef391-60d7-41cd-b3fe-d1ce250e807a","7f4893ef-f983-418b-b7a4-5f073c844545","eb28b35c-28a5-4042-b21d-6d43658a16eb","ef970bfc-462d-4998-9366-eed160ab57da","fcc887b1-299e-49f2-94ab-7c3fb24b1432"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2X2","5DN","J13","M19","MPS","PIP","PM19","PRM","PWOR","SLD"],"rulings":[{"date":"2018-07-13","text":"Crucible of Worlds doesn't allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2018-07-13","text":"Crucible of Worlds doesn't change the times when you can play those land cards. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."}],"rarities":["rare","mythic"]},"cruel reality":{"name":"Cruel Reality","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nAt the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the player can't, they lose 5 life.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"ScopedPlayer","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":5},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"At the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the player can't, they lose 5 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2e3cc9b6-7849-4385-a487-c8f5364174e7","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Enchant player\nAt the beginning of enchanted player's upkeep, that player sacrifices a creature or planeswalker of their choice. If the play","line_index":0}],"metadata":{"source_printing_ids":["06a91cf5-4eab-4d9b-90bd-fb933bb00540","ee5ba8e9-869e-4f68-b668-8ef03929ff3f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","AKR","PAKH"],"rulings":[{"date":"2017-04-18","text":"The enchanted player can’t choose to lose 5 life if they have a creature or planeswalker that can be sacrificed."},{"date":"2017-04-18","text":"The enchanted player chooses a permanent to sacrifice from among the creatures and planeswalkers that player controls. You don’t choose which type of permanent the player has to sacrifice."},{"date":"2018-01-19","text":"There are many important moments in the story, but the most crucial—called “story spotlights”—are shown on cards. These cards have the Planeswalker symbol in their text box; this symbol has no effect on gameplay. You can read more about these events in the official Magic fiction at http://www.mtgstory.com."}],"rarities":["mythic"]},"crumble":{"name":"Crumble","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. It can't be regenerated. That artifact's controller gains life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. It can't be regenerated. That artifact's controller gains life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8d6e39b0-a190-40a0-a8e1-ee82f477376f","metadata":{"source_printing_ids":["06db0403-dce7-411b-8c3a-8a00b83e681c","32123652-4f71-4f0b-b317-39e6df039b4f","3ae039bf-8e76-41fd-b02f-de2fa79dc788","3cfb6d26-a7f8-49b1-9e72-053a0d2ee06f","4283c407-235d-4332-ab2b-50ec09cd9812","45c781ee-7ffb-4dd3-ac84-4d6fe4649591","86873be9-21eb-496c-b278-4c9847563b0f","a5db8a5b-c5be-4d94-abbb-ad01b4dfd13f","d2101f86-8d3c-4ba8-ac42-bd3df0644280"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","5ED","ATQ","FBB","ME4","SUM","WC97"],"rulings":[{"date":"2004-10-04","text":"If the target artifact becomes illegal before resolution, the player does not gain any life."}],"rarities":["common","uncommon"]},"crush underfoot":{"name":"Crush Underfoot","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Kindred","Instant"],"subtypes":["Giant"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose a Giant creature you control. It deals damage equal to its power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Giant"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose a Giant creature you control. It deals damage equal to its power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"81686da0-85fc-4938-962b-24443de3ada1","metadata":{"source_printing_ids":["756025a8-1096-4e7c-bbfe-6237e4a76216","e0386925-53bc-4902-ac30-cbdcb099936d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW","MMA"],"rulings":[{"date":"2013-06-07","text":"Crush Underfoot doesn't target the Giant creature you control. You choose that Giant as Crush Underfoot resolves. If you don't control a Giant creature at that time, the spell will finish resolving with no effect."},{"date":"2024-06-07","text":"Kindred is a card type that allows noncreature cards to have creature types. For example, Echoes of Eternity is an Eldrazi (although not a creature) while on the battlefield and an Eldrazi card (although not a creature card) in zones other than the battlefield."},{"date":"2024-06-07","text":"This cards was originally printed with the \"tribal\" card type. That card type has been replaced with \"kindred\". This change does not affect the gameplay function of this card."},{"date":"2024-06-07","text":"While it appears only on cards that already have other card types, kindred is a card type and will be counted by effects that refer to the number of card types among cards in a zone."}],"rarities":["common","uncommon"]},"cryptic command":{"name":"Cryptic Command","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Counter target spell.\n• Return target permanent to its owner's hand.\n• Tap all creatures your opponents control.\n• Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"scope":{"type":"All"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"a3e51a35-09df-4189-b131-08a21e6a557d","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Counter target spell.","Return target permanent to its owner's hand.","Tap all creatures your opponents control.","Draw a card."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["007b8395-2725-4eb8-9e44-c7eb419fd319","0183c540-9b05-4e65-b2a5-b062754020da","02fe76b0-86eb-4f5b-8877-657cb8a37fc3","2aafb336-609e-425b-b4b6-9dc7d791f0cb","30f6fca9-003b-4f6b-9d6e-1e88adda4155","829e3d6e-5d7c-4cc4-a7a6-7cbf5a7442ba","db764c69-9cbd-4fcf-aff6-bc6a60ef1051"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","IMA","LRW","MM2","MMA","MP2","P09","PLST","PPRO","PRM","SLD"],"rulings":[{"date":"2017-11-17","text":"Look at both chosen modes to determine how many targets Cryptic Command has, if any. If it has at least one target, and all its targets are illegal when it tries to resolve, then it won’t resolve and none of its effects will happen. For example, if you choose the second and fourth modes, and the permanent is an illegal target when Cryptic Command tries to resolve, you won’t draw a card."},{"date":"2017-11-17","text":"You choose both modes as you cast Cryptic Command. You must choose two different modes."}],"rarities":["rare"]},"crystalline sliver":{"name":"Crystalline Sliver","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"All Slivers have shroud. (They can't be the targets of spells or abilities.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":[{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Shroud"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Slivers have shroud."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"ba3aa1eb-722a-47d3-83be-96daddb50265","metadata":{"source_printing_ids":["06551990-713c-4b8b-bebb-4e849babb5bb","8c10b48a-f21c-4f4a-84d1-2beedef05270","a0c7f341-c61e-491d-850a-221c6a57ac64","d30d18c1-65a2-447a-9ebd-194e74e46015","e6a1b96a-ff75-4b4c-aea7-b41d9f9ac710"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["CMM","F03","H09","PLST","PRM","SLD","STH","TPR"],"rulings":[{"date":"2004-10-04","text":"The ability only applies while this card is on the battlefield."},{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn’t provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it’s no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."}],"rarities":["uncommon","rare"]},"cultivate":{"name":"Cultivate","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for up to two basic land cards, reveal those cards, put one onto the battlefield tapped and the other into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"UpTo","max":{"type":"Fixed","value":2}},"reveal":true,"split":{"primary_destination":"Battlefield","primary_count":1,"primary_enter_tapped":true,"rest_destination":"Hand"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for up to two basic land cards, reveal those cards, put one onto the battlefield tapped and the other into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8b755881-a72d-4e21-a369-d2924eb4585a","metadata":{"source_printing_ids":["075cac04-9397-4edb-b49a-485dd58dcae1","0c5f5297-fe94-44df-9004-427640196afd","2c7b84c8-b79d-4d05-8d2e-23657bd6ca7c","2d378437-4fc1-4004-a49a-98d7bac36ef5","2ef3dbe4-5c03-4be4-ab48-45b6689b6712","31233339-c5ec-40fb-badd-94ef7f0ff7c0","3217b813-7c21-473c-b65b-5766b0dc7803","44a70f85-2909-49f5-8e11-8fc806dce3b2","46419c85-c476-42b8-979f-143b45c6819b","47086c14-f451-47da-845b-2a256930d067","4791c571-289e-4c7a-b642-04f12a1c2200","4824ad7c-e533-4357-b486-9e908721db65","4a433310-3fe2-4156-864d-7a6b2638340b","4d36559d-3b91-46e4-bc39-c489842adcbf","56b34b52-7a67-44b4-82e7-2860729ba410","5a108064-8143-4b20-a5a2-eeb3b80af82f","5e6cdd3d-f9c5-4303-b56f-e7f6260e36f4","66a82a81-9b3e-421c-b916-15f40f359bf8","684063e2-c9a5-4e7c-b702-94e3e114d063","69c90a17-42ad-4f27-ab1b-3790bc0813b3","6bb4dff5-4486-4ba5-9b85-9f005d988108","6d204fda-c4c4-456c-900a-a67fa9ce3b5d","782ec69b-89c5-484e-a5ce-9cbea75dcc3e","7ee610ee-7711-4a6b-b441-d6c73e6ef2b4","83d1a3a2-4f2d-4f5f-9270-7c771d2c91b1","8960ee5f-1109-4569-9191-be68a2c0f7d5","8bc964b1-26bc-4dd2-99e3-4f421c2f8e67","8c97fe96-f30a-41ef-9d80-dd83207d14a4","a3889ea3-b7e0-446e-a8af-be284198a758","af9a4b1e-f6c0-489b-878b-533dd46cdd1a","b149d9f6-c337-43cd-8f9e-1f864d039d9c","bd71a79c-59aa-459d-bd38-8c180af0835f","bffc7f45-6f2c-401a-83a6-b36ce3e1948e","c6396ba2-ea82-4ca8-9848-08751a1bf45a","d6a8f239-0e6c-4454-a2f7-f1a8351864d5","e180e418-f62e-4b4b-a07a-bdc523a6addb","e19cd136-0541-4db0-997f-20a58ec8d028","e903f265-a644-421f-a956-b470831d94fd","ea325c2c-36cb-46c5-b410-a3ee0b15e638","ef49fe58-9839-44e1-934d-ff744d3da35a","f1cc00f9-ae7b-4f7b-95f2-bc5c00e4bd72","f6eecb56-d5a3-4c2b-a479-dbec61da9fb4","faf2ef91-fb95-4cc0-a2a6-53fac5cd807d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["40K","A25","AFC","BLC","C13","C16","C17","C18","C19","C20","C21","CLB","CM2","CMD","CMM","CMR","DMC","DSC","E01","ECC","EOC","F11","FIC","J22","LCC","LTC","M11","M21","MOC","NCC","ONC","PC2","PCA","PIP","PLST","PRM","PW23","PZ1","SCD","SLD","SOC","STA","TDC","TMC","WHO"],"rulings":[{"date":"2010-08-15","text":"If you choose to find only one basic land card, you put it onto the battlefield tapped."}],"rarities":["common","uncommon","rare"]},"curse of bounty":{"name":"Curse of Bounty","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nWhenever enchanted player is attacked, untap all nonland permanents you control. Each opponent attacking that player untaps all nonland permanents they control.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"scope":{"type":"All"},"state":{"type":"Untap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"attacking","description":"attacking that player untaps all nonland permanents they control"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"Whenever enchanted player is attacked, untap all nonland permanents you control. Each opponent attacking that player untaps all nonland permanents they control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b6689782-08d8-48e1-a05d-cd040dfe85bc","metadata":{"source_printing_ids":["2f497641-b73a-4399-bc89-5274c42e17cc","37d5b1a2-01c6-475f-86cc-c911802e6033"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","PZ2","SCD"],"rulings":[{"date":"2017-08-25","text":"A player is attacking another player if they control a creature that’s attacking that player. If no creatures are attacking the enchanted player as a Curse’s ability resolves (most likely because they’ve left the battlefield), only the Curse’s controller performs its actions."},{"date":"2017-08-25","text":"Each Curse’s ability triggers only once, no matter how many creatures are attacking the enchanted player."},{"date":"2017-08-25","text":"If you enchant yourself with one of these Curses, you’ll get its effects whenever another player attacks you."},{"date":"2017-08-25","text":"The triggered ability of these Curses won’t trigger if only a planeswalker controlled by the enchanted player is attacked."},{"date":"2017-08-25","text":"Untapping an attacking creature doesn’t remove it from combat."}],"rarities":["uncommon"]},"curse of opulence":{"name":"Curse of Opulence","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura","Curse"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant player\nWhenever enchanted player is attacked, create a Gold token. Each opponent attacking that player does the same. (A Gold token is an artifact with \"Sacrifice this token: Add one mana of any color.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Player"}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Token","name":"Gold","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Gold"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"attacking","description":"attacking that player does the same"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"AttachedTo"},"valid_source":null,"description":"Whenever enchanted player is attacked, create a Gold token. Each opponent attacking that player does the same.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ba0d3df2-3acf-46d7-8d64-8d67d1579adc","metadata":{"related_token_ids":["214f0959-71fa-59ba-8efb-080cbc3e5b99","603d6f2b-313f-5453-a3f1-55f5154ec9f6","66cd1235-f092-5483-b517-bd0398621a94","6c3f3f0f-cfa8-5ae3-ac32-eadcaf33f275","6c4de848-5258-50e6-9a57-ceccc81aefce"],"source_printing_ids":["32cc103e-949d-42d4-aadd-490a261c9ad9","3dccadfc-458f-4696-bfb4-4bfc80379df2","440acae3-aadb-40f0-a608-d1d93578c6b0","494a6f50-9cd3-4bfc-9382-dce4f7047a81","6615d7f1-1ed6-43af-a916-6caa4bd35ca3","e23db9d3-d11f-4b2c-8349-687bc0e9d4c2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","CLB","MKC","MOC","PLST","PZ2","TDC"],"rulings":[{"date":"2017-08-25","text":"A player is attacking another player if they control a creature that's attacking that player. If no creatures are attacking the enchanted player as a Curse's ability resolves (most likely because they've left the battlefield), only the Curse's controller performs its actions."},{"date":"2017-08-25","text":"Curse of Opulence's triggered ability resolves after attackers have been declared. Any costs to attack must have already been paid before the attacking player creates the Gold."},{"date":"2017-08-25","text":"Each Curse's ability triggers only once, no matter how many creatures are attacking the enchanted player."},{"date":"2017-08-25","text":"If you enchant yourself with one of these Curses, you'll get its effects whenever another player attacks you."},{"date":"2017-08-25","text":"The triggered ability of these Curses won't trigger if only a planeswalker controlled by the enchanted player is attacked."}],"rarities":["uncommon"]},"cyclonic rift":{"name":"Cyclonic Rift","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target nonland permanent you don't control to its owner's hand.\nOverload {6}{U} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Overload":{"type":"Cost","shards":["Blue"],"generic":6}}],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"Opponent","properties":[]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":"Return target nonland permanent you don't control to its owner's hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d75b9c82-1b49-4c3e-a1b5-aeef57d6644b","metadata":{"source_printing_ids":["1fadf1e3-4f4f-4f58-b8a9-11e14bb550f8","205c4689-8b02-4d40-9274-3c1fcafa8b82","2064a0d6-3739-4466-9657-be694c0eb6e1","268f6afc-bf16-4ca7-a986-945a95d3bffc","45617b0f-fdac-4747-b2d3-d571b717008f","631a15c2-0a6d-4859-91e9-a08a7e756054","7810a95a-e1e1-4655-a508-dfbc83d4d527","c77ebe57-ea56-4300-b293-6260c4c01a43","dfb7c4b9-f2f4-4d4e-baf2-86551c8150fe","ee3bd03a-f296-479a-bd92-af7c55e594c4","f9baef6e-a086-41d4-a20e-486f01d72406","ff08e5ed-f47b-4d8e-8b8b-41675dccef8b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","C14","CMM","EA3","MM3","PRM","RTR","RVR","SLD","SOA"],"rulings":[{"date":"2024-01-12","text":"Because a spell with overload doesn't target when its overload cost is paid, it may affect permanents with hexproof or with protection from the appropriate color."},{"date":"2024-01-12","text":"If you are instructed to cast a spell with overload \"without paying its mana cost,\" you can't choose to pay its overload cost instead."},{"date":"2024-01-12","text":"If you don't pay the overload cost of a spell with overload, that spell will have a single target. If you pay the overload cost, the spell won't have any targets."},{"date":"2024-01-12","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an overload cost), add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare","mythic"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":false}},"dalkovan encampment":{"name":"Dalkovan Encampment","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control a Swamp or a Mountain.\n{T}: Add {W}.\n{2}{W}, {T}: Whenever you attack this turn, create two 1/1 red Warrior creature tokens that are tapped and attacking. Sacrifice them at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WheneverEvent","trigger":{"mode":"YouAttack","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":null,"constraint":null,"condition":null,"batched":false}},"effect":{"kind":"Spell","effect":{"type":"Token","name":"Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Warrior"],"colors":["Red"],"keywords":[],"tapped":true,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}{W}, {T}: Whenever you attack this turn, create two 1/1 red Warrior creature tokens that are tapped and attacking. Sacrifice them at the beginning of the next end step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control a Swamp or a Mountain.","condition":{"type":"UnlessControlsSubtype","subtypes":["Swamp","Mountain"]},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"33a90122-7280-4481-9b97-5879194cae40","metadata":{"related_token_ids":["0639a7f1-e1a9-5c70-9d2f-e43e36448115"],"source_printing_ids":["5af006f6-135e-4ea0-8ce4-7824934e87da","98ad5f0c-8775-4e89-8e92-84a6ade93e35"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Activating Dalkovan Encampment’s last ability creates a delayed triggered ability that will trigger each time you declare at least one creature as an attacker during a declare attackers step this turn. (This usually only happens once per turn, but effects like that of All-Out Assault’s last ability might cause it to happen more than once.) This ability will trigger even if Dalkovan Encampment is no longer on the battlefield. It won’t trigger if you don’t declare any creatures as attackers."},{"date":"2025-04-04","text":"You must already control a Swamp or Mountain as Dalkovan Encampment enters for it to enter untapped. If it enters at the same time as a Swamp or Mountain when you control no other Swamps or Mountains, it will enter tapped."}],"rarities":["rare"]},"dark confidant":{"name":"Dark Confidant","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2068185c-1b50-47d0-aa3f-bf505d199428","metadata":{"source_printing_ids":["05cf51d8-9f91-42ff-99e9-4397f2251c20","2520ab23-a068-4462-b261-2754409b4108","378df0f4-5043-461f-8705-9a2c0c3acd43","4c008ad2-ad33-46ee-a3f1-af85368c8734","537ba5f0-2931-46e6-bb32-d947a3588d20","62895ba2-49d9-4c6e-8545-687cc6c8ef0a","6c821158-f71a-48f9-b6b4-b0e605f22bec","888597ce-c780-461b-a619-32c14636fc76","94f7a441-bf2d-46fb-a7b6-9bd6137f86d9","b0d88239-43dc-46b8-8d46-626e2f8f1070","c74e9388-460d-4dbf-934e-f3ecb48af6e8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","FIN","G11","J25","MM2","MMA","PFIN","PRM","RAV","RVR","SCH"],"rulings":[{"date":"2020-08-07","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2025-06-06","text":"If a card in a player's library has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["rare","mythic"]},"dark tutelage":{"name":"Dark Tutelage","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"0c6ce7c9-316b-4171-a8fa-ca26af1eecb7","metadata":{"source_printing_ids":["9ec3dd9f-3969-4fd7-97f7-e9868eb19a64"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["M11","WOT"],"rulings":[{"date":"2010-08-15","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2010-08-15","text":"If the revealed card has no mana symbols in its upper right corner (because it's a land card, for example), its mana value is 0."},{"date":"2010-08-15","text":"The mana value of the revealed card is determined solely by the mana symbols printed in its upper right corner. The mana value is the total amount of mana in that cost, regardless of color. For example, a card with mana cost {3}{U}{U} has mana value 5."}],"rarities":["rare"]},"darkstar augur":{"name":"Darkstar Augur","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bat","Warlock"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Offspring {B} (You may pay an additional {B} as you cast this spell. If you do, when this creature enters, create a 1/1 token copy of it.)\nFlying\nAt the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Offspring":{"type":"Cost","shards":["Black"],"generic":0}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.175a: When this permanent enters, if its offspring cost was paid, create a token that's a copy of it, except it's 1/1.","constraint":null,"condition":{"type":"AdditionalCostPaid"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"67d2a021-a042-4e5f-b6e4-39cb35514794","additional_cost":{"type":"Optional","data":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":0}}}},"metadata":{"related_token_ids":["66c5362f-7915-51e3-b392-ce1205324ba5"],"source_printing_ids":["1c603751-1e2b-4c8e-a8d2-5c0876e7254f","8e9abfd1-59ba-46f4-ad1d-cf0e125dd4b9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"Any “enters” abilities of the copied creature will trigger when the token enters. Any “as [this creature] enters” or “[this creature] enters with” abilities of the copied creature will also work."},{"date":"2024-07-26","text":"If a card in a player’s library has {X} in its cost, X is 0 for the purpose of determining its mana value."},{"date":"2024-07-26","text":"If the spell is countered, the offspring ability will not trigger, and no token will be created."},{"date":"2024-07-26","text":"If the spell resolves but the creature with offspring leaves the battlefield before the offspring ability resolves, you’ll still create a token copy of it."},{"date":"2024-07-26","text":"In the rare case where the creature doesn’t have the offspring ability when it enters, the ability won’t trigger even if you paid the offspring cost."},{"date":"2024-07-26","text":"In the rare case where the original creature is copying something else when the offspring ability resolves, the token enters as whatever that creature copied, except it’s a 1/1."},{"date":"2024-07-26","text":"Many creatures with offspring abilities have other abilities that refer to them as “this creature” rather than referring to them by name. This difference is for clarity purposes and does not change the function of any of these abilities."},{"date":"2024-07-26","text":"The token copies exactly what was printed on the original creature and nothing else, except it’s a 1/1 (unless that creature is copying something else; see below). It doesn’t copy whether that creature is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any non-copy effects that have changed its types, color, or so on."},{"date":"2024-07-26","text":"The token created by the offspring ability isn’t “cast”, so abilities that trigger when a creature spell is cast won’t trigger for the copy."},{"date":"2024-07-26","text":"You can pay an offspring cost only once as you cast a spell with offspring. You can’t try to pay it multiple times to get more token copies."}],"rarities":["rare"]},"darksteel colossus":{"name":"Darksteel Colossus","mana_cost":{"type":"Cost","shards":[],"generic":11},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":11},"toughness":{"type":"Fixed","value":11},"loyalty":null,"defense":null,"oracle_text":"Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)\nIndestructible (Damage and effects that say \"destroy\" don't destroy this creature.)\nIf Darksteel Colossus would be put into a graveyard from anywhere, reveal Darksteel Colossus and shuffle it into its owner's library instead.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible","Trample"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Owner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If ~ would be put into a graveyard from anywhere, reveal ~ and shuffle it into its owner's library instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"scryfall_oracle_id":"1b09d0cf-403c-4a15-aeee-602a1bdaf0c1","metadata":{"source_printing_ids":["44012fb2-9dbc-408a-b84b-1302b442f699","5a3aa1ce-8757-4541-8ac7-1e7e203b60fc","70197723-c61b-4600-b61d-41380c8f3067","8b5341ab-85a6-44b2-b738-1110e699c02b","cbc27b24-f085-48b0-8757-cd11fbf25b91"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DST","FDN","M10","PW24","SLD"],"rulings":[{"date":"2013-07-01","text":"Lethal damage, damage from a source with deathtouch, and effects that say \"destroy\" won't cause a creature with indestructible to be put into the graveyard. However, a creature with indestructible can be put into the graveyard for a number of reasons. The most likely reasons are if it's sacrificed or if its toughness is 0 or less. (In these cases, of course, Darksteel Colossus would be shuffled into its owner's library instead of being put into its owner's graveyard.)"}],"rarities":["rare","mythic"]},"daxos of meletis":{"name":"Daxos of Meletis","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Daxos can't be blocked by creatures with power 3 or greater.\nWhenever Daxos deals combat damage to a player, exile the top card of that player's library. You gain life equal to that card's mana value. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"TriggeringPlayer"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast that spell"}],"duration":null,"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, exile the top card of that player's library. You gain life equal to that card's mana value. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast that spell.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"GE","value":{"type":"Fixed","value":3}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 3 or greater."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"4cf10cb6-b082-4c0d-89e9-43cd39716201","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6bb68644-e99d-4ecb-a804-8d4ad1c3325d","d2eca63b-7fb2-4a69-84dd-aa0a038a2f8a","ed3f19aa-1131-467f-8ae5-065e14aeb153"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C18","NCC","THS"],"rulings":[{"date":"2013-09-15","text":"Daxos doesn't change when you can cast the exiled card. For example, if you exile a creature card without flash, you can cast it only during your main phase when the stack is empty."},{"date":"2013-09-15","text":"If Daxos is blocked by a creature, raising that creature's power to 3 or greater won't change or undo the block."},{"date":"2013-09-15","text":"If the exiled card is a land card, you won't gain any life and you won't be able to play the land."},{"date":"2013-09-15","text":"You must pay all costs to cast the exiled card. You may pay alternative or additional costs. If the card has any mandatory additional costs, you must pay those."}],"rarities":["rare"]},"day of black sun":{"name":"Day of Black Sun","mana_cost":{"type":"Cost","shards":["X","Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each creature with mana value X or less loses all abilities until end of turn. Destroy those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"modifications":[{"type":"RemoveAllAbilities"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"lose all abilities"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"TrackedSet","id":0},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Each creature with mana value X or less loses all abilities until end of turn. Destroy those creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc857129-533c-41d1-8e8b-1c0443030d69","metadata":{"source_printing_ids":["d0e24797-3e45-4c2b-b4b0-1ef44d42eaee","f42f6bd4-dc1d-4b5f-9489-2cb109a68904"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PSPL","PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"If a creature with an ability that triggers when that creature dies or leaves the battlefield loses that ability and is then destroyed, that ability will not trigger. Those types of triggers need to exist on the battlefield in order to work. Any abilities that trigger when a creature card is \"put into the graveyard from anywhere\" would still trigger, because those abilities function from the graveyard, where the card is a new object that still has the ability."}],"rarities":["rare"]},"daybreak ranger":{"name":"Daybreak Ranger","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Archer","Ranger","Werewolf"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals 2 damage to target creature with flying.\nAt the beginning of each upkeep, if no spells were cast last turn, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithKeyword","value":"Flying"}]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 2 damage to target creature with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if no spells were cast last turn, transform ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"SpellsCastLastTurn"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Red"],"scryfall_oracle_id":"280624aa-5f9a-48fd-85ea-815c96c747b3","metadata":{"source_printing_ids":["25b54a1d-e201-453b-9173-b04e06ee6fb7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"transform","printings":["ISD"],"rulings":[{"date":"2016-07-13","text":"For more information on double-faced cards, see the Shadows over Innistrad mechanics article (http://magic.wizards.com/en/articles/archive/feature/shadows-over-innistrad-mechanics)."}],"rarities":["rare"]},"dead reckoning":{"name":"Dead Reckoning","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may put target creature card from your graveyard on top of your library. If you do, Dead Reckoning deals damage equal to that card's power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may put target creature card from your graveyard on top of your library. If you do, ~ deals damage equal to that card's power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2a4b77f0-81ac-48a6-961b-bd63e99f74cf","metadata":{"source_printing_ids":["ad16a3b8-e99e-47ed-92ce-ef42310f9f46"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["WWK"],"rulings":[{"date":"2010-03-01","text":"Dead Reckoning deals damage equal to the power the creature card had while it was in your graveyard. This could matter if that card is something like Lord of Extinction or Tarmogoyf whose power is determined by a characteristic-defining ability that checks the contents of your graveyard."},{"date":"2010-03-01","text":"If the targeted creature card is an illegal target as Dead Reckoning resolves (because it’s no longer in your graveyard, perhaps), you can’t choose to put it on top of your library. No damage will be dealt."},{"date":"2010-03-01","text":"If the targeted creature is an illegal target as Dead Reckoning resolves (because it’s no longer on the battlefield, perhaps), you may still put the targeted creature card from your graveyard on top of your library. No damage will be dealt."},{"date":"2010-03-01","text":"You must choose two targets as you cast Dead Reckoning: a creature card in your graveyard and a creature on the battlefield. If you can’t, then you can’t cast the spell."}],"rarities":["common"]},"deadly brew":{"name":"Deadly Brew","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player sacrifices a creature or planeswalker of their choice. If you sacrificed a permanent this way, you may return another permanent card from your graveyard to your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Graveyard"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"CostPaidObjectMatchesFilter","filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Each player sacrifices a creature or planeswalker of their choice. If you sacrificed a permanent this way, you may return another permanent card from your graveyard to your hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"b831d3f8-07ce-4172-ba29-213cac414c9a","metadata":{"source_printing_ids":["3e5493c3-0be2-467c-82f0-3ee1ca909d0c","4cd4d5a4-4342-49fb-b1e4-7d08e6cf5376","87d33e48-90fc-4aac-b09a-68050bc053b5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","SOC","STX"],"rulings":[{"date":"2021-04-16","text":"First the active player chooses which creature or planeswalker they'll sacrifice, then each other player in turn order does the same, knowing choices made before their choice. Then all those permanents are sacrificed simultaneously."},{"date":"2021-04-16","text":"If you cast Deadly Brew and control any creatures or planeswalkers as it resolves, you must sacrifice one of them."},{"date":"2021-04-16","text":"You cannot return the same permanent card that you sacrificed."},{"date":"2021-04-16","text":"You choose which permanent card you're returning to your hand, if any, as Deadly Brew resolves, after permanents are sacrificed."}],"rarities":["uncommon"]},"deadshot":{"name":"Deadshot","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target creature. It deals damage equal to its power to another target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target creature. It deals damage equal to its power to another target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"711c10cb-7a85-417d-be24-79d4e4a89993","metadata":{"source_printing_ids":["55d212c5-1642-456f-829f-57f68a2116b6","ad82258b-3856-49ee-9acd-926feb15e070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["TMP","TPR"],"rulings":[{"date":"2004-10-04","text":"Deadshot can target a creature which is already tapped as its first target, and it will still damage the second target. This is because it taps that creature as an effect, not as a cost."}],"rarities":["uncommon","rare"]},"death":{"name":"Death","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target creature card from your graveyard to the battlefield. You lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to the battlefield. You lose life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"d476f4b3-db63-4756-ab76-4b35f63c2825","metadata":{"source_printing_ids":["2424f2c4-366b-42cf-bf4b-a8a5bfdd2c4b","7ab75cdb-93a1-4f78-b404-37566295c321","e16d52ca-f8de-4852-9bff-9d208e5f678f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["AA2","APC","DDJ","DMR","F06","PRM"],"rarities":["uncommon"]},"death watch":{"name":"Death Watch","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nWhen enchanted creature dies, its controller loses life equal to its power and you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When enchanted creature dies, its controller loses life equal to its power and you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6f5b6cba-3b57-4e6a-afa7-0cb62e5cc7d4","metadata":{"source_printing_ids":["0e939d8f-6989-4884-989b-9cba566c9963"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["VIS"],"rarities":["common"]},"death's caress":{"name":"Death's Caress","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"aac711d1-2fa0-42f9-9eda-a1642f3ff016","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature. If that creature was a Human, you gain life equal to its toughness.","line_index":0}],"metadata":{"source_printing_ids":["0643fb9a-8284-4dfc-836a-c2c69ef09f32"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["DKA"],"rulings":[{"date":"2011-01-22","text":"Check the creature as it last existed on the battlefield to determine if it was a Human. If it was, use its toughness as it last existed on the battlefield to determine how much life is gained."},{"date":"2011-01-22","text":"If the target creature isn’t on the battlefield or is otherwise an illegal target when Death’s Caress tries to resolve, Death’s Caress doesn’t resolve and none of its effects will happen. You won’t gain any life."},{"date":"2013-07-01","text":"If Death’s Caress resolves but the target creature isn’t destroyed, perhaps because it has indestructible or it regenerated, you still check if it’s a Human. If so, you’ll gain life equal to its toughness."}],"rarities":["common"]},"delif's cone":{"name":"Delif's Cone","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}, Sacrifice this artifact: This turn, when target creature you control attacks and isn't blocked, you may gain life equal to its power. If you do, it assigns no combat damage this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"when","description":"when target creature you control attacks and isn't blocked"},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"AssignNoCombatDamage","affected":{"type":"ParentTarget"},"modifications":[{"type":"AssignNoCombatDamage"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":"{T}, Sacrifice ~: This turn, when target creature you control attacks and isn't blocked, you may gain life equal to its power. If you do, it assigns no combat damage this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"8af33199-d3ad-44fe-8ee0-abbe36a2278b","metadata":{"source_printing_ids":["262b8788-c5a0-4c8e-9d58-b769b1b0a2ff"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FEM"],"rulings":[{"date":"2004-10-04","text":"If you use the ability after blockers are declared, it won’t trigger at all. So you want to use it before blockers are declared."},{"date":"2004-10-04","text":"This card has an activated ability that creates a triggered ability which watches the target creature."},{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."}],"rarities":["common"]},"delirium":{"name":"Delirium","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during an opponent's turn.\nTap target creature that player controls. That creature deals damage equal to its power to the player. Prevent all combat damage that would be dealt to and dealt by the creature this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"CombatDamage"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a00e5eb6-b916-4cd6-8ff2-c02f4929abc7","casting_restrictions":[{"type":"DuringOpponentsTurn"}],"metadata":{"source_printing_ids":["c52981ea-1173-4f4b-a929-705a11c6e381"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"Tapping the creature is part of the effect and not the cost, therefore you can cast this targeting a tapped creature."}],"rarities":["uncommon"]},"delver of secrets":{"name":"Delver of Secrets","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery card is revealed this way, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Instant","Sorcery"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, look at the top card of your library. You may reveal that card. If an instant or sorcery card is revealed this way, transform ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"edd531b9-f615-4399-8c8c-1c5e18c4acbf","metadata":{"source_printing_ids":["11bf83bb-c95b-4b4f-9a56-ce7a1816307a","6904ea20-e504-47da-95a0-08739fdde260","871c4ccc-5a14-4583-b4c7-6f2d2aeb8253","888fbfaf-dbf9-4045-a79e-d436ef75b3cf","a808459c-f086-4cb6-a53e-4b9e196c1000","a992bbe3-c389-4a4a-927b-dfc01a4cd9be","abff6c81-65a4-48fa-ba8f-580f87b0344a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["DBL","INR","ISD","MID","SLD","V17"],"rulings":[{"date":"2011-09-22","text":"You may reveal the card even if it's not an instant or sorcery. Whether or not you reveal it, the card stays on top of your library."}],"rarities":["common","uncommon","rare"]},"demanding dragon":{"name":"Demanding Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, it deals 5 damage to target opponent unless that player sacrifices a creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":5},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals 5 damage to target opponent unless that player sacrifices a creature of their choice.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":1},"payer":{"type":"Player"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c8f1e3bd-bbf0-4750-b054-03553fc61850","metadata":{"source_printing_ids":["31b73282-6207-4207-8b9c-86a8f9a263a2","35f32486-8292-4372-a898-a38c92262a5d","4d8a5bab-813a-488a-ab65-3286582ef595","f97d0541-f04f-44a6-a20f-4d909ccc90ca"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","M19","PLST","PM19","SCD"],"rarities":["rare"]},"desert":{"name":"Desert","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Desert"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{T}: This land deals 1 damage to target attacking creature. Activate only during the end of combat step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 1 damage to target attacking creature. Activate only during the end of combat step.","target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":null}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"195107ad-879d-4b02-a44a-a3ba70fedf88","metadata":{"source_printing_ids":["201155ea-f474-4e13-acda-cb071a6ca977","c74e13eb-6f82-4db1-9d0d-8310f48d9f6d","f5566c7e-7486-4237-a6e4-f7e641e11b22","fb89de70-d0e6-49ec-8aa9-1d31d3df1646"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","ARN","F08","PLST","PRM","SPG","TSB","V12"],"rulings":[{"date":"2004-10-04","text":"The ability can be used on any player's attacking creatures. This includes your own and creatures in an attack you are not involved in (for multiplayer games)."},{"date":"2017-04-18","text":"Desert is a land subtype with no special meaning. It doesn't grant the land an intrinsic mana ability. Other cards may care about which lands are Deserts."},{"date":"2024-04-12","text":"The end of combat step happens after combat damage is dealt. You can't use Desert to destroy an attacking creature before it has a chance to deal combat damage."}],"rarities":["common","uncommon","special"]},"devour flesh":{"name":"Devour Flesh","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice, then gains life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"player":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target player sacrifices a creature of their choice, then gains life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6c40f825-836e-4b76-8e43-267b4abf013b","metadata":{"source_printing_ids":["01565263-f30d-4cc4-9c5b-4973f3300290","88c42ebd-114a-430d-b3a4-ff2fb3093bf5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GTC","PIO"],"rulings":[{"date":"2013-01-24","text":"Devour Flesh targets only a player. It doesn’t target any creatures. The target player chooses which creature to sacrifice when the spell resolves. That player can sacrifice only a creature they control."},{"date":"2013-01-24","text":"The amount of life gained is equal to the creature’s toughness as it last existed on the battlefield."}],"rarities":["common"]},"devour in shadow":{"name":"Devour in Shadow","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. It can't be regenerated. You lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. It can't be regenerated. You lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9086d8ff-e375-4149-996d-2a88a7596c1c","metadata":{"source_printing_ids":["98c80584-b7b5-4dcd-8a00-812b9dd9b1b9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["5DN"],"rarities":["uncommon"]},"devour intellect":{"name":"Devour Intellect","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target opponent discards a card. If mana from a Treasure was spent to cast this spell, instead that player reveals their hand, you choose a nonland card from it, then that player discards that card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"ParentTargetController"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"SelfObject","metric":{"type":"FromSource","source_filter":{"type":"Typed","type_filters":[{"Subtype":"Treasure"}],"controller":null,"properties":[]}}}},"comparator":"GT","rhs":{"type":"Fixed","value":0}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Target opponent discards a card. If mana from a Treasure was spent to cast this spell, instead that player reveals their hand, you choose a nonland card from it, then that player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"abf8264e-d020-4939-8092-83469b1a2244","metadata":{"source_printing_ids":["13c34f2d-2eac-4241-8b23-9cab3268c254"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rarities":["common"]},"dig up":{"name":"Dig Up","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {1}{B}{B}{G} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nSearch your library for a [basic land] card, [reveal it,] put it into your hand, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Black","Black","Green"],"generic":1}}],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a card, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ae96fe7e-8d89-4f44-9cc4-3c9b124fdc4b","metadata":{"source_printing_ids":["078d0194-0137-45cd-977a-eefae67f9bca","5f5eff40-7e26-44a8-bd7a-d7906945a31e","8f14c947-2452-4fd6-8f1a-391cf5898100","a7f02f41-19b4-49b2-89fa-5b0de2011519"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PLST","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"If you paid the cleave cost, you must put a card into your hand as Dig Up resolves (assuming there is at least one card in your library)."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"diplomatic relations":{"name":"Diplomatic Relations","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Vigilance"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +1/+0 and gains vigilance"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 and gains vigilance until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"57b75be4-9229-4a48-a59e-a0f812f38637","metadata":{"source_printing_ids":["143e5853-9a31-4c8d-b21d-5ef120eb6952","e0a104c5-61fb-4733-97ab-a31a15a49443"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE"],"rarities":["common"]},"dire tactics":{"name":"Dire Tactics","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. If you don't control a Human, you lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. If you don't control a Human, you lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"0c8cb2ec-5b58-497c-a6e7-2d25512d5a44","metadata":{"source_printing_ids":["e0e3974e-3753-4f25-8930-6d96b40332ce"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO"],"rulings":[{"date":"2020-04-17","text":"Use the exiled creature’s toughness as it last existed on the battlefield to determine how much life you lose."},{"date":"2020-04-17","text":"Whether you control a Human is checked only after exiling the target creature. If that creature had exiled a Human you controlled until that creature left the battlefield, that Human will return to the battlefield in time to be counted."}],"rarities":["uncommon"]},"divination":{"name":"Divination","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw two cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"273b339c-964b-4a18-8eb5-ceb8abcdfd9e","metadata":{"source_printing_ids":["1252243c-34e3-447b-b323-fffcbe128278","3102cec9-1cdc-4946-a2dd-caf04eaa8b97","4a1340f1-85a4-4551-9871-bb00db6d97a8","65b9964e-cfe0-4400-b903-3f590889f88d","95d1e5bd-9360-4ba5-83b5-38a9bf8bb5b9","a3c573ab-9013-4c2b-a039-ce5b20dba264","ae04d500-5b2d-4661-bbd2-66cf29456b2b","bfdc821e-0e4b-43ff-86d6-134ac0b4e958","c7f9daf0-dbfd-45b2-be35-9c2de9d1a56e","cb3b35b8-f321-46d8-a441-6b9a6efa9021","ddd1187d-f43f-4508-b312-7af0bb8b9789"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BNG","CN2","DKA","DOM","M10","M12","M13","M14","M15","M19","PLST","PS11","XANA"],"rarities":["common"]},"divine offering":{"name":"Divine Offering","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"231f8edb-4ea1-44be-8794-b76a31462dfc","metadata":{"source_printing_ids":["3b1201ef-1a8c-4b29-be7b-2ff7c755c839","4b84697e-d72d-4169-bf16-753144da281f","5c53562e-6b8f-484d-a083-2c635c2f222b","6d88ecf6-3e94-45fb-a109-cf143fe0f2e3","726294f3-c69a-4ea7-ad43-4f3b298e3b93","787e34ed-26a2-44d8-a542-34186148dc8c","7f30b7cb-b93a-450b-96f4-de2e132e65db","9371c4aa-424f-4b89-9f73-239a9e4f8a9d","993f038a-e222-490f-8a8c-dbebd945bf44","9c78c2f3-2f40-48ad-9dc4-55d1fa399a56","e0a2bab3-0096-4010-ba90-146d8f05c444","fe7c7a65-5a96-4986-877b-b34583092bb6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["5ED","BCHR","CHR","LEG","MBS","ME4","MIR","PTC"],"rulings":[{"date":"2004-10-04","text":"If the target artifact becomes illegal before resolution, you do not gain any life."},{"date":"2013-07-01","text":"If Divine Offering resolves, but the artifact regenerates or has indestructible, you'll still gain the life."}],"rarities":["common"]},"domri's ambush":{"name":"Domri's Ambush","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"a481f910-59a8-48b0-a8e4-c24675e1a67d","metadata":{"source_printing_ids":["b0dcae59-e9be-45a8-8ed8-5b47309bb716"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["WAR"],"rulings":[{"date":"2019-05-03","text":"If either target is an illegal target as Domri’s Ambush tries to resolve, the creature you control won’t deal damage."},{"date":"2019-05-03","text":"If the creature you control is an illegal target as Domri’s Ambush tries to resolve, you won’t put a +1/+1 counter on it. If that creature is a legal target but the other target isn’t, you’ll still put the counter on the creature you control."},{"date":"2019-05-03","text":"You can’t cast Domri’s Ambush unless you choose both a creature you control and a creature or planeswalker you don’t control as targets."}],"rarities":["uncommon"]},"doom blade":{"name":"Doom Blade","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target nonblack creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"59e7f2ae-4535-4191-98be-3e65b6b2befa","metadata":{"source_printing_ids":["077d5ca8-2a94-4d79-9314-c5ca2aa4d14b","176cdb4b-6ad4-4991-8456-28579640063d","3da9358b-cfe4-4e95-9a9e-a236d6373dcf","685a74bb-f158-4d0e-b840-222ecbf107d4","6e19acff-f3dd-417a-a9ab-ea3e36c1ba61","75d96a37-bdbe-46ae-926f-8742699a0b20","7a06a6a8-34ad-464f-8311-eea6eada332e","7e89b4da-a095-4790-b1b7-2369fa221aa4","90699423-2556-40f7-b8f5-c9d82f22d52e","d21c3c86-adb0-4e79-aac5-297f2b729825","de576989-5a76-4dc4-b67a-25dd0be3cceb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMD","DDR","E01","E02","GN3","IMA","M10","M11","M12","M14","P11","PLST","PRM","SLD","STA"],"rarities":["common","uncommon","rare"]},"doomed traveler":{"name":"Doomed Traveler","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature dies, create a 1/1 white Spirit creature token with flying.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":["White"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, create a 1/1 white Spirit creature token with flying.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a30907c0-fbde-4fd3-a8c7-f304305fcea7","metadata":{"related_token_ids":["308a0f75-96d0-5730-b82b-98562a86e78d","4e0e7748-abc8-5a7b-ab2f-483c152fa372","4eabae94-60df-5ef5-857d-33b3d02d09d0","5bb80cf6-edae-5967-8e02-a2692efe9268","a86a71b8-5cf1-5e5c-bd54-c78752372371","aef0ca69-5e0e-5874-b13b-1b4c657a8c2e","afdf1b42-a3f9-50a2-bdc1-3fdb2f1992ad","ce2518f9-9b10-5646-b0c0-66fe6e097d24","d91b25f6-927e-58c1-86ab-57716579c95d","eb7e80a0-86fa-5946-9ef0-f72f36f86387"],"source_printing_ids":["1bbfd61b-fba3-4826-817a-e0eed7b8eda0","1fba63ba-4585-4c2b-9fef-9738852f4efb","32f2065f-1aff-4d6c-af4b-2c2cfb2e0595","35c69ff9-00f1-4c65-9f73-90775bf9885a","52c3f3f5-47b7-46bf-a5a8-b7a79f41236e","5642cdda-789f-4125-a9ff-7c445bb51950","5a4573af-feba-4c9d-b24b-3d15888a5ce2","652c3bbb-cac8-47ad-81de-41e954e17a29","86f7fae8-a03a-4535-83c1-cece267fedec","8a03d414-bff9-4aba-8b0a-0ed57982251e","9c5b6837-2381-4563-861c-73ef3b5341cd","9e578da8-0ae7-494f-acf3-40732e338742","a8ed737f-dbda-455c-a240-5fca57caeb64","ab2ff619-b82a-45c1-b25a-5b6ece2afdc4","c843ccbe-df68-4cc1-b403-124afb037e0c","e98c3007-c45f-4502-ae4b-693bd64f23ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","BBD","CLU","CMR","CN2","CNS","DDK","DDQ","E01","IMA","ISD","J21","J22","PLST","SIS"],"rarities":["common"]},"doomgape":{"name":"Doomgape","mana_cost":{"type":"Cost","shards":["BlackGreen","BlackGreen","BlackGreen"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":10},"toughness":{"type":"Fixed","value":10},"loyalty":null,"defense":null,"oracle_text":"Trample\nAt the beginning of your upkeep, sacrifice a creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, sacrifice a creature. You gain life equal to that creature's toughness.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ab94d8f7-f811-436a-9a22-9a12bd929e98","metadata":{"source_printing_ids":["173fd1c6-ffd9-424f-ad65-90b193edbe00","4e991cd5-8abe-46c0-8731-a58a4b4e5c92","702da51f-c4ec-4073-bee8-f8423f70b163"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDJ","EVE","PLST"],"rulings":[{"date":"2008-08-01","text":"If you have no other creatures to sacrifice, you’ll have to sacrifice Doomgape itself. You’ll gain life equal to its toughness."}],"rarities":["rare"]},"doors of durin":{"name":"Doors of Durin","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you attack, scry 2, then you may reveal the top card of your library. If it's a creature card, put it onto the battlefield tapped and attacking. Until your next turn, it gains trample if you control a Dwarf and hexproof if you control an Elf.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Hexproof"}],"condition":{"type":"IsPresent","filter":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample if you control a Dwarf and hexproof"}],"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":true,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, scry 2, then you may reveal the top card of your library. If it's a creature card, put it onto the battlefield tapped and attacking. Until your next turn, it gains trample if you control a Dwarf and hexproof if you control an Elf.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"d82c77a1-2b81-415d-9f18-47e059c15e01","metadata":{"source_printing_ids":["066abb77-5f77-4897-9ab5-16c247e8e80a","25e2fd90-95b0-4b12-846c-80bb979f0724","8ebd8813-4aaf-48bf-9243-3ec4099b8372","ec674497-2793-48f1-b7fd-6bbde96bda10"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["LTR","PLTR"],"rulings":[{"date":"2023-06-16","text":"If the creature put onto the battlefield this way is a Dwarf and/or Elf, Doors of Durin will see it when checking whether you control a Dwarf or Elf."}],"rarities":["rare"]},"doran, besieged by time":{"name":"Doran, Besieged by Time","mana_cost":{"type":"Cost","shards":["White","Black","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Druid"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Each creature spell you cast with toughness greater than its power costs {1} less to cast.\nWhenever a creature you control attacks or blocks, it gets +X/+X until end of turn, where X is the difference between its power and toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"AttacksOrBlocks","execute":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Difference","left":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Recipient"}}},"right":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Recipient"}}}}},"toughness":{"type":"Quantity","value":{"type":"Difference","left":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Recipient"}}},"right":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Recipient"}}}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control attacks or blocks, it gets +X/+X until end of turn, where X is the difference between its power and toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature spell you cast with toughness greater than its power costs {1} less to cast."}],"replacements":[],"color_override":["Black","Green","White"],"color_identity":["Black","Green","White"],"scryfall_oracle_id":"dd35a377-0865-4b25-bd0f-aaead29a9f0e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["568aa70a-6765-486a-bd37-5d38b16c46de","9f0a1644-58bb-4826-9832-0ffc372fac1e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL","PECL"],"rulings":[{"date":"2025-11-17","text":"Doran's first ability applies only to generic mana in the total cost of creature spells you cast with toughness greater than their power."},{"date":"2025-11-17","text":"The value of X is calculated only once, as Doran's last ability resolves."},{"date":"2025-11-17","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as a flashback cost), add any cost increases (such as kicker costs), then apply any cost reductions (such as that of this ability). The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."},{"date":"2025-11-17","text":"To find the difference between a creature's power and its toughness, subtract the smaller of those two numbers from the larger one. For example, the difference between the power and toughness of a 3/5 creature is 2. The difference between the power and toughness of a 5/3 creature is also 2."}],"rarities":["rare"]},"dovescape":{"name":"Dovescape","mana_cost":{"type":"Cost","shards":["WhiteBlue","WhiteBlue","WhiteBlue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({W/U} can be paid with either {W} or {U}.)\nWhenever a player casts a noncreature spell, counter that spell. That player creates X 1/1 white and blue Bird creature tokens with flying, where X is the spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Bird","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Bird"],"colors":["White","Blue"],"keywords":["Flying"],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"owner":{"type":"TriggeringPlayer"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts a noncreature spell, counter that spell. That player creates X 1/1 white and blue Bird creature tokens with flying, where X is the spell's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"d9f4af37-c85e-44ab-9fea-3c67e2f3cf27","metadata":{"related_token_ids":["26ea98f8-3e82-5523-92a6-09df8b92e271"],"source_printing_ids":["8ebc97bd-508f-4af5-a308-46cb1f256534","b6e3d6e6-ac17-4d73-acac-089442de4af6","e2bd6ecd-a786-4c83-99c5-50515a691417"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS","GK2","SLD"],"rulings":[{"date":"2006-05-01","text":"If a split card is cast, Dovescape makes tokens equal to the mana value of the half that was cast."},{"date":"2006-05-01","text":"The Bird tokens are created even if the spell isn't countered by Dovescape's ability. This may happen because the spell can't be countered, because it's already been countered, or because it's otherwise been removed from the stack by the time Dovescape's ability resolves."}],"rarities":["rare"]},"dread fugue":{"name":"Dread Fugue","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {2}{B} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nTarget player reveals their hand. You choose a nonland card from it [with mana value 2 or less]. That player discards that card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":2}}]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals their hand. You choose a nonland card from it with mana value 2 or less. That player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DiscardCard","count":1,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals their hand. You choose a nonland card from it. That player discards that card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"efe4194a-b3c5-4308-abfe-553e035f5e64","metadata":{"source_printing_ids":["0ad4c472-b8ce-4ae0-a6f0-726ea74722c5","ef8a7485-1630-40f4-8e70-3abd297e8983"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["uncommon"]},"dredger's insight":{"name":"Dredger's Insight","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever one or more artifact and/or creature cards leave your graveyard, you gain 1 life.\nWhen this enchantment enters, mill four cards. You may put an artifact, creature, or land card from among the milled cards into your hand. (To mill four cards, put the top four cards of your library into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more artifact and/or creature cards leave your graveyard, you gain 1 life.","constraint":null,"condition":null,"batched":true},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":4},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, mill four cards. You may put an artifact, creature, or land card from among the milled cards into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3f21c1c6-7992-4036-ad3e-b599153e54fe","metadata":{"source_printing_ids":["148400a0-7819-4551-9815-9357eed1db4d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT"],"rarities":["uncommon"]},"dromoka's command":{"name":"Dromoka's Command","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Prevent all damage target instant or sorcery spell would deal this turn.\n• Target player sacrifices an enchantment of their choice.\n• Put a +1/+1 counter on target creature.\n• Target creature you control fights target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Any"},"scope":"AllDamage","damage_source_filter":{"type":"And","filters":[{"type":"ParentTargetSlot","index":0},{"type":"Or","filters":[{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]}]},{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]}]}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"subject":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"3bd8ea71-cbcc-4659-b9a8-88cf27ee12d8","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Prevent all damage target instant or sorcery spell would deal this turn.","Target player sacrifices an enchantment of their choice.","Put a +1/+1 counter on target creature.","Target creature you control fights target creature you don't control."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["1437f747-51b7-4fe1-bd98-282a27c3470f","43571705-6d53-4ec1-9159-c9c98771b3b6","4e5d0d2a-4984-47f9-b791-4055c8298ac1","df1e43a8-0adc-4e26-bc56-6b914bd35838","f356a294-a032-4457-b891-09806fab050a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","DTK","HA5","MOC","PDTK","PLST"],"rulings":[{"date":"2015-02-25","text":"Although most instants and sorceries that cause damage to be dealt are the sources of that damage, a few cause other objects to deal damage (for example, spells that cause creatures to fight). The first ability of Dromoka's Command won't prevent damage caused by those other sources."},{"date":"2015-02-25","text":"As the spell resolves, follow the instructions of the modes you chose in the order they are printed on the card. For example, if you chose the second and fourth modes of Ojutai's Command, you would gain 4 life and then draw a card. (The order won't matter in most cases.)"},{"date":"2015-02-25","text":"If a Command is copied, the effect that creates the copy will usually allow you to choose new targets for the copy, but you can't choose new modes."},{"date":"2015-02-25","text":"If all targets for the chosen modes become illegal before the Command resolves, the spell won't resolve and none of its effects will happen. If at least one target is still legal, the spell will resolve but will have no effect on any illegal targets."},{"date":"2015-02-25","text":"You can choose a mode only if you can choose legal targets for that mode. Ignore the targeting requirements for modes that aren't chosen. For example, you can cast Ojutai's Command without targeting a creature spell provided you don't choose the third mode."},{"date":"2015-02-25","text":"You can target any player with the second ability, including one that doesn't control an enchantment."},{"date":"2015-02-25","text":"You choose the two modes as you cast the spell. You must choose two different modes. Once modes are chosen, they can't be changed."}],"rarities":["rare"]},"dryad arbor":{"name":"Dryad Arbor","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land","Creature"],"subtypes":["Forest","Dryad"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"(This land isn't a spell, it's affected by summoning sickness, and it has \"{T}: Add {G}.\")","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green"],"scryfall_oracle_id":"e996cd67-739c-40f4-b276-0042acf26c71","metadata":{"source_printing_ids":["42852efb-6ab1-42cf-8678-8154f29039bd","5c4fb7f9-a551-4253-a46e-f6284d355388","7d131beb-9458-4ad4-8074-85e116a3d24d","8cee476d-42e1-4997-87af-73e18f542167","bb3a843b-2dea-4b44-be74-c09c18b9b969","e3ddbebf-72cd-4d1b-ba0d-d94934654ab7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC","FUT","MB2","PLST","SLD","TSR","V12"],"rulings":[{"date":"2011-09-22","text":"If Dryad Arbor is changed into another basic land type (such as by Sea's Claim), it continues to be a creature and a Dryad."},{"date":"2013-06-07","text":"Although originally printed with a characteristic-defining ability that defined its color, this card now has a color indicator. This color indicator can't be affected by text-changing effects (such as the one created by Crystal Spray), although color-changing effects can still overwrite it."},{"date":"2021-03-19","text":"Dryad Arbor is played as a land. It doesn't use the stack, it's not a spell, it can't be responded to, it has no mana cost, and it counts as your land play for the turn."},{"date":"2021-03-19","text":"Due to its color indicator (appearing to the left of its type line), Dryad Arbor is green. Color indicators apply in all zones, not just the battlefield."},{"date":"2021-03-19","text":"Forest is a land type and Dryad is a creature type."},{"date":"2021-03-19","text":"If Dryad Arbor is changed into another basic land type, it continues to be a green Dryad creature."},{"date":"2021-03-19","text":"If a Dryad Arbor gains flash, or you have the ability to play Dryad Arbor as though it had flash (due to Teferi, Mage of Zhalfir or Scout's Warning, for example), you can ignore the normal timing rules for when during your turn you can play a land, but not any other restrictions. You can't play Dryad Arbor during another player's turn, and you can't play Dryad Arbor if you don't have any land plays remaining."}],"rarities":["uncommon","rare"]},"durkwood tracker":{"name":"Durkwood Tracker","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{G}, {T}: If this creature is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{G}, {T}: If ~ is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9216c2e5-4cfe-4945-b45f-20a1e0d308a0","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"{1}{G}, {T}: If this creature is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals da","line_index":0}],"metadata":{"source_printing_ids":["b49f5835-c933-4ba7-a3c9-34f4eb01f00d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TSP"],"rulings":[{"date":"2006-09-25","text":"If Durkwood Tracker has left the battlefield before the ability resolves, the ability doesn’t do anything. If the targeted creature has left the battlefield before the ability resolves, the ability doesn’t resolve."}],"rarities":["uncommon"]},"duskmantle seer":{"name":"Duskmantle Seer","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your upkeep, each player reveals the top card of their library, loses life equal to that card's mana value, then puts it into their hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each player reveals the top card of their library, loses life equal to that card's mana value, then puts it into their hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"d8d9c7e2-8ae7-4e1c-9859-bb3b85a48117","metadata":{"source_printing_ids":["4946e4f9-aab3-4f81-af44-f6b03cd07dc8","4d6d4280-4a45-4e77-a33e-58955d096adc","63711861-87e0-4a63-8b7b-f834aa5f3f18","9c58a1e6-be79-4eb3-94a9-d94b40a7cb15"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C18","CLU","CN2","GTC"],"rulings":[{"date":"2013-01-24","text":"The cards put into hands this way are not “drawn.” For example, you couldn’t reveal a card with miracle put into your hand this way (but it also won’t count as the first card you’ve drawn this turn either)."},{"date":"2013-01-24","text":"The loss of life is simultaneous. If this causes both players to end up at 0 or less life, the game will be a draw. In a multiplayer game, players with 0 or less life will lose the game."}],"rarities":["rare","mythic"]},"earthbender ascension":{"name":"Earthbender Ascension","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, earthbend 2. Then search your library for a basic land card, put it onto the battlefield tapped, then shuffle.\nLandfall — Whenever a land you control enters, put a quest counter on this enchantment. When you do, if it has four or more quest counters on it, put a +1/+1 counter on target creature you control. It gains trample until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 2. Then search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"quest","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"quest"}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, put a quest counter on ~. When you do, if it has four or more quest counters on it, put a +1/+1 counter on target creature you control. It gains trample until end of turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f8966fd5-2926-4ba0-b7d6-cfea40cd4e05","metadata":{"source_printing_ids":["590a58ab-5e98-4031-8aa6-ce396dc1429f","826b4f26-419a-4d74-8c70-275555092095"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTLA","TLA"],"rulings":[{"date":"2025-10-02","text":"The land that the first ability searches for is not on the battlefield when you select targets for earthbend, so it cannot be the land that you earthbend."}],"rarities":["rare"]},"earthbending lesson":{"name":"Earthbending Lesson","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Lesson"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Earthbend 4. (Target land you control becomes a 0/0 creature with haste that's still a land. Put four +1/+1 counters on it. When it dies or is exiled, return it to the battlefield tapped.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":4},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":"Earthbend 4.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e113f0f-4469-4276-82e1-0a804f3de444","metadata":{"source_printing_ids":["eccd63b3-3a3a-4661-9d6e-fb8152429bdb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TLA"],"rarities":["common"]},"earthbending student":{"name":"Earthbending Student","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior","Ally"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, earthbend 2. (Target land you control becomes a 0/0 creature with haste that's still a land. Put two +1/+1 counters on it. When it dies or is exiled, return it to the battlefield tapped.)\nLand creatures you control have vigilance. (Attacking doesn't cause them to tap.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Animate","power":0,"toughness":0,"types":["Creature"],"target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"keywords":["Haste"]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WhenDiesOrExiled","filter":{"type":"ParentTarget"}},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RegisterBending","kind":"Earth"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, earthbend 2.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature","Land"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Vigilance"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Land creatures you control have vigilance."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8f8fd2ba-df0e-49bd-a916-cc4f50b9fa24","metadata":{"source_printing_ids":["1f068ce9-f4c2-4d40-bfa3-7f21f6d3b0b7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TLE"],"rarities":["uncommon"]},"effie, fast learner":{"name":"Effie, Fast Learner","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Survivor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist\nSurvival — At the beginning of your second main phase, if Effie is tapped, put a +1/+1 counter on each tapped creature you control. Then seek a Survivor card with mana value less than or equal to the number of tapped creatures you control.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Seek","filter":{"type":"Typed","type_filters":[{"Subtype":"Survivor"}],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}}}}]},"count":{"type":"Fixed","value":1},"destination":"Hand","enter_tapped":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PostCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your second main phase, if ~ is tapped, put a +1/+1 counter on each tapped creature you control. Then seek a Survivor card with mana value less than or equal to the number of tapped creatures you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"SourceIsTapped"},"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"b0509fea-4850-4434-95f6-733fcfdd03bd","brawl_commander":true,"is_commander":true,"legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDSK"]},"eladamri, korvecdal":{"name":"Eladamri, Korvecdal","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elf","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may cast creature spells from the top of your library.\n{G}, {T}, Tap two untapped creatures you control: Reveal a card from your hand or the top card of your library. If you reveal a creature card this way, put it onto the battlefield. Activate only during your turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Controller"},"card_filter":{"type":"Any"},"count":null},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},{"type":"Tap"},{"type":"TapCreatures","count":2,"filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{G}, {T}, Tap two untapped creatures you control: Reveal a card from your hand or the top card of your library. If you reveal a creature card this way, put it onto the battlefield. Activate only during your turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Cast","alt_cost":null}},"affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast creature spells from the top of your library."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9aff3d55-e25d-4f06-a783-c3aa9eb9fd50","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["86029eaa-b5d3-40ba-8eba-6e6002ea4325","89e17861-e0e6-4660-8705-6c71f10d1f19","cc45370c-79f4-428b-ac65-8397e1190cfd","dfdabdda-bd46-4ea2-8b37-5d7f6cec6aff"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Because you never \"cast\" a land card, Eladamri, Korvecdal doesn't allow you to play a land creature (such as Dryad Arbor) from the top of your library."},{"date":"2024-06-07","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast a spell from the top of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2024-06-07","text":"You can look at the top card of your library whenever you want (with one restriction; see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2024-06-07","text":"You must pay all costs and follow all timing rules for spells cast from the top of your library this way."}],"rarities":["mythic"]},"eldrazi temple":{"name":"Eldrazi Temple","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{T}: Add {C}{C}. Spend this mana only to cast colorless Eldrazi spells or activate abilities of colorless Eldrazi.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}},"restrictions":[{"SpellTypeOrAbilityActivation":"Colorless Eldrazi"}]},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}{C}. Spend this mana only to cast colorless Eldrazi spells or activate abilities of colorless Eldrazi.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7fab8d65-af51-47d3-8f10-2676bf6e8ba3","metadata":{"source_printing_ids":["00372c7a-2e83-4a26-9642-0d092dfcf861","1ab30d54-6043-4361-b221-268813f06a72","315924c9-77e3-405b-9bbf-852ed563c6e3","4f0ee055-1b1e-4ffa-9eb5-9ce7e8965f71","c42049e2-fe4e-4fe9-9599-faf1af50b97d","cbab7e1f-305e-4733-aa70-b27285740925","e9cb2f3d-0ad8-4d5a-a51d-e161ec311b09"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DDP","EOS","M3C","MM2","PLST","ROE","SLD"],"rulings":[{"date":"2016-04-08","text":"The mana generated by the last ability can’t be spent to activate abilities of Eldrazi sources that aren’t on the battlefield."}],"rarities":["uncommon","rare"]},"electrosiphon":{"name":"Electrosiphon","mana_cost":{"type":"Cost","shards":["Blue","Blue","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. You get an amount of {E} (energy counters) equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainEnergy","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. You get an amount of {E} equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"bff9105f-d8d4-4412-88d9-c9697581ebe9","metadata":{"source_printing_ids":["5f388077-d7a5-41a2-a9e9-4c3a5f7c6b48","8377fce8-edc8-4926-bf75-57162ff6df9f","b7af3801-d036-4395-8c39-1f46e7de9b7a","c17762d3-b7d2-43c9-9983-046b9ec1d5df"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Energy counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Energy counters aren’t mana. They don’t go away as steps, phases, and turns end, and effects that add mana “of any type” can’t give you energy counters."},{"date":"2024-03-08","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell’s mana value."},{"date":"2024-03-08","text":"If a spell or ability with one or more targets states that you “may pay” some amount of {E}, and each permanent that it targets has become an illegal target, the spell or ability won’t resolve. You can’t pay any {E} even if you want to."},{"date":"2024-03-08","text":"If an effect says you get one or more {E}, you get that many energy counters. To pay one or more {E}, you lose that many energy counters. You can’t pay more energy counters than you have. Any effects that interact with counters a player gets, has, or loses can interact with energy counters."},{"date":"2024-03-08","text":"Keep track of how many energy counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine. (At higher levels of tournament play, dice may not be allowed for tracking counters that players have.)"},{"date":"2024-03-08","text":"Some spells and abilities that give you {E} may require targets. If each target chosen is an illegal target as that spell or ability tries to resolve, it won’t resolve. You won’t get any {E}."},{"date":"2024-03-08","text":"Some triggered abilities state that you “may pay” a certain amount of {E}. You can’t pay that amount multiple times to multiply the effect. You simply choose whether or not to pay that amount of {E} as the ability resolves."},{"date":"2024-03-08","text":"Some triggered abilities that state that you “may pay” a certain amount of {E} describe an effect that happens “If you do.” In that case, no player may take actions to try to stop the ability’s effect after you make your choice. If the payment is followed by the phrase “When you do,” then you’ll choose any targets for that reflexive triggered ability and put it on the stack before players can take actions."},{"date":"2024-03-08","text":"{E} is the energy symbol. It represents one energy counter."}],"rarities":["rare"]},"electryte":{"name":"Electryte","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Trilobite","Beast"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to defending player, it deals damage equal to its power to each blocking creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Blocking"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":null,"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to defending player, it deals damage equal to its power to each blocking creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5ff0c25f-4593-460b-9d7f-d9c37f135a18","metadata":{"source_printing_ids":["85c3d04f-4010-4db3-9e4e-afa8116b263d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["USG"],"rarities":["rare"]},"elemental spectacle":{"name":"Elemental Spectacle","mana_cost":{"type":"Cost","shards":["Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Vivid — Create a number of 5/5 red and green Elemental creature tokens equal to the number of colors among permanents you control. Then you gain life equal to the number of creatures you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Elemental","power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"types":["Creature","Elemental"],"colors":["Red","Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"DistinctColorsAmongPermanents","filter":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Vivid — Create a number of 5/5 red and green Elemental creature tokens equal to the number of colors among permanents you control. Then you gain life equal to the number of creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dd963396-3f81-49ad-a68e-87b9764d7ac5","metadata":{"related_token_ids":["c42bd713-6c59-5321-86a6-83cd1416b195"],"source_printing_ids":["6251ca05-7eae-493c-ade3-8a5ebabfe43d","b012cbef-c9bc-41ac-8318-f1687340c5fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ECC"],"rarities":["rare"]},"elusive otter":{"name":"Elusive Otter","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Otter"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)\nCreatures with power less than this creature's power can't block it.","non_ability_text":null,"flavor_name":null,"keywords":["Prowess"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures with power less than ~'s power can't block it."}],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"54175132-2c44-4749-8dfd-d08dcc63e4b3","metadata":{"source_printing_ids":["bc9bdf96-3e3b-4dca-aae2-e81d4cbeafe8","bdb79d68-c3af-4091-b7db-005247191da8","c5a61619-f951-42ff-8246-c51ee5dc18c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["PWOE","SOC","WOE"],"rulings":[{"date":"2023-09-01","text":"If some of the creatures are illegal targets as Grove's Bounty tries to resolve, the original distribution of counters still applies and the counters that would have been put on illegal targets are lost."},{"date":"2023-09-01","text":"You choose how the counters will be distributed as you cast Grove's Bounty. Each target must receive at least one +1/+1 counter."},{"date":"2023-09-01","text":"You compare Elusive Otter's power to the power of any creature trying to block it only as blockers are assigned. Once Elusive Otter has been legally blocked by a creature, changing the power of either creature won't change or undo the block."},{"date":"2025-06-06","text":"An adventurer card uses only its non-Adventure characteristics in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Jidoor, Aristocratic Capital is a colorless Town land card whose mana value is 0. It can't be the target of Sorceress's Schemes, which reads in part \"Return target instant or sorcery card from your graveyard or exiled card with flashback you own to your hand.\""},{"date":"2025-06-06","text":"An effect may refer to a card, spell, or permanent that \"has an Adventure.\" This refers to a card, spell, or permanent that has an adventurer card's set of alternative characteristics, even if they're not being used and even if that card was never cast as an Adventure."},{"date":"2025-06-06","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2025-06-06","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may play it using its primary characteristics. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to play that card from exile later."},{"date":"2025-06-06","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to play it with its primary characteristics."},{"date":"2025-06-06","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to play the copy as a permanent."},{"date":"2025-06-06","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2025-06-06","text":"If an effect refers to a card, spell, or permanent that has an Adventure, it won't find an instant or sorcery spell on the stack that's been cast as an Adventure."},{"date":"2025-06-06","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2025-06-06","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if you control Traveling Chocobo (\"You may play lands and cast Bird spells from the top of your library.\") and Jidoor, Aristocratic Capital is on top of your library, you can play Jidoor, Aristocratic Capital, but you can't cast Overture."},{"date":"2025-06-06","text":"When playing a card as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The resulting spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2025-06-06","text":"You must still follow any timing restrictions and permissions for the card you play from exile. In the case of any of the five lands in this release, you'll be able to play it only during your main phase while the stack is empty and only if you have an available land play remaining."}],"rarities":["rare"]},"embiggen":{"name":"Embiggen","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Until end of turn, target non-Brushwagg creature gets +1/+1 for each supertype, card type, and subtype it has.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectTypelineComponentCount","scope":{"type":"Recipient"}}}},"toughness":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectTypelineComponentCount","scope":{"type":"Recipient"}}}},"target":{"type":"Typed","type_filters":["Creature",{"Non":{"Subtype":"Brushwagg"}}],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Until end of turn, target non-Brushwagg creature gets +1/+1 for each supertype, card type, and subtype it has.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8b7335e2-0e79-4406-84c1-d6b707cb72c3","metadata":{"source_printing_ids":["1b759c27-9fb6-4c23-adc1-f6d3f3a0eb52","22f31b7e-fb62-4bec-b726-4da344d2ab82"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["UNF"],"rulings":[{"date":"2022-10-07","text":"All subtypes count, including those that aren’t creature types. Good news for the Artifact Creature — Treasure Dogs out there."},{"date":"2022-10-07","text":"Brushwaggs know what they did."},{"date":"2022-10-07","text":"The bonus is calculated as Embiggen resolves. After that point, the bonus doesn’t change no matter what happens to the creature’s types."},{"date":"2022-10-07","text":"Token is not a type, supertype, or subtype, so it won’t ever count toward Embiggen’s effect."}],"rarities":["common"]},"emeritus of truce":{"name":"Emeritus of Truce","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, target player creates a 1/1 white and black Inkling creature token with flying. Then if an opponent controls more creatures than you, this creature becomes prepared. (While it's prepared, you may cast a copy of its spell. Doing so unprepares it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Inkling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Inkling"],"colors":["White","Black"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Player"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BecomePrepared","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}}},"comparator":"GT","rhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player creates a 1/1 white and black Inkling creature token with flying. Then if an opponent controls more creatures than you, ~ becomes prepared.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e6c41473-2398-4888-9f0c-467dce7c39a4","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["9869a753-5e41-4098-ab41-e75b4396ec50","bfd607c0-7ed7-4a4e-abdd-508080f40ef2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["mythic"]},"emissary green":{"name":"Emissary Green","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Advisor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever Emissary Green attacks, starting with you, each player votes for profit or security. You create a number of Treasure tokens equal to twice the number of profit votes. Put a number of +1/+1 counters on each creature you control equal to the number of security votes.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Vote","choices":["profit","security"],"per_choice_effect":[{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"VoteCount","choice_index":0}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"VoteCount","choice_index":1}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"starting_with":"You","voter_scope":{"type":"AllPlayers"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, starting with you, each player votes for profit or security. You create a number of Treasure tokens equal to twice the number of profit votes. Put a number of +1/+1 counters on each creature you control equal to the number of security votes.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c43e7fa5-ff93-42d9-af79-ee417a8e41a7","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["e1712205-f6a6-5ffa-befc-9becced0337f"],"source_printing_ids":["323e9430-b87c-4b02-9ade-c4c65343147b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLU"],"rulings":[{"date":"2024-02-02","text":"Abilities that trigger \"whenever players finish voting\" trigger once all players have voted or once all secret votes are revealed, but they won't go on the stack until the current spell or ability finishes resolving."},{"date":"2024-02-02","text":"Each player must vote for one of the available options. They can't abstain."},{"date":"2024-02-02","text":"In the case of non-secret voting, votes are cast in turn order, and each player will know the votes of players who voted beforehand."},{"date":"2024-02-02","text":"No player votes until the spell or ability resolves. Any responses to that spell or ability must be made without knowing the outcome of the vote."}],"rarities":["rare"]},"enduring tenacity":{"name":"Enduring Tenacity","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Snake","Glimmer"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever you gain life, target opponent loses that much life.\nWhen Enduring Tenacity dies, if it was a creature, return it to the battlefield under its owner's control. It's an enchantment. (It's not a creature.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, target opponent loses that much life.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Animate","power":null,"toughness":null,"types":["Enchantment"],"remove_types":["Creature"],"target":{"type":"None"}},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield under its owner's control. It's an enchantment.","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"98e698ae-1a69-469c-9cfb-0e3fedeb71d4","metadata":{"source_printing_ids":["59b698d6-4107-45d3-bc27-fb0746b7f91a","5d2d0033-1a73-4927-93a9-76d00ae7c6a8","d5756d4b-3068-412c-8643-880d3459151e","e74a0fbc-7150-4c44-983f-ac31e74644fd"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"A token that's a copy of Enduring Tenacity won't return to the battlefield when its last ability resolves."},{"date":"2024-09-20","text":"Each creature with lifelink dealing combat damage causes a separate life-gaining event. For example, if two creatures you control with lifelink deal combat damage at the same time, Enduring Tenacity's first ability will trigger twice and you may choose a different opponent for each trigger. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, planeswalkers, and/or battles at the same time (perhaps because it has trample or was blocked by more than one creature), the ability will trigger only once."},{"date":"2024-09-20","text":"If a nontoken permanent that's a copy of Enduring Tenacity dies while it's a creature, it will return to the battlefield as an enchantment when its last ability resolves. It won't have any card types other than enchantment."},{"date":"2024-09-20","text":"If an ability triggers whenever an opponent loses life and its effect causes you to gain life, such as the ability of Exquisite Blood, this will loop until either you win the game or a player takes an action to break the loop."},{"date":"2024-09-20","text":"If you gain an amount of life \"for each\" of something, that life is gained as one event and Enduring Tenacity's first ability triggers only once."},{"date":"2024-09-20","text":"In a Two-Headed Giant game, life gained by your teammate won't cause Enduring Tenacity's first ability to trigger, even though it caused your team's life total to increase."},{"date":"2024-09-20","text":"Snake and Glimmer are both creature types. Enduring Tenacity won't have those creature types when its last ability returns it to the battlefield because it won't be a creature."}],"rarities":["rare","mythic"]},"energy tap":{"name":"Energy Tap","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature you control. If you do, add an amount of {C} equal to that creature's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Untapped"}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature you control. If you do, add an amount of {C} equal to that creature's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"106ae855-574b-411d-8689-cbb9eeb4f602","metadata":{"source_printing_ids":["37e69940-bdc8-48ff-a296-540343910adf","84aec48a-0b5e-4528-b52b-8d5a52384155","9f67692d-9df6-4841-a36b-26c28110b63b","de4b2432-3431-4867-a9e0-3b99eb2ccb43"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["4BB","4ED","LEG","PZ2","REN"],"rarities":["common"]},"engulfing slagwurm":{"name":"Engulfing Slagwurm","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wurm"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature blocks or becomes blocked by a creature, destroy that creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Blocks","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"ParentTarget"},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ blocks or becomes blocked by a creature, destroy that creature. You gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0340cfcb-fc96-40d2-8175-31a0093615bb","metadata":{"source_printing_ids":["8aeabc4a-7b4f-4e3d-bcc7-423bb703563a","9180de1c-27ad-48f1-b9c1-2008623911d0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["J22","SOM"],"rulings":[{"date":"2011-01-01","text":"As each ability resolves, the amount of life you gain is equal to the appropriate creature’s current toughness (if it’s somehow still on the battlefield), or its toughness as it last existed on the battlefield (in all other cases)."},{"date":"2011-01-01","text":"Engulfing Slagwurm’s ability triggers and resolves during the declare blockers step. Creatures destroyed this way will not deal combat damage."},{"date":"2011-01-01","text":"Even if the ability of an attacking Engulfing Slagwurm destroys each creature blocking it, Engulfing Slagwurm won’t deal combat damage to the player or planeswalker it’s attacking unless it somehow gains trample."},{"date":"2011-01-01","text":"If Engulfing Slagwurm’s ability resolves and the other creature is not destroyed (perhaps because it has already left the battlefield or it regenerates), you’ll still gain life equal to that creature’s toughness."},{"date":"2011-01-01","text":"If your Engulfing Slagwurm blocks or becomes blocked by multiple creatures, its ability triggers that many times. Each trigger will be associated with a specific creature. You choose which order to have the abilities resolve."}],"rarities":["rare"]},"enlightened tutor":{"name":"Enlightened Tutor","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for an artifact or enchantment card, reveal it, then shuffle and put that card on top.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Any"},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for an artifact or enchantment card, reveal it, then shuffle and put that card on top.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c5229c17-b7be-4b05-b683-f2277edc4849","metadata":{"source_printing_ids":["0760068d-71c2-4b38-9f66-4454875de27e","0c9ebec9-3474-4062-9607-2e2a72f78299","1c9675fb-1a89-420f-aea8-50e0642f549c","7e3637e8-586d-4828-b2e3-781f31f18754","8ecea08d-7d65-4d61-a34d-2f8976af5f5e","a40e9086-5fe0-4b31-bb66-f29f78ddf7eb","c48e6462-638f-4642-bba4-1bf68c1fcd0f","cbac1d27-15e2-4e2f-82ab-625a16e096cb","e869da95-2c47-4796-aadc-50652ebb4d03","f690bd2a-e565-4316-8312-3d0386c8ba36"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["6ED","DMR","EMA","J20","MIR","PAL00","PLST","PRM","TD0","TLE","WC00"],"rulings":[{"date":"2016-06-08","text":"The \"shuffle and put the card on top\" is a single action. If an effect causes the top card of the library to be face up, the second card down is not revealed."}],"rarities":["uncommon","rare"],"bracket_signals":{"game_changer":true,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":true}},"entering":{"name":"Entering","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a creature card from a graveyard onto the battlefield under your control. It gains haste until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a creature card from a graveyard onto the battlefield under your control. It gains haste until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":true}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"043370fd-9cfe-47ce-8019-e915cee1ae95","metadata":{"source_printing_ids":["66724f4e-59dd-4c70-b09b-49947320e6d1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PDGM","PRM"],"rarities":["rare"]},"erratic explosion":{"name":"Erratic Explosion","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's mana value to that permanent or player. Put the revealed cards on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"TrackedSet","id":0},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. ~ deals damage equal to that card's mana value to that permanent or player. Put the revealed cards on the bottom of your library in any order.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"8e560a3a-c81b-43b3-b622-5c66ef655647","metadata":{"source_printing_ids":["14c5e0aa-d491-4caf-86c7-555ee1bb637b","4c6da251-bf6c-4847-88a7-ee1cba30596d","9f608a7e-5555-4554-a6e7-fe00e0bbe753"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","PC2","PCA","PLST"],"rulings":[{"date":"2004-10-04","text":"If all your cards are lands, no damage is dealt."}],"rarities":["common"]},"esper terra":{"name":"Esper Terra","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment","Creature"],"subtypes":["Saga","Wizard"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI, II, III — Create a token that's a copy of target nonlegendary enchantment you control. It gains haste. If it's a Saga, put up to three lore counters on it. Sacrifice it at the beginning of your next end step.\nIV — Add {W}{W}, {U}{U}, {B}{B}, {R}{R}, and {G}{G}. Exile Esper Terra, then return it to the battlefield (front face up).\nFlying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put up to three lore counters on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"End","player":0},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"TargetMatchesFilter","filter":{"type":"Typed","type_filters":[{"Subtype":"Saga"}],"controller":null,"properties":[]},"use_lki":false},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"add","description":"Add {W}{W}, {U}{U}, {B}{B}, {R}{R}, and {G}{G}"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 4","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":4},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":["Green","Red"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"54ca5904-9099-497a-9684-101656025487","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0502c627-9f63-5b1e-b7ba-1809eefc0580"],"source_printing_ids":["0cf789e7-045c-4ad1-abc3-23eabda54f02","fbd447aa-588d-4c4d-925e-a7d3bdf6a65c","fe0aa7d7-73e7-4c8c-92b5-b923817ce461"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["FIN","PFIN"],"rarities":["mythic"]},"essence backlash":{"name":"Essence Backlash","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target creature spell. Essence Backlash deals damage equal to that spell's power to its controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target creature spell. ~ deals damage equal to that spell's power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"f51ed0b4-c144-458e-b97c-618b9e1cf25d","metadata":{"source_printing_ids":["a98609dc-ea90-4c7e-a191-5e5d0ba16847"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["RTR"],"rulings":[{"date":"2012-10-01","text":"Abilities that change the power of a creature (such as the one of Collective Blessing) affect only creatures on the battlefield. They won’t change a creature spell’s power on the stack."},{"date":"2012-10-01","text":"Essence Backlash can target a creature spell that can’t be countered. If Essence Backlash resolves, it won’t counter the spell but it will still deal damage."},{"date":"2012-10-01","text":"If the creature’s power is * and it has an ability defining its power, use that ability to determine its power."}],"rarities":["common"]},"essence warden":{"name":"Essence Warden","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Shaman"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6ca2a89e-7032-4864-b4e9-66f3178f90ab","metadata":{"source_printing_ids":["31ca84d1-30a6-432b-966c-089fb6652a89","48431d2f-4011-48d2-b556-2078c1a45d85","ab9b05fc-2884-4c0f-95ce-37cfffa902c5","da2a65d6-0887-4fe8-a6e6-909208fddd90","dd7e6400-5302-450b-8f22-4b67c8043063","ff09be4d-bbcc-4c25-9df2-b3df07fca955"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["C14","CMA","DDH","LTC","PLC","PLST","PRM"],"rulings":[{"date":"2025-01-24","text":"If this creature enters at the same time as one or more other creatures, its ability will trigger for each of those other creatures. "}],"rarities":["common"]},"evelyn, the covetous":{"name":"Evelyn, the Covetous","mana_cost":{"type":"Cost","shards":["BlueBlack","Black","BlackRed"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Vampire","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhenever Evelyn or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.\nOnce each turn, you may play a card from exile with a collection counter on it if it was exiled by an ability you controlled, and you may spend mana as though it were mana of any color to cast it.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"collection","count":{"type":"Fixed","value":1},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"Permanent","granted_to":0,"frequency":"OncePerTurn","mana_spend_permission":"AnyTypeOrColor"},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"Other":"LinkedCollectionCounterPlayPermission"},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Once each turn, you may play a card from exile with a collection counter on it if it was exiled by an ability you controlled, and you may spend mana as though it were mana of any color to cast it."}],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"4ab6f615-1f04-4ed2-88b2-49faa8356dd0","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Flash\nWhenever Evelyn or another Vampire you control enters, exile the top card of each player's library with a collection counter on it.\nOn","line_index":0}],"metadata":{"source_printing_ids":["7abd914b-4f66-4b80-8249-86f2e77f0452","bf30b561-7ae6-4423-9184-6574e68f9038","c0dad61f-36cd-46af-82b7-a02e04efd676"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PSNC","SNC"],"rarities":["rare"]},"execute":{"name":"Execute","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target white creature. It can't be regenerated.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasColor","color":"White"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target white creature. It can't be regenerated.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"24d2cbf6-6268-4da3-8413-6c76679576fe","metadata":{"source_printing_ids":["333123bc-fb66-4b5a-bf55-045d2906c8c3","35119276-d461-4eb2-8b1b-fa73639fe1de","751e73d4-7e1c-48fd-8b6d-b66a2105a742","875500ff-bb15-4634-be05-0171cb0ac412","ee0ecbc8-767b-475c-bb74-2abc0da5d745"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","9ED","ODY"],"rarities":["uncommon"]},"exhibition tidecaller":{"name":"Exhibition Tidecaller","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Djinn","Wizard"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Opus — Whenever you cast an instant or sorcery spell, target player mills three cards. If five or more mana was spent to cast that spell, that player mills ten cards instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":10},"target":{"type":"ParentTarget"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"TriggeringSpell","metric":{"type":"Total"}}},"comparator":"GE","rhs":{"type":"Fixed","value":5}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell, target player mills three cards. If five or more mana was spent to cast that spell, that player mills ten cards instead.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d32c9439-4c97-412b-83cc-6d9acb48be3c","metadata":{"source_printing_ids":["44304d28-94da-4226-b713-b2c3a4b67e49","a58c364e-d0c5-41b9-8c8b-2e5a99468cc7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PSOS","SOS"],"rarities":["rare"]},"exile":{"name":"Exile","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target nonwhite attacking creature. You gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"~","description":"~ target nonwhite attacking creature"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ target nonwhite attacking creature. You gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8c91d50b-bf58-4d06-b3b7-4b6db867bfce","metadata":{"source_printing_ids":["108b85ff-ed03-4b3e-872f-1cad1a27b930","91212440-32f0-424f-a843-22eb23d012c8","9f717f8f-e1fc-480a-8dec-fb88814091ea","af72824b-6c9c-4435-81db-0ef9b09270fb","bf6e3ca4-5b56-40bb-bec7-c92fc7eb50d2","cba8fb8d-fdde-4e4b-9dc7-feaecf8ed222"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["6ED","ALL","ME1","PLST","VMA","WC97"],"rarities":["common","rare"]},"exotic pets":{"name":"Exotic Pets","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create two 1/1 blue Fish creature tokens with \"This token can't be blocked.\" Then for each kind of counter among creatures you control, put a counter of that kind on either of those tokens.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Fish","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Fish"],"colors":["Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"for","description":"for each kind of counter among creatures you control"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"put","description":"put a counter of that kind on either of those tokens"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Create two 1/1 blue Fish creature tokens with \"~ can't be blocked.\" Then for each kind of counter among creatures you control, put a counter of that kind on either of those tokens.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"497cb281-e057-42fc-937d-512855b74159","metadata":{"related_token_ids":["5cd0f0ce-7820-5507-b6db-8ceb32d7830e"],"source_printing_ids":["902f1ed8-5c10-45e4-8f2f-182e800faab4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["SNC"],"rarities":["uncommon"]},"exploration":{"name":"Exploration","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play an additional land on each of your turns.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"MayPlayAdditionalLand","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play an additional land on each of your turns."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0c2841bb-038c-4fbf-8360-bc0a1522b58d","metadata":{"source_printing_ids":["1c3fc61c-c26e-47f3-a1eb-f6f10f8469e2","2b20d3e1-62ef-44db-8109-a33d4fa3e7f1","2f09e451-0246-45a2-8bfd-07d3c65ddfe6","5b372045-a4a0-44c8-96ec-1e201d61ed26","ce4c6535-afea-4704-b35c-badeb04c4f4c","d1cbcd04-aabf-420e-9bc8-4270f78e25d7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","AA3","CNS","DMR","PRM","USG"],"rulings":[{"date":"2022-12-08","text":"Exploration’s ability is cumulative with other effects that allow you to play additional lands, including ones created by other Explorations you control."}],"rarities":["rare"]},"explosive revelation":{"name":"Explosive Revelation","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Explosive Revelation deals damage equal to that card's mana value to that permanent or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealUntil","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]},"kept_destination":"Hand","rest_destination":"Library"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Any"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Reveal cards from the top of your library until you reveal a nonland card. ~ deals damage equal to that card's mana value to that permanent or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"49f01296-7b30-4d84-bfa3-6ed58cd23a33","metadata":{"source_printing_ids":["d7a38cd0-2cd3-436d-bb44-79778d5808ad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ROE"],"rulings":[{"date":"2010-06-15","text":"If all the cards in your library are land cards, you’ll reveal all of them, then arrange them in your library in whatever order you like. No damage is dealt."},{"date":"2010-06-15","text":"If the targeted permanent or player is an illegal target by the time Explosive Revelation resolves, the spell doesn’t resolve. You won’t reveal any cards from your library."},{"date":"2010-06-15","text":"Once you start revealing cards from your library, it’s too late for players to respond. If you target a creature, for example, its controller can’t wait to see how much damage will be dealt to it before casting a damage prevention spell, activating a regeneration ability, sacrificing it for some benefit, or anything else. Any such actions must be done before Explosive Revelation starts to resolve."}],"rarities":["uncommon"]},"fable of the mirror-breaker":{"name":"Fable of the Mirror-Breaker","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Create a 2/2 red Goblin Shaman creature token with \"Whenever this token attacks, create a Treasure token.\"\nII — You may discard up to two cards. If you do, draw that many cards.\nIII — Exile this Saga, then return it to the battlefield transformed under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin Shaman","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Goblin","Shaman"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, create a Treasure token.","constraint":null,"condition":null,"batched":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"UpTo","max":{"type":"Fixed","value":2}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c0957e5e-c71b-439c-931c-9f55d2f76ace","metadata":{"related_token_ids":["54edcc8d-dc97-5a6e-b42b-00d63b81e738","ebb9c0a4-c359-58de-b739-03fddd775dfa","fe4dffe8-dc27-5c0d-aaa3-589a15e78f55"],"source_printing_ids":["0b696cd1-0d72-4df5-bacc-dc77e62f9a13","24c0d87b-0049-4beb-b9cb-6f813b7aa7dc","6dee0388-a78d-4b3c-a0c5-25655e14115e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["NEO","PNEO","PRM","SCH"],"rulings":[{"date":"2022-02-18","text":"A transforming double-faced card enters the battlefield with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or you cast it transformed, in which case it enters with its back face up."},{"date":"2022-02-18","text":"Any enters-the-battlefield abilities of the copied creature will trigger when the token enters the battlefield. Any “as [this permanent] enters the battlefield” or “[this permanent] enters the battlefield with” abilities of the copied creature card will also work."},{"date":"2022-02-18","text":"Each face of a transforming double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a transforming double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2022-02-18","text":"Each transforming double-faced card in this set is cast face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2022-02-18","text":"If Reflection of Kiki-Jiki's ability creates multiple tokens due to a replacement effect (such as the one Doubling Season creates), you'll sacrifice each of them."},{"date":"2022-02-18","text":"If a copied creature is a token that isn't a copy of something else, the copy copies the original characteristics of that token as stated by the effect that created it."},{"date":"2022-02-18","text":"If a copied creature is copying something else, the token you create will use the copiable values of the target creature. In most cases, it will just be a copy of whatever that creature is copying."},{"date":"2022-02-18","text":"If another creature becomes a copy of, or enters the battlefield as a copy of, the token, that creature will copy the creature card the token is copying, except it will also have haste. However, you won't sacrifice the new copy at the beginning of the next end step."},{"date":"2022-02-18","text":"If the copied creature has {X} in its mana cost, X is 0."},{"date":"2022-02-18","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter the battlefield at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Azusa's Many Journeys, the chapter III ability will cause it to be exiled and then remain in exile."},{"date":"2022-02-18","text":"The back face of a transforming double-faced card usually has a color indicator that defines its color."},{"date":"2022-02-18","text":"The mana value of a transforming double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2022-02-18","text":"The token created by Reflection of Kiki-Jiki copies exactly what was printed on the original creature (except that the copy also has haste) and nothing else (unless it's copying a creature that's a token or that's copying something else; see below). It doesn't copy whether the creature is tapped or untapped, whether it has any counters on it or Auras and/or Equipment attached to it, or any non-copy effects that changed its power, toughness, types, color, and so on. Most notably, if the target creature isn't normally a creature, the copy won't be a creature."}],"rarities":["rare"]},"fblthp, the lost":{"name":"Fblthp, the Lost","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Homunculus"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When Fblthp enters, draw a card. If it entered from your library or was cast from your library, draw two cards instead.\nWhen Fblthp becomes the target of a spell, shuffle Fblthp into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"Or","conditions":[{"type":"ZoneChangeObjectMatchesFilter","origin":"Library","destination":"Battlefield","filter":{"type":"Any"}},{"type":"CastFromZone","zone":"Library"}]}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card. If it entered from your library or was cast from your library, draw two cards instead.","constraint":null,"condition":null,"batched":false},{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"When ~ becomes the target of a spell, shuffle ~ into its owner's library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ba5a7ac0-b625-42e9-af05-2680a01a95ed","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0b168b85-323c-4d95-80a5-851988522606","52558748-6893-4c72-a9e2-e87d31796b59","597a8a8f-84ff-4041-9c99-938454a47951","69c00ed3-cd79-4921-a6cd-a6b7f89eb53c","79b2c547-0d9e-4fd7-a399-347ad908c70b","f7308076-755c-4508-8920-5a6641a17a8a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PWAR","RVR","SLD","TSR","WAR"],"rulings":[{"date":"2021-03-19","text":"Fblthp's last ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2021-03-19","text":"Fblthp's last ability triggers only if it's on the battlefield when it becomes the target of a spell."},{"date":"2021-03-19","text":"If an effect exiles Fblthp from your library and then lets you cast that card, it's cast from exile, not from your library."},{"date":"2021-03-19","text":"If the spell that targets Fblthp has no other targets, it won't resolve (because it no longer has a legal target after Fblthp has gotten totally lost in your library)."},{"date":"2021-03-19","text":"There's normally no way to cast Fblthp from your library or to have it enter the battlefield from your library. You'll have to use other effects to find Fblthp for the bonus card draw."}],"rarities":["rare","special"]},"feed the swarm":{"name":"Feed the Swarm","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature or enchantment an opponent controls. You lose life equal to that permanent's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":"Opponent","properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature or enchantment an opponent controls. You lose life equal to that permanent's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5825997b-10d7-4a36-972c-a80ddd90b8ed","metadata":{"source_printing_ids":["029e2a27-46f2-44fa-ac7c-462c69feab95","0be3e9b2-db8f-4b1f-8f22-e2e897ed83d6","0c8edbe0-cc47-4c83-89be-b2e10c996665","1d0ce1dd-befa-428b-b7e9-2c71e328f8b1","1fd9c17b-0cbb-49b7-8fb8-6a6f319f6a05","2246c098-1071-4cc3-a60a-802406e2827b","2aa3218c-c1ca-487a-8acc-fc8554fdd5a6","57a77cbc-cbe9-44b4-9651-6967a02c7e75","5f782dca-4e1b-4b02-81c7-9df633053e78","7d95a0e0-d609-451b-b045-85990eede219","840d02c6-3d9c-47cd-9307-978d03380d0f","97ba4f5c-6336-49ed-bea4-90b745276284","9f48e48d-6bc5-4f9c-9c3e-457cf6632cf5","a3bad7f1-0b02-4499-a2e2-4625d01e3710","a776f96b-01bf-430a-b1ad-9f4651070610","c5ca70f4-2fb2-4e0b-b1d6-c9220766807f","e66d4541-160c-4137-98e7-0eaa692c7d7a","ee24a696-77ce-41d7-86cd-5999f879134b","f6b2eba7-862a-4efd-9f65-065fb2070855","f86c30e0-35f3-4da8-a28c-722254b1bbe4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BRC","C21","CLB","CMM","DSC","FDN","LCC","LTC","MAR","MIC","NCC","OMB","OTC","PLST","SCD","SLD","SOA","TDC","TLE","VOC","WHO","ZNR"],"rulings":[{"date":"2024-11-08","text":"If a permanent on the battlefield has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2024-11-08","text":"If the target permanent is an illegal target by the time Feed the Swarm tries to resolve, the spell doesn't resolve. You don't lose any life. If the target is legal but not destroyed (most likely because it has indestructible), you do lose life."},{"date":"2024-11-08","text":"The amount of life you lose is determined by the permanent's mana value as it last existed on the battlefield."}],"rarities":["common","rare"]},"felling blow":{"name":"Felling Blow","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"fbfa19ca-98bb-4c7d-a04e-920a8aafb031","metadata":{"source_printing_ids":["96948ae3-b15d-4d6d-aa73-9f52084cd903"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN"],"rulings":[{"date":"2024-11-08","text":"As Felling Blow tries to resolve, if either creature is an illegal target, the creature you control won't deal damage. If the creature you control is a legal target but the other creature isn't, your creature will still get a +1/+1 counter."},{"date":"2024-11-08","text":"You can't cast Felling Blow unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"feral encounter":{"name":"Feral Encounter","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top five cards of your library. You may exile a creature card from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card this turn. At the beginning of the next combat phase this turn, target creature you control deals damage equal to its power to up to one target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":5},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"TrackedSet","id":0},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top five cards of your library. You may exile a creature card from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card this turn. At the beginning of the next combat phase this turn, target creature you control deals damage equal to its power to up to one target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5a8196ef-24ee-40b6-97d1-8a2257180f86","metadata":{"source_printing_ids":["794c5066-724b-4f94-aa6e-7b0690dd706e","de21251f-40bf-4f7e-9e85-9033207a788f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PWOE","WOE"],"rulings":[{"date":"2023-09-01","text":"Casting Feral Encounter doesn't require any targets. As you put the delayed triggered ability on the stack at the beginning of the next combat phase this turn, you choose the target creature you control and up to one target creature you don't control."},{"date":"2023-09-01","text":"If you cast Feral Encounter and no combat phases occur later in that turn, the delayed triggered ability won't trigger."}],"rarities":["rare"]},"fierce retribution":{"name":"Fierce Retribution","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {5}{W} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy target [attacking] creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["White"],"generic":5}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target attacking creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"83094dd2-b8e9-4753-a8a0-657b446def60","metadata":{"source_printing_ids":["394651de-0fe7-412d-a2bb-de7982516374","485bd8e4-563b-43fa-b56e-21ba1462012d","92270719-352d-426f-b498-fbeaf8fd087b","9597b163-5c6b-4f64-b1f1-5f1fa2e23e5d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","OTP","PLST","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["common","uncommon"]},"fiery encore":{"name":"Fiery Encore","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card, then draw a card. When you discard a nonland card this way, Fiery Encore deals damage equal to that card's mana value to target creature or planeswalker.\nStorm (When you cast this spell, copy it for each spell cast before it this turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Discard a card, then draw a card. When you discard a nonland card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"921e7f6b-bf49-46f1-9fdd-b0e5fde5a5a1","metadata":{"source_printing_ids":["3bdc3066-de4a-4cc8-9086-f90f55ba8ff5","ae544d03-2d12-4994-b573-424c41ecc91d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","PRM"],"rulings":[{"date":"2021-04-16","text":"Each copy will resolve one at a time. As each copy resolves, if you discarded a nonland card, the reflexive triggered ability triggers and you pick a target to be dealt damage. That ability will resolve before you deal with the next copy of Fiery Encore."},{"date":"2021-04-16","text":"Each copy you create because of storm will cause your magecraft abilities to trigger."},{"date":"2021-04-16","text":"If you have no cards in hand as Fiery Encore resolves, you won’t be able to discard a card, but you will draw a card. No damage will be dealt."}],"rarities":["rare"]},"final parting":{"name":"Final Parting","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for two cards. Put one into your hand and the other into your graveyard. Then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Any"},"count":{"type":"Fixed","value":2},"reveal":false,"split":{"primary_destination":"Hand","primary_count":1,"rest_destination":"Graveyard"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Search your library for two cards. Put one into your hand and the other into your graveyard. Then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a5852994-d816-4e62-8a03-254223714544","metadata":{"source_printing_ids":["94f24b7c-4952-4abc-aaba-22a529012468","de8803f6-9efa-4323-b8c5-29bdd5a48f9a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DOM"],"rarities":["uncommon"]},"flamethrower sonata":{"name":"Flamethrower Sonata","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card, then draw a card. When you discard an instant or sorcery card this way, Flamethrower Sonata deals damage equal to that card's mana value to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"Opponent","properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Discard a card, then draw a card. When you discard an instant or sorcery card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"8a9fe2dd-50a7-4010-96ba-df4dec265e16","metadata":{"source_printing_ids":["77e7417d-36b9-4a47-b6d2-aa589711a5ba","87463b68-3642-41c7-a11c-67d524759b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["PRM","PSTX","STX"],"rarities":["rare"]},"flickerwisp":{"name":"Flickerwisp","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[{"type":"Another"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Exile","destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b23a3d30-6b8e-4aad-890f-db0c3af43ace","metadata":{"source_printing_ids":["42de427f-d93f-42f3-9045-ced35031e871","5bb3cb5c-8d66-4f5e-a9a9-917e6045f024","5f0ed8ee-d6ea-469c-a575-6643d3995f54","6931aad2-aa2c-4069-9e5a-2566b9f3eae4","6f84f0ae-ee67-490b-9424-60ee2acb4a12","a595d04e-4cdb-49d1-a323-7b6d1e3ccbe9","b6501e4e-8188-44ed-b661-55fe32bc7fec","d319c24e-ce54-4e1f-96cc-488adc377015","d332f494-386c-4aaa-9854-d78e75a91e81","dcfcf9a7-bad6-4240-8e43-a6a81fc4fbd0","e89b5a38-e43a-4a3a-ad9d-e2c55d2126f4","edacc6f3-e105-4648-8dcc-a5c54c7ad043","f6cccf30-2025-49bb-9b1e-240bbef03f27"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","2XM","AA3","C13","C14","CMA","CMR","E01","EVE","KHC","MM3","MMA","PLST","PRM","TD0","TSR"],"rulings":[{"date":"2021-03-19","text":"Auras attached to the exiled permanent will be put into their owners' graveyards. Equipment attached to the exiled permanent will become unattached and remain on the battlefield. Any counters on the exiled permanent will cease to exist. Once the exiled permanent returns, it's considered a new object with no relation to the object that it was."},{"date":"2021-03-19","text":"If a token is exiled this way, it will cease to exist and won't return to the battlefield."},{"date":"2021-03-19","text":"If the permanent that returns to the battlefield has any abilities that trigger at the beginning of the end step, those abilities won't trigger that turn."},{"date":"2021-03-19","text":"The exiled card will return to the battlefield at the beginning of the end step even if Flickerwisp is no longer on the battlefield."}],"rarities":["uncommon","special"]},"floodpits drowner":{"name":"Floodpits Drowner","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nVigilance\nWhen this creature enters, tap target creature an opponent controls and put a stun counter on it.\n{1}{U}, {T}: Shuffle this creature and target creature with a stun counter on it into their owners' libraries.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"stun"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}{U}, {T}: Shuffle ~ and target creature with a stun counter on it into their owners' libraries.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"stun","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, tap target creature an opponent controls and put a stun counter on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"43c69d19-c06c-470a-bdba-a0335ff2d655","metadata":{"source_printing_ids":["a6a62aa3-8edb-4000-8ebd-15ec4b00eed7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"If the target creature is an illegal target as Floodpits Drowner's last ability tries to resolve, it won't resolve and none of its effects will happen. Floodpits Drowner won't be shuffled into its owner's library."}],"rarities":["uncommon"]},"foot chopper":{"name":"Foot Chopper","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this Equipment enters, create a 1/1 black Ninja creature token, then attach this Equipment to it.\nEquipped creature has flying.\nWhenever equipped creature deals combat damage to a player, you may sacrifice it. If you do, draw cards equal to its power.\nEquip {2}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"sub_ability":null,"duration":null,"description":"Equip {2}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Ninja","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Ninja"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Attach","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 black Ninja creature token, then attach ~ to it.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"TriggeringSource"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"AttachedTo"},"description":"Whenever equipped creature deals combat damage to a player, you may sacrifice it. If you do, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature has flying."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"1eed017a-342a-47a8-9395-890ef0bd1eb2","metadata":{"related_token_ids":["c54d9de8-d09a-51f5-b98e-9a0853bcd8a9"],"source_printing_ids":["f43fa5c7-51e6-4824-95f8-837ccc77a6ce"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TMC"],"rulings":[{"date":"2026-01-27","text":"Use the sacrificed creature's power as it last existed on the battlefield to determine how many cards to draw with Foot Chopper's third ability."}],"rarities":["rare"]},"force of despair":{"name":"Force of Despair","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If it's not your turn, you may exile a black card from your hand rather than pay this spell's mana cost.\nDestroy all creatures that entered this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnteredThisTurn"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures that entered this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"0f2d038e-6dab-4352-9ba7-ed9e063bb304","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"Black"},{"type":"InZone","zone":"Hand"}]}},"condition":{"type":"Not","condition":{"type":"IsYourTurn"}}}],"metadata":{"source_printing_ids":["8f497b0d-4448-4201-bd55-c147da1a216d","cbb2277d-ce6a-4c28-b868-c3d48beae7da"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH1","SLD","SLP"],"rulings":[{"date":"2019-06-14","text":"Force of Despair destroys all permanents that entered the battlefield this turn and are currently creatures. It doesn’t matter whether they were creatures as they entered the battlefield."}],"rarities":["rare"]},"forest":{"name":"Forest","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Forest"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {G}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b34bb2dc-c1af-4d77-b0b3-a0fb342a5fc6","metadata":{"source_printing_ids":["0000419b-0bba-4488-8f7a-6194544ce91e","0031d026-9e9a-46f6-8204-1acfee8b8809","006e0990-0596-4537-aced-51ac499938af","00bbaefd-e7dc-4870-ad9c-e94e27de3860","00feb2af-b363-4377-98b1-6a07df7f1acd","0120879f-df13-4583-b260-0fc298518f16","01838859-51ef-474a-9653-23dd37eed1d6","0301f00e-481d-4dbc-8fda-528d9d4ba848","03be40e3-b7d7-43ee-a526-5d56fa429ffa","04c4a529-2345-412d-a2c6-7cd9499f031c","04db1116-3819-4a57-a001-dfa7578f0f12","04dcdbcd-2c5e-4733-a4c4-c5a345e9206a","04eb20ea-1784-475e-a612-48057e5578c1","053f294b-7acb-4c1a-8d7c-e8f891df9a46","0560b5ed-821a-479f-91fb-98ade4a8d470","05683891-cdd4-4401-b7d5-0ef17e79c699","060fa791-ccae-42df-b01c-2d4446d78422","07264de1-4322-4adb-8f08-c0aa236747c7","072ba526-01bf-4488-a936-cf42ffc842c5","07531062-8a83-4716-8416-11565908143f","07eb0e22-1e19-46e0-913e-94ccbf858bb9","081c1f03-3251-42dc-b356-3454ebdabc2e","097f0f7a-0a2d-47bc-8c9c-aaad0a9d8f19","09b123bf-9e10-493a-818d-df5f2393159f","09bf63e1-fe77-4d5e-b557-13eecfbc42b4","0a45560e-ce25-45a5-aa43-aa33d1964cd8","0a854256-e8f3-4715-aec2-3af3b8e8fd28","0ae275b5-fdf8-4590-8848-432a06ce19bf","0b43815e-8b8a-4745-bdf3-f72c8d60c48c","0b741c86-a563-4180-a857-7850de6ee366","0cb7637e-785d-4716-ad06-9e786e037537","0cdbb450-4b80-4f81-9992-ee8fbeeb1857","0d5bd3e1-45ef-43b7-8796-6085842278df","0d6250d3-728b-4412-8efc-911bb6f5e910","0da5fbc2-24ad-4520-a60a-436d3a485fec","0f341b39-ac40-436b-967c-568265354886","102c2350-4929-4c81-8823-4b3e62e22dd4","1069841a-0642-4fb6-b831-d45ff7fda3af","10b3dce8-9c28-41f6-823f-a7d64dd9e33a","10e2588b-7781-418c-abc8-08601fbb2336","117ab60a-b888-4585-b0c6-769d387069f7","119c4d73-5b71-446a-a739-25d494591aa1","11c7c34c-eb81-412e-9030-f048435cbfbc","11d5ee25-43d7-4930-90a2-ba74b9cc69c9","122b5548-5ff5-43e4-b799-75c709b1c32d","12495cfa-ab19-4e9e-a49e-a94499f664a2","12a035fe-8847-4678-84f7-01bac77ae011","1345293f-e71e-4754-bf88-b3c8b9824ab3","13635ba7-0635-4c16-9e14-444470e06287","1428575c-f18e-41a0-b58a-259d2feafd06","146b803f-0455-497b-8362-03da2547070d","14c94463-31e8-4a2e-b879-d096a27cc60e","150d0710-9ecb-4187-a0f8-a70b330c8879","151fc328-0951-47fb-be07-dc4187a5c0be","158aaaad-a217-490a-8a90-31ce592ad742","15b3f35e-451e-4de6-a4f7-249287566964","1676702c-523a-4e57-9cb3-171405cab782","16f52885-1f01-4f06-90a8-1a0ecf291ab5","172e55c6-b797-4b49-94f1-cc93e4f5b939","17393110-c57e-487b-b07e-dc21a164efa7","174cb9a0-afa3-4f45-b317-238fa9d4f55f","1813119b-8604-4cd2-b731-957b5f1bb4ea","1814fc7a-0f2a-407c-9d71-e7a7339ce82c","1841ca54-d7d5-4c02-9c8b-5f59dce33a6b","184a9654-ce17-4378-b52b-fb6efbbf042f","18f4e594-01e5-40ae-903c-f55aad740de0","1908f8d2-95df-44e3-8943-568c596cd8aa","192ac805-deb4-4275-8473-01b5abb7b385","19e71532-3f79-4fec-974f-b0e85c7fe701","1a13a86b-c4c5-4a7a-9e01-8669e9ed6557","1a181800-f5ef-4019-b93d-35d8f1dbf953","1a1b6004-6dda-4495-85f7-eb8fa29873e9","1a1b7277-0c09-42ab-aa6b-542a1e402580","1a26154f-dfe5-481d-acdd-237ea08f069a","1a51949e-9031-4700-8366-a307e8f012fe","1abe7f25-71c5-4fd2-8696-0a4ce8c4b0b6","1b20aa40-2b88-4cac-ad15-f730fde60643","1bd51a22-3e0d-4826-aab7-0adbfce4478a","1c01e4ce-5d77-4bbb-9df8-39cd3a2f9e6e","1ce914d7-6a13-4f00-b8b4-05cdd410f32b","1d416790-fca9-42ab-b211-bae68858a614","1d91255d-e3d1-412b-8031-994779372496","1db496f2-6b64-4d9c-baac-b3788c632629","1def1ac1-652c-4160-9092-46549e577570","2036f825-ef57-4a40-b45f-0668d9c8ec6a","207879b4-f92a-4331-88f3-05f532a8a8e8","208014f4-eed8-4856-a9d9-dbac10c4aa6a","21a19869-85a8-4334-af5e-8d38d08955da","23b6b5a9-b564-4b18-a3e0-b9d5aec7f680","23c9425a-2093-40c1-b3a9-a882d80cf198","23e1c12f-6c6b-4e44-8fbc-e6703ffe2843","24788990-42ff-4b2b-8d01-fa2d0ec66a03","249104ba-65fc-42d6-ad8b-d97640545d89","24e71c1f-5ca9-450a-8a0f-39a03a275e97","253f6297-e76c-4003-8ddf-3fb5f2072384","2581a074-00ab-4a2d-8699-25dcd8c76393","276fa731-45b3-4418-b9c9-8543e238d55d","279ebd05-229a-4a4a-a1c0-c5f24d16dee3","283d6124-1678-46b1-a12a-69644c689e29","2950dace-a653-47e4-a80a-a3de5db8d491","2968cde0-300e-4f59-859f-a7fc189f8943","2a0bc8e3-b106-43bb-acf6-885328d24a65","2a10ed4f-2c9a-424d-bcca-730af7727854","2a4c27b7-9695-479f-a5b6-bae63a76629e","2a7aba60-d300-4c33-9e1e-846d6167dc50","2a9e6cdc-f92f-497c-8cd9-b69586098512","2b101184-71b2-4400-a5dc-4113df5a4f12","2b176d24-a4d6-489e-af69-4547693e7de1","2b86b3a4-981e-497a-b78b-30b2dbc5ea7a","2b90e88b-60a3-4d1d-bb8c-14633e5005a5","2bbc9c84-348b-40f5-ab3d-bbe8c27529a4","2c2fc9f7-21af-4416-abf5-6fcb4f543680","2c8c30af-055a-4921-99a8-f99c472c7315","2ccc7cf2-c9ed-4505-9341-7b8dcf10590f","2d3a6ecf-323d-4650-aabf-92995e3c72c6","2dbc8240-d0a1-439c-a909-95b937d70494","2e3019bf-c69e-4c61-b3d1-a8c4967031bb","2f5b488e-d725-4ef7-90f4-71091325c0b6","2f60db2d-7594-43af-8554-ba54e9023306","2fafd821-5bb3-4083-bf3b-ecc4cf6c7468","2fb2b4a1-e744-4d55-abf9-d96b5533ecae","2fd47e30-2ab0-452d-ac51-fa182c2b00fc","2fdf7380-56cb-4d34-ad05-43029341a57a","3041d539-4f15-4836-a215-afa19a5cc23f","30a4d3de-e004-4a15-9f45-4d50813de533","30c96a89-32e3-4412-9e79-51411362b9d5","314b835b-b03e-43fe-b924-67139e2f266a","3156ba12-cf21-48a5-aa08-74b447cafc2c","318b15ea-80b9-48df-b010-aa1aabcf51ea","31d44ab0-ca04-4b92-bbfd-587640db5552","32411c3a-da2b-4316-9848-971e90951303","32636e80-9455-43c8-b55f-dfa2d7b7465b","3279314f-d639-4489-b2ab-3621bb3ca64b","329ae876-a7ed-43e4-9ed9-ac71191ba8d2","32af9f41-89e2-4e7a-9fec-fffe79cae077","32df22d3-9b65-4b43-80d9-e4c43575ec74","3391932f-2e4f-4686-af14-67e2c31f8538","3394d804-c0e5-4901-a8ff-c1a765cc1e21","340238b7-60ce-48d1-bb73-2925df7853a3","341b05e6-93bb-4071-b8c6-1644f56e026d","34cc6a36-b551-40c7-b081-53beffbca235","34f9571c-b61c-4bc7-ac98-f6c80c47ea7d","34fa98a0-5dce-4914-a827-964c4a596ed5","35724a5c-e91a-4ff8-b404-057976a858c8","35e8b186-ea04-4895-b5b2-f02e9c848c97","36105ded-e343-4dca-84b5-afb1fd34e2da","36454f7f-0b60-451e-9b4f-2cb4c8ccc9c2","366105ea-c720-4524-8fc3-dbe82291e255","368be73f-24d2-44db-a55e-d04176db3142","36b3ffbd-3f3e-4fca-80c2-94f9fdc198a5","3758e2e6-3147-4b4f-82a7-491c963c0fa8","37876a70-a403-4d59-83cb-e1df8688e61c","37a8d9ff-291a-4862-b2e8-3db520cc9ae4","37d580df-2340-45e4-afee-c1f0313b9965","37f8d695-a3e4-4707-9db9-886849ce4c42","3812e162-3511-4988-b2a1-3bc6945ac45b","38382bb9-3b8e-4819-9998-55dbf1ab0fd7","384cbc4a-c955-45df-98fd-d448e574c130","393d66f7-7dbf-4a92-912f-377f99c8f164","398ee871-7b30-4e8c-b0d0-b85e0a37d3b1","3a11f9c9-267a-4913-97f7-78c372fe211e","3a1e5ef3-790d-4f45-a264-157448bab2e8","3a7a2a54-47e1-4694-b4f6-b7d659bb2b1f","3a9ea6ee-0150-40f1-baa3-fe637128be2f","3b1153ac-e4de-43a4-ae39-ca22a4f571da","3b84ec1e-ccce-4b8b-9302-b26f84cfa469","3c5c5d09-6f93-44f5-894d-4c7be40bb006","3ca33d91-3c1a-4351-9d9d-d46a6e3de084","3cf23791-1b15-43ee-b81a-5fe068709bc1","3cfbcefd-8b2d-4b9e-a11a-18274c3a8dd2","3d08f6a6-316d-45d8-aabe-1760a20903ac","3d365b22-2304-4f20-86f9-9560f59546f1","3dc61690-30c6-4374-8777-e1802e9e164c","3e5342f9-3f91-48e4-bfd1-49fbf9ca89cf","3e574ee5-d33d-4054-9884-fdb5fe9d73bd","3ee0a9b2-5570-44f0-bc66-6ed7677ce2e2","3efeaa30-9db9-4e68-a658-9064d6e67516","3f0218be-4a5e-40d2-ad76-b4bf12392fc6","3f72315b-4c5c-45c2-a5af-30fcfe28bb95","3f7f206a-7b5e-4fd5-8c9e-d665ac3f7dea","4016e556-5597-440d-b737-b419acb4e44e","40a62202-82ef-48fc-a28d-ff37d1af4cbc","40d4cf1d-6101-40e7-8e0a-a6ad5bd5d3fc","4118a9af-0aa0-439e-a92e-39f7c04469b7","412103f2-fdc1-4205-8f96-831186b58513","41f774cc-ac13-4bc6-967c-af09358a8da4","42154a89-c12a-48fa-8eb4-1185b5df1b38","42352899-f2f2-4dea-863b-8d685e63b454","42b8aa7c-0195-4ce9-9de4-4e6d780455aa","42d36c04-c238-412a-97de-63fc92840c1e","42efdb6a-1c54-497a-9058-af4256241649","439d196c-551e-4e38-8dbf-65b328d50df6","43b3be4a-973d-4aeb-a94e-37e2710ac178","43e7e6ec-9bfe-4062-a538-2a748d2eed1f","450d2a6a-0576-44c3-ba66-3a64f5e65fcf","451c256a-1f0e-4e57-9667-5b8cb2f18ff0","45adf695-69f3-4d71-a0dd-70d302e2a119","46196e8f-9339-4f00-b9cf-cab8f9abc80e","46c661a6-322a-4460-9d75-a2c95d1a49de","46e93212-da68-48f8-9aeb-ee5eb92e9a54","47c223fa-8173-4da2-abb0-753ffb4fc51c","47ccb7e9-3fb2-4460-b0c4-e07e3186ce66","48764854-d268-462d-a016-27329c8f062d","48811e13-5774-4da1-95ec-6ea5dc4976ad","491b26e4-1d52-457c-a00c-bdee127f8a97","49e54f0b-9ba7-4004-ba7b-682a6cb91c42","4ae04d52-92c0-493a-b677-2aa9e79bd30a","4b535df5-f79c-4ab5-9b2f-cbbb5adad70a","4c08f11e-0f3f-464e-abe9-20f18de237d8","4ce08c3b-3d08-446e-9f78-4ec22e9308db","4d1e4241-42ef-4b51-8f9b-2ab6aca31dbb","4d8edfee-7837-450a-bcf3-a7bb25670056","4dea3762-c6ae-4304-aee4-6c3f56685319","4e57a496-09ce-4c2d-9a00-0c359d01e78e","4e811a02-b749-4aed-ac7f-47957b770020","4ebd9027-5b48-42c0-9533-afe50bb101e6","4ec9b7c6-bdee-434c-bea9-1b68bee01301","4f15b112-500e-42ad-bdaa-5dadcd4351e1","4fa690e4-dbc8-4490-8958-6eb323a05daa","4fce7045-4572-4e9e-8853-2a5dcfc989ac","4fd257a5-439d-4ef8-9cc9-9741e99a04e3","5029a818-e076-4ae3-a246-693ec7615e15","5131ab8d-c884-4430-8059-9e3e1d16c747","51a55233-2e1a-4515-8fd1-354605c0c36b","52097f6a-58d3-4176-b3bf-dc94f44adf30","5257440c-ab4e-4b9e-a694-f7ff54feaa1b","52c21f91-6679-4adb-baf2-b06cf505150c","53f45c42-b2c7-4464-b708-d11c654a9ce7","543aeea7-23c1-4c7c-a377-f39c94846b5e","556ad17c-fb91-4cbc-a69c-1d36fabbada3","55b781ec-abed-41e1-85de-a60f6ac9e87e","55b9e2db-d37e-4a87-ae5a-88a8e45d7419","562b16ae-8ae7-4b2d-9098-bf3ff1429f7b","56835242-ce4b-433e-8c8b-a2749eab59de","56972713-71b5-4319-a091-706e161c198d","56afe767-c967-4094-8d60-165bc7d11ab1","56caba21-b773-4245-b3f8-3ae62725c14f","5832fffe-1f69-44b7-832b-58f064753141","586ad230-fb4b-4b34-8d5c-633726496634","59f95235-3ca9-47d7-be6a-aebfb29fcbbd","5a0df6e1-1945-49e0-8960-e7022d81cc4f","5ab2fcc5-7207-4c53-aadc-4359d5abdebf","5ac2dbbc-8bf4-45fd-a5c1-7597c885fc6b","5b5277ee-f1e0-4777-9011-d7a23c855919","5c284c81-195b-49e5-bfdd-3e0447103469","5c6b733c-b67f-472b-aea3-c59e1f78dc55","5d206442-eb93-4dc8-ae59-5b72777c961e","5dda1113-352c-471a-a7e0-a9a3cb3f19c5","5f533364-0f91-4e49-aaeb-83c4c1f6d316","5f608a10-6bd4-4579-a08a-f7e2da383794","5fca5dbb-8d5e-4471-94f6-e0944cf60ed2","6194850b-d70a-4f3e-be3e-bfb23ce1170b","61d81153-4eca-4475-82dc-5d8bc1343432","62131862-1256-4082-a83d-a0048714acb1","633eb269-916e-4d79-821e-1f304283416c","642102a2-abde-4e76-a6d6-08f7befe1196","643dbf69-1e84-4037-b582-f825e4e6c78e","6472e2a6-287f-4e7c-ad85-1454e40d4a46","650e47f3-476f-4b32-b892-c1a01335d0fe","6527c8ce-4a63-45f2-ae8e-c651e8713716","657c597e-2a5a-4b6f-9a4e-e6df84e28ad9","659a7d45-af0d-4a4a-a878-e8e40b732bfa","65aa4dcf-6e3a-4381-b5f6-5056d741ff67","65e8080f-9e4a-4fad-9ea3-09d5e0e1c816","6714be9d-8ab0-426a-be2b-c0606306ba76","673141ec-826f-4132-8282-d499990495a7","6744c441-42b3-48b2-af06-1e27ec776d97","679aa578-3b31-4b07-98b3-e00777506e32","67becef5-cd70-4fe9-b8a3-1bff2ea04ab4","68d6d1f1-2a7c-41cb-82b6-020209aff5d6","69557258-2441-4ca5-993a-8d7afb51ad3d","695de19e-801f-4f08-b44c-b0726e4aced0","6a0715a0-dce2-427d-964c-0e179309499d","6af0c659-f182-4ad4-bca7-e6c3377f808d","6b667225-a808-43e9-955e-6c4e7ecd53f2","6c39da1f-64f0-45d7-8a50-092caf2ac8f8","6cb33c43-4f6e-4052-91f0-ca9bf8db5fec","6cb8f264-cc26-476e-a3b7-53638dce7395","6cdc5ca9-6d01-4ee3-8117-3c1e74320553","6cdee883-2002-43c7-a0fd-29e7ada26963","6d3a661e-d890-4211-bc9c-8266001ebfba","6efcdb56-3f56-46dc-9309-9f5be3100f32","6f1c8cb0-38eb-408b-94e8-16db83999b3b","6fb07e09-bff6-45fd-b408-fd957f69a994","706be1bd-720d-4e74-b71f-568081afcab1","7104a533-42df-4430-87dc-e0adeb7f2320","715c6de3-5f4a-483f-9b73-ddb23207c0f4","7193cf41-e5c1-4060-a3e3-89f4d71e323b","722111d4-99f4-463b-b232-96821c18f189","7272906c-14f2-4e06-bbea-b461369e151a","72bac71a-c326-4640-bdf8-43682f59060b","72d8d9bd-b8c0-4628-bb19-6867336df7a8","73029d4b-f073-4df0-a6cc-8014284a1ced","73626fd3-0339-4351-99fc-c0507c6bab05","73a0bbd4-a420-4a90-9f20-ec0ad7e97537","743f283c-8aae-44ab-b245-c239feb23c16","74ef8358-9812-4d40-9532-d667513d7701","75d5a81e-1efc-46f3-b169-0422cbc8cd5e","76349ec5-a7ad-45cf-a6b8-1f71d7e6f74d","76426cae-c1da-41f0-afe2-1c860b41dfc2","768c4d8f-5700-4f0a-9ff2-58422aeb1dac","76d62e37-c8ab-4768-9be2-24546d5ded8c","771e307c-b2e3-47ac-aac2-59f0c3542fa6","776470f5-3a47-475b-a599-cb5fee156593","777e868d-cb88-4b8e-99d1-12ff67f5eae2","77aec0b2-30f2-4f35-a9a3-24d87795d177","782a3732-8577-4cfa-a2db-0f707735fa47","79053ce4-62d4-416c-b001-93740521fd07","794b8b40-8cab-413d-8638-011bf769f2e2","7974535c-d99b-4d69-a21d-63359e40d385","798b4f41-1e33-4da6-99c1-de926297c073","79a5c57d-aca1-4951-adb6-a2f508d43071","79bf50f3-2838-4908-8004-847ccb296fe0","7a3b0668-0a4c-489f-aa2b-4faa8ef3e429","7a80d346-84e3-4eaf-9635-09da472475d8","7ac34881-de32-42c7-af60-f992638e1da2","7ade2cdc-9625-427b-92b2-9596ac48904b","7ae6380e-b1b6-4a5a-a8d9-7cdf8eab3557","7aed6d9c-d6c6-4df3-bfae-3e0f90cd5589","7afdc917-ec37-4e03-853f-36cfe90053d9","7b042a72-c37a-487f-99cc-2c9d86b729c4","7b0af992-80e0-4ac6-a828-5eaac47eaff6","7b6c2532-be5a-4f1f-893c-36bcda2a699d","7b794c4e-573a-4401-95e1-46323261cd96","7bba93b9-5825-476e-afc9-325ad233bb4a","7c4bfc1c-20d5-40f4-8863-c69a89872159","7c507a5b-f981-4881-8c51-6c5379dfea70","7ca91ba8-c08d-4239-b9f2-d6c960466456","7cf3e898-2013-458b-b68d-def49b575dcc","7d727860-3573-4b5e-88d1-b226b85fc662","7d850739-d53e-48bc-8628-830aa74ab60c","7df94d2c-7c1f-4461-8f70-c2bd4ebb95be","7e33e540-2828-46ad-a441-366552843d9c","7e6151d4-5129-4631-84a1-5cffc551c1e9","7e703632-5ed0-4509-a12b-594269f865f1","7eee631d-de1e-4c6f-b60e-0e97a5e99fe6","7eef5e5c-27be-45f2-a9c8-4e0a65c984d4","7f087727-bbd5-4fb0-b604-82acffa02fea","7f79d663-b278-4611-ace1-e178a701b622","80716ed1-8d0e-44e6-8b18-606e80d22181","8097c9ce-8fe9-4150-9810-52f6c92c6099","8100bceb-ffba-487a-bb45-4fe2a156a8dc","8126b842-ea58-4988-8b3f-0394cf766b91","815261f8-daaa-4d76-86d9-d2801eb3f1f7","818442df-fb81-4f1c-bcf2-fbd6b05912ed","8335b9f1-e726-423b-8ba7-6151448ab3fd","835a4eed-a308-428d-ac85-e385b5d47d8e","836f0207-228e-4812-bc5b-ee22cd5fd51e","839f63ad-476a-4344-b6c3-911c1075c2b8","83caa371-9c1d-46c7-a7c9-abcaa71ebc57","845057a1-4da1-4a32-9bb2-bbf8502acd37","849969bd-60ec-4e91-9d14-3a50b0346ca9","84b87daf-c5e2-46fd-bb25-731e14fd3c8c","85a1b232-92ab-4829-9af3-26b280507dc0","88adbda4-7818-4888-a908-de6073bd0152","88c672dd-60a5-4dd3-8b9b-6aada8fd145d","88d0aca2-874c-4d91-8fe9-f8355d71aeb2","88e1bf57-cb14-4dfe-abb1-d8ed9c051f1a","88f06e37-f113-4865-9ad9-13483dd15084","894f5b1f-be1f-43e0-800a-e4808c8f467a","89ad91fc-50c2-44e0-b88e-2c13610377f9","8a73d19b-72e3-4944-ac20-5b4c7b54c2aa","8b42bde8-16c1-4804-8353-091aedde486f","8b712739-df44-4c23-b076-0fb778aa6dc4","8be6c40e-5669-417e-a655-b32b5f2bfd11","8c13cafb-3078-4856-a5b0-c38aace8a34a","8c48b157-1ecb-41e9-9697-7e2c75b22975","8c70181e-7b28-46b1-a51a-ba99e58e8566","8dc0660e-6fe0-48b9-aba0-0e7a72ea4afd","8e17db23-a8ca-416e-b978-1eae852c6690","8e3e83d2-96ba-4d5c-a1ed-6c08a90b339c","8e9ac507-7c8f-431f-8d1a-220ceeacf871","8f0fa40d-c6a6-4e2a-9121-4ea6fc8ed5d5","8f8f85ed-29ed-44f4-837a-0c6ef1e44f04","900eedf8-71b0-4b82-9709-019018bc29fe","909968b4-1b44-45af-8c24-ed477d039237","90db81be-753b-4d0e-9d66-9292364d2a60","913e6724-4860-4795-a079-f8141e25f225","91c4bd58-d32b-4d6b-b0e0-9be09c9e50dc","925e07e8-a897-443f-8962-ef11fc41002a","92af153b-5cc6-4130-8694-dcdb1fd45cdc","92c9e16d-525b-4ba9-890d-fa2719206ba0","92e67efe-cc8a-4132-9019-26ddfc72a735","92fa2676-1103-498c-a4f7-37a25e4a5643","9397010b-6116-4612-993a-11ec2a5d3115","93a889c2-9b8f-46cb-b2ed-c9c3d0336370","941546b8-8540-40dd-bacc-9b11f3d63033","95dfef30-acca-4b15-a05e-d33289055218","96c7dee9-118c-4c16-a63e-46c5b042503f","9730c936-a1fc-484d-a9ce-a91804a84609","977ec5e4-3b44-4359-9ab8-4e25e2a9ec86","97d3093b-4f83-41fb-9290-757a3b2fa468","98548336-f0f6-47ce-8ed6-977c8c8150af","98c4806b-a31a-4026-9876-eab4d0d1694b","990f4974-fcef-46d1-8baa-6a215f7f3292","99eb81c1-0607-456b-8030-e6110776e0e2","99fe8645-9bb9-40ce-aace-94c2942b3ff6","9a028172-c148-46fa-9afa-c5fdc7f9ba9e","9a667819-0b08-4044-b731-09d3bc41e2b9","9bac6e97-f2c6-444b-a811-66b30fafb744","9c0cd5d3-a53f-4241-b2d0-888e4c768ab3","9c301150-16a8-4ce3-818c-16d6fb0df1b7","9c348494-f60c-4bd1-9077-bff24f2e634b","9cbaa22a-d679-48ef-805a-d09d6f1091aa","9d12fcc7-93e4-4bc6-be4e-b383b0e75f7e","9d94fa1c-48d1-48bc-b725-5c11a158507b","9e0d673b-cd7d-4d8f-8c62-63c79531ff85","9ef5814d-2535-4bb9-95f4-f7e547a211dc","9f104987-f678-4ba4-b7f5-69ae7fdc01a3","9f9e911e-7e12-4d99-806c-5cfba19ea8f3","9fc29dea-b48c-4363-8f17-da0413a49a92","9ff9fe02-124c-4d5c-8526-a763272e05f4","a06a2952-8a9a-4f9c-a113-c24144619781","a0ae7a81-9a61-4112-af22-369c525b2eb1","a1dff5ca-1589-4baa-8dd7-447e82e24dc3","a1f48b35-5fe1-4090-ae9d-11955ee8099b","a305e44f-4253-4754-b83f-1e34103d77b0","a3209b22-56af-45ac-9224-67574c035638","a38e4ee7-6965-4e12-95d4-c9de1dbb014c","a49ff824-f9a6-457a-b1ff-c06b246d06d9","a4c99f1b-f304-42d5-bbea-32283b01d43b","a4df3e89-610c-4f42-a93a-e694342307cc","a4f7ca58-e8db-49f5-954a-c4f83fcb44b3","a5a56694-71fe-4174-8eea-5ab832d6caf6","a5f2462f-b308-480c-a371-a1eea95a6509","a63eab07-46e5-4b75-954f-b5a9f1f451cd","a6712361-976a-4ef9-bae9-48505344904e","a69545e9-7219-43f1-8a31-5035d87dca68","a7279281-42d5-4226-b841-f1f4deff919b","a793d3b8-aa7a-4679-ae28-e0ca2f265b1f","a7cdabc9-39d6-4380-8e14-e7792d7463dd","a80ca452-06d2-44ba-9ef6-9fe4b7dd81dd","a8990632-f055-4583-ae85-5ac742549b61","a8ba6d68-19da-4b85-9852-681c0fc1e400","a90b184d-70ac-4e67-b09b-3f20da560687","a9305b9c-63af-49a3-97c2-0b3597555cc2","a940a241-4efd-42f7-a670-2c4fed4755bb","a9d61651-349e-40d0-a7c4-c9561e190405","aa35174e-c0c8-4643-bc32-9a7b7c7e7d00","aa36a925-9be7-45ba-bf55-30f9a25c09c1","aab1cc13-8959-4914-afe8-58daf9529f61","aad57826-fe67-4d8f-b22d-49078804ae1a","ab82f8e3-6f48-4974-bb5c-39feddc51344","ab8affbb-d2a2-436b-bbc2-9e8b6cf0d2c4","ac82d07b-f8f2-4cdd-b799-98d4dc228e5c","acc778ae-a2d0-493f-963d-e946bd7cacd9","ad8ff40e-2d40-4557-8209-d2c84eb4ccf2","ad96467f-b418-4030-9b1b-7e95d36dd154","ade29c12-43f6-473d-bcc8-1e3f2cf4ee8f","ae21165c-cc6d-45cc-b5c1-97b73e85dddd","ae3eea1d-4d57-4aee-9ebe-a8eb594d319b","aea5c36b-c107-4daf-bedb-507b4cd64724","aec41fec-d146-40cc-8d9f-633e913f3ab3","aec7e0c1-672f-4a79-97f8-b6d5ccb3355c","af042ca5-da40-498b-a7dc-87ab41863ddc","af8a605e-73a6-4666-ae08-ec6e9845e629","afa69d38-3344-425e-88ff-0155d8bfc1f0","b0b6e3d0-bbb0-4fa3-8c01-9e2926fed10f","b0c1b0c3-a5a2-4273-93e9-24ccc0964c20","b1350577-c7eb-4d1d-afa3-874199b7d17d","b1f909e5-f993-467d-be46-10d8a67ee9f4","b275edcf-51dc-4dba-be25-875356a05074","b2f44732-17a2-4871-a968-53a32018ba8b","b346b784-7bde-49d0-bfa9-56236cbe19d9","b361b42d-401f-440a-bae9-35338b5dde0e","b38c68a5-86eb-4fb2-8a43-4a7d63195462","b38ce16b-3258-4019-9e86-156e4738aa89","b3a37f57-5d3e-488e-a909-f53bd4c2576b","b3adc4ec-2e2d-443d-aac1-e1f1733dca92","b3ed8a17-ce32-4100-8ffc-fb8af1c35142","b4075bbc-dbad-4a1e-a992-70aed713a459","b4321609-4f11-4066-9820-cbb483e9214a","b43297de-7378-474f-a85f-910fa7cbb4f4","b460f5f7-c7c9-400c-8419-23d614f45bf9","b49e6028-cb92-4a8a-8e85-4c403f55f61c","b4dd7a8a-a560-481a-a16e-dc60cdb440bb","b4ee8330-f1bf-460b-9345-00d08665e9cf","b52ff177-bafe-4e0a-a6c3-2cf012b1319f","b548b48c-a004-4f17-90d6-1ef5b9769e38","b59a8070-3bbd-4b81-855c-1c31486ff496","b5a922eb-49c7-45f0-92bc-671d7a8758f4","b5b4e14a-ab24-4740-b727-165ee9d22e99","b606f644-1728-4cb3-90ed-121838875de1","b6424d21-d852-4af5-96d7-cda2ba0e5912","b69adddd-3626-45d6-8100-26cf1f314d00","b6a46b11-3225-45aa-b54e-4d19d81b51cf","b6e049ae-bb12-41af-bbe4-ceded30bad67","b6e1c2e9-5572-4242-985d-f509d628092b","b6ec4ded-7c8d-416a-9a12-3e5d6c91ac93","b70e30de-fc01-4512-b218-a1411cb50789","b7209ed0-c0ff-458f-8f79-259955d29e01","b742ffa7-915f-45ce-b3f2-8391723bb34c","b763764f-efb0-48c6-b353-1831164c2db5","b794073f-4188-45c9-9e65-c9d7f2ecc24b","b81b803f-e065-4f79-b5e4-e45fb1815443","b8a081ef-a2d4-4989-8b06-721f8b2c9798","b977e434-3540-42a2-9a1c-5433d36d09cd","b9be1afc-eb3d-46ba-a645-ab2f33264f36","b9cf9a4b-be51-4f5d-ac0e-e4f79bbfaecd","ba2a4cbb-f325-4178-80db-7090f5672414","ba9f4afb-b884-4d63-9342-b6b938ea32a5","baad690f-4087-4ae9-8e32-9987d33c74ec","baf8a774-65f3-431e-b084-328ff1000895","bb0e5fc9-1b11-45c0-a0c7-668507cfabfb","bb6b3f80-20bf-4693-b106-cfb31a3d7f83","bb758bb6-99a7-47c2-80c2-47a56a7a4b33","bbbeb57d-5fa0-4ff7-b5e8-caafc139669b","bc476125-60d0-4a3a-bcf8-6e2e09d11179","bc9f3d1b-bb3a-4a78-9031-ed439212a48b","bd712cf8-d5aa-439f-8030-db612bf6d0b1","bdbce923-c05e-4554-8c4c-5c4e6d791856","bddc66f7-4e94-4857-ba7d-6b0083d0bfa0","be13351c-ca20-410c-8959-bbaa59816002","be4de4aa-721a-4d1f-aa7e-78beb1fe4681","be72862d-d71e-4b18-98a6-59019399f631","bf0b0bfa-5d1b-4783-b187-7aea8405e6bd","bf8bd63e-303e-402c-9ad2-4f6e55ed0e14","bfa98b17-c660-4cbf-a385-c2cb6a67254d","c086cb5e-3146-4a41-a471-fcbbf8fa4e09","c0e38987-e257-4da0-b270-bc48404947cd","c10cf58b-e01e-413e-979b-c6fe9e93100b","c151d945-7da0-4ab8-b0db-e41d10c0eb91","c1629dba-02af-4586-ba59-58faac7cf59b","c1973049-2d42-4091-9703-189ba374254d","c1c2a41c-e974-4c14-8d01-d278ecdb31bc","c1e46627-3cf3-4aca-97ba-80f9e919608c","c1e70a49-ca99-416d-be0a-0a064da44b62","c2b534b1-2d78-4de3-afc8-8bdd6ee6da82","c318bae5-5d3f-4e91-adfe-13c182511ef7","c38eb2f7-def3-4884-8825-56b8b8884f11","c46df0e0-648d-4dc9-a2c7-ac96125ba77c","c4be31c4-9cb3-4a07-865b-5621127df660","c4fec728-8e3f-427d-81ab-e06114910223","c52038c8-5bba-4d8e-845f-30af44300acc","c53e6980-5d2f-42d2-a98e-49c9c8779dcb","c5c95d38-c135-4059-9379-051b2dd33f9c","c5cbd941-53ab-4b02-b96c-a9af7767e606","c6d6876e-7d83-44bd-b721-5070f4087325","c726424a-3336-4e15-9055-4a26371df361","c75b7404-ae5a-4921-b70b-775deeb2c984","c8179106-e5d7-457a-9250-70df980b38ce","c8c84076-d503-48df-9b6c-9d4a835501b6","c8f06046-45c4-424b-8846-e0cd152f84b9","c931df5b-650a-4640-b4fa-7c883db1aed9","c9421f47-6b69-4ac1-97e3-ca0f55cd4076","c983df8f-4945-4587-ab14-79a8e30a924a","c9a8b574-280b-452a-98c9-cd775650d59c","ca6a30d9-0cee-40d0-85b5-3b3d366de5c1","cadcd72e-90ca-4cfc-a181-742e35c4a8ed","cbe793e4-c034-4a22-929d-d743c0255bf1","cc1aebd0-9b96-4ff9-b3d0-888fec778898","cc485069-e081-4e83-bbad-d5faf7a5bd03","cc5e6286-2ceb-40eb-8998-7787dd02ace5","cc8d9951-2a9e-44a6-a572-309c855f3124","cdfeb531-daac-4d64-858f-6db7d82d2b93","ce27a3ec-4652-4bf8-9f06-281f53dd966c","cee97ab6-8e81-4396-a788-db0ed0da62d2","cef7ba3a-0269-4a4b-8833-7e9e5f66013a","cf6a3ff8-5153-4616-9c3f-b71966754b52","cfacc498-f089-4ae4-8ce8-697cc671f445","cfff8acb-e330-4819-a7e4-eec27645cba2","d06fbe79-9a99-485a-b363-42b47c47a2ce","d17befb9-992d-4b30-a3fc-bbbf8839f6a9","d1d15705-981c-44db-9070-592dbeace299","d2196228-d6a4-4d9f-baf5-b7bfa3bb5ba6","d232fcc2-12f6-401a-b1aa-ddff11cb9378","d35801ab-e484-44cb-b9ec-80723cb25bc7","d4558304-7c17-4aa0-bd50-cdd95547f1a7","d65f7c03-647f-4e5a-98b1-1faa3d330e7b","d85892ae-dacd-4a55-a557-9db3c16017c7","d8a67bf6-818b-4afe-af15-3d955dc5e884","d8ecd546-2638-4338-86b5-59ab3f1303a3","d93b2614-5b15-4705-8665-fb4677f1ac45","d949485e-5188-49f4-9d30-5e135532d445","d99d5685-538d-4e6a-809b-3ebeab634363","da462ed3-c8f5-409e-bdc8-53e36a4961dd","da9e7ddc-cf71-4751-b8cf-133077687946","daff5153-cdb8-4ed2-b17e-7ee2aa689da0","dc20a07e-5f92-49c2-9c97-d5eda536d3f6","dc477b44-a7b3-4dda-b897-6f164e28541b","dcf26dff-a7f2-4873-99a6-e3cd6dfc1654","dd3cb353-050f-4eee-85bd-37bfd678446c","dd5acc74-456a-4299-8316-58c0ced0d628","dd98de13-d556-4cf3-99f3-d1c0db85cb3f","ddb35995-0298-4281-88d1-2531c93a4916","ddfcde62-1b20-48ce-8ba0-7929edcd26fc","ddfd1469-94b9-4964-ada6-4fb43b0b9282","ddfd1de7-60d3-4bf3-8909-8f4fa5045479","de0c00b6-098b-4d0e-abd4-4e12db32e024","de0da109-d1fd-447f-9684-5425f5a7d22d","de3b7f6f-58ed-4d7c-84f8-79f7989649bf","dee4121a-cd1f-4124-8242-f0eae8ef6580","dfaf517f-86a1-45eb-bd71-e0bffb610396","dfba6253-3958-43fc-b132-34a1efa45268","e0230af7-0edf-4f76-af57-44cd4ebad552","e0486be6-fc22-41b1-a7f9-a0311866ceca","e0ce5575-2d62-43c9-9c4b-fca4aff6ae4d","e0e0ad7b-dcbd-4a9b-8691-6f171425fa0b","e160ed28-7752-486e-85bb-bbff03642c67","e2ef9b74-481b-424b-8e33-f0b910f66370","e36b8794-c117-4d3d-bcde-39a3ae436f1e","e3bc9d0c-0d86-44a4-a548-a2054361a4ed","e40144ed-fe92-4fc0-8f88-9be7ff3b7051","e43b0df9-317f-4c1c-a7e3-51e81acf3bf1","e4508384-7c5b-4189-80e6-1fc8a0fd4692","e4c83b60-3d49-4fdc-a6b7-06d1a0c4a126","e52fa771-eaff-48e0-8c23-d118dc4b3438","e630a714-3c2a-4c0b-9ad5-a8d45fa0c01b","e6850740-6219-4f82-a705-2e7b20ede751","e6b72db4-03c0-43f9-9e9c-d49ac0ac7eb7","e6e08185-e901-4552-974d-a81766b4fa16","e7059825-0844-4271-89e8-645e2f515b59","e76f1045-8355-48a8-8e0d-eed17bf4ff6c","e797e006-7379-45c2-a4b7-d0ef133379df","e7f57347-7206-4a2f-a41b-0612d456cd30","e84c0880-728d-4ac2-b685-4f18f66c24db","e84c1369-68a2-4e67-979f-64decb6133a1","e8760175-e9bb-4ef9-87ca-591d1edd5163","e8e9959a-b422-4906-8d35-8b05c5dd6de1","e955ba85-fbe5-41e1-acf4-edea058dd135","e99aacd5-c692-4de8-b565-d5092598295d","e9f26305-2f99-43f2-8059-9694ad89cec6","ea3cc8ba-ab54-46d3-9c3a-91678fd8d381","ea47bbb0-6d4e-4744-94f7-0763ddc4313d","ea556a69-c487-45ca-8f60-7e89407ec7b7","eae0bd2b-6875-4823-b596-f5c7c0a0809e","eafbf7cc-f20c-49d3-85ff-406dd32f6444","eb61e54a-646b-4c0a-88fe-f55d514202aa","ec8de02c-7954-4424-8b95-a21d8e104bd4","ecd6d8fb-780c-446c-a8bf-93386b22fe95","ed189e2b-a4e5-493b-9085-a5aae892e5a8","ed22c591-19f4-4096-a08c-5523a26b307c","ed4addef-4649-401f-9810-c331ffeb8cf6","ed6ff6d7-b976-413b-b433-8ebd2f3c2a54","edb2bf35-efe6-4ad4-bf6e-55848ba71dfe","edc50993-1fd4-4dba-9d2f-ae7a18559829","ee05a26d-b872-4d49-9860-2fd982b3662f","ee1ebe0b-995f-4239-aad3-bfe471a88b6e","ee56689a-da7b-4cd7-8767-e3f514b6db9e","ee856e7a-37ee-435c-80e8-d0ac6f15892f","eea3cb6c-57b5-4ea5-8639-30d39962df2d","eeacc55d-d548-498a-8bc6-ac1ddcade841","ef37620d-4fa4-4d2f-a668-7b1e556b3b04","f0001e85-68ed-4a76-bcdb-dd57f507a6b6","f00849dd-c1ba-4171-a503-603fe77c0a43","f0c560c6-ac9f-40e9-bb23-d308a0123563","f0ca4b9f-4ee6-4ad8-a95f-326ada9de3cd","f13b34d7-e2a6-4cbc-9d5f-b6fe05a1c701","f1488e6b-f677-44c5-8ff3-6a2f9bdb28c2","f169dfb2-e4c8-46e9-8591-e51bb82da082","f20c89d9-71c9-45f5-a9cb-6e253b0a7cca","f2864a75-2945-4467-be00-3b4b71831f4f","f2bc8f49-6b8f-4466-908c-c6ff3e5c8c32","f30f54e8-eba3-4412-a805-3a834922c260","f373e6a7-319a-481b-8bf3-5f4e5d229456","f3ae3313-19c7-4a76-aea3-a19bacf5f6f8","f6302ae7-0947-4a8d-ace4-5e6741aea9ba","f6cc1b2e-945c-4d44-b973-3a299325e756","f6e1cd0b-1f50-4a56-b015-269e3a95051d","f754ff0d-fbbb-47d0-82d1-9eef034d602e","f791876a-f3fb-45b8-90a9-af846d8b8f74","f7cf3bbf-acc0-4fe7-a631-aca698190ce2","f7f865d8-fced-4763-b73e-fd40e9387e45","f82d0a1c-5812-4254-a000-e4ff9aece3d9","f8772631-d4a1-440d-ac89-ac6659bdc073","f8a0a7be-a72e-4eeb-82f8-c0eeb0e94148","f8f03bb2-313e-4688-945f-052eed678174","f8f694e1-f9c9-428e-a85c-d09b3474c79b","f9078bad-f202-469d-bdc0-359304f0b048","f954219a-fd4b-4fb1-945f-7950efc1d975","f9fe7b4b-fcd1-499b-bbb0-e13eb1ce0398","fb62605c-a58e-4e53-8336-b2bee316b5a6","fbdcbd97-90a9-45ea-94f6-2a1c6faaf965","fc141ede-0aec-48af-a24e-237fdc16cb7f","fd1b6c5c-4585-47c1-82eb-a324189f3ebd","fd638d4c-c064-44aa-9a9b-86c0dd1c4728","fe2e6db4-94a4-4fa9-be52-1ec235d2b137","ff4c78b4-7178-4a60-ba22-086fb18146df"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD1","DDD","DDE","DDG","DDH","DDJ","DDL","DDM","DDO","DDP","DDR","DDS","DDU","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","EVG","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","GVL","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PELP","PF19","PF20","PGPX","PGRU","PIP","PL25","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC04","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"frenzy sliver":{"name":"Frenzy Sliver","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"All Sliver creatures have frenzy 1. (Whenever a Sliver attacks and isn't blocked, it gets +1/+0 until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddKeyword","keyword":{"Frenzy":1}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Sliver creatures have frenzy 1."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d512d4ae-5db3-4fe5-8017-6a942004712d","metadata":{"source_printing_ids":["d796119a-f1eb-4de9-a9ca-d322017e9c5e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FUT","H09"],"rulings":[{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."},{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn’t provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it’s no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."}],"rarities":["common"]},"frontier siege":{"name":"Frontier Siege","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of each of your main phases, add {G}{G}.\n• Dragons — Whenever a creature you control with flying enters, you may have it fight target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each of your main phases, add {G}{G}.","constraint":{"type":"OnlyDuringYourMainPhase"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"subject":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control with flying enters, you may have it fight target creature you don't control.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4cfaa5cf-cc3d-49a7-9544-38a8bb7e9ec1","metadata":{"source_printing_ids":["25b37249-bf5c-48ad-a5ea-c7538cc46929","5e7ee5ff-eabc-4947-b5fe-2647c7e2eb82","62d6b939-8331-49d2-a59a-3054c7b0f353","a474981a-581a-49c0-a036-87afaaeea7ef","f419710e-3a73-4db0-bf2e-e76730f22c4d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF","SCD","TDC"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"For the \"Dragons\" ability, you decide whether the creature with flying will fight the target creature you don't control as the ability resolves."},{"date":"2014-11-24","text":"The \"Khans\" ability triggers at the beginning of both your precombat main phase and your postcombat main phase. Unused mana is lost at the end of each step and phase."},{"date":"2014-11-24","text":"The words \"Khans\" and \"Dragons\" are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. \"[Anchor word] — [Ability]\" means \"As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].\" Notably, the anchor word \"Dragons\" has no connection to the creature type Dragon."}],"rarities":["rare"]},"frostcliff siege":{"name":"Frostcliff Siege","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Jeskai or Temur.\n• Jeskai — Whenever one or more creatures you control deal combat damage to a player, draw a card.\n• Temur — Creatures you control get +1/+0 and have trample and haste.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, draw a card.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Jeskai"},"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Trample"},{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"ChosenLabelIs","label":"Temur"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control get +1/+0 and have trample and haste."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Jeskai","Temur"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Jeskai or Temur.","condition":null,"destination_zone":"Battlefield"}],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"e7af31ff-fa1b-4225-b3bc-fde80ac72d0a","metadata":{"source_printing_ids":["a750aabb-9788-494a-841f-bf75717970a7","b32ab782-5f99-489c-895a-49c5c5ea249d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"If you chose Jeskai and creatures you control deal combat damage to multiple players at the same time, Frostcliff Siege’s ability will trigger once for each player dealt combat damage this way."},{"date":"2025-04-04","text":"If you somehow control Frostcliff Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"future sight":{"name":"Future Sight","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Play with the top card of your library revealed.\nYou may play lands and cast spells from the top of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"RevealTopOfLibrary":{"all_players":false}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Play with the top card of your library revealed."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Play","alt_cost":null}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands and cast spells from the top of your library."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"93a0e938-b916-47ec-9803-369e885e253c","metadata":{"source_printing_ids":["0856f657-6664-4e33-8615-e005cb211baf","1075fe05-de20-42f2-bd5f-e67f6c40b428","639cb483-ffe2-4abc-a050-5cdc8aebd5a2","688bd665-4948-4961-aec5-f17782257f9b","82117419-4d97-4ac6-abb9-316fc6460ddf","c37c7dfa-3ef3-4958-9b54-e96c7483f054","fdf3b52f-edcd-429d-9a65-703bbd97cb5e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["DDM","EMA","MB2","MH1","ONS","PRM","SLD","VMA"],"rulings":[{"date":"2019-06-14","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability (most likely because that top card is the card you're playing), the new top card won't be revealed until you finish doing so."},{"date":"2019-06-14","text":"If the top card of your library is a land, you may play that land only if you have any available land plays."},{"date":"2019-06-14","text":"The top card of your library isn't in your hand, so you can't suspend it, cycle it, or activate any of its abilities."},{"date":"2019-06-14","text":"You must follow the normal timing permissions and restrictions for the top card of your library and pay its costs. If the card has alternative or additional costs, you may pay those. If the card has any mandatory additional costs, you must pay those."}],"rarities":["rare"]},"gargantuan gorilla":{"name":"Gargantuan Gorilla","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ape"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, you may sacrifice a Forest. If you sacrifice a snow Forest this way, this creature gains trample until end of turn. If you don't sacrifice a Forest, sacrifice this creature and it deals 7 damage to you.\n{T}: This creature deals damage equal to its power to another target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to another target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":7},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, you may sacrifice a Forest. If you sacrifice a snow Forest this way, ~ gains trample until end of turn. If you don't sacrifice a Forest, sacrifice ~ and it deals 7 damage to you.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8314bdf5-1539-4215-949e-f46584cb43bb","metadata":{"source_printing_ids":["09635727-dd96-4a4f-b225-e410c4053499","49f367c2-f47e-43e1-9936-4324be664475"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ALL","ME1"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."}],"rarities":["rare"]},"garruk relentless":{"name":"Garruk Relentless","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"When Garruk has two or fewer loyalty counters on him, transform him.\n[0]: Garruk deals 3 damage to target creature. That creature deals damage equal to its power to him.\n[0]: Create a 2/2 green Wolf creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Garruk deals 3 damage to target creature. That creature deals damage equal to its power to him.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Wolf"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":0},"sub_ability":null,"duration":null,"description":"[0]: Create a 2/2 green Wolf creature token.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":{"Unknown":"When Garruk has two or fewer loyalty counters on him"},"execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When Garruk has two or fewer loyalty counters on him, transform him.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"7cec9021-6f25-4fd8-b40e-adf4ffd3a7b8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["826738d7-4d93-5ba8-bd2d-ea8a6a986e20","838671eb-24c5-5246-b969-5190055b6e1c","9138077f-b563-55d5-a333-de099c084a2b","b0a9bf0e-8389-50f0-b7d3-23d8ca0ad8de","b101956b-c0f9-5be5-9133-a39b3fd24f40","b573ea1a-b988-52ca-b27c-d0b1f2a3cf61","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["6897514f-e396-46d6-91e3-158366c741bb","9c60d186-5c1e-4a74-80b7-0c60a6e5e79f","b4160322-ff40-41a4-887a-73cd6b85ae45","c340ad6b-aa09-4d12-a947-33b29b875158","ed8e75d9-dede-447f-a50c-c87165e436f8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["INR","ISD","PLST","SIS","SLD","V17"],"rulings":[{"date":"2011-09-22","text":"Garruk Relentless's first ability is a state-triggered ability. It triggers once Garruk has two or fewer loyalty counters on him and it can't retrigger while that ability is on the stack."},{"date":"2011-09-22","text":"Only creatures you control when the third ability of Garruk, the Veil-Cursed resolves will receive the bonus. Creatures that enter or that you gain control of later in the turn won't be affected."},{"date":"2011-09-22","text":"The number of creature cards in your graveyard is counted when the third ability of Garruk, the Veil-Cursed resolves. Once the ability resolves, the bonus doesn't change if that number changes later in the turn."},{"date":"2011-09-22","text":"The second ability of Garruk, the Veil-Cursed doesn't target a creature. However, when that ability resolves, you must sacrifice a creature if you control one."},{"date":"2011-09-22","text":"You can't activate a loyalty ability of Garruk Relentless and later that turn after he transforms activate a loyalty ability of Garruk, the Veil-Cursed."},{"date":"2011-09-22","text":"You don't add or remove loyalty counters from Garruk Relentless when he transforms into Garruk, the Veil-Cursed. In most cases, he'll have one or two loyalty counters on him."}],"rarities":["mythic"]},"garruk, apex predator":{"name":"Garruk, Apex Predator","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":"5","defense":null,"oracle_text":"[+1]: Destroy another target planeswalker.\n[+1]: Create a 3/3 black Beast creature token with deathtouch.\n[−3]: Destroy target creature. You gain life equal to its toughness.\n[−8]: Target opponent gets an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Destroy another target planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Beast","power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"types":["Creature","Beast"],"colors":["Black"],"keywords":["Deathtouch"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 3/3 black Beast creature token with deathtouch.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Destroy target creature. You gain life equal to its toughness.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddPower","value":5},{"type":"AddToughness","value":5},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get +5/+5 and gains trample"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.","constraint":null,"condition":null,"batched":false,"attack_target_filter":"Player"}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"get an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\""}],"duration":null,"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":{"type":"Loyalty","amount":-8},"sub_ability":null,"duration":null,"description":"[−8]: Target opponent gets an emblem with \"Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"ef9a8bdc-3361-440d-89f6-0bf5ff7a09e8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["1f94e698-6428-5165-9437-8a45a5d824f4","84ecd3c1-7f96-5664-918b-4c56b9a780b6","f397d1d6-306e-5622-9a70-1df7f74e9239"],"source_printing_ids":["07dd9bfc-b6d2-493d-b825-941556018dbd","3ebd3fd3-d629-4e14-876f-55342a3a97d2","543515aa-4b8c-437c-89aa-56dd57a4a6d5","a3957b43-4d7e-41f9-b7a1-6f57d6603ab8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M15","M3C","MED","PIO","PS14"],"rulings":[{"date":"2014-07-18","text":"If you activate the third ability, and the target creature is an illegal target when the ability tries to resolve, it won’t resolve and none of its effects will happen. You won’t gain any life."},{"date":"2014-07-18","text":"The emblem is owned and controlled by the target of the ability that created it. In a multiplayer game, if Garruk’s owner leaves the game, the emblem does not."},{"date":"2014-07-18","text":"The emblem’s ability won’t trigger if a creature attacks a planeswalker."},{"date":"2014-07-18","text":"The first ability can target and destroy a Garruk planeswalker controlled by another player."}],"rarities":["mythic"]},"garruk, the veil-cursed":{"name":"Garruk, the Veil-Cursed","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Garruk"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"[+1]: Create a 1/1 black Wolf creature token with deathtouch.\n[−1]: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle.\n[−3]: Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Wolf"],"colors":["Black"],"keywords":["Deathtouch"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 1/1 black Wolf creature token with deathtouch.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":{"type":"Loyalty","amount":-1},"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−1]: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"CostXPaid"}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"CostXPaid"}}},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain trample and get +X/+X"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Loyalty","amount":-3},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[−3]: Creatures you control gain trample and get +X/+X until end of turn, where X is the number of creature cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Green"],"color_identity":["Black","Green"],"scryfall_oracle_id":"7cec9021-6f25-4fd8-b40e-adf4ffd3a7b8","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["826738d7-4d93-5ba8-bd2d-ea8a6a986e20","838671eb-24c5-5246-b969-5190055b6e1c","9138077f-b563-55d5-a333-de099c084a2b","b0a9bf0e-8389-50f0-b7d3-23d8ca0ad8de","b101956b-c0f9-5be5-9133-a39b3fd24f40","b573ea1a-b988-52ca-b27c-d0b1f2a3cf61","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["6897514f-e396-46d6-91e3-158366c741bb","9c60d186-5c1e-4a74-80b7-0c60a6e5e79f","b4160322-ff40-41a4-887a-73cd6b85ae45","c340ad6b-aa09-4d12-a947-33b29b875158","ed8e75d9-dede-447f-a50c-c87165e436f8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["INR","ISD","PLST","SIS","SLD","V17"],"rarities":["mythic"]},"gatta and luzzu":{"name":"Gatta and Luzzu","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen Gatta and Luzzu enters, choose target creature you control. If damage would be dealt to that creature this turn, prevent that damage and put that many +1/+1 counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"ParentTarget"},"scope":"AllDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Ref","qty":{"type":"EventContextAmount"}},"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, choose target creature you control. If damage would be dealt to that creature this turn, prevent that damage and put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c01d6fde-1bd2-4412-932a-9bc97d4e5aef","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4742c222-1f29-4e1a-a545-798d175255ca","ff6b510b-a425-48c8-b67e-276fba2f0ef0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"If damage that can't be prevented is dealt to the target creature after Gatta and Luzzu's last ability resolves, you still put that many +1/+1 counters on it."}],"rarities":["rare"]},"gaze of pain":{"name":"Gaze of Pain","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a target creature. If you do, it assigns no combat damage this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"AssignNoCombatDamage","affected":{"type":"ParentTarget"},"modifications":[{"type":"AssignNoCombatDamage"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a target creature. If you do, it assigns no combat damage this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"b3a479d4-3e36-496b-abf8-b83231628d76","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Until end of turn, whenever a creature you control attacks and isn't blocked, you may choose to have it deal damage equal to its power to a ","line_index":0}],"metadata":{"source_printing_ids":["48401643-ec4b-444a-8f9a-1a5ea471ff4a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ICE"],"rulings":[{"date":"2013-04-15","text":"An ability that triggers when something “attacks and isn’t blocked” triggers in the declare blockers step after blockers are declared if (1) that creature is attacking and (2) no creatures are declared to block it. It will trigger even if that creature was put onto the battlefield attacking rather than having been declared as an attacker in the declare attackers step."}],"rarities":["common"]},"gemstone caverns":{"name":"Gemstone Caverns","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Legendary"],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this card is in your opening hand and you're not the starting player, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.\n{T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"BeginGame","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["luck",{"type":"Fixed","value":1}]]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":"If this card is in your opening hand and you're not the starting player, you may begin the game with ~ on the battlefield with a luck counter on it. If you do, exile a card from your hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"luck"}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If ~ has a luck counter on it, instead add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"c0adbddc-b070-4c5f-afe0-0474c72a9251","metadata":{"source_printing_ids":["302603c5-ced4-4ad9-801f-be5eb75096cd","7f273641-c5f3-48bc-b89e-3cff52d26a0b","8f8f02f1-ccb6-48b6-ae4e-adc4fe721606","94d74254-4750-4fb3-9e53-473a5f98b315","ad361175-1127-40e5-8990-24e651fc2a4d","bcfba3c1-b17b-4c09-94af-eb14bf2c1f77"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["EOS","LTC","PLST","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"A player's \"opening hand\" is the hand of cards the player has after all players have taken mulligans. If players have any cards in hand that allow actions to be taken with them from a player's opening hand, the starting player takes all such actions first in any order, followed by each other player in turn order. Then the first turn begins."},{"date":"2021-03-19","text":"If multiple Gemstone Caverns are put onto the battlefield under a single player's control before the game begins, the \"legend rule\" won't put the extras into that player's graveyard until just before the starting player gets priority during the game's first upkeep step. There's no opportunity to tap the extras for mana."}],"rarities":["rare","mythic"]},"ghastly death tyrant":{"name":"Ghastly Death Tyrant","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beholder","Skeleton"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, choose one —\n• Disintegration Ray — Destroy target enchantment an opponent controls. You lose life equal to its mana value.\n• Death Ray — Creatures you control gain deathtouch until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"modal":{"min_choices":1,"max_choices":1,"mode_count":2,"mode_descriptions":["Disintegration Ray — Destroy target enchantment an opponent controls. You lose life equal to its mana value.","Death Ray — Creatures you control gain deathtouch until end of turn."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"mode_abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"Opponent","properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Deathtouch"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain deathtouch"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"ccd248ec-1029-47cd-b6b4-876505efd9dd","metadata":{"source_printing_ids":["564728ed-dbf0-471c-a34a-5bd3b486b7e5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["CLB"],"rarities":["common"]},"ghostly prison":{"name":"Ghostly Prison","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":2},"scaling":{"type":"PerAffectedCreature"},"defended":"Player"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e828b189-0e8f-43b8-b909-4c23e742e028","metadata":{"source_printing_ids":["00e7e279-c11b-4978-b75e-9912d08590d2","0736e2ae-92dd-458b-a42a-d41abe14b27a","1132a103-3dd7-4a17-afdc-27200b8cfbfc","1a43d9e8-3320-4873-b322-b323c792ce5e","33d9f600-095e-4f3c-bec0-177e8aeb2422","6ef870ec-5dc4-4d50-8d8f-31839758fa57","8169d44d-b15a-47e0-b417-24f2f4945d0f","82d7de2b-c909-48dc-9ab7-c4a8328e37bb","c601064b-9edd-4c7b-aea2-782ae63851ce","da3b83cb-f778-4096-9022-b1d6637354ff","daeca212-3a70-470e-a934-9cd7e0ebf7eb","e1f723a8-0be9-4270-b451-a52d6b2fda4e","eea3623d-1d39-4045-acdb-f0fb184ccbc8","f4cfcecf-621f-4664-9b1f-65ce4f0f8ab0","f66cce50-ce75-4fa4-9d2d-85694e5938cf","fdb77ed7-ee6e-4198-b724-774e0f4874ed"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","C19","C21","CHK","CMD","CN2","F10","KHC","MKC","ONC","PC2","PCA","PLST","PRM","PZ1","SLD","SOC","SPG","TD0","TDC","VOC"],"rulings":[{"date":"2007-02-01","text":"In the Two-Headed Giant format, you still only have to pay once per creature."},{"date":"2014-02-01","text":"Unless some effect explicitly says otherwise, a creature that can't attack you can still attack a planeswalker you control."}],"rarities":["uncommon","rare"]},"giada, font of hope":{"name":"Giada, Font of Hope","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying, vigilance\nEach other Angel you control enters with an additional +1/+1 counter on it for each Angel you already control.\n{T}: Add {W}. Spend this mana only to cast an Angel spell.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]},"restrictions":[{"SpellType":"Angel"}]},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}. Spend this mana only to cast an Angel spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[{"type":"Another"}]},"description":"Each other Angel you control enters with an additional +1/+1 counter on it for each Angel you already control.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"48e6d3d8-2f27-4017-acdd-40bce8cdbc02","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0b235e9f-a8a6-45d7-b301-bc6db752dda8","637ed447-aade-4fd8-8787-2330436c750f","724c26fb-6908-47e3-bc81-6c369b043d3c","80798911-6cb6-4b67-90b9-0fb83685ea92","89e2d714-2070-434a-9a81-276e72594e06","8ae6fc26-cfad-4da8-98d9-49c27c24d293","bae077bd-fc8d-44d7-8c75-8dc8699c168e","c78b6d2e-29dd-4659-a162-3de5910ce948","d0a98f22-b1ea-4ccb-8782-bf488bcd069b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","J25","PFDN","PLST","PSNC","PWCS","SLD","SNC"],"rulings":[{"date":"2024-11-08","text":"\"Each Angel you already control\" means each Angel you control other than the Angel entering, including Giada. It doesn't matter if some or all of the Angels on the battlefield entered after Giada did."}],"rarities":["rare"]},"giant killer":{"name":"Giant Killer","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Peasant"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{1}{W}, {T}: Tap target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{W}, {T}: Tap target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"91e71279-c9d2-4873-916a-59da03a65741","metadata":{"source_printing_ids":["75754468-2850-42e6-ab22-61ff7b9d1214","cdbd2541-71a3-4945-8a9d-db9e59c86784","d0960ccb-6952-4398-aa94-816e6fb04c2d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["ELD","PELD","PLST","PRM"],"rulings":[{"date":"2019-10-04","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it's in your graveyard, Giant Killer is a white creature card whose mana value is 1. It can't be the target of the triggered ability of Mystic Sanctuary."},{"date":"2019-10-04","text":"Casting a card as an Adventure isn't casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2019-10-04","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner's graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won't be exiled and the spell's controller won't be able to cast it as a permanent later."},{"date":"2019-10-04","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won't give you permission to cast it as a permanent spell."},{"date":"2019-10-04","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it's not possible to cast the copy as a permanent."},{"date":"2019-10-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2019-10-04","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it's a token) or cease to be a copy (if it's a nontoken permanent), and so you won't be able to cast it as an Adventure."},{"date":"2019-10-04","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it's legal to cast that spell. For example, if Giant Killer is exiled with the last ability of Vivien, Champion of the Wilds, you can't cast it as Chop Down."},{"date":"2019-10-04","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card's normal characteristics. The spell's color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2019-10-04","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you'll be able to cast it only during your main phase while the stack is empty."}],"rarities":["rare"]},"giggling skitterspike":{"name":"Giggling Skitterspike","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Toy"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nWhenever this creature attacks, blocks, or becomes the target of a spell, it deals damage equal to its power to each opponent.\n{5}: Monstrosity 5. (If this creature isn't monstrous, put five +1/+1 counters on it and it becomes monstrous.)","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[{"kind":"Activated","effect":{"type":"Monstrosity","count":{"type":"Fixed","value":5}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":5}},"sub_ability":null,"duration":null,"description":"{5}: Monstrosity 5.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"Blocks","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ blocks, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false},{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackSpell"},"description":"Whenever ~ becomes the target of a spell, it deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"ca02cb31-9850-48bf-bc8d-ed86a4d4d4f7","metadata":{"source_printing_ids":["a7360ffb-5a45-490f-9adf-d540a404e64d","fba20e7e-9581-4a9b-bdda-5c85d3450d4c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC"],"rulings":[{"date":"2024-09-20","text":"If Giggling Skitterspike is no longer on the battlefield when its second ability resolves, use its power as it last existed on the battlefield to determine how much damage it deals."},{"date":"2024-09-20","text":"Monstrous isn't an ability that a creature has. It's just something true about that creature. If the creature stops being a creature or loses its abilities, it will continue to be monstrous."},{"date":"2024-09-20","text":"Once a creature becomes monstrous, it can't become monstrous again. If the creature is already monstrous when the monstrosity ability resolves, nothing happens."}],"rarities":["rare"]},"gimbal, gremlin prodigy":{"name":"Gimbal, Gremlin Prodigy","mana_cost":{"type":"Cost","shards":["Green","Blue","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Gremlin","Artificer"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Artifact creatures you control have trample.\nAt the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Gremlin","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Gremlin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"ObjectCountDistinct","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Token"}]},"qualities":["Name"]}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, create a 0/0 red Gremlin artifact creature token. Put X +1/+1 counters on it, where X is the number of differently named artifact tokens you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature","Artifact"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Artifact creatures you control have trample."}],"replacements":[],"color_override":["Green","Red","Blue"],"color_identity":["Green","Red","Blue"],"scryfall_oracle_id":"e7441404-71ff-449e-812b-18cd52eabb98","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["ab813dd4-69b7-5723-b719-22eaecd6cbee"],"source_printing_ids":["30cd6ab7-7235-427e-bc92-c9fe6032ffa1","4a9aa899-752b-4106-89ba-9475ee777d41","f4cc58af-1226-4e6b-8f46-d46f3c3068eb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC"],"rulings":[{"date":"2023-04-14","text":"A token’s name is its subtypes plus the word “Token” unless it’s copying another object or it was given a specific name by the effect that created it. For example, the tokens created by Gimbal’s last ability are named “Gremlin Token.” These tokens have the same name as the 2/2 red Gremlin creature tokens created by Release the Gremlins."},{"date":"2023-04-14","text":"To determine the number of differently named artifact tokens you control, count each artifact token you control once, but only if its English name isn’t exactly the same as another artifact token you’ve already counted this way."}],"rarities":["mythic"]},"gisa, glorious resurrector":{"name":"Gisa, Glorious Resurrector","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"If a creature an opponent controls would die, exile it instead.\nAt the beginning of your upkeep, put all creature cards exiled with Gisa onto the battlefield under your control. They gain decayed. (A creature with decayed can't block. When it attacks, sacrifice it at end of combat.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Exile","destination":"Battlefield","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"ExiledBySource"}]},"enters_under":"You"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Decayed"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain decayed"}],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, put all creature cards exiled with ~ onto the battlefield under your control. They gain decayed.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Destroy","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"description":"If a creature an opponent controls would die, exile it instead.","condition":null}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f1354b1b-896c-4492-b0c0-3dd07c6d3917","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["63461076-a13d-488d-bd82-ceac441341c8","7473f95a-b004-41ad-9729-0242c8b2a5ee","ed32d175-2120-42b3-85f8-d8869f37efd4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID","PMID"],"rulings":[{"date":"2021-09-24","text":"Because creatures controlled by opponents aren't dying due to Gisa's replacement effect, any \"when [this creature] dies\" triggered abilities those creatures have won't trigger."},{"date":"2021-09-24","text":"Decayed does not create any attacking requirements. You may choose not to attack with a creature that has decayed."},{"date":"2021-09-24","text":"Decayed does not grant haste. Creatures with decayed that enter the battlefield during your turn may not attack until your next turn."},{"date":"2021-09-24","text":"Decayed represents a static ability and a triggered ability. \"Decayed\" means \"This creature can't block\" and \"When this creature attacks, sacrifice it at end of combat.\""},{"date":"2021-09-24","text":"Gisa does not grant haste to the creatures that are returned to the battlefield, so you normally won't be able to attack with them the turn they are returned."},{"date":"2021-09-24","text":"If a creature your opponent controls would die and more than one effect would cause it to be exiled, that opponent chooses which one to apply. If the creature is exiled due to some other replacement effect, it will not be returned to the battlefield with Gisa."},{"date":"2021-09-24","text":"Once a creature with decayed attacks, it will be sacrificed at end of combat, even if it no longer has decayed at that time."}],"rarities":["rare"]},"glacierwood siege":{"name":"Glacierwood Siege","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Temur or Sultai.\n• Temur — Whenever you cast an instant or sorcery spell, target player mills four cards.\n• Sultai — You may play lands from your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":4},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell, target player mills four cards.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Temur"},"batched":false}],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"Unlimited","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Sultai"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may play lands from your graveyard."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Temur","Sultai"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Temur or Sultai.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"295a831c-490e-42ba-afc1-dab3524a4f0c","metadata":{"source_printing_ids":["0f37fad7-2385-409b-8375-fa5dfbcad833","6626cc5e-3a9f-4832-a88a-abf6466e2bae"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"Glacierwood Siege’s Sultai ability doesn’t allow you to activate abilities (such as cycling) of land cards in your graveyard."},{"date":"2025-04-04","text":"Glacierwood Siege’s Sultai ability doesn’t change the times when you can play those land cards. You can still play only one land per turn, and only during your main phase when you have priority and the stack is empty."},{"date":"2025-04-04","text":"If you somehow control Glacierwood Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"glistener elf":{"name":"Glistener Elf","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Elf","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)","non_ability_text":null,"flavor_name":null,"keywords":["Infect"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9d95d173-5c7f-4e0c-bcdc-9b90fcd7339b","metadata":{"source_printing_ids":["2de77e7b-5599-470a-b2ed-14b9bfc900e0","8b94f4c6-b518-43b3-be52-e889d1f3ea38","97685645-43ab-4dd3-926a-f7439d7a31e6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["F12","NPH","PRM","SLD"],"rarities":["common","rare"]},"glowing one":{"name":"Glowing One","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Mutant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever this creature deals combat damage to a player, they get four rad counters.\nWhenever a player mills a nonland card, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":4},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they get four rad counters.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player mills a nonland card, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b30eae2a-bc1c-45a3-93ae-e1c30d26797c","metadata":{"source_printing_ids":["a1e36b92-aa88-4536-aebc-7e84a10d73fe","b8b3537a-e44a-47ff-9687-c2172738aeed"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they’ll mill as many cards as they can."},{"date":"2024-03-08","text":"If a player is instructed to mill more than one card, Glowing One’s last ability will trigger once for each nonland card they mill during that instruction. For example, a player with four rad counters will mill four cards at the beginning of their precombat main phase. If all four of those cards are nonland cards, Glowing One’s ability triggers four times."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don’t go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger “whenever one or more nonland cards are milled” will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is “At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.”"}],"rarities":["uncommon"]},"gluntch, the bestower":{"name":"Gluntch, the Bestower","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Jellyfish"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, choose a player. They put two +1/+1 counters on a creature they control. Choose a second player to draw a card. Then choose a third player to create two Treasure tokens.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":{"ChosenPlayer":{"index":0}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":1}},"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Typed","type_filters":[],"controller":{"ChosenPlayer":{"index":2}},"properties":[]},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, choose a player. They put two +1/+1 counters on a creature they control. Choose a second player to draw a card. Then choose a third player to create two Treasure tokens.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"0222dc7c-459b-4909-a037-72b2eb248599","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["7fb44e8f-f3f6-5834-b4ef-a0249adacc31"],"source_printing_ids":["3836d7e5-98cd-4f1e-9a66-150b80cd0325","3b3e889a-5865-4464-9923-bffa25c50cd2","836e3cf0-7335-481d-a9df-386cb1371657"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","PCLB"],"rulings":[{"date":"2022-06-10","text":"All three players must be different players, although any one of them can be you. If there are only two players in the game, you won't choose a third player, and no one will create Treasure tokens."},{"date":"2022-06-10","text":"The first chosen player gets to choose which creature they will place the counters on."},{"date":"2022-06-10","text":"You may choose a player who doesn't control any creatures as the first chosen player."}],"rarities":["rare"]},"goblin anarchomancer":{"name":"Goblin Anarchomancer","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Each spell you cast that's red or green costs {1} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"AnyOf","props":[{"type":"HasColor","color":"Red"},{"type":"HasColor","color":"Green"}]}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each spell you cast that's red or green costs {1} less to cast."}],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"e9319f13-1f2b-429c-9d61-e58a3cbec86a","metadata":{"source_printing_ids":["633a3423-501d-4b22-95a6-743233be521e","8f60c234-fbfc-4ecf-a678-fc52efbc20cf","f7f07a80-05b5-4108-9e68-f8da05866acc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["J21","MH2"],"rulings":[{"date":"2021-06-18","text":"A spell that's both red and green costs {1} less to cast."}],"rarities":["common"]},"goblin chainwhirler":{"name":"Goblin Chainwhirler","mana_cost":{"type":"Cost","shards":["Red","Red","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"First strike\nWhen this creature enters, it deals 1 damage to each opponent and each creature and planeswalker they control.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Fixed","value":1},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"Opponent","properties":[]}]},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals 1 damage to each opponent and each creature and planeswalker they control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0342b085-be20-475a-bc38-59b9cb6012e8","metadata":{"source_printing_ids":["5f173ff2-3d45-4015-8660-fbec7ca1bce9","8bdb2883-3cfd-4fb0-9f99-6a57277f7fe4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DOM","PDOM","PLST"],"rulings":[{"date":"2018-04-27","text":"If the damage Goblin Chainwhirler would deal to a player is prevented, it still deals 1 damage to that player’s creatures and planeswalkers."},{"date":"2018-04-27","text":"In a Two-Headed Giant game, the Goblin Chainwhirler’s last ability causes the opposing team to lose 2 life."}],"rarities":["rare"]},"goblin crash pilot":{"name":"Goblin Crash Pilot","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Pilot"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature crews a Vehicle, that Vehicle gains haste until end of turn. At the beginning of the next end step, sacrifice that Vehicle. When you sacrifice a creature this way, it deals damage equal to its power to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Crews","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ crews a Vehicle, that Vehicle gains haste until end of turn. At the beginning of the next end step, sacrifice that Vehicle. When you sacrifice a creature this way, it deals damage equal to its power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"62741e6b-9412-4272-8b92-72e2e9162ce6","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDFT"]},"goblin morale sergeant":{"name":"Goblin Morale Sergeant","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Haste\nEnlist\nWhenever Goblin Morale Sergeant enlists a nontoken creature, you may conjure a duplicate of that creature into the top five cards of your library at random. The duplicate perpetually gets +1/+0 and gains haste.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist","Haste"],"abilities":[],"triggers":[{"mode":{"Unknown":"Whenever ~ enlists a nontoken creature"},"execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"conjure","description":"conjure a duplicate of that creature into the top five cards of your library at random"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"The duplicate perpetually gets +1/+0 and gains haste"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enlists a nontoken creature, you may conjure a duplicate of that creature into the top five cards of your library at random. The duplicate perpetually gets +1/+0 and gains haste.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48481142-181d-4e46-8643-0775f03d6f94","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YDMU"]},"goblin piker":{"name":"Goblin Piker","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"50608184-90d3-43d2-a221-deb186c78323","metadata":{"source_printing_ids":["083ec3e7-950c-4e9d-aba5-02ed13d723f0","32c86887-678a-4ba5-b0bb-243f4015ad80","85516547-2c1a-432b-9fc5-8d2c91156c77","90fffa95-95c8-47b5-a196-431f731781e6","cb3e1685-a34d-43fc-986f-442523cc0631","ceae72d6-f2a2-4345-822d-6a7c2409a237"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["10E","9ED","DPA","M10","M11","M12","P02","PS11"],"rarities":["common"]},"goblin sleigh ride":{"name":"Goblin Sleigh Ride","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control climbs into Goblin Sleigh Ride. You slide them on their merry way. If the creature stayed on, it deals damage equal to its toughness to each other creature touched during the slide.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"target","description":"Target creature you control climbs into ~"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"you","description":"You slide them on their merry way"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target creature you control climbs into ~. You slide them on their merry way. If the creature stayed on, it deals damage equal to its toughness to each other creature touched during the slide.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"22eee71d-135b-4e18-b00f-f3be4fa42f4d","metadata":{"source_printing_ids":["464ff1cb-3731-4e72-8a70-fbe7043e12ce"]},"legalities":{},"printings":["HHO"],"rarities":["mythic"]},"goblin tinkerer":{"name":"Goblin Tinkerer","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Artificer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{R}, {T}: Destroy target artifact. That artifact deals damage equal to its mana value to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{R}, {T}: Destroy target artifact. That artifact deals damage equal to its mana value to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0afc2d2f-4fdb-440f-9c35-45bf103c0437","metadata":{"source_printing_ids":["e6529852-8b3e-4a70-a4a1-029e012231c6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ATH","MIR"],"rarities":["common"]},"golbez, crystal collector":{"name":"Golbez, Crystal Collector","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever an artifact you control enters, surveil 1.\nAt the beginning of your end step, if you control four or more artifacts, return target creature card from your graveyard to your hand. Then if you control eight or more artifacts, each opponent loses life equal to that card's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Surveil","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an artifact you control enters, surveil 1.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"ScopedPlayer","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":8}},"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you control four or more artifacts, return target creature card from your graveyard to your hand. Then if you control eight or more artifacts, each opponent loses life equal to that card's power.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"533d5bf9-0912-451f-a3f4-3842b0a75b1d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["849f5716-7211-4e93-a220-f88d49f937f4","95822b03-a49b-4a77-a257-fe0527088177","db013d39-3681-4ed0-8671-d1d2452df9de","de4c9b6b-27be-45b6-9642-49471aaddcb9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Golbez, Crystal Collector's last ability checks at the moment it would trigger to see if you control four or more artifacts. If you don't, the ability won't trigger at all. If it does trigger, the ability will check again as it tries to resolve. If you don't control four or more artifacts at that time, the ability won't resolve and none of its effects will happen."},{"date":"2025-06-06","text":"If the target creature card is an illegal target as Golbez, Crystal Collector's last ability tries to resolve, it won't resolve and none of its effects will happen. Opponents won't lose life even if you control eight or more artifacts."}],"rarities":["rare"]},"grab the reins":{"name":"Grab the Reins","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Until end of turn, you gain control of target creature and it gains haste.\n• Sacrifice a creature. Grab the Reins deals damage equal to that creature's power to any target.\nEntwine {2}{R} (Choose both if you pay the entwine cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Entwine":{"type":"Cost","shards":["Red"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"3ceda405-8175-416a-beda-9a95f5acc60c","modal":{"min_choices":1,"max_choices":2,"mode_count":2,"mode_descriptions":["Until end of turn, you gain control of target creature and it gains haste.","Sacrifice a creature. ~ deals damage equal to that creature's power to any target."],"allow_repeat_modes":false,"entwine_cost":{"type":"Cost","shards":["Red"],"generic":2},"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["570fa211-e937-4ad7-bc72-60f8adc3203d","be4fff3d-4267-404f-a62f-744fa396af17","d74d181c-6783-4472-a3b9-2f6780e2b89b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","MRD","PLST"],"rulings":[{"date":"2004-12-01","text":"If you cast this with Entwine, you don’t get priority in the middle of resolution. You can’t steal something, do anything (like attack with it), and then sacrifice it."},{"date":"2004-12-01","text":"If you choose the “sacrifice a creature” mode, you choose the target of the damage on announcement, but don’t choose what to sacrifice until resolution. You must sacrifice a creature when Grab the Reins resolves, even if you don’t want to. If you don’t control any creatures at that time, Grab the Reins deals no damage."},{"date":"2004-12-01","text":"If you pay the entwine cost, you can sacrifice the creature you gain control of with Grab the Reins."}],"rarities":["uncommon"]},"gran-gran":{"name":"Gran-Gran","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Peasant","Ally"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever Gran-Gran becomes tapped, draw a card, then discard a card.\nNoncreature spells you cast cost {1} less to cast as long as there are three or more Lesson cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Taps","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ becomes tapped, draw a card, then discard a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":[{"Subtype":"Lesson"}],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":3}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Noncreature spells you cast cost {1} less to cast as long as there are three or more Lesson cards in your graveyard."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"0259a9ed-0558-4183-b737-871ed5573c32","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["fa434b41-e5f7-4989-865a-95db67b05cb1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PW25","TLA"],"rulings":[{"date":"2025-10-02","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["uncommon"]},"grave researcher":{"name":"Grave Researcher","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Warlock"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, surveil 1. Then if there are three or more creature cards in your graveyard, this creature becomes prepared. (While it's prepared, you may cast a copy of its spell. Doing so unprepares it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Surveil","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BecomePrepared","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":["Creature"],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":3}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, surveil 1. Then if there are three or more creature cards in your graveyard, ~ becomes prepared.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6cb8b8c4-0674-4f14-9d89-010969fbb80e","metadata":{"source_printing_ids":["1d12804c-dda0-4dae-9eb8-f670e72c17e7","8b1e10e8-ea14-4761-910b-4072e2a18456"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["rare"]},"gray ogre":{"name":"Gray Ogre","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ogre"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"83c8a3a6-2e1a-4e26-8847-6d066f42d906","metadata":{"source_printing_ids":["11bf2cc0-799f-4eb8-b338-ed7543f469e7","41023495-d3cb-4cb0-b95c-f717480a76a5","4d195ba7-ce24-405a-b201-de85f5cb843f","65e4f0ee-4bbc-4786-bd0e-72e5101d016e","73ae5276-b607-4f23-a9d2-e8cc7b8e3693","ba8d7da8-41a4-43a8-a16e-31914b6d3147","c2353776-6cc8-4cb3-9608-6ed4aa5bdd1b","e26041ad-b326-40e6-a7fd-eacfcb0ab17e","e2e956a7-3ed1-4cbb-a6fd-123453360058","f165ed5e-ccaf-43d4-9a07-1e6bb609fe59"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","CED","CEI","FBB","LEA","LEB","SUM"],"rarities":["common"]},"greater good":{"name":"Greater Good","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice a creature: Draw cards equal to the sacrificed creature's power, then discard three cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1},"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Sacrifice a creature: Draw cards equal to the sacrificed creature's power, then discard three cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dc0593c2-ccb4-4648-a592-c5bcd121dc72","metadata":{"source_printing_ids":["046aff0b-fa01-4a2d-a030-021a7ad01e60","12befd35-2dc6-4852-a153-75b553042643","153d7669-9063-4fc2-b53b-480b0e741f3f","4c73ca01-d8ea-4cd2-af60-b260030967b2","6378a9f5-9fe4-4e41-9bde-4eb4081bfdc4","a327e66f-0cd7-46f7-b20f-35c5084b158c","cf97573c-65e3-4eec-92af-c364c1cbceea","debe9258-209a-44cb-99e9-49affd02aa32","e845f300-6a98-4057-9003-885185f30923","f935e21d-f20c-4f73-92b6-e2e2ea8841af"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","9ED","AFC","BBD","BLC","J14","MB2","PRM","SLD","USG"],"rulings":[{"date":"2020-08-07","text":"If you don't have three cards in hand when instructed to discard three cards, you discard your hand."},{"date":"2020-08-07","text":"Use the sacrificed creature's power as it last existed on the battlefield to determine how many cards you draw."},{"date":"2020-08-07","text":"You draw and discard cards all while Greater Good's ability is resolving. Nothing can happen between the two, and no player may choose to take actions."}],"rarities":["rare"]},"green sun's zenith":{"name":"Green Sun's Zenith","mana_cost":{"type":"Cost","shards":["X","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for a green creature card with mana value X or less, put it onto the battlefield, then shuffle. Shuffle Green Sun's Zenith into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},{"type":"HasColor","color":"Green"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":true},"duration":null,"description":"Search your library for a green creature card with mana value X or less, put it onto the battlefield, then shuffle. Shuffle ~ into its owner's library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0d96b60b-a060-48ee-bb83-93f1c4a10669","metadata":{"source_printing_ids":["01794178-cf41-454c-ac37-1d8b18e42db2","02335747-54e3-4827-ae19-4e362863da9b","586fdc7a-add9-4ed6-88f6-188061647c31","70291c7b-a86f-4466-8502-c28765a89b2a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","EMA","MBS","PRM","SPG","V13"],"rulings":[{"date":"2011-06-01","text":"If this spell doesn't resolve, none of its effects occur. In particular, it will go to the graveyard rather than to its owner's library."},{"date":"2016-06-08","text":"If Green Sun's Zenith is countered, none of its effects will happen. Notably, it will be put into its owner's graveyard rather than shuffled into its owner's library."},{"date":"2016-06-08","text":"If you own Green Sun's Zenith, but an opponent casts it (due to Knowledge Pool's effect, for example), that opponent searches their library for an appropriate creature card, then shuffles that library. That opponent then shuffles Green Sun's Zenith into your library. You won't shuffle any library in this case."},{"date":"2016-06-08","text":"In most cases, if you own Green Sun's Zenith and cast it, you'll shuffle your library twice. In practice, shuffling once is sufficient, but effects that care about you shuffling your library (like Psychogenic Probe, for example) will see that you've shuffled twice."}],"rarities":["rare"]},"gregor, shrewd magistrate":{"name":"Gregor, Shrewd Magistrate","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Advisor"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Skulk (This creature can't be blocked by creatures with greater power.)\nWhenever Gregor, Shrewd Magistrate deals combat damage to a player, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Skulk"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"0b64da77-ca1c-427b-b48b-b919f0fe08e9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6e5df29a-af3b-4acc-8312-f2024ab039e0","88818c8b-dfd8-4aa6-b7bb-1c8e67d01c48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD","SLX"],"rarities":["mythic"]},"greven, predator captain":{"name":"Greven, Predator Captain","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Phyrexian","Human","Warrior"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nGreven gets +X/+0, where X is the amount of life you've lost this turn.\nWhenever Greven attacks, you may sacrifice another creature. If you do, you draw cards equal to that creature's power and you lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, you may sacrifice another creature. If you do, you draw cards equal to that creature's power and you lose life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"LifeLostThisTurn","player":{"type":"Controller"}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +X/+0, where X is the amount of life you've lost this turn."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"b22f4797-c74f-4d95-9528-c16c2bc4c05b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["bda22fc3-31a5-451a-9a8b-372884f7bc61"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"A player loses life if they're dealt damage or if they pay life."},{"date":"2019-08-23","text":"Greven checks for how much life you lost, not how much your life total has changed. If you lost 4 life but also gained 6 life, you still lost 4 life and Greven gets +4/+0."},{"date":"2019-08-23","text":"The sacrificed creature's power and toughness are determined by its last known information before it left the battlefield."},{"date":"2019-08-23","text":"You sacrifice a creature (or choose not to), draw cards, and lose life all while Greven's triggered ability is resolving. Nothing can happen in between, and no player may choose to take actions."}],"rarities":["mythic"]},"grim contest":{"name":"Grim Contest","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"3b78f940-f840-4d4d-a09b-147202963367","metadata":{"source_printing_ids":["24c44722-c65a-41ae-92a9-9c9d7d759a8e","eb7de65d-d4d6-4090-b749-6bd44bd47568"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["FRF","PLST"],"rulings":[{"date":"2014-11-24","text":"If either target is an illegal target as Grim Contest tries to resolve, neither creature will deal or be dealt damage."}],"rarities":["common"]},"grim feast":{"name":"Grim Feast","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, this enchantment deals 1 damage to you.\nWhenever a creature is put into an opponent's graveyard from the battlefield, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, ~ deals 1 damage to you.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever a creature is put into an opponent's graveyard from the battlefield, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"331233ba-0ddc-4cb2-b3b7-1b782e03529f","metadata":{"source_printing_ids":["a69dc4ac-7354-465e-b859-d8556f3b1498"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"It affects all opposing players in a multiplayer game."}],"rarities":["rare"]},"grisly spectacle":{"name":"Grisly Spectacle","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonartifact creature. Its controller mills cards equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature",{"Non":"Artifact"}],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonartifact creature. Its controller mills cards equal to that creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"8c83d21a-6138-409f-8e00-75dcd14388e2","metadata":{"source_printing_ids":["3ce3816e-0f81-40b6-a592-ba2c65243c6d","434fec21-1338-4f5b-91aa-91be81bf6e5c","b61df7bd-6a9b-42e9-9d27-12777afc39c5","c26d0f6e-e7bd-4206-a0da-1c9c203a73f2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["DDM","GTC","IMA","MM3"],"rulings":[{"date":"2017-11-17","text":"If the creature is an illegal target when Grisly Spectacle tries to resolve, it won’t resolve and none of its effects will happen. The creature’s controller won’t put any cards into their graveyard."},{"date":"2017-11-17","text":"Use the creature’s power the last time it was on the battlefield to determine how many cards its controller puts into their graveyard."}],"rarities":["common"]},"grizzly bears":{"name":"Grizzly Bears","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Bear"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"14c8f55d-d177-4c25-a931-ebeb9e6062a0","metadata":{"source_printing_ids":["10c845b8-40f1-44df-9e91-dab7606f6271","16e12ae6-6e75-4786-b881-f1b890363a0b","1df4c9a2-8d26-4075-8ee1-b5b848ef5e31","1f7ae6c7-3c87-43c3-beee-894b289ad03f","38fc72de-2093-477b-b39e-696339d2fdbc","409f9b88-f03e-40b6-9883-68c14c37c0de","5b8dadf2-d31a-4b24-a9a7-f7f511ba2867","66e3de06-572e-48c5-888b-2dac7fa9d0d0","68d8ad43-adea-47e8-9d9e-e14c2ad41489","72d5d8b0-e22d-4bb3-9e36-5038601d22f7","886959ca-83fd-4b50-a99a-08ef0c5415db","94a39e27-d1d7-486c-8f1e-4a0a1c8b5dce","a0264440-2325-4143-87a7-2af5a6b2a2f9","aea4f90b-f21b-4acd-934f-406eae274bcf","bf11596e-e798-4126-b56c-e23a1ca2a25d","ce2d603a-3231-4a8c-bf39-1617586ea870","d74cce44-b54b-4922-9cea-f3fda725d24f","dc37da73-0d9b-4b17-854f-517674fc0c97","e7aa2b93-0a84-4318-bf2d-58164f0a846f","e8d7845a-f0de-4fd3-9f78-3236b22a305e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","8ED","9ED","CED","CEI","FBB","ITP","J21","LEA","LEB","POR","RQS","S99","SUM"],"rarities":["common"]},"grove's bounty":{"name":"Grove's Bounty","mana_cost":{"type":"Cost","shards":["X","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Distribute X +1/+1 counters among any number of target creatures you control. (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"Distribute X +1/+1 counters among any number of target creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"distribute":{"type":"Counters","data":"P1P1"},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"54175132-2c44-4749-8dfd-d08dcc63e4b3","metadata":{"source_printing_ids":["bc9bdf96-3e3b-4dca-aae2-e81d4cbeafe8","bdb79d68-c3af-4091-b7db-005247191da8","c5a61619-f951-42ff-8246-c51ee5dc18c8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["PWOE","SOC","WOE"],"rarities":["rare"]},"guardian of new benalia":{"name":"Guardian of New Benalia","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nWhenever this creature enlists a creature, scry 2.\nDiscard a card: This creature gains indestructible until end of turn. Tap it.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain indestructible"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false},"sub_ability":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"ParentTarget"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Discard a card: ~ gains indestructible until end of turn. Tap it.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":{"Unknown":"Whenever ~ enlists a creature"},"execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enlists a creature, scry 2.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"33747a34-79cc-446f-8718-b499bd497687","metadata":{"source_printing_ids":["43da76ee-fec3-4b2e-915d-10cf8d518d2c","d75168c8-6798-46cd-8dd7-22115203cb2b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"Guardian of New Benalia's second ability triggers whenever its controller taps another creature for Guardian of New Benalia's enlist ability."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may activate Guardian of New Benalia's last ability even if it's already tapped. You may also activate that ability multiple times in the same turn, even if Guardian of New Benalia already has indestructible."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["rare"]},"hada spy patrol":{"name":"Hada Spy Patrol","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Rogue"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Level up {2}{U} ({2}{U}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 1-2\n2/2\nThis creature can't be blocked.\nLEVEL 3+\n3/3\nShroud (This creature can't be the target of spells or abilities.)\nThis creature can't be blocked.","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":["Blue"],"generic":2}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":1,"maximum":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":2},{"type":"SetToughness","value":2}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":1,"maximum":2},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 1-2 / 2/2"},{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"Shroud"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":3},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 3+ / 3/3 / Shroud (~ can't be the target of spells or abilities.)"}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8db3152a-11b1-4c59-a745-1c40a9b235b7","metadata":{"source_printing_ids":["905f1b28-8d53-4163-9118-414dad789509","b3aeb6af-1727-4fa9-938f-13962efadd74","cfe2d590-e94f-4aa3-804c-9b6e4618bf10"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","CMA","PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature's level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler's power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature's power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler's power or toughness to a specific value, including the effects from a level symbol's ability, apply in timestamp order. The timestamp of each level symbol's ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler's printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don't overwrite any other abilities it may have. In particular, they don't overwrite the creature's level up ability; it always has that."}],"rarities":["uncommon"]},"halana and alena, partners":{"name":"Halana and Alena, Partners","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ranger"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"First strike (This creature deals combat damage before creatures without first strike.)\nReach (This creature can block creatures with flying.)\nAt the beginning of combat on your turn, put X +1/+1 counters on another target creature you control, where X is Halana and Alena's power. That creature gains haste until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Reach"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put X +1/+1 counters on another target creature you control, where X is ~'s power. That creature gains haste until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"b347be2d-9aa1-42a9-b652-8fb032832f09","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["597e70d7-843c-4588-9b51-f2b9b5f5a1e6","608fa232-f5fe-4c58-9efe-fb780f454b19","87684bef-8ef9-4709-a50e-fa5ff2f67acc","b649f459-c9dc-495d-8703-b685996bb80c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","FDN","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"If Halana and Alena's power is somehow negative at the time its triggered ability resolves, you will put no counters on that creature. The effect doesn't remove counters from that creature or give it -1/-1 counters."}],"rarities":["rare"]},"harold and bob, first numens":{"name":"Harold and Bob, First Numens","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance, reach\nWhen Harold and Bob dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'\" Harold and Bob loses all other abilities.","non_ability_text":null,"flavor_name":null,"keywords":["Reach","Vigilance"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"grants":[{"type":"RemoveAllAbilities"},{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":3},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Unimplemented","description":"Enchanted Forest has '{T}"},"sub_ability":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"'","description":"'"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add three mana of any one color. You get two rad counters.'\" ~ loses all other abilities.","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d0ecea04-9768-4b09-8718-dd59135251e3","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4d5f93d2-2edc-4a97-9a51-b276d1706e7d","8b7dc266-d38e-479c-a978-0c4bfd6e7370","8e0d4d40-9fd6-4550-a7c8-45aaf5a7e17f","d730ac69-20ec-4ef3-85ee-a5fd24e5f277"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"A token that's a copy of Harold and Bob won't return to the battlefield from its owner's graveyard."},{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a nontoken permanent that's a copy of Harold and Bob dies while it's a creature, it will return to the battlefield as an Aura with only the abilities granted by the effect that returned it to the battlefield. It will also retain its name, colors, and supertypes, but it will be an Aura enchantment with no other types or subtypes."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they'll mill as many cards as they can."},{"date":"2024-03-08","text":"If there's nothing for Harold and Bob to legally enchant, it remains in its owner's graveyard instead of returning to the battlefield."},{"date":"2024-03-08","text":"If you control Harold and Bob, you'll return it to the battlefield when it dies while it's a creature. It doesn't matter who owns the card. You'll choose which Forest you control it will enchant as it returns to the battlefield."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They're not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don't go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger \"whenever one or more nonland cards are milled\" will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is \"At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.\""}],"rarities":["rare"]},"harvest season":{"name":"Harvest Season","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for up to X basic land cards, where X is the number of tapped creatures you control, put those cards onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Tapped"}]}}}},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for up to X basic land cards, where X is the number of tapped creatures you control, put those cards onto the battlefield tapped, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ec6d52f9-1c8f-48da-951c-be8d7813c7be","metadata":{"source_printing_ids":["326b5fad-bb8d-4019-84a8-1a319a14962e","8d4329d0-f4ae-41c8-9b21-0957ba9f53fc","bb18e745-a925-477f-a50f-3ec7fba22d88"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["AKH","KHC","PAKH","SCD"],"rarities":["rare"]},"heal the scars":{"name":"Heal the Scars","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Regenerate target creature. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Regenerate","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Regenerate target creature. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cc65a99f-ac7f-4ded-bb00-a5daf51e4bcd","metadata":{"source_printing_ids":["b802a7fe-9c8b-4bc3-95d8-4a5dafcf2c75"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW"],"rulings":[{"date":"2007-10-01","text":"You gain the life when Heal the Scars resolves, not when the creature actually regenerates."}],"rarities":["common"]},"healing technique":{"name":"Healing Technique","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Demonstrate (When you cast this spell, you may copy it. If you do, choose an opponent to also copy it. Players may choose new targets for their copies.)\nReturn target card from your graveyard to your hand. You gain life equal to that card's mana value. Exile Healing Technique.","non_ability_text":null,"flavor_name":null,"keywords":["Demonstrate"],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. You gain life equal to that card's mana value. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"},"copier":"Opponent"},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.144a: Demonstrate — the chosen opponent copies the spell and may choose new targets for that copy","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.144a: Demonstrate — you may copy this spell (you may choose new targets); if you do, a chosen opponent also copies it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Stack"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.144a: Demonstrate — when you cast this spell, you may copy it; if you do, a chosen opponent also copies it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"1b99c32d-1d02-410e-84bf-9db2ca05f576","metadata":{"source_printing_ids":["207a9a0c-4cae-4f96-ac41-3a7d501c6cd1","33897125-a1df-4d7a-a45a-9c049cb662f6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","PRM"],"rulings":[{"date":"2021-04-16","text":"If the spell requires targets, you choose the target of the original spell as you cast it. If you create a copy of the spell, you may choose new targets for the copy as you create that copy. Similarly, the opponent you chose to create a copy may choose new targets for that copy as it’s created. In other words, your opponent will know the targets of your original spell and your copy when choosing the new targets, if any, for their copy."},{"date":"2021-04-16","text":"If you cast the spell and choose not to copy it, no opponent will get to copy it either."},{"date":"2021-04-16","text":"If you copy a spell with demonstrate, you then immediately choose an opponent. If they copy the spell, it goes on top of the stack."},{"date":"2021-04-16","text":"This means that if you cast a spell with demonstrate and both you and an opponent copy it, the opponent’s copy will resolve first, then your copy will resolve, and finally the original spell will resolve."},{"date":"2021-04-16","text":"You choose whether to make a copy as the demonstrate ability resolves. This happens before the original spell resolves. Your copy goes on the stack above the original spell."}],"rarities":["rare"]},"heart-piercer manticore":{"name":"Heart-Piercer Manticore","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Manticore"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may sacrifice another creature. When you do, this creature deals damage equal to that creature's power to any target.\nEmbalm {5}{R} ({5}{R}, Exile this card from your graveyard: Create a token that's a copy of it, except it's a white Zombie Manticore with no mana cost. Embalm only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Embalm":{"type":"Mana","data":{"type":"Cost","shards":["Red"],"generic":5}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["White"]},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":5}},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may sacrifice another creature. When you do, ~ deals damage equal to that creature's power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"253bec96-108c-4880-9c04-8bc99ceafa64","metadata":{"related_token_ids":["47635113-9ce7-50f1-a67f-b169c6de1444","d221c39f-0f44-5d8b-a246-e5bb061b466a"],"source_printing_ids":["0c4b41be-793c-4dcc-9c0d-16fbdfece30b","6cd213a1-92f6-49dd-9ea9-41a00879faaa","dd64160a-96e0-4593-ba42-c5e8bbfa0b15"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKH","C19","PAKH","PIO"],"rulings":[{"date":"2017-04-18","text":"For each card with embalm, a corresponding game play supplement token can be found in some Amonkhet booster packs. These supplements are not required to play with cards with embalm; you can use the same items to represent an embalmed token as you would any other token."},{"date":"2017-04-18","text":"Heart-Piercer Manticore features a new style of triggered ability. When it enters the battlefield, its triggered ability goes on the stack without a target. While that ability is resolving, you may sacrifice a creature. If you do, a second ability triggers and you pick a target that will be dealt damage. This is different from other abilities that say \"If you do . . .\" in that players may cast spells and activate abilities before a creature is sacrificed and then again after the creature is sacrificed but before damage is dealt."},{"date":"2017-04-18","text":"Heart-Piercer Manticore's damage-dealing ability triggers only when you sacrifice a creature as a result of the instruction of its triggered ability. It won't trigger if you sacrifice a creature for any other reason."},{"date":"2017-04-18","text":"If the card copied by the token had any \"when [this permanent] enters the battlefield\" abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities that the token has copied will also work."},{"date":"2017-04-18","text":"The sacrificed creature's last known existence on the battlefield is checked to determine its power."},{"date":"2017-04-18","text":"The token copies exactly what was printed on the original card and nothing else. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-04-18","text":"The token is a Zombie in addition to its other types and is white instead of its other colors. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."},{"date":"2017-04-18","text":"You can't sacrifice multiple creatures to deal damage multiple times."},{"date":"2017-07-14","text":"If a spell or ability puts a creature card with embalm into your graveyard during your main phase, you'll have priority immediately after that spell or ability resolves. You can activate the creature card's embalm ability before any player can exile it with an effect, such as that of Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"Once you've activated an embalm ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."}],"rarities":["uncommon","rare"]},"hellhole rats":{"name":"Hellhole Rats","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Rat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Haste\nWhen this creature enters, target player discards a card. This creature deals damage to that player equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player discards a card. ~ deals damage to that player equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"7491e0bf-8335-44e4-8e05-b9a737a0f2e7","metadata":{"source_printing_ids":["6e1eb937-21d4-44b1-85e7-b95995865f44"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rarities":["uncommon"]},"hexbane tortoise":{"name":"Hexbane Tortoise","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Turtle"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ward {2} (Whenever this creature becomes the target of a spell or ability an opponent controls, counter it unless that player pays {2}.)\nEnlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)","non_ability_text":null,"flavor_name":null,"keywords":["Enlist",{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f3b4097f-b84f-4645-81f1-018366e40eeb","metadata":{"source_printing_ids":["acd5a635-bcf5-4a05-b00b-bf40322823fe"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"hide":{"name":"Hide","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target artifact or enchantment on the bottom of its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":"Put target artifact or enchantment on the bottom of its owner's library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["White","Red"],"color_identity":["Black","Red","White"],"scryfall_oracle_id":"60e59923-ecd9-457e-b772-693138e05ab2","metadata":{"source_printing_ids":["ac347ec8-4537-4cdf-aeff-44da1f7be01b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["rare"]},"hidetsugu and kairi":{"name":"Hidetsugu and Kairi","mana_cost":{"type":"Cost","shards":["Blue","Blue","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Ogre","Demon","Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen Hidetsugu and Kairi enters, draw three cards, then put two cards from your hand on top of your library in any order.\nWhen Hidetsugu and Kairi dies, exile the top card of your library. Target opponent loses life equal to its mana value. If it's an instant or sorcery card, you may cast it without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"count":{"type":"Fixed","value":2},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw three cards, then put two cards from your hand on top of your library in any order.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Sorcery"]},"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, exile the top card of your library. Target opponent loses life equal to its mana value. If it's an instant or sorcery card, you may cast it without paying its mana cost.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"18591d9e-c9f5-4ae8-aee1-8580bc8fa600","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["76dd881d-6e12-4c90-a198-1d7ec61924b6","81039daf-0d54-4474-a833-fa287ec10cf9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MOM","PMOM"],"rulings":[{"date":"2023-04-14","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2023-04-14","text":"If you cast a card “without paying its mana cost,” you can’t pay any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, those must be paid to cast the card."},{"date":"2023-04-14","text":"The last triggered ability targets the opponent. If that player is an illegal target as the ability tries to resolve, the ability won’t resolve and none of its effects will happen. You won’t exile a card."},{"date":"2023-04-14","text":"The two cards you put on top of your library can be from the three you just drew or ones that were already in your hand."},{"date":"2023-04-14","text":"You choose whether or not to cast the instant or sorcery card as the last triggered ability resolves. If you do, you do so as part of the resolution of that ability. You can’t wait to cast it later in the turn. Timing restrictions based on the card’s type are ignored."}],"rarities":["rare"]},"hill giant":{"name":"Hill Giant","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Giant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"342199e0-15b6-4824-83da-25caef2592b3","metadata":{"source_printing_ids":["07724b6b-73e6-43b9-980f-149047c8e786","0ddb98e8-13fe-4786-83f7-b72c56db135a","14c2be6a-9ca6-4d3a-8dd0-db4ea40799f8","14e3b4bd-f3db-49a9-8a67-6ea6a3cd320d","1a318a0e-bc0e-4539-8096-ee0c8cffdb58","4905e98f-0c5a-4ec7-b85b-dc2c3549d5d0","4bb9d069-1163-46bd-9a71-21c05898330e","58968ba0-77a4-49fe-aa1d-0dc8a1db4923","59dda501-27e0-49e9-95cf-e36d8cdd0ec3","6ac25236-c2f2-48df-8dbb-d4f9ce790cfb","833128ae-927e-4767-8937-19d4ef789a58","c350b2af-8610-43c7-90b6-4ee806999d45","c987a3ec-a775-4140-ad49-18025e59dc3d","caa75eaf-948f-4503-962d-95b0321b36d9","ccc3b385-f51c-45b3-afb1-321f892afc96","df03759e-17a0-4191-bd4d-e823846924ce","e7ea1719-2bed-46f4-bb14-e3a4c87ce50a","f3afb143-fd69-4197-96f4-62d5d90a894c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","7ED","8ED","9ED","CED","CEI","DPA","FBB","ITP","LEA","LEB","POR","PS11","RQS","SUM"],"rarities":["common"]},"hit":{"name":"Hit","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices an artifact or creature of their choice. Hit deals damage to that player equal to that permanent's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"TargetPlayer","properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices an artifact or creature of their choice. ~ deals damage to that player equal to that permanent's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"2554a591-8592-4a9f-a4dc-eb9a7e6dc3eb","metadata":{"source_printing_ids":["b44c30a9-1af4-4287-a809-d2de4e8b4070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rulings":[{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"hoard-smelter dragon":{"name":"Hoard-Smelter Dragon","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\n{3}{R}: Destroy target artifact. This creature gets +X/+0 until end of turn, where X is that artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{R}: Destroy target artifact. ~ gets +X/+0 until end of turn, where X is that artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cf9db2be-3c95-45a2-ab85-694e3bd3bf1d","metadata":{"source_printing_ids":["2f4c5867-73c4-4e10-bbf5-6a69df879547","8492c80b-c38a-44b0-b2a4-9292077a74c7","89713cd7-430e-44ac-9a81-0f4285f2981f","b4487bbe-2bc4-48d9-8a6f-9b0c7555fb47","d5eb5f59-1d0c-402a-8b06-108bf1dc8b4e","fcdd1d89-719d-4552-aeae-499c09b2ec6e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C14","C21","CM2","SCD","SOM"],"rulings":[{"date":"2011-01-01","text":"If the mana cost of a permanent includes {X}, that X is considered to be 0."},{"date":"2011-01-01","text":"If the targeted artifact is an illegal target by the time the activated ability resolves, the ability doesn't resolve. Hoard-Smelter Dragon won't get the bonus."},{"date":"2013-07-01","text":"If the activated ability resolves but the targeted artifact isn't destroyed (perhaps because it has indestructible or it regenerates), Hoard-Smelter Dragon will still get the bonus."}],"rarities":["rare"]},"hollowmurk siege":{"name":"Hollowmurk Siege","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Sultai or Abzan.\n• Sultai — Whenever a counter is put on a creature you control, draw a card. This ability triggers only once each turn.\n• Abzan — Whenever you attack, put a +1/+1 counter on target attacking creature. It gains menace until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a counter is put on a creature you control, draw a card. This ability triggers only once each turn.","constraint":{"type":"OncePerTurn"},"condition":{"type":"ChosenLabelIs","label":"Sultai"},"batched":false},{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddKeyword","keyword":"Menace"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain menace"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, put a +1/+1 counter on target attacking creature. It gains menace until end of turn.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Abzan"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Sultai","Abzan"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Sultai or Abzan.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"31061e34-042e-40c3-99ab-752795ab4324","metadata":{"source_printing_ids":["5ac0e136-8877-4bfc-a831-2bf7b7b5ad1e","bd9a6427-09cc-4ddf-88a6-fc23498a7c08"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"An ability that triggers when counters are put on a permanent will trigger if that permanent somehow enters the battlefield with those counters."},{"date":"2025-04-04","text":"If you somehow control Hollowmurk Siege and no choice was made for it (perhaps because another permanent on the battlefield became a copy of it), it has neither of the two abilities."}],"rarities":["rare"]},"horrid shadowspinner":{"name":"Horrid Shadowspinner","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Horror"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nWhenever this creature attacks, you may draw cards equal to its power. If you do, discard that many cards.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, you may draw cards equal to its power. If you do, discard that many cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"5fcbb5d3-71d1-4946-b806-ba6376338eba","metadata":{"source_printing_ids":["62b69aaf-0aae-4f6e-a27f-0129882dfe1d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"The number of cards you discard is equal to Horrid Shadowspinner's power at the time you chose to draw cards, even if another effect changed the number of cards you drew or in the unusual case where Horrid Shadowspinner's power has changed since you chose to draw cards."}],"rarities":["uncommon"]},"hotel of fears":{"name":"Hotel of Fears","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Spacecraft"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, exile the top card of your library. You lose life equal to its mana value. You may play that card this turn.\nPraise Him — Whenever chaos ensues, choose a color. Put X +1/+1 counters on target creature you control, where X is your devotion to that color. Then sacrifice another creature. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of your library. You lose life equal to its mana value. You may play that card this turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Color","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Devotion","colors":{"type":"ChosenColor"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever chaos ensues, choose a color. Put X +1/+1 counters on target creature you control, where X is your devotion to that color. Then sacrifice another creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"79d3e356-9eb9-49bb-b4ba-f4f71876869e","metadata":{"source_printing_ids":["8b164271-6438-4135-b7a9-8573c3921052"]},"legalities":{},"printings":["WHO"],"rarities":["common"]},"huatli's final strike":{"name":"Huatli's Final Strike","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. It deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"20acb8df-2ea0-48b0-8dcf-54dd0e1f8db8","metadata":{"source_printing_ids":["1247a5fa-b50a-4ab1-96ca-dbeb45bd0b56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI"],"rarities":["common"]},"huge truck":{"name":"Huge Truck","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Vehicle"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Beeeeeeep, Beeeeeeep, Beeeeeeep — Whenever another creature you control becomes the target of a backup ability, Huge Truck permanently gains all of the backup abilities shared this way.\nCrew 1","non_ability_text":null,"flavor_name":null,"keywords":[{"Crew":{"power":1,"once_per_turn":null}}],"abilities":[],"triggers":[{"mode":"BecomesTarget","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"~","description":"~ permanently gains all of the backup abilities shared this way"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":{"type":"StackAbility","tag":{"type":"Backup"}},"description":"Whenever another creature you control becomes the target of a backup ability, ~ permanently gains all of the backup abilities shared this way.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1fc6eb23-45ab-42fd-820e-b5dd5dbaef80","metadata":{"source_printing_ids":["19720530-eaf8-4252-9ded-a3b7dc6e19e4"]},"legalities":{},"printings":["UNK"],"rarities":["rare"]},"hunter's edge":{"name":"Hunter's Edge","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control. Then that creature deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7b428e94-8428-455f-b555-f648fcdd2127","metadata":{"source_printing_ids":["5c19ddf0-b0fb-4cb6-adfc-2158b5e801aa","7c08c80f-f27c-4e3a-b048-143aea740096","a4ed63b0-35dc-4f05-82ca-8efc1f247ce4","e3ba254e-84bb-4d5c-8372-66f73e556b39"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","M21","PLST"],"rulings":[{"date":"2020-06-23","text":"If either creature is an illegal target as Hunter's Edge tries to resolve, the creature you control won't deal damage."},{"date":"2020-06-23","text":"If the creature you don't control is an illegal target as Hunter's Edge tries to resolve but the creature you control is a legal target, you just put a +1/+1 counter on the creature you control."},{"date":"2020-06-23","text":"You can't cast Hunter's Edge unless you choose both a creature you control and a creature you don't control as targets."}],"rarities":["common"]},"hunter's insight":{"name":"Hunter's Insight","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. Whenever that creature deals combat damage to a player or planeswalker this turn, draw that many cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"WheneverEvent","trigger":{"mode":"DamageDone","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"valid_source":{"type":"ParentTarget"},"description":null,"constraint":null,"condition":null,"batched":false}},"effect":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. Whenever that creature deals combat damage to a player or planeswalker this turn, draw that many cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cf8a0782-f545-445e-abac-d9063dad696b","metadata":{"source_printing_ids":["4e1448cf-3ddc-437b-a21e-4f4086492ec6","8c7549c2-7f66-4fdc-9852-6796292c6a85","a85d0ca4-551c-4e23-b35b-e49b89ce86bd","b2fb825e-0c93-4555-9f6e-9b9d21566c2a","c12cf74d-aad9-41d8-959e-66557c39204d","de399acd-e792-4f4a-8025-434f1080c0fc","e4044a9f-43bd-4c32-9d53-29a27ad9be80","f68090b1-77f0-49e7-8f2b-e78ce3cf8c86"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C20","CMM","CMR","JMP","M12","MAR","NEC","OMB","SCD"],"rarities":["uncommon","rare"]},"hunter's mark":{"name":"Hunter's Mark","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This spell costs {3} less to cast if it targets a blue permanent you don't control.\nThis spell can't be countered.\nTarget creature you control gets +1/+1 until end of turn. Then it deals damage equal to its power to target creature or planeswalker you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+1 until end of turn. Then it deals damage equal to its power to target creature or planeswalker you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":3},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Permanent"],"controller":"Opponent","properties":[{"type":"HasColor","color":"Blue"}]}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {3} less to cast if it targets a blue permanent you don't control."},{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7def9bfe-6a59-4300-8134-fce7508dca38","metadata":{"source_printing_ids":["62023c58-8b94-4a81-a259-a047e1edd342","6f5fdac5-c40b-43b5-b9f1-cf9bfa1664c9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","PLST"],"rarities":["uncommon"]},"ian the reckless":{"name":"Ian the Reckless","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever Ian the Reckless attacks, if it's modified, you may have it deal damage equal to its power to you and any target. (Equipment, Auras you control, and counters are modifications.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, if it's modified, you may have it deal damage equal to its power to you and any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0727ce6a-aae2-4ddc-9e6c-b18011c5bd37","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Whenever Ian the Reckless attacks, if it's modified, you may have it deal damage equal to its power to you and any target. (Equipment, Auras","line_index":0}],"metadata":{"source_printing_ids":["4cd46b6a-eb20-4ffa-94e0-47d1d2d46087","6be12244-5e1f-4e5e-bd4b-ac0bcd74724b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"If Ian the Reckless isn’t modified when it attacks, its ability won’t trigger at all. When its ability tries to resolve, if it isn’t modified at that time, the ability won’t resolve."},{"date":"2024-03-08","text":"If Ian the Reckless leaves the battlefield before its last ability resolves, as long as it was modified when it was last on the battlefield, use its power as it last existed on the battlefield to determine how much damage that ability deals."}],"rarities":["uncommon"]},"ichor wellspring":{"name":"Ichor Wellspring","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters or is put into a graveyard from the battlefield, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from the battlefield, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"5b5ef43b-13fd-4461-8d2d-18be65e9a790","metadata":{"source_printing_ids":["03c16dfb-7e7a-4372-a1e2-8eb06d890c5c","1a5313e8-b7d1-49c7-81de-4da99ba9733f","1ccdb407-ac8f-4736-89d3-ab0d086096ea","2d1ea522-a0f6-45a8-8985-6fcca95d60cc","537721ab-088f-4dbd-b984-67f68eaaf3cf","6ce84c30-5d59-4f0d-af44-96b993f3902f","7b35f405-b48a-4514-a1b4-379f3226e878","94de25aa-d29a-45c9-8c4d-1ac27eb6a914","eab0d19f-1df7-48a9-bd39-3d8c26ae7bb6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","BRC","BRR","C14","C16","C21","CM2","DDU","HA5","J21","MBS"],"rulings":[{"date":"2011-06-01","text":"The ability will trigger when Ichor Wellspring is put into a graveyard from the battlefield, even if the ability that triggered when it entered hasn't resolved yet."}],"rarities":["common","uncommon"]},"ignite memories":{"name":"Ignite Memories","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player reveals a card at random from their hand. Ignite Memories deals damage to that player equal to that card's mana value.\nStorm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)","non_ability_text":null,"flavor_name":null,"keywords":["Storm"],"abilities":[{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"None"},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player reveals a card at random from their hand. ~ deals damage to that player equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5f186092-0f87-4a0f-ac45-fff5359c93ae","metadata":{"source_printing_ids":["2f7b7831-27a1-4c0a-8ed1-6dddf2754d65"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["TSP"],"rulings":[{"date":"2022-12-08","text":"A copy of a spell can be countered like any other spell, but it must be countered individually. Countering a spell with storm won't affect the copies."},{"date":"2022-12-08","text":"Spells cast from zones other than a player's hand and spells that were countered are counted by the storm ability."},{"date":"2022-12-08","text":"The copies are put directly onto the stack. They aren't cast and won't be counted by other spells with storm cast later in the turn."},{"date":"2022-12-08","text":"The triggered ability that creates the copies can itself be countered by anything that can counter a triggered ability. If it is countered, no copies will be put onto the stack."},{"date":"2022-12-08","text":"You may choose new targets for any of the copies. You can make different choices for each copy."}],"rarities":["uncommon"]},"ikra shidiqi, the usurper":{"name":"Ikra Shidiqi, the Usurper","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Snake","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever a creature you control deals combat damage to a player, you gain life equal to that creature's toughness.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":["Menace",{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever a creature you control deals combat damage to a player, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"a1a1761c-88e5-40b4-ba4c-60735c054b09","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0fb98089-11b8-4afd-9724-e488d864b4dc","460165df-32db-4773-805e-edd6f18af5d6","8f2abcc3-dc33-4b9d-a372-1d936e954f94","a6fd7a8c-e0cd-4fb5-b492-8f3ef7579682","fa39bace-fc76-478d-b8f7-db75a59091fd"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","CM2","CMR","PLST","PRM","PZ2","TDC"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"The amount of life you gain is determined as Ikra Shidiqi's triggered ability resolves. If that creature is no longer on the battlefield, use its toughness as it last existed on the battlefield to determine how much life to gain."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["mythic"]},"imp's mischief":{"name":"Imp's Mischief","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Change the target of target spell with a single target. You lose life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeTargets","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"HasSingleTarget"}]}]},"scope":{"type":"Single"},"forced_to":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Change the target of target spell with a single target. You lose life equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"30ec73ad-c7a1-4527-8dc6-44bdd65b9ba6","metadata":{"source_printing_ids":["0eb0e8e7-266f-441e-b1cd-12b8ec3f7d71","22ec70a6-40b7-41da-a6c0-c140cadf5509","41137be4-cfc2-40dc-873a-b9a63d0d8ea6","d46c03ac-5efb-4d5d-9987-aa5e4da0a9c4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","OTP","PLC"],"rulings":[{"date":"2004-10-04","text":"If there is no other legal target for the spell, this does not change the target."},{"date":"2004-10-04","text":"Once the spell resolves, the new target is considered to be targeted by the deflected spell. This will trigger any effects which trigger on being targeted."},{"date":"2004-10-04","text":"The target of a spell that targets another spell on the stack can be changed to any other spell on the stack, even if the new target will resolve before the spell does."},{"date":"2004-10-04","text":"This does not check if the current target is legal. It just checks if the spell has a single target."},{"date":"2004-10-04","text":"This only targets the spell being changed, not the original or new target of the spell it is affecting."},{"date":"2004-10-04","text":"You can choose to make a spell on the stack target this spell (if such a target choice would be legal had the spell been cast while this spell was on the stack). The new target for the deflected spell is not chosen until this spell resolves. This spell is still on the stack when new targets are selected for the spell."},{"date":"2004-10-04","text":"You can't make a spell which is on the stack target itself."},{"date":"2004-10-04","text":"You choose the spell to target on announcement, but you pick the new target for that spell on resolution."},{"date":"2024-04-12","text":"If a spell targets multiple things, you can't target it with Imp's Mischief, even if all but one of those targets have become illegal."},{"date":"2024-04-12","text":"You don't choose the new target for the spell until Imp's Mischief resolves. You must change the target if possible. However, you can't change the target to an illegal target. If there are no legal targets to choose from, the target isn't changed. It doesn't matter if the original target has somehow become illegal itself."}],"rarities":["rare"]},"induce paranoia":{"name":"Induce Paranoia","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. If {B} was spent to cast this spell, that spell's controller mills X cards, where X is the spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ManaColorSpent","color":"Black","minimum":1},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. If {B} was spent to cast this spell, that spell's controller mills X cards, where X is the spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Blue"],"scryfall_oracle_id":"ec9475f8-235a-4c85-9b96-9c2085a9b732","metadata":{"source_printing_ids":["bc462b75-8b08-47a3-be22-d7b5c062ec5b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["RAV"],"rarities":["common"]},"inevitable betrayal":{"name":"Inevitable Betrayal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Suspend 3—{1}{U}{U} (Rather than cast this card from your hand, pay {1}{U}{U} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, you may cast it without paying its mana cost.)\nSearch target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[{"Suspend":{"count":3,"cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1}}}],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"time","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1}},{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"MatchesCardCastTiming"}],"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"time","count":1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: At the beginning of your upkeep, if this card is suspended, remove a time counter from it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"time"},"minimum":1},"batched":false},{"mode":"CounterRemoved","execute":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"SelfRef"},"without_paying_mana_cost":true,"mode":"Cast","driver":"DuringResolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: When the last time counter is removed from this card, if it's exiled, you may play it without paying its mana cost.","constraint":null,"condition":null,"counter_filter":{"counter_type":"time","threshold":0},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue"],"color_identity":["Blue"],"scryfall_oracle_id":"aa5e9269-b1db-4bf0-a548-24f999f60e44","metadata":{"source_printing_ids":["28c015a6-dc4c-49f6-8d39-4c7b598e5a61","71725895-38cd-4017-bbf0-0b7dc9b5db60","9efc8ce5-d9b3-4808-8297-f9a0a4db79c1","adb9a0f9-0af6-42ac-9e42-f315f4882939"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH2","PMH2","PRM","SLD"],"rulings":[{"date":"2021-06-18","text":"You may fail to find a creature card in your opponent's library. This may be because they don't have any creature cards, or it may be because you simply don't like any of the creature cards they do have."},{"date":"2024-02-02","text":"A card with no mana cost can't be cast normally; you'll need a way to cast it for an alternative cost or without paying its mana cost, such as by suspending it."},{"date":"2024-02-02","text":"Cards exiled with suspend are exiled face up."},{"date":"2024-02-02","text":"Due to a recent rules change to suspend, you are no longer required to cast the suspended card as the second triggered ability of suspend resolves. Instead, as the second triggered ability resolves, you may cast the card. Timing permissions based on the card's type are ignored. If you don't cast the card, it remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"Exiling a card with suspend isn't casting that card. This action doesn't use the stack and can't be responded to."},{"date":"2024-02-02","text":"If a card with no mana cost is given an alternative cost equal to its mana cost (by Snapcaster Mage, for example), that cost cannot be paid and the card cannot be cast this way."},{"date":"2024-02-02","text":"If an effect refers to a \"suspended card,\" that means a card that (1) has suspend, (2) is in exile, and (3) has one or more time counters on it."},{"date":"2024-02-02","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-02-02","text":"If the first triggered ability of suspend (the one that removes time counters) is countered, no time counter is removed. The ability will trigger again at the beginning of the card's owner's next upkeep."},{"date":"2024-02-02","text":"If the second triggered ability is countered, the card can't be cast. It remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"If the spell requires any targets, those targets are chosen when the spell is finally cast, not when it's exiled."},{"date":"2024-02-02","text":"If you cast a card \"without paying its mana cost,\" such as with suspend, you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those if you want to cast the card."},{"date":"2024-02-02","text":"Suspend is a keyword that represents three abilities. The first is a static ability that allows you to exile the card from your hand with the specified number of time counters (the number before the dash) on it by paying its suspend cost (listed after the dash). The second is a triggered ability that removes a time counter from the suspended card at the beginning of each of your upkeeps. The third is a triggered ability that gives you the option to cast the card when the last time counter is removed."},{"date":"2024-02-02","text":"The mana value of a spell cast without paying its mana cost is determined by its mana cost, even though that cost wasn't paid."},{"date":"2024-02-02","text":"When the last time counter is removed, the second triggered ability of suspend (the one that lets you cast the card) triggers. It doesn't matter why the last time counter was removed or what effect removed it."},{"date":"2024-02-02","text":"You can exile a card in your hand using suspend any time you could cast that card. Consider its card type, any effects that modify when you could cast it (such as flash) and any other effects that stop you from casting it (such as from Meddling Mage's ability) to determine if and when you can do this. Whether you could actually complete all steps in casting the card is irrelevant. For example, you can exile a card with suspend that has no mana cost or that requires a target even if no legal targets are available at that time."}],"rarities":["rare"]},"infernal reckoning":{"name":"Infernal Reckoning","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target colorless creature. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"ColorCount","comparator":"EQ","count":0}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target colorless creature. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"32aa920c-0d91-4bc9-803c-d13857688d10","metadata":{"source_printing_ids":["4e291f27-d74f-48e7-bcb4-ddcc558c2211"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M19","PM19"],"rulings":[{"date":"2018-07-13","text":"If the creature’s power is negative, you don’t lose or gain life."},{"date":"2018-07-13","text":"The amount of life gained is equal to the power of the creature as it last existed on the battlefield."}],"rarities":["rare"]},"infesting radroach":{"name":"Infesting Radroach","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect","Mutant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nThis creature can't block.\nWhenever this creature deals combat damage to a player, they get that many rad counters.\nWhenever an opponent mills a nonland card, if this creature is in your graveyard, you may return it to your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"get","description":"get that many rad counters"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they get that many rad counters.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"TriggeringSource"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":"Opponent","properties":[]},"origin":null,"destination":null,"trigger_zones":["Graveyard"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an opponent mills a nonland card, if ~ is in your graveyard, you may return it to your hand.","constraint":null,"condition":{"type":"SourceInZone","zone":"Graveyard"},"batched":false}],"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"064f371c-e4f2-423b-9f35-443191dfbb4c","metadata":{"source_printing_ids":["5b51b691-e226-44c9-b7cb-26f19c060597","b18a4355-5645-4af3-a16a-7fe49d0d5aab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If Infesting Radroach is milled at the same time an opponent mills a nonland card (for example, because of the activated ability of Raul, Trouble Shooter), Infesting Radroach's ability will trigger."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they'll mill as many cards as they can."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They're not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don't go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger \"whenever one or more nonland cards are milled\" will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is \"At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.\""}],"rarities":["uncommon"]},"insectile aberration":{"name":"Insectile Aberration","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Insect"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue"],"color_identity":["Blue"],"scryfall_oracle_id":"edd531b9-f615-4399-8c8c-1c5e18c4acbf","metadata":{"source_printing_ids":["11bf83bb-c95b-4b4f-9a56-ce7a1816307a","6904ea20-e504-47da-95a0-08739fdde260","871c4ccc-5a14-4583-b4c7-6f2d2aeb8253","888fbfaf-dbf9-4045-a79e-d436ef75b3cf","a808459c-f086-4cb6-a53e-4b9e196c1000","a992bbe3-c389-4a4a-927b-dfc01a4cd9be","abff6c81-65a4-48fa-ba8f-580f87b0344a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["DBL","INR","ISD","MID","SLD","V17"],"rarities":["common","uncommon","rare"]},"interpret the signs":{"name":"Interpret the Signs","mana_cost":{"type":"Cost","shards":["Blue"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Scry 3, then reveal the top card of your library. Draw cards equal to that card's mana value. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom and the rest on top in any order.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Scry 3, then reveal the top card of your library. Draw cards equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"834554f6-3b65-44fd-b1d1-8495b740dbfc","metadata":{"source_printing_ids":["42dbf049-5c02-4038-86de-fa6b5110cf7e","5fc72645-d2c3-40cd-81d7-77142e495c8d","696f2da6-3943-4555-9610-e6b925b3d6bc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["CMR","J22","JOU"],"rulings":[{"date":"2020-11-10","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2020-11-10","text":"If you reveal a card with mana value 0, such as a land card, you won't draw any cards. Otherwise, the card you revealed will be the first card you draw."}],"rarities":["uncommon"]},"invisible stalker":{"name":"Invisible Stalker","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Rogue"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)\nThis creature can't be blocked.","non_ability_text":null,"flavor_name":null,"keywords":["Hexproof"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantBeBlocked","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"1a137a67-4156-45c8-aae9-838f688e12bd","metadata":{"source_printing_ids":["0013620d-8e17-4246-86bf-71eafd51b806","14d265aa-c1d8-4faa-b282-5c273ab725fd","965cd5d9-4216-486f-9fa0-7e821327b5e8","eb9dbad5-7df6-4f78-b809-d6043bf15d4b","f0b2a762-486a-474b-8abc-6a10fced63f5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["ISD","PLST","SIS","ZNC"],"rarities":["uncommon"]},"invoke calamity":{"name":"Invoke Calamity","mana_cost":{"type":"Cost","shards":["Red","Red","Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their mana costs. If those spells would be put into your graveyard, exile them instead. Exile Invoke Calamity.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"FreeCastFromZones","count":2,"max_total_mv":6,"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"zones":["Graveyard","Hand"],"exile_instead_of_graveyard":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their mana costs. If those spells would be put into your graveyard, exile them instead. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_constraints":[{"type":"TotalManaValue","comparator":"LE","value":{"type":"Fixed","value":6}}],"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5b3f041e-ad4a-47ea-bdc4-1be2353f2e18","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their ma","line_index":0},{"type":"SwallowedClause","detector":"Condition_If","description":"You may cast up to two instant and/or sorcery spells with total mana value 6 or less from your graveyard and/or hand without paying their ma","line_index":0}],"metadata":{"source_printing_ids":["12af2504-ff1c-4361-a428-be9d1d35899f","99ff8eec-5510-4c57-91c1-ec380fdd7f8e","fe666c86-6734-4c47-9244-bcd26b54068d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NEO","PNEO","PRM"],"rulings":[{"date":"2022-02-18","text":"If the spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-02-18","text":"If you cast a spell without paying its mana cost, you can't choose to cast it for any alternative costs. You can, however, pay any additional costs. If the spell has any mandatory additional costs, you must pay those."},{"date":"2022-02-18","text":"Invoke Calamity looks for the mana values and types of the spells on the stack, not the mana values and types of the cards in your graveyard. Notably, this means that you may cast the back face of a modal double-faced card or either face of a split card as long as the spells you are casting are either instants or sorceries and together have a total mana value of 6 or less."},{"date":"2022-02-18","text":"The spells are cast one after the other during the resolution of Invoke Calamity. The one you cast second will be the first one to resolve."}],"rarities":["rare"]},"iridescent vinelasher":{"name":"Iridescent Vinelasher","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard","Assassin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Offspring {2} (You may pay an additional {2} as you cast this spell. If you do, when this creature enters, create a 1/1 token copy of it.)\nLandfall — Whenever a land you control enters, this creature deals 1 damage to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Offspring":{"type":"Cost","shards":[],"generic":2}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, ~ deals 1 damage to target opponent.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.175a: When this permanent enters, if its offspring cost was paid, create a token that's a copy of it, except it's 1/1.","constraint":null,"condition":{"type":"AdditionalCostPaid"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4f8c4927-46c2-4c18-b5af-c6288dbaff6d","additional_cost":{"type":"Optional","data":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}}}},"metadata":{"related_token_ids":["c39bbf40-9bf9-5400-8be3-0fb961f0a643"],"source_printing_ids":["859e34b4-6762-465f-a5c7-24e42e112fbe","b2bc854c-4e72-48e0-a098-e3451d6e511d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"Any \"enters\" abilities of the copied creature will trigger when the token enters. Any \"as [this creature] enters\" or \"[this creature] enters with\" abilities of the copied creature will also work."},{"date":"2024-07-26","text":"If the spell is countered, the offspring ability will not trigger, and no token will be created."},{"date":"2024-07-26","text":"If the spell resolves but the creature with offspring leaves the battlefield before the offspring ability resolves, you'll still create a token copy of it."},{"date":"2024-07-26","text":"In the rare case where the creature doesn't have the offspring ability when it enters, the ability won't trigger even if you paid the offspring cost."},{"date":"2024-07-26","text":"In the rare case where the original creature is copying something else when the offspring ability resolves, the token enters as whatever that creature copied, except it's a 1/1."},{"date":"2024-07-26","text":"Many creatures with offspring abilities have other abilities that refer to them as \"this creature\" rather than referring to them by name. This difference is for clarity purposes and does not change the function of any of these abilities."},{"date":"2024-07-26","text":"The token copies exactly what was printed on the original creature and nothing else, except it's a 1/1 (unless that creature is copying something else; see below). It doesn't copy whether that creature is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any non-copy effects that have changed its types, color, or so on."},{"date":"2024-07-26","text":"The token created by the offspring ability isn't \"cast\", so abilities that trigger when a creature spell is cast won't trigger for the copy."},{"date":"2024-07-26","text":"You can pay an offspring cost only once as you cast a spell with offspring. You can't try to pay it multiple times to get more token copies."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"island":{"name":"Island","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Island"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {U}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"b2c6aa39-2d2a-459c-a555-fb48ba993373","metadata":{"source_printing_ids":["000f1f50-08e5-4d83-8159-98f06a0e2279","001eb913-2afe-4d7d-89a1-7c35de92d702","00c74207-577c-4eab-9759-4cab76c17f2c","017fb3fc-433e-4853-bbac-99fa04b40233","029540f9-9a19-4b1e-a61a-30813fd8cdd0","0298749b-089e-49b9-8c89-02431a3d6457","03438868-e177-46af-9ae8-edc4a991f18c","03f845b1-3b8a-4387-aae3-fd497acf193c","040ed422-663a-4b6c-bdcd-09092f1c9004","0473605a-6c6a-433e-b828-933544472a3d","0480b669-e72b-4b21-b0f3-09d78abe421c","04d4230f-f024-4e5e-9054-0d32dace05cd","0563dcbc-59da-468a-97ed-37cd5e36d14a","0600d6d5-f6a1-47c3-a898-733fab10bbf5","0630ac22-7c1a-4eac-aa5e-f9e505797952","0677e507-f690-44a1-8ed1-6808cbcd4e7c","069b4d6c-7542-4a42-8822-031f02131033","0830bbcf-ee78-4f8a-bc6c-547be3a9fc4c","086d6aed-1f7e-4a80-8d66-01d995f344ed","09376cac-44bd-42c4-9c07-9e4d6c972a64","09df589a-61b9-4f73-ab34-0ba3bd52c084","0a4717cd-f9a7-4386-9091-d25218e23d79","0a6f4848-85b9-4770-9820-516e2a295284","0ac65c53-7b35-4ba0-9344-b311eee087cd","0aea8148-43a7-45dc-84b1-8636cdb50412","0b9bbc32-a89a-4bed-ab52-ac6569ec74ce","0b9dbac5-56e5-4054-9b58-7fa5de30487d","0ba4f2b6-d802-44c7-8a4d-4e5b26a26292","0bafd3f5-7d14-49a0-afa6-57843956d027","0c4eaecf-dd4c-45ab-9b50-2abe987d35d4","0c88a936-b745-402b-9eda-f9a18342698e","0ce67a27-aa80-46ac-955a-8fea336995d9","0d0f2d84-bf11-4d39-8510-84a14e9f0c23","0d6106c1-dc27-48bc-a808-8be4a2c3a617","0da4d5c0-7ad2-446d-b49e-5ee446bb23cd","0e443748-edf1-4499-9507-3649dd57ee95","0efe151b-d819-4c6a-95b5-e1361170bcf3","0f66d573-5da4-4b3c-ab06-bb330cff2c9a","10125dab-fe82-4796-b5db-3bd6ad389e1d","105b2118-b22c-4ef5-bac7-836db4b8b9ee","106a5332-0104-4ec9-9e1f-806381ae4cad","10acd444-4264-41fb-87f4-9cac4fdeeaad","10b0f911-7193-446a-b4d7-66bb34be7933","11d4b4bd-270e-4f8e-a93e-1321794f950a","1227d128-dd6c-4b18-96bd-b498dcd00e68","123368da-1d72-45e1-bd07-4b3a506012d1","125e4610-9bdc-4ee2-8aac-26cbdee13046","12b2aae2-a0b4-4c52-8a43-a4155527bae9","12dd90bb-b5d1-47a3-b566-3407db04dd55","12ebd9c8-6587-456e-aba9-7aad1c2a09ea","13d88f06-276b-41d4-a4c3-d904f93ea403","14c426b1-16cd-402f-a348-85d0139d4bdd","14fcdc57-12e2-429b-8916-4df752e462d4","15303b22-ddf0-488d-b07e-a118f35ef00f","155e3f97-531a-4336-af16-e0f738ebb85e","15973a22-cf86-447d-94ef-d62ac824aa49","15be7923-6efc-4650-b8d1-f61cb33ef81d","172bb1b6-08c3-4ffd-b26d-b1c77dba06c3","17e2b637-72b1-4457-aaba-66d51107be4c","17fefdc7-2f7c-4a63-8683-3dff21b4bb76","189a09b8-46d2-4ef6-b7cc-9e510d1ea0b8","196a004a-ec08-4e1b-8eeb-2ad766fccd25","197080a9-ebb5-4a8b-81f8-0368c5bba35a","197f5bd0-5ab3-4bf4-b20e-1389c0e9527a","19803b7c-9c97-4672-930d-1837647a1bc9","1a25a714-c7f3-4697-8b69-8f966b4d370a","1a9798d6-34b3-4438-992d-d3616a7c8536","1afa60b6-cd0d-4c23-af81-88049ea45475","1b82c807-dbda-42b3-a1a1-0c4ef72f1683","1ba4b3ad-1aef-44d3-889a-aedd9e070975","1c9f55eb-2c9e-4bc7-a67c-ab2eeb127201","1cb1ac28-ee04-4892-97ea-2cfdebbafcad","1d018af9-dd14-46fa-8fd5-226defc9698f","1d433685-601d-4da2-9e4c-796646003ffe","1d603978-3877-454e-8910-53a4cc95431d","1d8ff00f-62cc-4f71-b360-865ab2ac2599","1dac3bfe-884b-4875-bc7d-df564eb014cd","1e571f07-167f-4a7d-8f98-0c98d7d15e81","1ecabe5d-f3a3-415f-896f-662b97b00217","1f3d1731-bd87-474b-b111-927390ef86c1","1f83a756-e520-4f72-932c-73fa6ee10500","1fddf4cb-0680-4bc7-8bb3-cb15268aff46","1ff6acc9-581c-468f-894d-41f725da7f33","2039d727-3bb6-4a76-89ca-159ecf10cad8","206d619e-d5b3-4f3b-b999-3995b483c918","20b4cbcc-c394-4be3-8072-8893b48c866d","20f2e8cb-cf20-479d-9297-46618d09c19f","21135bb8-07a8-4451-8d3b-5e2747d3d3ff","212e84a3-e028-42a6-a639-f42b64ab7015","217064fb-6dee-406e-b1e2-455dfccc6438","2177da89-184b-4ecd-ae08-a074ac4862e1","2184c71a-b944-490e-ae2e-539bac3c0e57","21b99a83-bfe4-4149-b626-269953c5ac51","21d03913-c905-439c-a603-7d7fae6b9cd9","21e00fd6-2d12-4ad0-aa8b-21622490a730","21e41579-5cbf-41c8-ac1b-e6256220087d","21f655c7-d473-40a6-8d22-7c2c5fc9d85a","222c52bd-b4fe-4cc6-ac86-2a93c7ca9e38","22578bc8-10c6-4598-82bc-70e970a8f518","22f6e971-349d-498b-ae01-ab81ce21772c","22f920a5-74ea-4b94-8822-5867e6d5017a","232d56d0-1df6-4517-bbe9-9bd7ef12de15","23300152-6da8-4444-b368-1fb00e74a4b2","23635e40-d040-40b7-8b98-90ed362aa028","23e3ed2c-342b-44aa-8e3e-0c53602397c3","24295928-6414-4992-9dac-06021a304742","246c1f79-bdd9-4a77-b481-02e81cf0b5aa","24a05fd8-7579-4343-ae57-ea384994d8ac","24aa9fd2-54d9-40d9-9279-abd5bd6ff727","24f308d7-afc6-43a0-8433-d9d5404eab49","24ffadeb-cf20-4da9-a140-1fdcc7484c7a","25934479-a47e-45b8-bc35-fc4b659b0d68","259cb11a-32f7-4483-a859-a26313c62610","26b02969-1959-4422-8e10-63ffb23192a2","275415c2-1740-4ff3-8c57-57977b414d46","278f5152-012a-4852-b081-0cbf9149a7f0","27de7298-d069-4652-8513-50406ba4a151","27e01339-0c2e-4e2f-b1c5-e46030016d5b","27e879fe-a79b-427f-9901-c989fa73e234","28347f33-bfd5-48fd-ab10-228dfad1669d","28a0a9ae-a1ae-41da-8308-d49e4afca3c1","28da317c-8512-4342-9be5-d14b87a509c7","2995e06d-8145-485e-aeed-3da27a07545b","29bfbf3e-3a6c-40d4-8e1b-255f429de6cc","29d575fc-037b-421a-a205-12d492e9361e","2a9db98e-9f1d-4139-95c5-49f9d17a2107","2b3a671c-8b0b-45ea-9d65-095c19174e88","2bd41018-2eb1-4aac-a5dc-1f95ae6a46de","2bf6f14a-99d1-4abd-b36f-a5819718a43f","2d1f5b46-7217-4d43-aaa7-29ff2f7777fb","2d3da4bf-1a5a-42a7-bd36-f1ca080c8a5a","2dcdcb91-bf08-4f40-9391-2824e905d5d4","2e19f6dd-9eed-4656-b8c7-e64b61446d7f","2e9d8487-5e73-4d14-bea7-8c7eee6acc80","2ef2c956-cf03-462c-8981-ae80edfc0c5a","2f3edb9a-de7c-445a-a32b-25bd9fd97c91","2fb9ecfd-8025-48c0-a306-b4deebde2949","2fc04e1e-6a14-41cc-9fff-6dcd92cc6a3b","2fdcf679-4269-4ed9-84f1-1ac7a513f475","30fa28f3-0a91-48c5-9433-4da6e223011c","3114ce5d-c99c-4c60-b088-48ec440eafdb","31915934-1e12-49ad-a745-30e1106b4eff","3220f1ba-748e-4e74-89e9-0a2d137c100e","3310cdcb-7906-4f86-829e-4383c59fbcbf","3352b213-4ebc-4b4c-ae75-f256fbb33d95","338e5b63-1fee-4a7c-af9b-483d383f79b7","33a05f9a-1285-4d14-b827-8b81968e09df","33fde066-56c4-4c73-a41e-b1804cde0402","34052c96-229b-47c3-ada8-b79e622de846","347e00db-abcf-4053-aa27-4a5b42e1da55","34ec0f4f-e6f7-4a49-81a3-a1fbad102a9d","35c20f8b-6ad1-4aa2-94d3-7bd42562a1ac","36e062ec-df51-40c0-ad8a-2ee1cb8f8f17","373b4f66-a815-413e-9b9b-663b3a49d3eb","37736b90-7ecd-4b74-aeb6-50d3a81bc31d","385695a4-b811-4c79-860a-9f0aca4edbc8","38e083ce-0f15-4ff0-8af1-747565f2d0d8","39180d5d-9e76-4ea3-a906-aeb28974e7a6","39c7b858-61e1-43ea-95b6-2a0079a802d2","3aba057e-11db-432b-a39c-a2845868bccd","3ae471f9-f463-4918-9980-18c97b6f1b6d","3b1238c4-dc34-488f-ad4a-308f584d4d75","3bc773e7-ee87-4462-9745-1e62458e45ed","3c4debf2-c04a-488e-8d5a-221a5eb14597","3cda6712-1730-48a0-b86d-2e7765e3db74","3e7d8ebd-7481-48b5-84bb-b747a8a612c1","3f02cfaf-1c0b-4168-a809-ea9541bf62b2","3f891c3f-82e2-4f9d-ae4b-443fce0bdd71","3fe9f351-5d3b-4614-bc3f-6859b5a0bce7","407d609b-ac1f-4644-ba8d-259938745007","408eb23f-13fa-4f98-b316-18e3057f9136","40c840af-9a13-4716-8458-09071239cc26","40e3bf00-84cc-498c-b214-1052b4904d92","40eb7b85-8c0f-4311-85f3-11bcb45ba0b6","4134cd82-6e48-4fc0-bcb4-1e3af369ef82","4146a316-c409-4121-931f-1d3b5ae63675","41829a8c-5ab2-4c44-bf6a-09bad991ab78","42044efb-b6a8-46c3-90dc-b7a745e819e5","4208e66c-8c98-4c48-ab07-8523c0b26ca4","4237eaa8-1169-47b2-9009-ac529831a36e","423927e6-2419-4d88-b0c4-425e5cac1a3f","42a272ca-98a7-4887-b6b7-903a1adc33e0","43297ca7-846c-4bc4-a347-997279bc73d6","434dc08b-0f4f-4230-bd39-7dc1c9d9cd1e","437d6d2d-2eee-4917-b16b-1b0df759ade0","43ced659-7870-40b4-80e1-2f0d46e35c87","44b34fc0-dc7b-4823-9ff1-5e1e84016204","454f304a-971d-418c-9645-d1678996f3cb","45950695-2973-4c58-94f7-2d950c55865e","46255a65-b735-4888-85db-3ab2ab3d903c","46848fc2-ba58-4738-b4ce-0399d9053f48","46d76200-cd39-4abd-9e7c-546bd58de5ae","478100da-a66a-47e0-ab15-54dc3398740f","4782f218-ec9f-4f59-bb97-ec315960fdd1","48b51501-d3b3-480f-9bcb-e66420c4db06","48d19385-02f2-4f45-b148-81993bcd00e9","49050cb4-1d8b-4f2f-ba48-206a107eb09c","49797974-2760-4ed7-b2ae-08bc21fa803a","49fb2a1e-9995-49c3-bfc7-7f392c95e16a","4a3e7218-0454-4489-ab2d-02900f490fe4","4a88705a-ab94-4e29-b556-e8f7ae1183fb","4ab864fb-ac47-4dcb-95a8-26174a20afe3","4ad74ee8-5b41-445d-9a5b-f9a755bb1590","4b10739a-0ebd-432a-b346-385726b453a7","4b2ad5b3-7257-4521-8916-6b1cbfb89e27","4c23ffd3-dcee-4b29-99f0-4502c19f0947","4c4845cc-77d8-4f87-8424-e2371bbb72da","4c799192-43bb-4c25-ab4f-b1d4ef0df660","4dc3a90f-23c4-4c54-8825-32cb17977b48","4df5e502-45b6-474c-ad1f-c66c346b3573","4e8958d4-067b-4815-a128-5d1577b94173","4ee1fe3a-8a5c-4198-b352-9958bc75e364","4eea2b47-130a-4bd0-b936-981bee1ebe8c","4f058a5c-b9fd-4b3c-908f-41a2a4f788fa","4f307e72-f33e-4fb1-b15f-a46ab389c20f","4f60ca04-0b6e-4e8b-b3b1-8f68fe692d1c","4f8d16ec-cba6-43b7-be97-5ab184941e29","50128873-7c99-4dfe-8c5c-e6e114ffbd5c","504e3d36-abe3-480f-b42d-b9ae7c63fc0a","51487402-2a52-4117-ba88-327e863e5f56","51852e9d-9183-4f9a-a724-cb60cf677e38","527f36a0-80b8-4492-b1c3-20a34953ceb7","542a895f-11af-4534-b9b3-e1a3e77fabca","54591ec7-94a1-470c-927a-788b6a514444","54693eb8-bd68-4781-a60f-113adf947d5d","547890ff-69b6-48e0-98f6-1fbca5d353e8","547f89f2-30a0-493a-914e-6251d2574099","54c33392-c382-4e8b-812e-8b2c64cdbe8e","54ddd3aa-593c-4adb-b591-33c15d02131c","551f905b-4ce0-4071-a721-7e51be14d114","560c7de9-0046-4a76-a41a-fa1c3ef92f04","5679b9cc-5fee-49bb-8378-09e4943c42c0","56ac969e-289f-4242-8845-c91c23af2bfe","572167d5-59b6-46fb-bb60-27fb6c5bf2bc","5754638d-14ce-452d-bb45-d1d8f1151a96","575a9059-5cdc-41ac-be5c-a6e797c4ffbb","57bafa39-b8c3-4d8f-b8dc-9f76c5edca47","57d9b053-ed45-41f3-a0ab-0a08c41f587a","582b124a-c145-463a-900d-f0e5b4a3db10","58651bbd-b3df-4b9c-b515-28d778cc2f7f","5885738f-a51d-418c-b194-0ba8ef6af556","589524db-68b9-46eb-a8ab-55986f37fbed","589a324f-4466-4d4a-8cfb-806a041d7c1f","592a619f-1236-4085-b7e1-c093ce13f1a4","5a8e9b9e-4947-4b6a-b21b-6fe009760fc5","5a96f344-4940-47d1-99fd-0a489b33d25b","5aaba7cd-c1dc-49cf-8d63-8bb3594a6541","5af6a3cb-69da-4f7a-9b40-533bc86acb1d","5bae77e8-1230-4a6e-8c75-c99d2741a509","5c6322d4-52bf-471a-a5b2-8329ef4be39a","5c7f7338-8edc-4579-b92f-86b02527682c","5cde9dcf-f0b4-4e76-ac4e-d4a8ac355fbe","5cf3685e-0ed3-4dc3-9033-8faa10b17c27","5d01acc2-bafa-47c9-92ff-b737f1f31f16","5d141922-570d-4652-9620-2b53eb68294a","5d301d65-e81b-4750-bd26-9a6e5e386dc5","5e185e19-0692-4f09-bb99-1b864bfbb479","5e6e59d7-5038-46b4-9f60-3d9d0cbf0a4e","5e981028-21b0-4505-9662-6d61cccf9cab","5e9ec30b-2c02-4c00-b769-2f68b864261a","5fe96819-5ff8-4940-86d5-b93ac2865379","6069a210-3639-407e-b72e-950eb05856ef","60e6b919-e7c0-4844-a65c-d8b83b3e5287","61a25790-29ac-4fc6-afd8-9c4063f4284d","61a467ab-4460-4e5e-94c1-8150bfe0c954","61c20adf-5564-4516-9dd7-ee3a213be025","6245d2f8-8ef0-4d2a-9abb-99839dc3abf0","6317711a-83fc-4f6e-87d2-a147b34275ec","638b123a-b3d6-40da-ba0f-e1558e0345bf","64398521-073f-4835-b6ca-801bf8965466","64daf0ac-678b-4683-9351-a6daf9c9f849","64e7580a-92bd-4b50-84fc-ee42e47c9014","64ff74a8-e1e8-41ec-98fc-1529f4075074","6561fc02-ce9f-4c3f-a6cd-01260cb0b565","65e20596-3f28-42a7-a25c-53104f395176","671516eb-b088-4a15-aec9-1781ca016e11","68271f76-eaf9-44cc-bb3d-5c56f36e9af9","685141d2-e5cd-4e54-b6ab-a2c1beb5ea05","68a50ced-f89d-4636-a681-8c1de18ee712","68dbf10c-a813-4f76-9066-b3cdd9cfd5d4","6908b583-4a52-4819-82a3-9db9c860aeb6","69436d3d-3714-4020-b7e0-5c9b1fa5d5c1","695f7519-b011-4a86-9226-80c2d9747a42","6a3c7c06-76e4-487d-a63f-4aed3bbb4638","6b62f26c-d875-43ff-bb27-71305f3994df","6bf7b441-34e9-4a0e-bc78-61ed9b077d1c","6d74e713-11f7-4341-9b22-5300a4587a51","6d8f64a6-ba1b-4cd9-8cf9-15f394f9524b","6db95283-d7c2-4182-b461-7317eba75f8a","6de31cb8-94d1-43fa-ba65-1b225420b3b7","6e5e3819-3d75-40d4-9a93-1147834dfd69","6e7e21cb-0116-416d-9d60-b6ca75b90223","6e8878ab-4f77-4645-bec7-44cece5996dd","6e8c0e52-8482-4c33-bc5d-26eaad922e72","6f534ddc-f610-45cd-84dc-bb6df6c5a84f","6fbf2762-1e9c-4d7c-84d0-8561d9a41735","7014b9fc-a906-4ffd-a482-22ba8dbe3b4a","7059baa6-351a-42ec-966f-5741cfcd6371","70c60105-d32e-4e53-b408-aeba336d8e24","70ccecd0-2c10-4146-a560-254809593155","71207752-0d8a-4ab5-be64-cca600608e76","712dc7d6-5543-49fd-bafa-5ffb6c2bb0ce","7132999f-6e2d-4689-8131-7b12076a348d","73014252-76c1-4554-bd1a-c01ec5342dde","7330a921-c6ba-4944-856a-2a9e7434286b","738b5e11-1761-49f1-8a41-fc190f9a63b8","739aaaac-c424-4ea7-a084-62a6fc0438b0","75edde64-3589-424d-bfe1-714c4eaba019","76313c69-8ec7-49e3-a34e-ade26097284c","7646a5be-ae69-4d31-b576-64263ae5ff09","7692114d-2614-47fd-8716-0cd325a9f19f","76b4a655-0051-47c6-a683-c4c3f56e45fc","76c343f5-6955-4ba2-a435-36d55182d1dd","772b4f6b-dc2b-4247-8f55-f37608d75725","776912e7-fa16-4d71-b830-0a5d35f38297","77b88bb8-6bd9-4632-b937-89468fcb5e6a","77c8ea02-9aff-4007-ab11-99847a1834d3","77ea783b-adaa-47be-9918-ca2f161c5d9e","7869f14e-d1d5-4a99-bc2c-f3a0d63077a5","78732e7f-421d-43e8-8f43-341bb01e993e","7880b12e-948b-4f3a-bb0b-604e3dd66f78","78d37787-be3a-4ed3-94b8-e675f2beecf0","78f35064-c662-48ff-a2a9-d26f594500f5","78f5de3d-bcfb-40d3-985a-ff99c573c28c","79df5b20-9e04-4b71-b39a-3142306719f9","79f7e513-94c5-46c9-9df2-1f5d51feb5a6","7a3c4a9d-48db-474f-aeb6-8b4fa08ce6fa","7ab67bc5-1c52-40df-8db0-2bf254f334cf","7abc7b3d-c0cb-438f-b9a9-a1f785cb1c9b","7b42e33d-e4d2-4106-8150-50b3fac2ba7e","7bf0bc4a-75a8-463b-9e96-a8607fc93102","7c029c9c-ff40-467b-98c0-38ac601b98c3","7cee75b2-ca71-4d98-841d-796cbcedfb43","7e0c8a05-aa2b-49b9-9a87-b13d7810a320","7e3d29f4-0a66-42af-9b77-7e65fc04fda6","7e659905-5f87-4181-8fc8-59ab2138b7fc","7e68108b-ad0c-44bf-aace-8ee2240a2325","7f0a1a30-8bef-4297-b566-d5f6b4d277a1","7f4cc1dc-7785-4375-a37c-8b2aaae91945","7f8d3740-40e9-40d4-833e-8f191a43ed14","80784e7c-2939-4233-9953-87370f85a3ae","80b3c994-e943-406d-a02d-d7cc4ebc6bba","81368899-5fef-4f10-80ea-b282eca0f42f","81a585d9-abf8-41ff-b6f6-c9396d36906b","8221d15c-c993-4345-a6bb-6a7d215e3273","82f11c42-9d67-4833-9519-e165e6a7e9c4","83415cd2-7805-450b-be38-99ca0cbb4fea","836f371b-34f5-40e8-a806-e457841e5bc7","839e97b5-c04d-4088-af4e-fa64f4575e51","8490261d-4246-4232-b7fc-23204c14a7b5","849a217f-d532-4a7c-bcbf-d127641f6edf","855eabf3-1113-410c-b30c-41a94456e408","858bcecd-9010-49b9-aaa0-f9bd54a65724","87b61f89-c947-45a0-95a3-7a07b55e2c9a","886eae6e-ced2-4d94-96fa-9bb5385b06f4","8956b4c4-3703-433f-b147-a1f67e728017","899f42b3-2f7a-4d85-8883-ceae911473a9","89f8c7cf-6705-4ff7-8aa8-113c1400ffda","8a2d0438-6681-40e4-8786-04af3d4a169a","8a3fc29c-f5cb-49b9-aabf-a5fef97e7a7e","8a5328db-c55a-488d-b085-fcfa7be184ca","8ab4a950-c558-42fc-ad9b-ce72b7dff817","8b20beee-87c8-45f7-8d3f-088937724fb8","8b8d9fae-a2a8-425a-8b82-34aa8e3eef06","8bafc217-3d83-4551-b2e3-3494ec14b2f9","8c1482b0-9792-4c58-a075-26e8f485f78b","8c8f9a84-2126-4564-9ec9-554cc88e1c63","8c933f03-f1ec-4a82-ba32-b169e97e639b","8ca139d8-08a1-45d4-be9d-2ee5c9b3de43","8cf86c2b-f3f5-45e7-8fa5-da279f652e32","8cf9b48e-cf58-43a9-94ff-2d50846c3386","8d04a06f-06a7-410d-a714-3b8b96ee3319","8dc3bd34-4d12-4728-a53a-b5ae434d74b0","8dc5e0d9-1c8f-4d38-9915-40469988983d","8dd1b4d2-ccf0-498d-81e0-c9d755f5eb13","8e25b6dd-5292-4d0e-b8c6-3cf6678b0cd4","8e4ce9ff-c295-475b-b9fa-88ed65a84f35","8e862d50-8fa5-4b6e-af19-a161dc4c251d","8eae091d-8bd3-44d0-a083-6b4078303bc3","8f21ed59-a8c8-46fc-ac20-2b351fffd36c","8fee8302-39ca-43c3-b139-62e591559306","90520e73-5c7e-4735-a16d-f737e1a230cf","90a57c0e-fa61-45ef-955d-d296403967d5","91595b00-6233-48be-a012-1e87bd704aca","91890c11-b139-474d-b12d-6afd6b7e6aee","91be4db0-7cb3-4202-939b-cb7a26e90019","91e11224-b281-4d51-a960-c7804f6738f4","920abf92-da69-4ff0-9b4a-571e1567f254","9248aaae-57bb-4b30-87ab-f4dda6b96525","92724530-9c7a-44ab-9381-ee56bfccb641","92daaa39-cd2f-4c03-8f41-92d99d0a3366","92e3d45d-8c6e-430a-82d3-86f66286735d","930f3d56-d159-4a9d-a2c3-672feb10adce","937250fe-bcad-4ff8-9406-286a69db7e0a","93e5562a-3cb4-47c0-8270-9af79414f1c1","947702ca-d065-4368-9f26-f859d4642cb6","94de0250-53a6-45c8-85a7-a473f271102e","9526c2b3-f2a2-41ae-89d4-8d276193f43f","956fd08b-d403-4565-84b3-e3ca0132ea89","95d781a5-2f5e-499f-b210-c4a5c50a180c","95ef40f4-7d88-4fb6-bfdd-8d07c96e4ff8","9602f66f-1a77-486a-835f-ddb1d50e6a08","966ac118-6d94-4f3b-9873-7a2440ab92d9","96ad5cbb-b64e-4e18-9aa0-ac076d4b2448","96cb4d9d-4f2b-4f60-b48f-749747aa7c15","988bfa94-0c83-4057-a0c7-0ad885b8919c","98d84005-faac-4e02-9fea-40757b43cf03","99702ff6-e496-422a-aa62-ec933110acf7","99d0c827-4e12-4a44-b309-1b50539dc39e","9a15b06c-8a5c-4e19-887e-e7daf6f653b9","9a38509a-2b74-42a0-af91-ed453e463b95","9a5235cd-5d25-498d-8e36-7a7c0791f212","9ae96b4b-7568-4463-b26c-a567e4a418d7","9b0bfe70-e584-42f2-9a32-984c17ba6d1a","9b33841e-7006-41d4-98b0-313ab151c9ec","9b717e59-7f94-4ccb-8374-f65ea2dd9e58","9b982a48-7e67-496b-b24b-fa9d131f5bb0","9bdd8409-7309-4239-a0f0-39755506610a","9c010ca5-b609-4ae9-8c23-adf5723a9daa","9c0f350d-13ec-4e13-9c4c-1d6bfb9aa0b3","9d075fae-ecd8-44b2-ac24-087afb26a9fa","9d5ab443-b415-45e5-a9f7-539a5299bf27","9db3309e-2893-4a39-876f-fd68ea057e22","9db3bac6-81c9-4bb5-aca6-371cec8efa0d","9dcfcd37-7c54-415e-86d0-6763bd71e209","9e70c602-cb80-472b-9c8d-9625de084fe7","9f2c1082-43bb-41fe-be85-f7153d098eb4","9fc35243-3801-4c02-a8df-2ccf6ea71a17","a000777b-e8fe-4fd6-a455-01bc9056a873","a22426c4-914a-4e0b-a28a-b8573b63e320","a24e28a0-a10f-4324-b008-09564e85573e","a2722f0b-db7d-423a-a91d-c72ef595cc32","a2e22347-f0cb-4cfd-88a3-4f46a16e4946","a2f2b747-a8b8-454c-9f04-b30693f1ec1a","a35d9548-f495-43ef-af66-e13a84c1f12a","a3795f0c-e978-428f-b6b8-c226b58951c8","a39fc1e0-caf0-4cfa-bbf2-fea7ca32c00d","a3a5521a-f9c3-4996-af49-98aaf82afc04","a4369a59-5a39-40f7-b97b-763b575203aa","a45610b3-9e9b-4ef9-aab2-426f85a6cce3","a45827e8-d4b9-4a42-8516-22560568e678","a5b0a88d-7049-4206-8085-4a68ab0bfd81","a5df5731-c9ce-417a-ae07-0359f4e1a989","a5f9dab5-4b13-4a98-8a64-76e69f0ba511","a61c4c14-e45d-45a8-87c7-fec98d46ee79","a624d656-207d-4e73-b615-59e7cf64ad64","a63bc639-5518-4103-8290-c781a6f53f81","a6459577-6834-4f4e-ad7d-a506bef1d372","a64934a3-7eba-4a31-9e7a-dc3e8815d46c","a735e9b5-1231-4aa9-9eb3-c83037b849f2","a76f785d-1972-4bd6-8a43-848d51068712","a785f977-0635-4a20-ab8f-eab79659d16e","a796d1c4-71af-432c-bb1a-df00252554d0","a880c1ee-01e0-479f-a1c3-2739da8ac6b9","a9eebf59-25ec-448f-b7a6-df9a1ecad3a2","aa03a3b5-cdc3-40cc-bd45-69ad65809d2f","aa336b4a-7d69-43d1-b08e-8e1610721279","aa9f8662-8294-4924-a4c0-e26b709ea4a6","aaa212be-1db5-4493-86c8-c01d29348e31","ab1c5293-873e-469c-a538-de236467d0e6","ac1a989a-38d4-4225-a41f-37d54f2f42ae","ac28037a-461b-4fb3-9feb-d3eb739da995","ac928336-f534-4682-a952-c536a1b14e1e","ac97baa8-5e57-45b6-9c64-cb9ce4806294","acd6be3f-745c-41ad-95c9-1db66ba56be2","acf7b664-3e75-4018-81f6-2a14ab59f258","ae010a36-b802-473f-837f-3c1a68a19596","aedefd13-4a00-4b8c-b955-ced6e73b46fe","aeee2369-117c-41f7-a437-805b24d1406b","af9ffcc0-ca8a-43ad-8e9e-31e5b94dd6e6","afb31304-eff0-44f9-b240-b7fa631ea4ce","affd8e02-5bae-447a-8621-d8fcfeff7135","b047f821-e82f-437c-8f36-6fff0c59f8b0","b0559d67-e151-4c6b-b8eb-5e9b5603f487","b06bbd6e-eb0d-45fc-88ef-0e085d6505ef","b0b4e347-90ad-43c7-a236-3ee4d887f069","b0beccf0-eea9-4339-b6c5-00761551c193","b0da67fb-1cb2-4105-ab5c-b7c680b8116c","b22fb908-e616-48ce-a388-46eabe26221a","b294323b-d7a2-4d82-bf99-b388edcb7d32","b29cf026-521f-4345-a885-da27f7981759","b2d83856-2201-4c30-bfcf-9cab62545201","b300be80-6618-4284-b5c3-95c1ab373e6f","b345e3ba-a370-4fdf-855d-2f0707133706","b38e48ff-17c8-470c-ba8b-966da1777e77","b3a5eda4-6339-4303-97ef-c5a467585949","b3f9ffc8-8115-4858-bd71-deaca9889f72","b487e4c0-1135-46f4-807d-cab3f1743132","b4a728fd-e564-4a7c-9dde-e3e8b70c1f68","b59cd300-c4f3-4ba6-8018-134eaf6a399c","b5a4dfac-2a47-48be-8611-d7f69e261c60","b6189c28-8d64-4d54-b399-7cf2cb6e3cd5","b642de4b-9314-4fc7-8714-7567ed348766","b6549f83-e3da-4df2-a1e4-f01773607d56","b658883a-d0f2-4824-8176-ec03a8924824","b74648fc-587c-4d20-9432-58465bd7dca9","b7ea4e7c-c393-4ef3-9ce8-84f5199f44fe","b82c12c2-2ebf-470b-b0d2-92ccc5faa056","b92ec9f6-a56d-40c6-aee2-7d5e1524c985","b9b62f53-0fde-488b-bdac-986a870ff6cb","ba30bfc3-5aec-480d-a80a-fe71b098b14b","bb15b40c-9795-42ae-9f88-8b8023b6c010","bb695ab9-72dc-4b07-b42d-e2109a5254b6","bbeca27a-6c5b-40b9-83a4-a3a2096ff6f8","bbf69bc5-8ee3-4b17-a3b1-51e35dd2d0dc","bc6ea08d-7991-4a57-a1e3-abd508426970","bc7c07a5-d9a7-4fc5-ad03-572ab40f6a7d","bcddeb71-3109-4a08-852f-b437c0a0c4ab","bd07b50a-0bd7-49fa-9ada-96a8f96a62cc","bd081bbf-8e82-405c-a522-f826fa0a6e1d","bd4b4da4-83f6-4280-880b-b6033308f2a2","bdb63d4b-0bca-4b8e-bed0-0dc29ad0bac3","be02bac6-4e21-48d7-a7cc-50415c81f031","be0f315e-6a42-4913-af21-93eb50c66d63","be169f8c-6472-40ec-9b4a-0edcb63e9e2f","be2319a6-d089-4d13-8a7b-3552e654cdc5","bec6fced-62bb-4a99-9ea1-374056b5781b","bec8018f-a12c-4adf-9735-c2093298062d","bed99c19-6452-4258-8369-41d17387062a","bf35ed4f-fa34-4fd6-b7d8-3c4aeda1e9ea","bf964c1b-941f-4a02-895b-0608bddc1ce7","bff33e91-8e52-43f2-b8ae-603b456b08fc","bffca348-2af9-44bb-815f-f7f7240ac975","c0229fef-746c-417a-beb9-150f286da14a","c0a03261-6766-47e6-ba81-c6c58618939d","c0a612c4-b4ac-4dd2-a06e-92516599fafd","c0e4f4d9-6168-4f83-b632-c369d2d6c256","c1cf7cd5-3c25-4760-b783-36e7827154e2","c234458f-1b0a-47a2-9cee-b6920e1ad54e","c2a51829-8319-4271-93b2-a7a635b30e80","c3020976-1654-45c4-bbf1-972a22d79859","c3130653-6ca2-4d7c-ac58-7cfb9257278c","c3b28bdb-e0d1-4d24-8199-8cd7ac12c30f","c3ddcce6-2f0f-4450-9aac-58b89ddc2e50","c4555e99-7f95-4c76-914f-0a42d49975cd","c4a837f2-dbb0-435f-adf9-7632b97f94ab","c4ec37bf-80bd-4f51-a79e-9c20e4048a00","c5258f33-02c6-4b45-b4de-4429b4508924","c559fc49-54f3-426f-b2d2-525790a249a5","c727a648-3ad1-428e-902f-52ad6a6f1c4c","c8820e22-44ee-4ccf-a1fb-f93d98b8b494","c8a516f8-861b-4c3b-9d9b-0adc04ec689f","c8c61b0c-408a-4ba5-9a1c-5208b5f7f8d0","c96f9fb6-ef52-43f9-a458-8602a7c83333","c9c9ea23-93c5-4aae-9786-3b3c03a07778","ca98e0fb-5f07-40c8-9958-84379bcdc35c","cc8e63b9-f3d1-4d53-873e-7c2af8cfd2c7","cca2b9b7-9c12-488d-8f8b-540249d0d350","cd2f1d4f-562c-4a21-b3da-c84fae471104","cd86b167-3fc8-4e5a-9e21-b4ce5a7a05cd","cf1bec1a-72cd-4a1f-8386-a228fbbdc04d","cf258641-b73c-4813-8a23-da47cf79eca5","cfb83039-9a06-4d79-abcc-6f36eec6f29e","cfc571d7-d34f-4898-803a-f4a73c867f86","cff1e8ef-4856-46c0-a72c-83a8b4d34238","d0561d43-cda2-4497-ae19-b1968db179e0","d07d1982-56ff-47ef-87aa-62978f1fcf30","d0a2259b-9ee8-42d7-92c0-d9421dd196e5","d0c5cf64-9844-4b5b-8e6b-b97c50cce053","d0e6b214-520d-4830-8d73-09fd2fdd8e69","d1324c9b-9164-4536-98f0-abf5a67ffa51","d13bb767-1123-48d2-960f-b90b6db3f6ed","d1fe1dbb-4552-418f-b919-1e30261a2e1f","d20af588-2ce3-4e5a-9ab3-949401ead071","d2748f53-0d81-4656-8e4b-5f0128215879","d2814990-4c7a-44ae-8d76-157156aa79bb","d3a9df3b-b542-4915-96ac-0c9027f6870a","d3b7f1bb-b47d-4096-b17a-db0587f566c6","d3e979da-a83e-4ba8-b875-d358bc66678c","d4302a8a-573e-416e-a9f4-f27110cc994a","d4f54250-74a9-4f77-bf60-bf13585c1a1b","d5170ce9-2463-4fec-945b-6c2f23eb7e22","d59cb0b5-fd4f-4dde-a69f-7ca6aa12b89f","d61c6c6c-319f-4636-8482-26b6909f7b8e","d660512c-8ebc-4d65-9590-700894cbb5d8","d6a5ba11-3156-4a0c-958d-5756e18b767b","d714d196-8cbc-4b53-8219-21044a017bce","d7d7f6bf-051c-45a4-b19e-2a50bbd6398e","d7dc37c4-c96b-4682-9746-e1220cbc4a84","d851b88b-6ce6-4889-83c2-e191307bcee6","d894c61a-4062-442e-8ead-5197c3bffd00","d9553285-366e-41c1-9ccd-455497cbedae","d9d3088a-adf1-41b4-9115-6c68d5f8e855","da1218e0-8c75-4f8e-b317-051ce84949a5","daceddb4-5282-46cd-8e2b-cad5e5625a54","dad64d3a-1868-4404-8692-d3c54071140d","db6c8056-f155-434c-a4cb-a532a4707245","db9ee4f9-ca54-4cc1-ac2e-2a2ef5eea9ce","dbce0da1-9c0c-42b8-aac6-7925d663ee6b","dc1d6d81-d825-446c-a862-c9b517837801","dd5b22ec-847a-46bd-828e-be6059b4faec","ddcc2609-59ba-4eca-8b90-993cab90364a","de27b4bc-5e6d-4f0c-9116-df26042d9503","de46f610-fab8-4819-b86a-d1defed319a1","de6d4527-a88e-4001-b8a7-53db87784c8f","debfbf48-bb06-4405-a97b-8249dacdffa0","df18762d-9980-4344-9d4f-e9d2cd8e0456","df84bf1b-8698-4c3e-baa9-926f0efc6a12","e070e97c-142a-4d5d-ae89-c0c6d85a97ac","e08915c9-78ff-450b-a47f-0c9678d16bbd","e0bf27bd-ebd8-40bf-9e8a-8ccde26bd1ec","e0eac72f-915b-41a2-a9cf-1707b65d9ac9","e0fbcf00-be89-472e-af7d-495c4550d10d","e0fedd66-e547-492c-ad0d-9c7b527bdd17","e160cb2a-1d8a-47cb-b136-8347eaab67d7","e1d10d9c-8771-4870-aebf-e767d0fada32","e1e33a2f-0018-4278-83c4-50ed83f009c3","e2140fd0-4367-4ac6-b42c-7041b9f1d92e","e24d0c78-4df5-4cc9-8b9e-65b969c5babd","e306586a-427f-45b7-9e3b-cd9157cec07f","e32a5e25-8e85-474e-ab32-ab28898ac87a","e3a0c382-23c4-44a5-a689-1f65fed388b7","e3de0391-c658-4dab-bef1-2aaf4eae7720","e4f4b3e7-7c8e-42c9-895d-4c8b802ed4f7","e5fdeb2c-afb8-4850-bcdc-86283ffa3486","e62d51cd-0377-4896-bba1-dee62b9279dc","e67477a4-6878-4356-8037-807f41590ad1","e6cd2ccc-3148-4507-856d-55140c54d09d","e905b6c5-1874-4d3b-8181-bc4bfab73bd7","e906bdc0-3b04-46ed-a162-92a366319cbf","e91f9c5d-bad6-4c29-b755-d81aa704cf53","e9c266e3-d403-434a-b645-dcb9cf441680","ea01e610-43b8-44a3-9480-14f92f68a0b5","ea2e4498-a91e-48b0-b14f-a7917241160b","eba0c7c5-ed63-41a5-93e1-a979a6f983b9","ebbaf2e2-b4af-4a84-ab27-d8a6b40c9552","ec2a9aea-86f9-4324-a7d9-7530e1cdc54d","ec2bacc7-22b2-4f71-b7d7-bb4bb46d6eda","ec7661ef-9119-4fe3-8363-b0c3b1d75cd7","ed2cfa62-c972-4373-b405-a075697d009c","ed351e4f-7ee7-4e84-a69d-02b59cebd180","ed74e8a1-5636-4d96-aff4-4674494c5e00","ee9eea62-2bdf-4b71-8655-0ba275fc8adf","eee75629-86b4-40b0-884a-22646ebf6e27","eeecf096-87dd-4dcb-953f-700445bf3f3a","ef2d6fc9-ddad-4dd2-b218-afa1a5449b7e","ef57bbe1-8507-4284-8d08-6b10b7894f96","efd42c61-1e41-4df9-aa70-a39cc20dff51","efd86f2a-bd28-4731-838d-78e67be8b49e","f0578f26-1396-4e1d-9986-8fc6c55aeb66","f10e5b17-6099-445d-9a7b-484eeff7cea8","f12c5ae3-8c55-4bd9-a64f-3960d45c0563","f15e81c7-38fd-402b-bd49-68869fe7142c","f1c49677-840f-409f-8af2-033989f6b774","f23b716f-51b2-402a-9a69-de190d3f6411","f2562487-95fd-48ad-adb8-3f87d49f1584","f3448b8b-8baf-492a-a1d6-4bb676c43cab","f398f676-f079-44b9-a6c4-5a9d5dd6bbdc","f3d3de4f-dfef-4c04-a297-4fd90884087e","f3df2707-e262-470a-a91e-7e588da90ce6","f49aa320-797b-4608-acda-f68ef21d1c0d","f4cd8b2b-76f1-4444-8f6a-c904adf36d55","f52db5b6-59bb-4215-9bdb-ba3dde3e5e4b","f53ed206-8ec4-46a6-8603-c819682e1433","f5e8da7b-f565-403b-9603-5f53cd3be8fe","f670e5e4-721b-422a-b10e-09bb742cbc4b","f7919aa3-044d-42b2-800f-a6e3226efe77","f7b92adb-a384-4e03-8ba7-1e41b9fb2516","f7c81707-adf0-48fd-8720-25db4d21b0b2","f7f7921f-96cc-4174-a40d-ec96427a8c98","f8123a70-0c28-4e8b-9e13-d6b5c7eb54f4","f82b281f-d3c7-4eb8-9a10-b4808ca6cfcd","f849f726-c6a2-400d-9b90-fe050f8ef5eb","f8a3c4a0-892d-4e74-bb21-00786705766e","f8c2f901-7d7b-47ec-a3d4-96ddcbd9218c","f9369d0a-87c0-4c29-b43c-cd45c007f8d6","f96b4124-ebc2-443c-981d-9869b5a3fcf3","f9c4ab8b-9f84-4b92-a114-93b082c15080","f9cba2b8-d865-46e8-81f1-752598a0d729","fa2a8e84-2a04-444a-8551-5f2931f4a711","fa641d46-d002-4903-af72-e96971f558bc","fa6f05fa-30e4-4b2c-9641-8a5847b59d65","faca8395-8228-40ea-b638-000a494a8b55","fb839476-63ba-4e17-b97d-4bc282a85648","fc8c4d2d-416c-4b8b-b46d-0e11f0e8245d","fc9a66a1-367c-4035-a22e-00fab55be5a0","fd1b9e7c-09d0-4907-9f48-34289f3cd2cc","fe5f01e9-f85f-41e8-9527-88f76e7bfc02","fe7f4393-38f9-43b5-873b-58246183b874","fe9d36d3-9373-407c-91fd-975d8ee9e4fe","fea43ef7-99c5-40b6-9a59-9661b3b710cf","ff3ffe47-53a3-42ec-ae89-afc79793380d","ff68b640-e194-4894-b9c0-76ed619c764d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD2","DDE","DDF","DDH","DDI","DDJ","DDM","DDN","DDO","DDQ","DDS","DDT","DDU","DFT","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","JVC","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL02","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PELP","PF19","PF20","PGPX","PGRU","PIP","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC04","WC97","WC98","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"jace, the mind sculptor":{"name":"Jace, the Mind Sculptor","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Jace"]},"power":null,"toughness":null,"loyalty":"3","defense":null,"oracle_text":"[+2]: Look at the top card of target player's library. You may put that card on the bottom of that player's library.\n[0]: Draw three cards, then put two cards from your hand on top of your library in any order.\n[−1]: Return target creature to its owner's hand.\n[−12]: Exile all cards from target player's library, then that player shuffles their hand into their library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Dig","player":{"type":"Player"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":{"type":"Loyalty","amount":2},"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+2]: Look at the top card of target player's library. You may put that card on the bottom of that player's library.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"count":{"type":"Fixed","value":2},"position":{"type":"Top"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[0]: Draw three cards, then put two cards from your hand on top of your library in any order.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"destination":null},"cost":{"type":"Loyalty","amount":-1},"sub_ability":null,"duration":null,"description":"[−1]: Return target creature to its owner's hand.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZoneAll","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-12},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−12]: Exile all cards from target player's library, then that player shuffles their hand into their library.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"7f77a84e-5a4b-4834-aefa-3cecc175ae8e","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["0e606072-a3aa-4300-ba90-ec92a721fa76","3a1a1910-9587-481c-9e5c-5eb0c3b098c6","97c67e86-5aa5-4136-a15c-c0c5704e2b94","9d20e671-9b41-4591-b1ef-2a297411beb7","a5d1f66f-75b5-4a9b-8b98-f237f065de9c","c057dc0d-4017-4e60-9c5e-45fc569a8d31","c8817585-0d32-4d56-9142-0d29512e86a9","cbe639bb-5797-4bec-b55b-aed296337e92","e1fcd832-bbc6-4fb3-92f1-cd307fb0bca5","ec386bc3-137b-49b5-8380-8daff470f0bc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","A25","BLC","EMA","MED","PRM","SLD","V13","VMA","WWK"],"rulings":[{"date":"2020-08-07","text":"If the target player for Jace's last ability has no cards in hand, that player shuffles nothing into their library, and that player's library will remain empty. That player won't lose the game until they try to draw from the empty library."},{"date":"2020-08-07","text":"You draw three cards and put two cards back all while Jace's second ability is resolving. Nothing can happen between the two, and no player may choose to take actions."}],"rarities":["mythic"]},"jace, wielder of mysteries":{"name":"Jace, Wielder of Mysteries","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Jace"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"If you would draw a card while your library has no cards in it, you win the game instead.\n[+1]: Target player mills two cards. Draw a card.\n[−8]: Draw seven cards. Then if your library has no cards in it, you win the game.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mill","count":{"type":"Fixed","value":2},"target":{"type":"Player"},"destination":"Graveyard"},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Target player mills two cards. Draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":7},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-8},"sub_ability":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−8]: Draw seven cards. Then if your library has no cards in it, you win the game.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would draw a card while your library has no cards in it, you win the game instead.","condition":{"type":"OnlyIfQuantity","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}}}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"5277a68e-1ceb-4b40-8e10-3d0564f5d7be","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["1f13face-aa33-4f57-ad06-5313b4834e02","6adb7d73-4482-4930-8497-cffd169b57e2","6dece604-04f2-48ac-8e6c-ef850c0db190","79b2d33b-2689-4d03-b297-a196b376804d","802d126d-f56c-4990-ba85-9ecbe41f5c9a","d50eb8cf-dc8d-4c7e-bff7-db9254ff8a90"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PLST","PRM","PWAR","SLD","WAR"],"rulings":[{"date":"2019-05-03","text":"Follow the instructions in the order listed on Jace’s first loyalty ability: if you target yourself, you’ll put the top two cards of your library into your graveyard and then draw a card."},{"date":"2019-05-03","text":"If for some reason you can’t win the game (because your opponent controls Platinum Angel, for example), you won’t lose for having tried to draw a card from a library with no cards in it. The draw was still replaced."},{"date":"2019-05-03","text":"If the target player is an illegal target when Jace’s first loyalty ability tries to resolve, it doesn’t resolve. You won’t draw a card."},{"date":"2019-05-03","text":"If two or more players control Jace, Wielder of Mysteries and each player is instructed to draw a number of cards, first the player whose turn it is draws that many cards. If this causes that player to win the game instead, the game is immediately over. If the game isn’t over yet, repeat this process for each other player in turn order."},{"date":"2019-05-03","text":"If your library has fewer than seven cards in it while resolving Jace’s last ability, and Jace has already left the battlefield, you’ll draw as many cards as you can and then win the game before state-based actions would cause you to lose the game for trying to draw from an empty library."}],"rarities":["rare"]},"jackal pup":{"name":"Jackal Pup","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Jackal"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature is dealt damage, it deals that much damage to you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to you.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"993e41e6-0643-4a1f-8ada-b7a4aae486d9","metadata":{"source_printing_ids":["3707ab74-9aec-4d30-86e0-ffa5f72d5b4f","58dc5b2d-12a1-4eba-803e-0f0dfa290672","86c86925-a78f-4696-98aa-477a7602276b","9d8743b2-30e3-4d15-89fc-72974747aec5","bb02ff74-e73f-467e-ac26-429d279a8e95"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["A25","F01","PD2","PLST","PRM","TMP","WC98","WC99"],"rarities":["common","uncommon"]},"jenova, ancient calamity":{"name":"Jenova, Ancient Calamity","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Alien"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, put a number of +1/+1 counters equal to Jenova's power on up to one other target creature. That creature becomes a Mutant in addition to its other types.\nWhenever a Mutant you control dies during your turn, you draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put a number of +1/+1 counters equal to ~'s power on up to one other target creature. That creature becomes a Mutant in addition to its other types.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Mutant"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a Mutant you control dies during your turn, you draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"9370f6bf-d6a0-4c5b-828f-7229f563cc07","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["22dd493f-e481-4563-8f87-c5bdbfd54fdd","534f98ee-7bc2-44d6-b49f-f57c051807d5","9f80efa6-769f-4205-b69e-9cf0e78b7bcd"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"If Jenova dies at the same time as one or more Mutants you control, its last ability will trigger for each of those Mutants (including itself if it somehow became a mutant)."},{"date":"2025-06-06","text":"If Jenova isn't on the battlefield at the time its first ability resolves, use Jenova's power as it last existed on the battlefield to determine how many counters to put on the target creature."},{"date":"2025-06-06","text":"Use the power of the Mutant that died as it last existed on the battlefield to determine how many cards to draw with Jenova's last ability."}],"rarities":["rare"]},"joel, resolute survivor":{"name":"Joel, Resolute Survivor","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Survivor"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever a creature token dies, put a +1/+1 counter on Joel and draw a card. This ability triggers only once each turn.\nPartner—Survivors (You can have two commanders if both have this ability.)","non_ability_text":null,"flavor_name":null,"keywords":["Menace",{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Token"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature token dies, put a +1/+1 counter on ~ and draw a card. This ability triggers only once each turn.","constraint":{"type":"OncePerTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"64611260-c9f7-4375-b67a-f88fee6d3bff","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["713ab02f-cd48-420d-a2fe-ef460e6ce2d2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD"],"rarities":["mythic"]},"judge unworthy":{"name":"Judge Unworthy","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target attacking or blocking creature. Scry 3, then reveal the top card of your library. Judge Unworthy deals damage equal to that card's mana value to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Blocking"}]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target attacking or blocking creature. Scry 3, then reveal the top card of your library. ~ deals damage equal to that card's mana value to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9d687287-7b3f-48c8-b5df-0d7550b9ad66","metadata":{"source_printing_ids":["46b0f9cb-f848-460e-94cc-d85b23133d6e","ce06e910-e130-4975-92db-1399ff3d44b7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["FUT","TSR"],"rulings":[{"date":"2021-03-19","text":"Destroying a blocking creature won't cause any of the creatures it was blocking to become unblocked. They won't deal combat damage to the defending player or planeswalker (unless they have trample)."},{"date":"2021-03-19","text":"If the target creature is an illegal target by the time Judge Unworthy tries to resolve, the spell doesn't resolve. You don't scry 3 or reveal any card."}],"rarities":["common"]},"judgment of alexander":{"name":"Judgment of Alexander","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Prevent all damage that would be dealt to you this turn by sources your opponents control. Whenever damage from a creature is prevented this way, each commander creature you control deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Controller"},"scope":"AllDamage"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"eb226c0d-a71b-4f9c-9fce-47d61dcfa8f8","metadata":{"source_printing_ids":["2327bf49-348c-44e5-9a6b-97ef1c810079"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rarities":["rare"]},"kaervek the merciless":{"name":"Kaervek the Merciless","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever an opponent casts a spell, Kaervek deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, ~ deals damage equal to that spell's mana value to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"c7b72d38-0aa0-4e17-9dd5-9276d7cb21ec","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["298d3b70-f858-4138-97e4-1442a5b6afb6","444fa5a5-b5b0-4555-bd69-67c1c0cbf317","4e9a163e-7896-47bf-9b9b-dcf011402ce7","95c5bd95-b483-4dfb-9010-cfee47d22468","d9b8259d-0bfa-4327-ac91-157c0b9e7dfb","df111928-8f05-460c-989b-6cfc5cf5cd0f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2X2","ARC","DSC","SCD","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"Alternative costs, additional costs, and cost reductions don't change a spell's mana value. Its mana value is still based on its mana cost."},{"date":"2021-03-19","text":"An ability that triggers when a player casts a spell resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2021-03-19","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."}],"rarities":["rare"]},"kaervek's purge":{"name":"Kaervek's Purge","mana_cost":{"type":"Cost","shards":["X","Black","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the creature's controller.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature with mana value X. If that creature dies this way, ~ deals damage equal to the creature's power to the creature's controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"daa86c76-aacb-4244-9639-81f758c634b2","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Destroy target creature with mana value X. If that creature dies this way, Kaervek's Purge deals damage equal to the creature's power to the","line_index":0}],"metadata":{"source_printing_ids":["7a42ef95-92ec-40fe-ab30-a476f012a525"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["uncommon"]},"kaito, bane of nightmares":{"name":"Kaito, Bane of Nightmares","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Kaito"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"Ninjutsu {1}{U}{B} ({1}{U}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nDuring your turn, as long as Kaito has one or more loyalty counters on him, he's a 3/4 Ninja creature and has hexproof.\n[+1]: You get an emblem with \"Ninjas you control get +1/+1.\"\n[0]: Surveil 2. Then draw a card for each opponent who lost life this turn.\n[−2]: Tap target creature. Put two stun counters on it.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ninjutsu":{"type":"Cost","shards":["Blue","Black"],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Ninja"}],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Ninjas you control get +1/+1"}],"triggers":[]},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: You get an emblem with \"Ninjas you control get +1/+1.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Surveil","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"OpponentLostLife"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[0]: Surveil 2. Then draw a card for each opponent who lost life this turn.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"stun","count":{"type":"Fixed","value":2},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−2]: Tap target creature. Put two stun counters on it.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":4},{"type":"AddSubtype","subtype":"Ninja"},{"type":"AddType","core_type":"Creature"},{"type":"AddKeyword","keyword":"Hexproof"}],"condition":{"type":"And","conditions":[{"type":"DuringYourTurn"},{"type":"HasCounters","counters":{"type":"OfType","data":"loyalty"},"minimum":1}]},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, as long as ~ has one or more loyalty counters on him, he's a 3/4 Ninja creature and has hexproof."}],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"fa43077b-5d8b-4fb1-8dda-2a9185e6715e","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["14901700-881a-4c79-b162-aeeb1579757e","55a14f30-4ff9-4472-90a6-c3139f1c18e5","79d24cf8-107e-4b5b-a4f5-a7498647abef","a7927a69-62a9-4f69-923d-f651bb03a7b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"Although Kaito enters attacking when his ninjutsu ability resolves, he was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2024-09-20","text":"As you activate Kaito's ninjutsu ability, you reveal Kaito from your hand and return the attacking creature. Kaito isn't put onto the battlefield until the ability resolves. If Kaito leaves your hand before then, he won't enter at all."},{"date":"2024-09-20","text":"If an opponent lost life this turn and subsequently lost the game, Kaito's fourth ability still counts that player when determining how many cards to draw."},{"date":"2024-09-20","text":"If at least one creature in combat has first strike or double strike, you can activate Kaito's ninjutsu ability during the first-strike combat damage step. In that case, Kaito will deal combat damage during the regular combat damage step, even if he has first strike."},{"date":"2024-09-20","text":"Kaito enters attacking the same player, planeswalker, or battle the returned creature was attacking. This is a rule specific to ninjutsu; in other cases, when a creature is put onto the battlefield attacking, that creature's controller chooses which player, planeswalker, or battle it's attacking."},{"date":"2024-09-20","text":"Kaito's fourth ability cares whether opponents lost life this turn, not how their life totals changed. For example, an opponent who gained 2 life and lost 1 life in the same turn still lost life that turn."},{"date":"2024-09-20","text":"Kaito's second ability causes him to stop being a planeswalker during your turn as long as he has at least one loyalty counter on him. While he's a creature, damage dealt to him won't cause loyalty counters to be removed. You can still activate Kaito's loyalty abilities."},{"date":"2024-09-20","text":"One or more stun counters on a permanent create a single replacement effect that stops the permanent from untapping. That effect is \"If a permanent with a stun counter on it would become untapped, instead remove a stun counter from it.\""},{"date":"2024-09-20","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. If you wait until after the declare blockers step, because all combat damage is dealt at once, Kaito won't normally deal combat damage."},{"date":"2024-09-20","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."}],"rarities":["mythic"]},"kamahl's will":{"name":"Kamahl's Will","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one. If you control a commander as you cast this spell, you may choose both instead.\n• Until end of turn, any number of target lands you control become 1/1 Elemental creatures with vigilance, indestructible, and haste. They're still lands.\n• Choose target creature you don't control. Each creature you control deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1},{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Indestructible"},{"type":"AddKeyword","keyword":"Haste"},{"type":"AddType","core_type":"Creature"},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddSubtype","subtype":"Elemental"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become 1/1 Elemental creatures with vigilance, indestructible, and haste"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"They're still lands"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"a32860dd-e8df-4a3c-bdc2-948dcd07cf9a","modal":{"min_choices":1,"max_choices":1,"mode_count":2,"mode_descriptions":["Until end of turn, any number of target lands you control become 1/1 Elemental creatures with vigilance, indestructible, and haste. They're still lands.","Choose target creature you don't control. Each creature you control deals damage equal to its power to that creature."],"allow_repeat_modes":false,"constraints":[{"type":"ConditionalMaxChoices","condition":{"type":"Static","condition":{"type":"ControlsCommander","ownership":"Any"}},"max_choices":2,"otherwise_max_choices":1}],"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["51fe007f-fddf-4b3a-b336-0a88df95cb14","f5c98793-8bc0-419b-a1a9-7360f370bcdf"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"A land that becomes a creature because of the first mode will retain any other supertypes, card types, subtypes, and abilities it had."},{"date":"2020-11-10","text":"Even though the card is named after a specific character, controlling any commander will satisfy its condition."},{"date":"2020-11-10","text":"If some but not all of the targets become illegal, Kamahl's Will will resolve but have no effect on illegal targets. If the target of the second mode becomes illegal, no damage will be dealt."},{"date":"2020-11-10","text":"If you choose both modes, the effects happen in the listed order. The lands will become 1/1 creatures in time to deal damage to the target of the second mode."},{"date":"2020-11-10","text":"Once you've announced that you're casting a spell, players can't take any actions until you've finished doing so. Notably, opponents can't try to remove your commander to change how many modes you may choose."},{"date":"2020-11-10","text":"Once you've chosen both modes for the spell, it doesn't matter whether you continue to control a commander. This is true even if you somehow no longer control a commander as you finish casting the spell."},{"date":"2020-11-10","text":"The commander you control doesn't have to be your commander."},{"date":"2020-11-10","text":"There's no extra bonus if you control more than one commander."}],"rarities":["rare"]},"karplusan yeti":{"name":"Karplusan Yeti","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Yeti"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d84884-4a58-4187-aa5c-20b39b379590","metadata":{"source_printing_ids":["6ad95118-104c-41d4-a393-941e7b97fd8e","7dd9b214-d9fe-4c2e-b45b-7145ad98c408","f2a0535c-36d0-4e77-bf59-9c7a6c9b2ddb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["9ED","ICE"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."}],"rarities":["rare"]},"keeper of secrets":{"name":"Keeper of Secrets","mana_cost":{"type":"Cost","shards":["Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"First strike, haste\nSymphony of Pain — Whenever you cast a spell from anywhere other than your hand, this creature deals damage equal to that spell's mana value to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike","Haste"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"NotEquals","data":"Hand"},"description":"Whenever you cast a spell from anywhere other than your hand, ~ deals damage equal to that spell's mana value to target opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"23f86ee2-b1e3-45c2-bfd5-044919033922","metadata":{"source_printing_ids":["4fe408aa-14d9-4afd-abfe-b5156c5341b7","6277a423-3aae-4e9d-82d2-f3ca98f1cdad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rarities":["rare"]},"kefka, dancing mad":{"name":"Kefka, Dancing Mad","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"During your turn, Kefka has indestructible.\nAt the beginning of your end step, exile a card at random from each opponent's graveyard. You may cast any number of spells from among cards exiled this way without paying their mana costs. Then each player who owns a spell you cast this way loses life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"Opponent"},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ExiledBySource"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false,"target_selection_mode":{"type":"Random"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, exile a card at random from each opponent's graveyard. You may cast any number of spells from among cards exiled this way without paying their mana costs. Then each player who owns a spell you cast this way loses life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":{"type":"DuringYourTurn"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, ~ has indestructible."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"fe5690d3-547b-4ce9-8e94-77fdc0e9c5c6","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["21cfc161-11b8-4253-a872-3b08a13b6991","76f9dd01-0adb-4dbd-9930-fb6546e569ab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"Cards you choose not to cast this way (or can't cast this way) remain in exile."},{"date":"2025-06-06","text":"If a spell you cast has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2025-06-06","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, those must be paid to cast the spell."},{"date":"2025-06-06","text":"You cast the spells one at a time, choosing modes, targets, and so on. The last spell you cast will be the first one to resolve."},{"date":"2025-06-06","text":"You choose which spells to cast (if any) as Kefka's last ability resolves. You can't wait to cast them later in the turn. Timing restrictions based on their types are ignored."}],"rarities":["rare"]},"keldon flamesage":{"name":"Keldon Flamesage","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enlist\nWhenever this creature attacks, look at the top X cards of your library, where X is this creature's power. You may exile an instant or sorcery card with mana value X or less from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, look at the top X cards of your library, where X is ~'s power. You may exile an instant or sorcery card with mana value X or less from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card without paying its mana cost.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"0efedec3-b57c-4395-ad72-19d79560c99f","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Enlist\nWhenever this creature attacks, look at the top X cards of your library, where X is this creature's power. You may exile an instant o","line_index":0}],"metadata":{"source_printing_ids":["710d2a3c-63a7-4e33-9ae3-21fb6b3d8326","9dacef18-5c0d-4c99-8273-1f9c896552bf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"If Keldon Flamesage leaves the battlefield in response to its triggered ability, use its power as it last existed on the battlefield to determine the value of X."},{"date":"2022-09-09","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-09-09","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as a kicker cost. If the card has any mandatory additional costs, you must pay those to cast the spell."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["rare"]},"kindle the carnage":{"name":"Kindle the Carnage","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Discard a card at random. If you do, Kindle the Carnage deals damage equal to that card's mana value to each creature. You may repeat this process any number of times.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"},"random":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Discard a card at random. If you do, ~ deals damage equal to that card's mana value to each creature. You may repeat this process any number of times.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"repeat_until":{"type":"ControllerChoice"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6562f141-7f57-4218-b873-f2fc0211e124","metadata":{"source_printing_ids":["4b5dfa91-8f93-41b7-95e9-3374550f1617"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rulings":[{"date":"2006-05-01","text":"A creature that’s been dealt lethal damage by an iteration of this effect will remain on the battlefield and be dealt more damage by any further iterations. After you stop, all creatures that have been dealt lethal damage are put into their owners’ graveyards at the same time."},{"date":"2006-05-01","text":"A single regeneration shield is sufficient to save a particular creature, no matter how many instances of damage are on it."},{"date":"2006-05-01","text":"All the damage has the same source. However, each iteration of this process is a separate instance of damage. An effect that prevents damage the “next time” this card would deal it will prevent damage from only one iteration."},{"date":"2006-05-01","text":"Any damage prevention or regeneration abilities must be activated before Kindle the Carnage starts resolving in order to have any effect. You can’t wait to see which (if any) cards are discarded."},{"date":"2006-05-01","text":"You decide whether to repeat the process after each iteration. In other words, you discard a card, see what it is, Kindle the Carnage deals damage, then you decide whether to continue. If so, you discard a card, see what it is, Kindle the Carnage deals damage, then you decide whether to continue, and so on."}],"rarities":["uncommon"]},"knockout maneuver":{"name":"Knockout Maneuver","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control, then it deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Put a +1/+1 counter on target creature you control, then it deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7e4931f4-f518-4200-aad4-4ac8acf202e5","metadata":{"source_printing_ids":["9d218831-2a41-46a3-8e9d-93462cae5cab"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["SOA","TDM"],"rulings":[{"date":"2025-04-04","text":"If either creature is an illegal target as Knockout Maneuver resolves, the creature you control won't deal damage. If the creature you control is an illegal target, you won't put a +1/+1 counter on it even if it's still on the battlefield."},{"date":"2025-04-04","text":"You can't cast Knockout Maneuver unless you choose a creature you control and a creature an opponent controls as targets."}],"rarities":["uncommon"]},"kodama of the east tree":{"name":"Kodama of the East Tree","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Reach\nWhenever another permanent you control enters, if it wasn't put onto the battlefield with this ability, you may put a permanent card with equal or lesser mana value from your hand onto the battlefield.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}},"Reach"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}}},{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another permanent you control enters, if it wasn't put onto the battlefield with this ability, you may put a permanent card with equal or lesser mana value from your hand onto the battlefield.","constraint":null,"condition":{"type":"Not","condition":{"type":"PlacedByAbilitySource"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cb1afab6-b9c8-4b9c-840b-24106523a783","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2ee1d489-0980-444e-8b07-107be791b76e","896f357e-38e6-4259-91bc-1c2e7119d1d5","af5105ee-09e2-4344-ab39-00f0e9034c47"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC","CMR","PRM"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If a permanent or a permanent card in your hand has {X} in its mana cost, {X} is considered to be 0."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["rare"]},"kozilek's command":{"name":"Kozilek's Command","mana_cost":{"type":"Cost","shards":["X","Colorless","Colorless"],"generic":0},"card_type":{"supertypes":[],"core_types":["Kindred","Instant"],"subtypes":["Eldrazi"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose two —\n• Target player creates X 0/1 colorless Eldrazi Spawn creature tokens with \"Sacrifice this token: Add {C}.\"\n• Target player scries X, then draws a card.\n• Exile target creature with mana value X or less.\n• Exile up to X target cards from graveyards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Eldrazi Spawn","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"types":["Creature","Eldrazi","Spawn"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"owner":{"type":"Player"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice ~: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"2f2c549d-0293-4b9d-b9a8-ff392800f3a5","modal":{"min_choices":2,"max_choices":2,"mode_count":4,"mode_descriptions":["Target player creates X 0/1 colorless Eldrazi Spawn creature tokens with \"Sacrifice ~: Add {C}.\"","Target player scries X, then draws a card.","Exile target creature with mana value X or less.","Exile up to X target cards from graveyards."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"related_token_ids":["05897422-e2c4-5f20-93af-97fe0ba44515"],"source_printing_ids":["92585587-cfdc-406a-9114-4f6dd8802c37"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"If a creature has {X} in its mana cost, X is 0 when determining its mana value."},{"date":"2024-06-07","text":"If all of Kozilek's Command's targets are illegal as it tries to resolve, it will do nothing. If at least one target is still legal, it will resolve and do as much as it can."},{"date":"2024-06-07","text":"Kindred is a card type that allows noncreature cards to have creature types. For example, Echoes of Eternity is an Eldrazi (although not a creature) while on the battlefield and an Eldrazi card (although not a creature card) in zones other than the battlefield."},{"date":"2024-06-07","text":"While it appears only on cards that already have other card types, kindred is a card type and will be counted by effects that refer to the number of card types among cards in a zone."}],"rarities":["rare"]},"krark's thumb":{"name":"Krark's Thumb","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If you would flip a coin, instead flip two coins and ignore one.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"CoinFlip","execute":{"kind":"Spell","effect":{"type":"FlipCoins","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"win_effect":null,"lose_effect":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would flip a coin, instead flip two coins and ignore one.","condition":null,"valid_player":"You"}],"color_override":null,"scryfall_oracle_id":"a97c8482-775c-4f11-9872-25b4f9bfcb1a","metadata":{"source_printing_ids":["78a5d49a-747e-4ec8-a20a-ca917c315774","9f63277b-e139-46c8-b9e3-0cfb647f44cc","d011d66d-7d27-4305-8a1b-7b5c24169769"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MRD","PLST","SLD"],"rulings":[{"date":"2004-10-04","text":"If you and your opponent both flip at the same time, you can see your opponent's result before choosing which result to keep."},{"date":"2019-01-25","text":"If an effect tells you to flip more than one coin at once, this replaces each individual coin flip. For example, if an effect tells you to flip two coins, you don't flip four coins and ignore any two; you flip two coins, flip two coins, and then ignore one flip from each pair of flips. You will know the results of all simultaneous flips before choosing which to ignore."}],"rarities":["rare"]},"krark-clan ironworks":{"name":"Krark-Clan Ironworks","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice an artifact: Add {C}{C}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"count":1},"sub_ability":null,"duration":null,"description":"Sacrifice an artifact: Add {C}{C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"68e1f7e0-a9b3-437f-8086-0c0cb85f2880","metadata":{"source_printing_ids":["8b85524c-76dd-46cb-b716-2d954f329bbb","c60174d6-1f9d-4870-b3db-34d6fcb3f6ab","d43f43f4-5551-4fe8-bff9-c72ad76008fa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"banned","oathbreaker":"legal","vintage":"legal"},"printings":["5DN","MB2","SLC","WC04"],"rarities":["uncommon"]},"krosan verge":{"name":"Krosan Verge","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped.\n{T}: Add {C}.\n{2}, {T}, Sacrifice this land: Search your library for a Forest card and a Plains card, put them onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Land",{"Subtype":"Forest"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Plains"}],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":2},"reveal":false,"selection_constraint":{"type":"MatchEachFilter","filters":[{"type":"Typed","type_filters":["Land",{"Subtype":"Forest"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land",{"Subtype":"Plains"}],"controller":null,"properties":[]}]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{2}, {T}, Sacrifice ~: Search your library for a Forest card and a Plains card, put them onto the battlefield tapped, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"d9a10971-f32b-4978-952d-fed0a5bc9e36","metadata":{"source_printing_ids":["00a8776a-58f2-4a42-8919-2dd255f3f577","00a9814a-51f7-43b4-8835-91309b0c9d31","083fd5cb-0a26-4549-b054-3148d92e0ce9","0992a101-775e-4950-b4be-1b2dec96674f","15f70ddb-3b08-44fb-8060-37e429a15feb","19fc5bec-f877-430c-8e83-e6c5fe97f3c4","22bf947c-41c0-44b1-a9bb-f1327a4b6dd1","5ca98bdb-8e5f-439f-8c5a-3562c268e767","79ca6f07-7a41-464e-814f-eeaae048d95d","7b5ca583-38f2-4692-a29c-326510be5bb8","81e39f87-86ad-4960-afb9-b9328be2a26b","8d6adf14-e1ee-4248-bad2-67f209e686f6","95f96865-2dac-4011-9b3e-e2e7d962a9c5","bae25abc-22c2-436d-9e08-f123543a0911","d94c0ed8-a4f0-48ab-809e-5976fd87b97a","dabcee54-dda3-4208-81a8-e1ae3f79acf5","ea793198-7768-4844-98d2-cc6fba11a32d","f0c6047f-c246-4c9c-bee0-de2d5f13d475","f11d1a77-db1f-4ca0-a8ad-de85bc05b1dc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ARC","C16","C17","C18","C19","C20","CMM","DMC","JUD","MIC","MKC","MOC","ONC","OTC","PC2","PCA","PLST","PRM","PZ1","WC03","WOC","ZNC"],"rarities":["uncommon"]},"kutzil's flanker":{"name":"Kutzil's Flanker","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen this creature enters, choose one —\n• Put a +1/+1 counter on this creature for each creature that left the battlefield under your control this turn.\n• You gain 2 life and scry 2.\n• Exile target player's graveyard.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Put a +1/+1 counter on ~ for each creature that left the battlefield under your control this turn.","You gain 2 life and scry 2.","Exile target player's graveyard."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"mode_abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"ZoneChangeCountThisTurn","from":"Battlefield","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Exile","target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ba557e19-a409-4c02-a9ac-a8fb77762e43","metadata":{"source_printing_ids":["685b735e-52a6-4fd6-a12e-d059c13d4afc","d1201811-54ab-4c4e-b6e1-19b0d07e5ede"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rarities":["rare"]},"laboratory maniac":{"name":"Laboratory Maniac","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"If you would draw a card while your library has no cards in it, you win the game instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Draw","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If you would draw a card while your library has no cards in it, you win the game instead.","condition":{"type":"OnlyIfQuantity","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Library","card_types":[],"scope":"Controller"}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}}}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"aa286dd5-aa19-446d-9003-684d81eb57ca","metadata":{"source_printing_ids":["1e9e13cf-4cb4-41f3-88e0-6836a16e905b","27a15b64-ea6a-4234-b26c-9dd3bdc14b98","2e1c7054-d6a7-4962-804d-c470bb8e39d3","39b475ec-e63c-4fb2-b83e-b1c858003137","51b080d5-ae4b-4d5e-acf2-c51695d8750a","5840b48c-7a14-481e-9d21-0c68aee16020","608567fd-9f94-4058-831a-77cb6019ef02","7a5be94c-08b8-4964-a79d-e22ea6e94be8","809205f3-acf5-4244-b360-09ce4ba76795","8b7cc0cc-3414-40b9-91da-80a435a457fc","d15bd831-aa75-42c1-905c-6e8cc644c7fc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","INR","ISD","PLST","SLD","TSR","UMA"],"rulings":[{"date":"2021-03-19","text":"If for some reason you can't win the game (because your opponent has cast Angel's Grace this turn, for example), you won't lose for having tried to draw a card from a library with no cards in it. The draw was still replaced."},{"date":"2021-03-19","text":"If two or more players each control a Laboratory Maniac and each player is instructed to draw a number of cards, first the player whose turn it is draws that many cards. If this causes that player to win the game instead, the game is immediately over. If the game isn't over yet, repeat this process for each other player in turn order."}],"rarities":["uncommon","rare","special"]},"lagonna-band storyteller":{"name":"Lagonna-Band Storyteller","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Centaur","Advisor"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you may put target enchantment card from your graveyard on top of your library. If you do, you gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"Typed","type_filters":["Enchantment"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"count":{"type":"Fixed","value":1},"position":{"type":"Top"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may put target enchantment card from your graveyard on top of your library. If you do, you gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0d208c1e-c273-437f-9aea-136400e450e1","metadata":{"source_printing_ids":["c3a87498-2c2c-411a-aa71-d594b2c6cb26"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["THB"],"rulings":[{"date":"2020-01-24","text":"If a card in a player’s graveyard has {X} in its mana cost, X is considered to be 0."}],"rarities":["uncommon"]},"lammastide weave":{"name":"Lammastide Weave","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana value.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardName","persist":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana value.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"74250f3e-ad88-486f-a10a-90d9a2f0097f","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Choose a card name, then target player mills a card. If a card with the chosen name was milled this way, you gain life equal to its mana val","line_index":0}],"metadata":{"source_printing_ids":["667fd7ab-de75-48e7-8d4b-a96130ae4666"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LRW"],"rarities":["uncommon"]},"lathiel, the bounteous dawn":{"name":"Lathiel, the Bounteous Dawn","mana_cost":{"type":"Cost","shards":["Green","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Unicorn"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nAt the beginning of each end step, if you gained life this turn, distribute up to that many +1/+1 counters among any number of other target creatures.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}}},"distribute":{"type":"Counters","data":"P1P1"},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, if you gained life this turn, distribute up to that many +1/+1 counters among any number of other target creatures.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeGainedThisTurn","player":{"type":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"d3c56fc4-3611-41b1-952e-4c5311b1510b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["00e84208-b622-424d-b9b7-2f093e75c593","29d3484f-abd1-43fe-99f8-e0fa0a7b6692","4dfebabf-64b7-4bf8-adbd-838807c05cb0","913752eb-b446-41f8-9914-f78f981b042b","c27205fe-136a-4d3c-88f3-ae83af3ebd42","fb721716-1027-4c2c-a156-30fb6a939e82"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMR","MUL","PRM"],"rulings":[{"date":"2020-11-10","text":"As each end step begins, if you haven't gained life that turn, Lathiel's triggered ability won't trigger at all. If it does trigger, you choose the targets and how the +1/+1 counters will be distributed as you put the ability on the stack. Each target must receive at least one +1/+1 counter."},{"date":"2020-11-10","text":"Gaining more life in response to the triggered ability won't change how many counters will be distributed, nor will it change the distribution."},{"date":"2020-11-10","text":"If some, but not all, of the creatures are illegal targets as the triggered ability tries to resolve, the original distribution of counters still applies and the counters that would have been put on illegal targets are lost. If all of the creatures are illegal targets, the ability won't resolve."},{"date":"2020-11-10","text":"The triggered ability will consider the total amount of life you've gained that turn, not how your life total has changed. For example, if you start the turn at 10 life, then gain 5 life, and then lose 7 life, you'll distribute five +1/+1 counters, even though your life total is now lower than it was at the beginning of the turn."},{"date":"2020-11-10","text":"You may choose no targets if you want. In that case, no +1/+1 counters are put on any creature."}],"rarities":["rare"]},"lavinia, azorius renegade":{"name":"Lavinia, Azorius Renegade","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Each opponent can't cast noncreature spells with mana value greater than the number of lands that player controls.\nWhenever an opponent casts a spell, if no mana was spent to cast it, counter that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"ProhibitActivity","source":0,"affected_players":{"type":"OpponentsOfSourceController"},"expiry":{"type":"EndOfTurn"},"activity":{"type":"CastSpells","spell_filter":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, if no mana was spent to cast it, counter that spell.","constraint":null,"condition":{"type":"ManaSpentCondition","text":"no mana was spent to cast it"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"81ba3a33-0e04-4f68-9a42-1dd717733b57","brawl_commander":true,"is_commander":true,"parse_warnings":[{"type":"SwallowedClause","detector":"DynamicQty","description":"Each opponent can't cast noncreature spells with mana value greater than the number of lands that player controls.\nWhenever an opponent cast","line_index":0}],"metadata":{"source_printing_ids":["0010b841-c857-4335-aac3-d3b4bab00c7b","197bf3f4-c0df-4082-97a1-902ceabbdd3f","4a234375-c9cc-4471-9993-1f775950a056","4bee8ea6-8903-4bed-977b-b6c2cd0126f9","a00c0cbc-e2e5-43bf-bfaa-355229181393","b96ef600-a96c-4563-bc4e-157ea62d14d4","c497d496-1232-4614-93b0-9864fa93c29f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MB2","PRM","PRNA","RNA","RVR","SLD","TSR"],"rulings":[{"date":"2021-03-19","text":"Effects that modify or replace the cost to cast a spell (such as flashback or casting a spell without paying its mana cost due to suspend) don't affect the spell's mana value, so they won't change whether Lavinia's first ability restricts that spell from being cast."},{"date":"2021-03-19","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."},{"date":"2021-03-19","text":"If an effect allows a player to cast a spell without paying its mana cost, that player can't choose to cast it and pay its mana cost unless another rule or effect allows that player to cast it that way. However, if that spell also has additional costs that require mana, paying that mana will stop Lavinia's last ability from triggering."},{"date":"2021-03-19","text":"Players may cast spells that they know Lavinia's second ability will counter. Any abilities that trigger when spells are cast will trigger and resolve if appropriate, and any effects that count spells cast will count those spells if appropriate."}],"rarities":["rare","special"]},"lecturing scornmage":{"name":"Lecturing Scornmage","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warlock"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Repartee — Whenever you cast an instant or sorcery spell that targets a creature, put a +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[{"type":"Targets","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an instant or sorcery spell that targets a creature, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"29c23fd7-0ac4-46af-8ecd-92b726575252","metadata":{"source_printing_ids":["ad07091e-8c24-43af-8ce8-031847bcaf30"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["SOS"],"rarities":["uncommon"]},"leyline of the void":{"name":"Leyline of the Void","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this card is in your opening hand, you may begin the game with it on the battlefield.\nIf a card would be put into an opponent's graveyard from anywhere, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"BeginGame","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"If this card is in your opening hand, you may begin the game with it on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Owned","controller":"Opponent"}]},"description":"If a card would be put into an opponent's graveyard from anywhere, exile it instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"f4e32fc1-1b8d-441e-8e76-71f19f98e925","metadata":{"source_printing_ids":["04d5d429-e0c6-42cc-a477-da7dabb1c295","186eea73-46c5-4532-ac94-326db7d6f0cb","37dfe8b8-b39e-4e70-9e5b-be42c93b4f70","9a6b4431-7f2f-4dea-ba90-ea80d56b39bd","aeaa3aff-608d-4723-bb7c-8daedebe9f36","b30a559e-79f9-479e-8ef1-65fb91b9507d","e012d4f3-c387-4910-981b-7532fd355296"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","GPT","M11","M20","MB2","PDSK","PM20","TSR","WOT"],"rulings":[{"date":"2024-09-20","text":"A player's \"opening hand\" is the hand of cards the player has after all players have taken mulligans. If players have any cards in hand that allow actions to be taken with them from a player's opening hand, the starting player takes all such actions first in any order, followed by each other player in turn order. Then the first turn begins."},{"date":"2024-09-20","text":"If your opponent discards a card while you control Leyline of the Void, abilities that check whether a card is discarded (such as Hollow One, or a madness ability of the discarded card) still work, even though that card never reaches that player's graveyard. In addition, spells or abilities that check the characteristics of the discarded card can find that card in exile."},{"date":"2024-09-20","text":"Tokens can still die while Leyline of the Void is on the battlefield."},{"date":"2024-09-20","text":"While Leyline of the Void is on the battlefield, nontoken creatures your opponents control won't die. They'll be exiled instead. Abilities that would trigger when those creatures die won't trigger."}],"rarities":["rare","special"]},"lie in wait":{"name":"Lie in Wait","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target creature card from your graveyard to your hand. Lie in Wait deals damage equal to that card's power to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to your hand. ~ deals damage equal to that card's power to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"4dc0831a-0eb1-4f7d-9591-6e670e180116","metadata":{"source_printing_ids":["96fff22c-282b-4849-82ce-890013b53262"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TDM"],"rulings":[{"date":"2025-04-04","text":"Use the power of the card in the graveyard to determine how much damage Lie in Wait deals to the target creature."},{"date":"2025-04-04","text":"You can’t cast Lie in Wait unless you choose a creature card in your graveyard and a creature on the battlefield as targets."}],"rarities":["uncommon"]},"life":{"name":"Life","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"All lands you control become 1/1 creatures until end of turn. They're still lands.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"modifications":[{"type":"SetPower","value":1},{"type":"SetToughness","value":1},{"type":"AddType","core_type":"Creature"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become 1/1 creatures"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"They're still lands"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"All lands you control become 1/1 creatures until end of turn. They're still lands.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"d476f4b3-db63-4756-ab76-4b35f63c2825","metadata":{"source_printing_ids":["2424f2c4-366b-42cf-bf4b-a8a5bfdd2c4b","7ab75cdb-93a1-4f78-b404-37566295c321","e16d52ca-f8de-4852-9bff-9d208e5f678f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["AA2","APC","DDJ","DMR","F06","PRM"],"rulings":[{"date":"2022-12-08","text":"A noncreature permanent that becomes a creature can attack, and its {T} abilities can be activated, only if its controller has continuously controlled that permanent since the beginning of their most recent turn. It doesn't matter how long the permanent has been a creature. Notably, if you turn a land into a creature on the turn it entered the battlefield, you won't be able to tap it for mana."},{"date":"2022-12-08","text":"A split card's characteristics are a combination of its two halves while it is not on the stack. For example, Assault // Battery has a mana value of 5 while it is in your library. If an effect allows you to search your library for a card with mana value 4 or less, you can't find Assault // Battery."},{"date":"2022-12-08","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one of those names, but not both."},{"date":"2022-12-08","text":"Each split card is a single card. For example, if you discard a split card, you've discarded one card, not two. If an effect counts the number of sorcery cards in your graveyard, Assault // Battery counts once, not twice."},{"date":"2022-12-08","text":"If an effect allows you to cast a spell with certain characteristics, consider only the characteristics of the half you're casting. For example, if an effect allows you to cast a sorcery spell with mana value 2 or less from among cards in your graveyard, you could cast Assault this way, but not Battery."},{"date":"2022-12-08","text":"If you copy a spell that's half of a split card, the copy copies that same half. For example, if you copy Assault, the copy is also Assault, not Battery."},{"date":"2022-12-08","text":"Lands that become creatures retain any other supertypes, card types, subtypes, and abilities they have."},{"date":"2022-12-08","text":"Split cards have two card faces on a single card. The characteristics of the half you didn't cast are ignored while the spell is on the stack."},{"date":"2022-12-08","text":"To cast a split card, choose one of its halves to cast. There's no way to cast both halves of this split card."}],"rarities":["uncommon"]},"lifeblood hydra":{"name":"Lifeblood Hydra","mana_cost":{"type":"Cost","shards":["X","Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Hydra"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Trample\nThis creature enters with X +1/+1 counters on it.\nWhen this creature dies, you gain life and draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"gain","description":"gain life"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life and draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"CostXPaid"}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with X +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b14d05c0-fe10-4079-a90e-0aea1a8fd375","metadata":{"source_printing_ids":["2b726c03-07e8-4a9b-bdac-dc50218626a3","3431a77c-2027-406b-9230-5d0f8837af62","4d01469a-d085-4797-95ba-b2877c039469","5514bc19-5b1b-420b-ab43-fde15a4ee446","a7b51f51-45ee-4b73-9550-c1104b0eb628"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C14","CMA","CMM","SOC"],"rulings":[{"date":"2014-11-07","text":"Use Lifeblood Hydra's power when it died (including any +1/+1 counters it had) to determine how much life to gain and how many cards to draw."}],"rarities":["rare"]},"lightning bolt":{"name":"Lightning Bolt","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Lightning Bolt deals 3 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 3 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4457ed35-7c10-48c8-9776-456485fdf070","metadata":{"source_printing_ids":["0277c0b1-da97-49c1-a539-7fbaa1f77419","02e20655-321c-4194-ab72-b4a5473238d1","0f29ea1f-a226-4ec4-8297-109e2f2b5c69","24484578-7885-4125-b95f-e677d970a5a1","27740ea5-79c8-420f-bc49-6d5eac58dac5","310de1ef-f1b6-4b61-9d6c-6b70382a7f95","32a180dd-9641-4546-8940-9b21084f0c71","3c738171-d0dc-4cc2-8af8-1d306143db37","435589bb-27c6-4a6d-9d63-394d5092b9d8","45184cd7-b037-4a85-a063-e622ca928d17","4dbd1cd7-521d-4a59-af53-e5cae451712f","4f43c378-9e6a-4ece-9c24-5dc08c977746","54199d7c-02f8-4ff0-9e43-e7bf66ef9715","54be73dd-cb3b-411b-8f48-d12ca5183dee","5a763474-5ce9-48cc-aaf8-8ca363df4430","5fbb6751-1072-4fc0-8b54-836d05950914","677da834-7f4a-4f60-9151-de7ddcf29622","6881d7c8-5bb7-4f8c-9f03-50fb1309d9c8","6ab06973-6440-4b12-8947-8c412500fa41","6fb94c1b-8002-4d79-add0-c4dfef9019ee","719d571c-0740-4212-86c2-e9ef38516f6c","77c6fa74-5543-42ac-9ead-0e890b188e99","9521375e-0bc1-45ef-b513-6d332a25f9d2","9809473d-f793-476f-ae7e-e535b6725d65","988cd919-146e-4212-b0e4-146b87f806bd","996a81ae-0c2d-4e74-b018-5f0ec0fcfbd3","a6de74d2-0668-49c6-a385-bf706bfed8f7","ae5f9fb1-5a55-4db3-98a1-2628e3598c18","b5d3dcab-2260-479d-9ef6-dfb92d4f6061","bde26955-6de3-4212-9e1a-5e11f73ebf44","c3eb3895-b64c-46ab-b704-3c46963920ba","c69f668b-cf28-495a-bbe1-24e9d0089fa1","c8c8390f-4072-454f-8dc4-174919187a47","cb9b9a9d-ae4c-4e04-bf9d-cae48f01292c","ccee0b4c-0cb0-4c0f-8ddc-bc74b8b97273","ce711943-c1a1-43a0-8b89-8d169cfb8e06","d573ef03-4730-45aa-93dd-e45ac1dbaf4a","dc12105d-7536-429b-9510-4f56bfc0c497","df77bf7d-546a-416b-a2fe-8038a4125af5","e3285e6b-3e79-4d7c-bf96-d920f973b122","e768c957-3a1f-42f5-853a-96942f645df5","edd88c4f-58bd-4920-b41f-037462b54915","f11b8d24-375d-40dc-8497-c1ee779e156a","f29ba16f-c8fb-42fe-aabf-87089cb214a7","f58dba4f-1abb-47a3-a684-29c32bab95c0","fc8f431d-b7eb-4848-99dd-a5f896248145","fcf2ea50-44af-46d7-80c9-36fc18606748","ff1b8fc5-604a-4449-a73d-861e53642a70"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","2X2","30A","3ED","4BB","4ED","A25","ATH","BTD","CED","CEI","CLB","CLU","E01","FBB","FCA","GN3","HBG","J21","JGP","JMP","LEA","LEB","M10","M11","ME1","MM2","OLGC","P09","P10","PD2","PF19","PF25","PLST","PRM","PTC","PW26","SLD","SLP","STA","SUM","TD0","TLE"],"rarities":["common","uncommon","rare","mythic"]},"liliana, dreadhorde general":{"name":"Liliana, Dreadhorde General","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Liliana"]},"power":null,"toughness":null,"loyalty":"6","defense":null,"oracle_text":"Whenever a creature you control dies, draw a card.\n[+1]: Create a 2/2 black Zombie creature token.\n[−4]: Each player sacrifices two creatures of their choice.\n[−9]: Each opponent chooses a permanent they control of each permanent type and sacrifices the rest.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Token","name":"Zombie","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Zombie"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":null,"description":"[+1]: Create a 2/2 black Zombie creature token.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":2}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each player sacrifices two creatures of their choice.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},{"kind":"Activated","effect":{"type":"ChooseAndSacrificeRest","categories":["Artifact","Battle","Creature","Enchantment","Land","Planeswalker"],"chooser_scope":"EachPlayerSelf","choose_filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"sacrifice_filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-9},"sub_ability":null,"duration":null,"description":"[−9]: Each opponent chooses a permanent they control of each permanent type and sacrifices the rest.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5e958212-6a5b-4288-8d31-f1572619d7dc","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["87201137-39ed-586a-985a-90821d3de996","bdd2e8d4-e586-513b-a7d4-399f1417b85b","ce24f27b-16b5-596b-b810-805a9384991b","e4911e26-9c57-527c-a129-d01d7cce54c2","e8918ec2-32fe-5ef5-a5aa-5c578794d5f3"],"source_printing_ids":["06bcf9ac-f0f7-405b-960b-ebf15b2640a7","199e3667-33be-415f-8f10-1c42a78d7637","4b3c833d-b03e-4aee-8f62-1828081511ff","7a097413-b77c-45e8-a4ac-5b2dc1d34e16","ba461127-2220-4274-81cb-423a1700c9eb","cb28d217-795e-4320-a032-cd713f7ecc8a","d75ebba8-34ca-47a0-bf13-8318ad73b343"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","PFDN","PRM","PWAR","PWCS","RVR","SLD","WAR"],"rulings":[{"date":"2024-01-12","text":"As Liliana's last ability resolves, the next opponent in turn order (or, if it's somehow an opponent's turn, that opponent) makes all of their choices for it, then each other opponent in turn order does the same, knowing the choices made before them. Then all the unchosen permanents are sacrificed at the same time."},{"date":"2024-01-12","text":"As Liliana's second loyalty ability resolves, first the player whose turn it is chooses two creatures they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen creatures are sacrificed at the same time. If any player can choose only one creature, that player does so."},{"date":"2024-01-12","text":"If Liliana dies at the same time as one or more creatures you control, her first ability triggers for each of those creatures."},{"date":"2024-01-12","text":"If Liliana somehow becomes a creature and dies, her first ability will trigger."},{"date":"2024-01-12","text":"The permanent types are artifact, creature, enchantment, land, and planeswalker. Supertypes, like legendary, aren't permanent types."},{"date":"2024-01-12","text":"While making choices for Liliana's last ability, if a permanent has more than one permanent type, it can count for any of them. For example, you could choose an artifact creature as the artifact you're sparing, another creature as the creature, and an enchantment creature as the enchantment. Similarly, you could choose an enchantment creature as both the creature and the enchantment that you're sparing, even if you control another creature and/or another enchantment."}],"rarities":["mythic"]},"liliana, waker of the dead":{"name":"Liliana, Waker of the Dead","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Liliana"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Each player discards a card. Each opponent who can't loses 3 life.\n[−3]: Target creature gets -X/-X until end of turn, where X is the number of cards in your graveyard.\n[−7]: You get an emblem with \"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":3},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},{"type":"ScopedPlayerMatches","filter":{"type":"Opponent"}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[+1]: Each player discards a card. Each opponent who can't loses 3 life.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},{"kind":"Activated","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"GraveyardSize","player":{"type":"Controller"}}}}},"toughness":{"type":"Quantity","value":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"GraveyardSize","player":{"type":"Controller"}}}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":-3},"sub_ability":null,"duration":"UntilEndOfTurn","description":"[−3]: Target creature gets -X/-X until end of turn, where X is the number of cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":true},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Command"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-7},"sub_ability":null,"duration":null,"description":"[−7]: You get an emblem with \"At the beginning of combat on your turn, put target creature card from a graveyard onto the battlefield under your control. It gains haste.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e0df8e2a-96d2-4e4d-b065-aa2e162abbfe","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["a2edac86-02d4-4201-9b72-2ec64f163a72","e329a3e2-6702-4758-8aac-c3017e77b619","e8dd3fda-d778-4be6-abd4-6cf704e352ea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","PM21","PRM"],"rulings":[{"date":"2020-06-23","text":"A player who has a card in hand can't choose to lose 3 life instead of discarding a card."},{"date":"2020-06-23","text":"As Liliana's first ability resolves, first the player whose turn it is chooses a card in hand without revealing it, then each other player in turn order does the same. Then all the chosen cards are discarded at the same time. Finally, each opponent who couldn't discard a card loses 3 life."},{"date":"2020-06-23","text":"Creatures put onto the battlefield with Liliana's emblem gain haste indefinitely."},{"date":"2020-06-23","text":"If you have no cards in hand, you just don't discard anything. You don't lose 3 life. Other players still discard if able."},{"date":"2020-06-23","text":"In a multiplayer game, if a player leaves the game, all cards that player owns leave as well. If you leave the game, any permanents you control from Liliana's emblem are exiled."},{"date":"2020-06-23","text":"The value of X is determined only as Liliana's second ability resolves. Once that happens, the value of X won't change later in the turn even if the number of cards in your graveyard changes."}],"rarities":["mythic"]},"linebreaker baloth":{"name":"Linebreaker Baloth","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\nThis creature can't be blocked by creatures with power 2 or less.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 2 or less."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c3b395b3-fea0-41d9-a3f2-6c90f89d8bdb","metadata":{"source_printing_ids":["15cc59c7-6478-4f84-898a-7e0fed10f004"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"Once a creature with power 3 or greater has blocked this creature, changing the power of the blocking creature won't cause this creature to become unblocked."},{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can't choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player's control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature's enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature's power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can't be tapped for more than one enlist ability."}],"rarities":["uncommon"]},"living inferno":{"name":"Living Inferno","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental"]},"power":{"type":"Fixed","value":8},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"{T}: This creature deals damage equal to its power divided as you choose among any number of target creatures. Each of those creatures deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"deal","description":"deal damage equal to its power divided as you choose among any number of target creatures"},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power divided as you choose among any number of target creatures. Each of those creatures deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6783c46d-e4e5-4b43-9d97-6eae8aab4cb9","metadata":{"source_printing_ids":["1c4b8143-2742-4262-b18f-2825bf8cea6f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["GPT"],"rulings":[{"date":"2006-02-01","text":"The amount of damage Living Inferno will deal is locked in as you activate its ability, since you're dividing damage. If Living Inferno's power changes after its ability is activated but before it resolves (via Giant Growth, for example), the amount of damage Living Inferno deals won't change. The same is *not* true for the amount of damage dealt to Living Inferno by the other creatures, which is determined when the ability resolves."},{"date":"2006-02-01","text":"You divide the damage among the target creatures as you activate Living Inferno's ability. Each target must be assigned at least 1 damage."}],"rarities":["rare"]},"llanowar elves":{"name":"Llanowar Elves","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Druid"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"{T}: Add {G}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {G}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"68954295-54e3-4303-a6bc-fc4547a4e3a3","metadata":{"source_printing_ids":["01c6f877-6b00-4d57-8a88-36cd3b16edbc","0312d980-b1d0-41ec-8f5b-d21fbb742b9b","07c3165a-39a9-4928-803c-22b60552346c","0eb7213c-f6e4-48cb-870a-13b80ba73b8b","11bd6cef-f887-4b07-a957-4c53cb3c9c87","199e047c-823b-4d18-a5e9-6de3e6989858","1f8a1386-77ca-46ae-8987-aaed435556ea","26435a65-56a6-4e65-b504-a15d5bbc8696","392451d6-073a-49e3-9691-caac457e3d48","57ebd34e-dfe1-4093-a302-db395047a546","581b7327-3215-4a4f-b4ae-d9d4002ba882","632b9428-45c6-4b81-a701-f1c7d7e8d2f0","6a0b230b-d391-4998-a3f7-7b158a0ec2cd","6d6deae3-3ed4-47eb-bf4a-4a766ce18135","6fca5b76-2e0b-4557-91c6-283000d17849","73542493-cd0b-4bb7-a5b8-8f889c76e4d6","75d972d7-5ed9-49c1-8d27-ec162771284d","7707fcf6-e99e-4264-97c7-b2760ce50d79","8c27c558-caa0-4fc4-b6e6-4e7c9eaea0ff","8f897949-1adf-4d9f-956b-a53e1360922f","913907e2-28dd-4080-b725-52a43868e060","93005966-055d-4f14-bc51-1e6c3bd752a4","9636bb2a-0d7f-42d7-9757-15508baefb45","9e100beb-535d-41fe-8e5c-4788871a2739","a4be44d1-da6b-4427-955b-d7f32ebf1813","a6971b0a-274c-444c-aea8-5e114b4aecdd","abd80204-e9ba-483f-9b75-a69712545ba9","bb95a9a7-b0a3-4199-8c05-2519ccda738b","c4d1835a-913f-4979-953b-ddd933214538","c7a7fe6e-aa5a-4be6-a730-5cfff4fb89e3","cd43a84a-cde2-48f8-b6ab-1ec023c9e0c3","cf5dc35e-4fc2-4163-973c-c97d56cb8f1a","d1114b99-62fb-478a-a648-16b8c0b4c032","d1c46614-d8e1-4ab0-b226-d591c4df257a","d3455a72-c3c1-45a8-9bb7-c7c9e1c83ed0","d4f1cc9e-4f99-4c26-ac1b-8ef069fa8ceb","d9c02310-6a14-45c2-ae8c-b0fff7245673","da7bf82d-437a-4c28-98a4-4d092ba8d063","e1ab47f6-c346-47b6-ae3b-733eba9031e1","ed8a8cfd-baef-4198-b1f3-4926139588b2","ee7b36b5-9c10-4139-a0f9-5b9ea7afff5a","f8b6263a-91b8-47ca-bb9e-c0c7062ca238","fedd1b24-44ee-493a-b4db-3048ff5c760b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","9ED","ATH","BRB","BTD","C14","CED","CEI","CMA","DCI","DD1","DOM","EMA","EVG","FBB","FDN","FNM","GN3","GNT","J25","LEA","LEB","M10","M11","M12","M19","P30H","PANA","PDMU","PDOM","PLST","PRM","PTC","SLC","SLD","SUM","WC00","WC01","WC02","WC99"],"rarities":["common","rare","mythic"]},"lorcan, warlock collector":{"name":"Lorcan, Warlock Collector","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Devil"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever a creature card is put into an opponent's graveyard from anywhere, you may pay life equal to its mana value. If you do, put it onto the battlefield under your control. It's a Warlock in addition to its other types.\nIf a Warlock you control would die, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"TriggeringSource"},"modifications":[{"type":"AddSubtype","subtype":"Warlock"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"is a Warlock in addition to its other types"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"origin":null,"destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever a creature card is put into an opponent's graveyard from anywhere, you may pay life equal to its mana value. If you do, put it onto the battlefield under your control. It's a Warlock in addition to its other types.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Destroy","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Warlock"}],"controller":"You","properties":[]},"description":"If a Warlock you control would die, exile it instead.","condition":null}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6c87c261-00a8-46f2-92c8-42009a0a2faf","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["44025434-b723-494c-a917-67216dc653c0","5f6f90ae-340c-4eb7-b091-58db550be742"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC"],"rulings":[{"date":"2021-07-23","text":"Lorcan's last ability affects all Warlocks you control, not only ones he collected from an opponent's graveyard."},{"date":"2021-07-23","text":"Lorcan, Warlock Collector's second ability looks only at the type the card has in the graveyard, not the type it had in any other zone. For example, animated lands dying won't cause the ability to trigger. The opposite is also true. For example, if a creature that was cast as an Adventure is countered, it's a creature card in the graveyard and the triggered ability will trigger."}],"rarities":["rare"]},"loss":{"name":"Loss","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures your opponents control get -1/-1 until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":-1},"toughness":{"type":"Fixed","value":-1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures your opponents control get -1/-1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"c41e8a99-e4a8-4323-a59d-265266e29fa9","metadata":{"source_printing_ids":["0eb3ce46-ddd2-43b3-9e45-019ae91df686","320e1e05-12b8-4301-8cd7-3ead8046d94a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PIO"],"rarities":["uncommon"]},"lost in the spirit world":{"name":"Lost in the Spirit World","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return up to one target creature to its owner's hand. Create a 1/1 colorless Spirit creature token with \"This token can't block or be blocked by non-Spirit creatures.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block or be blocked by non-~ creatures."}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return up to one target creature to its owner's hand. Create a 1/1 colorless Spirit creature token with \"~ can't block or be blocked by non-Spirit creatures.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"a37adc18-ea11-4972-8d04-936cf3fe2613","metadata":{"related_token_ids":["ecb80f75-5d6c-53ca-be4f-57e371f7b933"],"source_printing_ids":["88745474-d8e7-407e-80df-02541ad1ab0b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["TLE"],"rarities":["uncommon"]},"lotleth troll":{"name":"Lotleth Troll","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Troll"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Trample\nDiscard a creature card: Put a +1/+1 counter on this creature.\n{B}: Regenerate this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"random":false,"self_ref":false},"sub_ability":null,"duration":null,"description":"Discard a creature card: Put a +1/+1 counter on ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Regenerate","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":0}},"sub_ability":null,"duration":null,"description":"{B}: Regenerate ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"61b1d7e5-6155-4204-b110-35a890551ec8","metadata":{"source_printing_ids":["3b628197-f26c-457a-b9a4-c1f1d3e02f3d","40438db7-5909-4975-9bbd-8c4021ac0aac","97971c5a-98f5-4165-a1b8-a77129e502df","b4b0c2ac-154c-4ed7-a981-e6e0b7bfb01c","cc138550-a797-4a57-91b3-626aac1b1edd","f098a81b-3568-43fa-9ca1-eb340634e5e1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","C15","CMA","GK1","PIO","RTR"],"rarities":["uncommon","rare"]},"lotus vale":{"name":"Lotus Vale","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"If this land would enter, sacrifice two untapped lands instead. If you do, put this land onto the battlefield. If you don't, put it into its owner's graveyard.\n{T}: Add three mana of any one color.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":3},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add three mana of any one color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"Untapped"}]},"count":2},"decline":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Graveyard","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"If ~ would enter, sacrifice two untapped lands instead. If you do, put ~ onto the battlefield. If you don't, put it into its owner's graveyard.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"01fc5bb3-ebd7-4ab4-8aef-2ece1e1d9b7c","metadata":{"source_printing_ids":["2e5cd12a-2a07-44a8-8eac-de00d26fe9e3"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["WTH"],"rulings":[{"date":"2008-04-01","text":"If you don't sacrifice the lands, Lotus Vale never enters — it goes directly to your graveyard."}],"rarities":["rare"]},"louisoix's sacrifice":{"name":"Louisoix's Sacrifice","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a legendary creature or pay {2}.\nCounter target activated ability, triggered ability, or noncreature spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"Or","filters":[{"type":"StackAbility"},{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[{"type":"InZone","zone":"Stack"}]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target activated ability, triggered ability, or noncreature spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"42d8ab49-703a-4fd3-84d0-0a3ac1eafca8","additional_cost":{"type":"Choice","data":[{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasSupertype","value":"Legendary"}]},"count":1},{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}}]},"metadata":{"source_printing_ids":["4a6976f2-0bd5-449a-8fcf-f5a732ce22c1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Activated abilities contain a colon. They're generally written \"[Cost]: [Effect].\" Some keyword abilities (such as equip) are activated abilities and will have a colon in their reminder text."},{"date":"2025-06-06","text":"Triggered abilities use the word \"when,\" \"whenever,\" or \"at.\" They're often written as \"[Trigger condition], [effect].\" Some keywords (such as prowess) are triggered abilities and will use \"when,\" \"whenever,\" or \"at\" in their reminder text."}],"rarities":["rare"]},"lozhan, dragons' legacy":{"name":"Lozhan, Dragons' Legacy","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Shaman"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever you cast an Adventure or Dragon spell, Lozhan deals damage equal to that spell's mana value to any target that isn't a commander.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Adventure"}],"controller":null,"properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an Adventure or Dragon spell, ~ deals damage equal to that spell's mana value to any target that isn't a commander.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"be2075af-1cd8-42fe-a29b-a0fd2b047a44","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["c24ed5b7-2f71-4f11-a787-fa683216469c","e49228e0-b944-458d-a832-8d374efb69df","fe604232-19da-4331-a6f2-ddb004f1dd90"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","HBG"],"rulings":[{"date":"2022-06-10","text":"\"Any target that isn't a commander\" includes any player, as well as any creature or planeswalker that isn't a commander."},{"date":"2022-06-10","text":"If you cast a non-Dragon permanent spell that has an Adventure (rather than the Adventure itself) Lozhan's triggered ability will not trigger."},{"date":"2022-06-10","text":"The mana value of an Adventure spell is the based on the mana cost of the Adventure, not the mana cost of the permanent card that has the Adventure."}],"rarities":["uncommon"]},"lukka, coppercoat outcast":{"name":"Lukka, Coppercoat Outcast","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Lukka"]},"power":null,"toughness":null,"loyalty":"5","defense":null,"oracle_text":"[+1]: Exile the top three cards of your library. Creature cards exiled this way gain \"You may cast this card from exile as long as you control a Lukka planeswalker.\"\n[−2]: Exile target creature you control, then reveal cards from the top of your library until you reveal a creature card with greater mana value. Put that card onto the battlefield and the rest on the bottom of your library in a random order.\n[−7]: Each creature you control deals damage equal to its power to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":3}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"ExiledBySource"}]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Any"},"without_paying_mana_cost":false,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":"You may cast this card from exile as long as you control a ~ planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"You may cast this card from exile as long as you control a ~ planeswalker.\""}],"duration":null,"target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Exile the top three cards of your library. Creature cards exiled this way gain \"You may cast this card from exile as long as you control a ~ planeswalker.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"reveal","description":"reveal cards from the top of your library until you reveal a creature card with greater mana value"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−2]: Exile target creature you control, then reveal cards from the top of your library until you reveal a creature card with greater mana value. Put that card onto the battlefield and the rest on the bottom of your library in a random order.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":null,"duration":null,"description":"[−7]: Each creature you control deals damage equal to its power to each opponent.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"1ca97394-4e8c-4698-bea1-554f9b10927b","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["2a8f74c3-c552-4331-a47c-e8155841bb27","5798fdf0-d178-43d9-b821-8f3f654654b4","62be76fb-1e22-412f-b555-8ba5098f6d39"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO","PIKO","PLST","PRM"],"rulings":[{"date":"2020-04-17","text":"For each creature card exiled with Lukka's first ability, you can cast it as long as you control any Lukka planeswalker, not just the one that exiled the card."},{"date":"2020-04-17","text":"If a creature card in a player's library or a creature on the battlefield has {X} in its mana cost, X is considered to be 0."},{"date":"2020-04-17","text":"If you reveal your entire library without revealing a creature card with higher mana value, you put the library back in a random order and continue."},{"date":"2020-04-17","text":"In a Two-Headed Giant game, Lukka's last ability causes the opposing team to lose twice as much life as the power of your creatures."},{"date":"2020-04-17","text":"Once you begin to cast an exiled card, losing control of Lukka won't affect the spell. You can finish casting it as normal."},{"date":"2020-04-17","text":"The ability granted by Lukka's first ability doesn't change when you may cast the card."},{"date":"2020-04-17","text":"You may cast creature cards exiled with Lukka's first ability as noncreature spells if a rule or effect allows you to do so. For example, adventurer cards from the Throne of Eldraine set may be cast as Adventures."},{"date":"2020-04-17","text":"You still pay any costs for spells cast from Lukka's first ability. You may pay alternative costs, such as mutate costs."}],"rarities":["mythic"]},"luminarch aspirant":{"name":"Luminarch Aspirant","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, put a +1/+1 counter on target creature you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, put a +1/+1 counter on target creature you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"cb9994b9-924b-4e10-9075-9cfbec88f2bf","metadata":{"source_printing_ids":["dcd27fa3-f6b6-4137-9b6c-4cba7187664c","ebe9427d-068f-487c-9263-b40366a164bc","fe964e7e-e2c5-4263-889d-0a531eb51442"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NCC","PRM","PZNR","ZNR"],"rulings":[{"date":"2020-09-25","text":"Luminarch Aspirant can be the target of its own ability."}],"rarities":["rare"]},"luminate primordial":{"name":"Luminate Primordial","mana_cost":{"type":"Cost","shards":["White","White"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Avatar"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Vigilance\nWhen this creature enters, for each opponent, exile up to one target creature that player controls and that player gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"Opponent"}}}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, for each opponent, exile up to one target creature that player controls and that player gains life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c1bc819a-f291-4b55-94f7-269f160ce76b","metadata":{"source_printing_ids":["b0747b12-c75a-4fdf-a881-f2383a23ccdd"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["GTC"],"rulings":[{"date":"2013-01-24","text":"To determine how much life each opponent gains, use the power of the creature that opponent controlled as it last existed on the battlefield."},{"date":"2013-01-24","text":"You can choose a number of targets up to the number of opponents you have, one target per opponent."}],"rarities":["rare"]},"lurking predators":{"name":"Lurking Predators","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever an opponent casts a spell, reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, you may put that card on the bottom of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"PutAtLibraryPosition","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1},"position":{"type":"Bottom"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent casts a spell, reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, you may put that card on the bottom of your library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"15fbb7b1-c62d-4f82-9f35-2c10299779f4","metadata":{"source_printing_ids":["1144698b-502e-4814-9d74-d16ae6a0f0c5","6dd20d13-3c80-4585-b57b-9219ae7f1acb","9952da7c-3cfc-413f-8849-0f10e9c8dceb","e864c824-89a1-41f6-9481-83b2284471e0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","JMP","M10","PLST"],"rulings":[{"date":"2009-10-01","text":"A \"creature card\" is any card with the type creature, even if it has other types such as artifact, enchantment, or land. Older cards of type summon are also creature cards."},{"date":"2009-10-01","text":"If an opponent casts a spell, this ability triggers and is put on the stack on top of that spell. This ability will resolve (meaning that a revealed creature card will enter) before the spell resolves."},{"date":"2009-10-01","text":"You must put the revealed card onto the battlefield if it's a creature card. If it's not a creature card and you don't put it on the bottom of your library, it stops being revealed and simply remains on top of your library."}],"rarities":["rare"]},"madame null, power broker":{"name":"Madame Null, Power Broker","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon","Advisor"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control enters, you may pay life equal to its power. If you do, put that many +1/+1 counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you may pay life equal to its power. If you do, put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"73413bd5-8c40-4d45-8f05-c20c39ee4017","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4e712d5c-d6fe-40bb-b8e5-5f50c6ea8d4f","b4676f98-2b9d-4a1b-9847-2a7ff9dc2676"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TMT"],"rulings":[{"date":"2026-01-27","text":"Use the creature's power as Madame Null's last ability resolves to determine how much life you may pay. If that creature is no longer on the battlefield, use its power as it last existed on the battlefield. (You probably won't want to pay life in that case, though.)"}],"rarities":["rare"]},"magnetic mountain":{"name":"Magnetic Mountain","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Blue creatures don't untap during their controllers' untap steps.\nAt the beginning of each player's upkeep, that player may choose any number of tapped blue creatures they control and pay {4} for each creature chosen this way. If the player does, untap those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChooseObjectsIntoTrackedSet","chooser":{"type":"TriggeringPlayer"},"filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[{"type":"Tapped"},{"type":"HasColor","color":"Blue"}]},"min":0,"max":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"ScaledMana","base":{"type":"Cost","shards":[],"generic":4},"times":{"type":"Ref","qty":{"type":"TrackedSetSize"}}},"payer":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"TrackedSet","id":0},"scope":{"type":"Single"},"state":{"type":"Untap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each player's upkeep, that player may choose any number of tapped blue creatures they control and pay {4} for each creature chosen this way. If the player does, untap those creatures.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantUntap","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"HasColor","color":"Blue"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Blue creatures don't untap during their controllers' untap steps."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5c28fc22-7da6-4f15-b02b-6ff10981466c","metadata":{"source_printing_ids":["0ae0db84-bf72-4d67-a4cc-b32e1233a530","514236ab-bd30-4151-9bf4-32d0ef52e5fd","8306561a-3e56-4743-92cb-3fc102977e6a","95fde48b-e40a-4183-b324-1ec276dde015","993a14d5-a33d-426e-ab49-c3226a6fcdca","dc95e03d-5521-4a01-8028-200b8467ce86"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","ARN","FBB","SUM"],"rarities":["uncommon","rare"]},"magus of the abyss":{"name":"Magus of the Abyss","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of their choice. It can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature",{"Non":"Artifact"}],"controller":"ScopedPlayer","properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"target_chooser":{"type":"ScopedPlayer"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of their choice. It can't be regenerated.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"66958c48-3ac7-4f41-aa3e-adacaa24ea4f","metadata":{"source_printing_ids":["1005a22c-491b-4969-befb-406c42fcec68","9954157a-0c05-4788-8a0f-6093ebbb38c3","d2039548-af2c-4a93-842c-4a1e28e20f1d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2XM","C17","FUT"],"rulings":[{"date":"2020-08-07","text":"Even though the player whose upkeep it is chooses the target creature, you control the ability. An opponent can't target a creature with hexproof they control."},{"date":"2020-08-07","text":"The triggered ability can target a creature with indestructible. It won't be destroyed."}],"rarities":["rare"]},"make yourself useful":{"name":"Make Yourself Useful","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When you set this scheme in motion, destroy target creature an opponent controls. If a creature is destroyed this way, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SetInMotion","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ZoneChangedThisWay","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When you set this scheme in motion, destroy target creature an opponent controls. If a creature is destroyed this way, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1e502010-4cea-485b-ac89-abcbc725ba13","legalities":{},"printings":["OE01"],"rulings":[{"date":"2017-06-13","text":"If the target creature isn’t destroyed, most likely because it has indestructible, you won’t gain any life. The same is true if the target creature leaves the battlefield before this scheme’s triggered ability resolves."}]},"mana drain":{"name":"Mana Drain","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"PreCombatMain","player":0},"effect":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. At the beginning of your next main phase, add an amount of {C} equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"74d3277a-38e5-4732-afed-084a56148f20","metadata":{"source_printing_ids":["33ebd4c1-e7ea-4708-8b7c-c47ca6b63c22","3c429c40-2389-41e5-8681-4bb274e25eba","416d2d51-8f29-4e95-b037-e8c32b081e6c","456a2f03-8304-4512-804c-76653e30f436","4c7f0ea5-a142-4157-b85d-ec49dd79adf6","6dc7d280-31be-48b8-aa1e-8de676ca01ba","ba874c0c-f66f-4edc-9859-40273487aef0","cc9a04dc-afee-4194-80f5-fb1d9c906de7","e351ec05-8c4d-4631-9dbf-7f85f664770b","e691adef-3027-4e6a-889f-9f4e2df36a7c","ec48a747-cc69-47e5-882b-b3bc17898b1b"]},"legalities":{"brawl":"banned","commander":"legal","duel":"banned","historic":"banned","legacy":"banned","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","CMR","IMA","J16","LEG","ME3","OTP","PRM","VMA"],"rulings":[{"date":"2020-11-10","text":"If the target spell is an illegal target by the time Mana Drain tries to resolve, Mana Drain doesn't resolve. You don't add mana at the beginning of your next main phase. If the target is legal but not countered (most likely because an effect says that the spell can't be countered), you do add mana."},{"date":"2020-11-10","text":"Mana Drain's delayed triggered ability will usually trigger at the beginning of your precombat main phase. However, if you cast Mana Drain during your precombat main phase or during your combat phase, its delayed triggered ability will trigger at the beginning of that turn's postcombat main phase."}],"rarities":["uncommon","rare","mythic"]},"mandate of peace":{"name":"Mandate of Peace","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during combat.\nYour opponents can't cast spells this turn.\nEnd the combat phase. (Remove all attackers and blockers from combat. Exile all spells and abilities from the stack, including this spell.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"ProhibitActivity","source":0,"affected_players":{"type":"OpponentsOfSourceController"},"expiry":{"type":"EndOfTurn"},"activity":{"type":"CastSpells"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"EndCombatPhase"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Your opponents can't cast spells this turn.\nEnd the combat phase.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"c309ec42-34a0-4083-a36c-7814643d7960","casting_restrictions":[{"type":"DuringCombat"}],"metadata":{"source_printing_ids":["d243055f-892e-4042-9694-13d5e99e3550"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"Any “at end of combat” triggered abilities won’t get the chance to trigger that combat because the end of combat step is skipped."},{"date":"2019-08-23","text":"Ending the combat phase this way means the following things happen in order: 1) All spells and abilities on the stack are exiled. This includes spells and abilities that can’t be countered. 2) State-based actions are checked. No player gets priority, and no triggered abilities are put onto the stack. 3) The current phase and step ends. The game skips straight to the postcombat main phase. As this happens, all attacking and blocking creatures are removed from combat and effects that last “until end of combat” expire."},{"date":"2019-08-23","text":"If an effect allows or instructs you to cast Mandate of Peace outside of a combat phase, you can’t do so. Its restriction takes precedence over that permission. Similarly, once Mandate of Peace has resolved, your opponents can’t cast spells even if another effect allows or instructs one of them to cast a spell."},{"date":"2019-08-23","text":"If any triggered abilities trigger during this process, they’re put onto the stack after the game skips to the appropriate phase or step."},{"date":"2019-08-23","text":"In the rare case that the postcombat main phase is skipped, the game skips to the end step of the ending phase. If that step is also skipped, the game skips straight to the turn’s cleanup step. The cleanup step can’t be skipped."},{"date":"2019-08-23","text":"Mandate of Peace doesn’t stop any player from casting spells in response to Mandate of Peace before it resolves."},{"date":"2019-08-23","text":"Though other spells and abilities that are exiled won’t get a chance to resolve, they don’t count as being countered."},{"date":"2019-08-23","text":"Your opponents can still activate abilities, including abilities of cards in their hand (such as cycling abilities), and can still play lands."}],"rarities":["rare"]},"marchesa, the black rose":{"name":"Marchesa, the Black Rose","mana_cost":{"type":"Cost","shards":["Blue","Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)\nOther creatures you control have dethrone.\nWhenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":["Dethrone"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.","constraint":null,"condition":null,"batched":false},{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"Put a +1/+1 counter on this creature","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.105a: Dethrone — whenever ~ attacks the player with the most life or tied for most life, put a +1/+1 counter on ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"DefendingPlayer"}}},"comparator":"GE","rhs":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"AllPlayers","aggregate":"Max"}}}},"batched":false,"attack_target_filter":"Player"}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddKeyword","keyword":"Dethrone"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Other creatures you control have dethrone."}],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"17a59d3d-9e01-48cd-bb4a-3eaaa077751c","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3242a9f0-2ba3-4852-ac8f-366772ac1c62","35f3f243-927d-4b84-87cd-43c48f6c371a","47617780-620d-409a-944c-bc7035826b38","843adb97-8ace-4b72-879b-d90be1816857","ca6cf5ba-0bad-4f7d-83b9-c092c2586131","e568fd9d-5800-4eeb-87c6-7c33dc14f81d","e5fa557c-b23c-4e56-aedb-c51d2e20cda6","e9975663-3038-4c72-b29c-65635dbe36bb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["2X2","C17","CNS","PRM","PZ1","SLD","VMA"],"rulings":[{"date":"2014-05-29","text":"If Marchesa has a +1/+1 counter on it when it dies, it will return to the battlefield under your control because of its own ability."},{"date":"2014-05-29","text":"If a creature has multiple instances of dethrone, each triggers separately."},{"date":"2014-05-29","text":"If the creature card leaves the graveyard before the delayed triggered ability resolves, that card won't return to the battlefield, even if it's back in the graveyard when the delayed triggered ability resolves."},{"date":"2014-05-29","text":"In a Two-Headed Giant game, dethrone will trigger if the creature attacks either player on the team with the most life or tied for the most life."},{"date":"2014-05-29","text":"Once dethrone triggers, it doesn't matter what happens to the players' life totals before the ability resolves. You'll put a +1/+1 counter on the creature even if the defending player doesn't have the most life as the ability resolves."},{"date":"2014-05-29","text":"The +1/+1 counter is put on the creature before blockers are declared."},{"date":"2023-07-28","text":"Dethrone doesn't trigger if the creature attacks a planeswalker, even if its controller has the most life. The same is true if the creature attacks a battle, even if its protector has the most life."}],"rarities":["rare","mythic"]},"marshland bloodcaster":{"name":"Marshland Bloodcaster","mana_cost":{"type":"Cost","shards":["Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Warlock"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Flying\n{1}{B}, {T}: Rather than pay the mana cost of the next spell you cast this turn, you may pay life equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"rather","description":"Rather than pay the mana cost of the next spell you cast"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":"{1}{B}, {T}: Rather than pay the mana cost of the next spell you cast this turn, you may pay life equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5ecf35b1-0bfd-4c60-a791-5a3b918dd630","metadata":{"source_printing_ids":["024ab7f9-1891-4c71-9fcf-cf124b1c6d10","4db8bd3e-2554-40eb-8e6d-d2eb589d9344","d62ba421-1387-425d-bf88-71207f2be1ba"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","OTC","PRM"],"rulings":[{"date":"2021-04-16","text":"Even after the ability resolves, you may choose to not pay life rather than pay mana cost of the next spell you cast that turn. However, if you do this, you won't have the opportunity to pay life for any other spells you cast that turn (unless you activate the ability again)."},{"date":"2021-04-16","text":"If the next spell you cast has {X} in its mana cost, you must choose 0 as the value of X if you pay life rather than pay its mana cost."},{"date":"2021-04-16","text":"If you cast a spell for another cost \"rather than pay its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, such as that of Draconic Intervention, those must be paid to cast the card."},{"date":"2021-04-16","text":"Marshland Bloodcaster's ability affects the next spell you cast after the ability has resolved. If you cast any spells in response to the ability, those spells are cast as normal."}],"rarities":["rare"]},"maskwood nexus":{"name":"Maskwood Nexus","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control are every creature type. The same is true for creature spells you control and creature cards you own that aren't on the battlefield.\n{3}, {T}: Create a 2/2 blue Shapeshifter creature token with changeling. (It is every creature type.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield."},"cost":null,"sub_ability":null,"duration":null,"description":"The same is true for creature spells you control and creature cards you own that aren't on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Shapeshifter","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Shapeshifter"],"colors":["Blue"],"keywords":["Changeling"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{3}, {T}: Create a 2/2 blue Shapeshifter creature token with changeling.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control are every creature type."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"9b2cdbed-c733-409b-b0e4-2c8960c25111","metadata":{"related_token_ids":["19115e90-c504-5d55-9cbb-43d7197b902d","43ae1a0b-f820-58cb-afbb-96bd7592c442","4619d1ad-f2df-56e6-b96e-c8e204239231","4d21e209-4a89-5424-9213-b8ce391733cc","4f68d7e7-f83a-5967-8bb8-4a66c08b986e","5590d878-c28a-5c12-b61d-065c7c8e7a32","ac1d46eb-68b2-56ab-9f3e-b142cdc2fa33"],"source_printing_ids":["1246c42d-57c0-4cba-959a-15ad89d8a50b","404b3e0f-994e-49c8-b18a-ebbf418e741a","45887949-7cc6-4f83-a659-fb3284685c7d","471d2aef-cfd4-4131-bbc7-62eeed9f3343","9a8456d9-30dd-4acf-9255-e9540886df37","9e1aef13-3a5d-4a83-8851-e667a4cb5a67","c6f2c543-9b01-4760-966a-f0609c24f53e","d56e5307-4a2a-4bbd-ab61-83286464cac3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","CLB","DRC","KHM","M3C","PKHM","PLST","PRM","SLD"],"rulings":[{"date":"2021-02-05","text":"Changeling is a characteristic-defining ability. It functions in all zones, not only while a card that has it is on the battlefield."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to become a new creature type, it will be only that new creature type. It will still have changeling; the effect making it all creature types will simply be overwritten."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to lose all abilities, it will remain all creature types, even though it will no longer have changeling. This is because changeling applies before the effect that removes it."},{"date":"2021-02-05","text":"Replacement effects that modify how creatures of a certain creature type enter the battlefield will apply after you apply the effect of Maskwood Nexus. For example, if you control Maskwood Nexus and an effect says that each Warrior you control enters the battlefield with an additional +1/+1 counter on it, any creature that enters the battlefield under your control will get that counter."},{"date":"2021-02-05","text":"The subtype Shapeshifter that appears on the type line is mostly there to reinforce the flavor. A creature card with changeling is just as much an Elf, a Dwarf, a Sliver, a Goat, a Coward, and a Zombie as it is a Shapeshifter."},{"date":"2021-02-05","text":"The tokens created by the activated ability will continue to have all creature types if Maskwood Nexus leaves the battlefield because those tokens have changeling. Other creatures you control will revert to their usual creature types unless another relevant effect is affecting them."}],"rarities":["rare"]},"master of the wild hunt":{"name":"Master of the Wild Hunt","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, create a 2/2 green Wolf creature token.\n{T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Wolf"}],"controller":"You","properties":[{"type":"Untapped"}]},"scope":{"type":"All"},"state":{"type":"Tap"}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"deal","description":"deal damage equal to its power divided as its controller chooses among any number of those Wolves"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Tap all untapped Wolf creatures you control. Each Wolf tapped this way deals damage equal to its power to target creature. That creature deals damage equal to its power divided as its controller chooses among any number of those Wolves.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Wolf","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Wolf"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 2/2 green Wolf creature token.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"dd25cab9-15cc-40f5-9b68-8f345dd7e952","metadata":{"related_token_ids":["0fda6a57-5bf8-5a18-aaca-152041cb86c7","838671eb-24c5-5246-b969-5190055b6e1c","b101956b-c0f9-5be5-9133-a39b3fd24f40","d6503523-02c8-5086-a1b8-a7e18e8b68b0","d8b57f87-ee35-5815-8052-273a38f1d919"],"source_printing_ids":["060d72ba-ea62-4a94-8ca0-37978c709769","0cace1a3-34df-45d0-b653-b120b3617d40","2cf3169c-f01c-47f4-ba4b-e199b7ade5fc","3c56fda1-d286-46b1-9617-4f7c430abb79","fb4dcc14-0f3b-46b0-a37e-31d0c3e70732"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["A25","J22","M10","PLST","SLD"],"rulings":[{"date":"2018-03-16","text":"All Wolves you control are tapped as part of the activated ability's effect, not as a cost. Players may respond by attempting to tap or untap Wolves, or to create or remove them."},{"date":"2018-03-16","text":"If the target creature is an illegal target by the time Master of the Wild Hunt's ability tries to resolve, the ability doesn't resolve. You won't tap your Wolves, and nothing will deal or be dealt damage."},{"date":"2018-03-16","text":"Only a Wolf creature tapped as part of the ability's effect can be dealt damage by the target creature."},{"date":"2018-03-16","text":"The controller of the target creature doesn't divide that creature's damage as the ability is activated (since the Wolves that will receive that damage aren't targeted), so that player does so as the ability resolves. There is no time to react between the time a Wolf is chosen, the time damage is dealt to it, and the time it's destroyed for having been dealt lethal damage. If you want to put a regeneration shield on one of those Wolves, or target it with a damage-prevention spell, or anything else, you must do so before the ability resolves (and before you know which Wolves will be chosen and how much damage will be dealt to them)."}],"rarities":["mythic"]},"memnite":{"name":"Memnite","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7663ac7c-1de3-4250-b96a-fae9dbd66a27","metadata":{"source_printing_ids":["469cc4e0-49c0-4009-97ea-28e44addec69","70de6937-acd0-4496-94c3-2e9a80caddb0","7b8f6516-3d00-4deb-b852-bcd3b72e49ea"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DCI","MB2","PLST","PRM","SOM","TD2"],"rarities":["uncommon"]},"mightform harmonizer":{"name":"Mightform Harmonizer","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect","Druid"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, double the power of target creature you control until end of turn.\nWarp {2}{G} (You may cast this card from your hand for its warp cost. Exile this creature at the beginning of the next end step, then you may cast it from exile on a later turn.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Warp":{"type":"Cost","shards":["Green"],"generic":2}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DoublePT","mode":"Power","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, double the power of target creature you control until end of turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8e025cda-71c5-4d06-8436-decd408667af","metadata":{"source_printing_ids":["29bc9be4-4fc3-440a-a851-0c7f8989c9b5","f32302f1-b54f-4489-9d0b-9b771e59da06"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If a creature’s power is less than 0 when it’s doubled, instead that creature gets -X/-0, where X is how much less than 0 its power is. For example, if an effect has given Bear Cub, a 2/2 creature, -4/-0 so that it’s a -2/2 creature, doubling its power and toughness gives it -2/+2, and it becomes a -4/4 creature."},{"date":"2025-07-25","text":"If an effect instructs you to “double” a creature’s power, that creature gets +X/+0, where X is its power as that effect begins to apply. Similarly, a creature whose toughness is doubled gets +0/+X, where X is its toughness as the effect begins to apply."}],"rarities":["rare"]},"mind stone":{"name":"Mind Stone","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}, {T}, Sacrifice this artifact: Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{1}, {T}, Sacrifice ~: Draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"c97361b5-af16-4a7b-af85-a429dbaf4ad2","metadata":{"source_printing_ids":["02a34135-0955-4045-9558-6e61338baaf0","0eebe138-f638-4e8a-820e-ecdada7cc586","10ad9914-4a18-4679-8d41-1e338fc23fe5","162e81d3-6cd4-4cb8-8ed8-cfbd8d34ca71","1969ddc0-ee6c-4c3d-a9dd-7f1c491609be","23dd6cb6-31ee-467e-9f67-39046197bcb6","2c214d26-8d0f-49a2-8e34-be073d34369a","2f002162-20e3-4b08-bd3e-6241847680ac","3aed2452-915a-4a84-8408-6722425201f8","3e2550d5-ba6a-4cab-908a-b537973800c1","42bd038d-1005-4095-9310-108caa56465f","4e9b288a-47dd-4587-87af-6aeb35939ccc","52284689-f2e0-442d-80d0-9e766759e2bc","5cef8f31-a95e-49d0-ba75-7a639fcaa649","5cf95476-27ed-487d-8459-c97a921bb808","616fa067-0d10-4111-bcc6-84d97a13b5ce","6ac8db7a-009a-4141-bba7-b5fdfaf8d245","6dcc9f62-5b6c-422d-b4c8-eba1d363ede6","6ff5cc3e-0179-442e-a0b0-48063dd59fb3","7fdef0b6-a3b9-4752-bce6-53c0140a1693","8615e46e-56c3-49f6-b4ad-44ec25be5f05","8c899cbd-cddd-43f9-a95d-a6e5af990362","a1baff4f-eaeb-4fe2-821d-5b9079aad4b1","ad881aa0-decc-447b-8c8a-983546a9a55a","aeaf1f56-de96-480a-a0c4-0a06d4daf149","b227672f-967e-4f8d-87f4-c6cd4622fe3f","b63418ae-2f77-4229-b921-fbce75b9daa4","b793a8e9-5870-4190-a204-c241b0e67f97","b88baf29-a556-4e89-8471-9ba9bc8efe2c","c0757550-cf9e-4111-b1e3-7c422d4c1f8d","c54814f1-3598-4859-b956-b39d8335e6d3","c729606e-5b13-4699-b7c8-feca69c91f62","cb3b2998-a7c6-4e6a-b467-71106feb6974","cb3d470d-e0f0-44c2-97f7-f31c02cdfbd3","d0add078-6151-4331-8c2b-03e3e574e6a7","d5795300-dcfa-4a40-9c23-79a061c26851","ecbe852d-4538-41dd-bfce-a134a7bc3022","eed69870-1a65-4bec-842c-e837348493c6","f1f616f2-d69d-4763-8ff0-3eb05a543926","f3817d9a-0e1c-4eed-9593-78d481d3001b","fa6dac02-c557-4a3b-864a-1189325baf5c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","40K","AFC","BLC","BRC","C14","C15","C18","C21","CLB","CM2","CMM","DCI","DD2","DDP","DMR","DSC","FIC","HA1","IMA","JVC","KHC","LCC","LTC","MKC","MOC","ONC","PIP","PLST","PRM","PW21","SOC","WC97","WHO","WOC","WTH","ZNC"],"rarities":["common","uncommon"]},"mirkwood elk":{"name":"Mirkwood Elk","mana_cost":{"type":"Cost","shards":["Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elk"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhenever this creature enters or attacks, return target Elf card from your graveyard to your hand. You gain life equal to that card's power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, return target Elf card from your graveyard to your hand. You gain life equal to that card's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5b29c26f-c0f0-4703-83db-3a249ebc5792","metadata":{"source_printing_ids":["0157631a-b1c4-4176-aa3d-f60b9b7615b8","1cf84c03-a131-451b-99ee-64330c1f2e26","dc8db812-78c8-47f4-89a6-a7b272be2d19"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"In the rare case that the Elf card you return to your hand doesn't have power, you'll gain 0 life."}],"rarities":["rare"]},"mirran crusader":{"name":"Mirran Crusader","mana_cost":{"type":"Cost","shards":["White","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Double strike, protection from black and from green","non_ability_text":null,"flavor_name":null,"keywords":["DoubleStrike",{"Protection":{"Color":"Black"}},{"Protection":{"Color":"Green"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"fe69d9bd-2a60-4b33-a0d8-1ca18c2b6705","metadata":{"source_printing_ids":["56086ccd-a628-435b-a7af-ca28d89276da","aaf7a821-3587-4aad-8411-fca5c96ab5c4","f7c34f5d-0430-4036-a633-1a68a0d2fc65"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MBS","MM2","PLST","PMBS","PRM"],"rarities":["rare"]},"mirrodin besieged":{"name":"Mirrodin Besieged","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Mirran or Phyrexian.\n• Mirran — Whenever you cast an artifact spell, create a 1/1 colorless Myr artifact creature token.\n• Phyrexian — At the beginning of your end step, draw a card, then discard a card. Then if there are fifteen or more artifact cards in your graveyard, target opponent loses the game.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Token","name":"Myr","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Artifact","Creature","Myr"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast an artifact spell, create a 1/1 colorless Myr artifact creature token.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Mirran"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseTheGame","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ZoneCardCount","zone":"Graveyard","card_types":["Artifact"],"scope":"Controller"}},"comparator":"GE","rhs":{"type":"Fixed","value":15}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, draw a card, then discard a card. Then if there are fifteen or more artifact cards in your graveyard, target opponent loses the game.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Phyrexian"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Mirran","Phyrexian"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Mirran or Phyrexian.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"674e2683-31c0-4fee-95fb-98b1201e41e7","metadata":{"related_token_ids":["eb9fbc1a-6716-57be-9fa4-1a3288306b7e","ef95c68a-b227-5c19-b017-02ebfa99c966"],"source_printing_ids":["d8423d8d-744a-4bbe-a853-8ad756451bdb","edf98768-c7dd-434e-8883-19b47ad45790"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MH1","PLST"],"rulings":[{"date":"2019-06-14","text":"If you somehow control Mirrodin Besieged and no choice was made for it, it has neither of the two triggered abilities."},{"date":"2019-06-14","text":"If you support the Mirrans, Mirrodin Besieged’s ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2019-06-14","text":"If you support the Phyrexians, you must choose a target opponent as your end step begins. Whether that player loses the game is determined only as the ability resolves. This means that the card you discard may be the fifteenth artifact card that causes the target player to lose the game, but it also means that if there is no legal target opponent, you won’t draw or discard."},{"date":"2019-06-14","text":"In a Two-Headed Giant game, if one player on a team loses the game, that team loses the game."}],"rarities":["rare"]},"mirrormade":{"name":"Mirrormade","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may have this enchantment enter as a copy of any artifact or enchantment on the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"BecomeCopy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"You may have ~ enter as a copy of any artifact or enchantment on the battlefield.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"SelfRef"},"description":"You may have ~ enter as a copy of any artifact or enchantment on the battlefield.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"79a71fe5-38ce-4bb5-aea0-c9b9a856d397","metadata":{"source_printing_ids":["236b40cd-c359-41cc-b530-d7d6fbbe33bf","a10c1407-d397-4caa-b7b7-e7d91ffd4ee9","a26cbfbe-fbb8-4804-b065-ab2c42ddad9b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","ELD","PELD"],"rulings":[{"date":"2019-10-04","text":"Any enters-the-battlefield abilities of the copied permanent will trigger when Mirrormade enters the battlefield. Any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities of the chosen permanent will also work."},{"date":"2019-10-04","text":"If Mirrormade copies an Aura this way, you choose what the Aura will enchant just before it enters the battlefield. You can't choose any permanent cards entering the battlefield at the same time as that Aura. This doesn't target the player or permanent it will enchant, so an opponent's permanent with hexproof may be chosen this way. The chosen recipient must be able to legally be enchanted by the Aura, so a player or permanent with protection from one of the Aura's qualities can't be chosen this way. If there's nothing legal for Mirrormade to enchant, it stays in its current zone (unless it's a spell, in which case it's put into its owner's graveyard)."},{"date":"2019-10-04","text":"If Mirrormade somehow enters the battlefield at the same time as another artifact or enchantment, it can't become a copy of that permanent. You may choose only a permanent that's already on the battlefield."},{"date":"2019-10-04","text":"If the chosen permanent has {X} in its mana cost, X is considered to be 0."},{"date":"2019-10-04","text":"If the chosen permanent is a token, Mirrormade copies the original characteristics of that token as stated by the effect that created the token. Mirrormade doesn't become a token in this case."},{"date":"2019-10-04","text":"If the chosen permanent is copying something else (for example, if the chosen permanent is another Mirrormade), then Mirrormade enters the battlefield as whatever the chosen permanent copied."},{"date":"2019-10-04","text":"Mirrormade copies exactly what was printed on the original permanent (unless that permanent is copying something else or is a token; see below). It doesn't copy whether that permanent is tapped or untapped, whether it has any counters on it or any Auras attached to it, or any non-copy effects that have changed its types, color, or so on. Notably, if Mirrormade copies an artifact creature or enchantment creature that's normally not a creature (such as one affected by Bring to Life), Mirrormade won't be a creature."}],"rarities":["rare"]},"mishra's factory":{"name":"Mishra's Factory","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}: This land becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.\n{T}: Target Assembly-Worker creature gets +1/+1 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":2},{"type":"SetToughness","value":2},{"type":"AddType","core_type":"Artifact"},{"type":"AddType","core_type":"Creature"},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddSubtype","subtype":"Assembly-Worker"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"become a 2/2 Assembly-Worker artifact creature"}],"duration":"UntilEndOfTurn","target":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddType","core_type":"Land"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"It's still a land"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"{1}: ~ becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Assembly-Worker"}],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{T}: Target Assembly-Worker creature gets +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"5963e0ef-e0bc-4611-ad4f-813a4c0eacfb","metadata":{"source_printing_ids":["14dd21e1-51c4-4811-9547-3a5fb393be66","245cdc59-d560-4c10-b721-f51cc312e370","30f6058b-777b-4216-959e-d9435152aed2","3bec64fe-08cc-4d28-8bea-708fee1581be","4047df9c-335c-4c1a-968d-00f40e2e7386","59b6fe0c-7bbe-433f-8400-4be4ce0e3f15","6e9fec20-a52c-42c0-9928-c572d9e1b21f","747eb1be-7303-4ecb-bc93-81761a2f0c5c","7c05c946-66c3-4785-90f9-ca0c606e036b","8d4448f2-2826-461d-890b-31409aef21c1","9d596bc0-c972-4a36-8cf6-cd8f72169021","9e5d6972-3f64-486c-a325-7351b910dafe","9f831977-6b84-466d-8ee4-188b591d58cd","a4d9c106-6aa4-4f5e-9049-741b50ad54b3","a696c5b6-f216-454d-8029-74e84bbd1428","a9785d7b-f7b2-4c09-ad28-ef5eaebacfdb","ac09a506-427f-4636-bcfd-b40f8d511905","ad1577a3-a350-45e3-af3d-62c85207514f","ade01a16-65f1-4b50-ab9a-98e9bbf9f57d","aff8d4f1-eaad-4afb-9097-2afab133f707","c44669b2-bf9a-41c3-91c7-d845b0061fbf","d0dcf152-916e-4603-a688-7a05b57d1b4c","de2f8b1a-a29e-4596-8ebe-5fdb6ce15b5a","e26acb07-5eda-412a-a58a-1ba290d0cf70","e88a1690-111e-4e8f-a896-890e793e8a9f","f0f292de-238a-4b19-a6da-f164158b79dc","f305f103-746b-4406-b569-1a7dc32beee7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","4BB","4ED","A25","AFC","ATQ","DDF","DMR","EMA","G05","J22","ME1","MH2","PLST","PRM","PTC","REN","RIN","SLC","TD0"],"rulings":[{"date":"2022-12-08","text":"A noncreature permanent that becomes a creature can attack, and its {T} abilities can be activated, only if its controller has continuously controlled that permanent since the beginning of their most recent turn. It doesn't matter how long the permanent has been a creature. Notably, if you turn Mishra's Factory into a creature on the turn it entered the battlefield, you won't be able to then activate its first or last abilities."},{"date":"2022-12-08","text":"After it becomes a creature, Mishra's Factory will still have all its abilities."}],"rarities":["uncommon","rare"]},"mizzium mortars":{"name":"Mizzium Mortars","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Mizzium Mortars deals 4 damage to target creature you don't control.\nOverload {3}{R}{R}{R} (You may cast this spell for its overload cost. If you do, change \"target\" in its text to \"each.\")","non_ability_text":null,"flavor_name":null,"keywords":[{"Overload":{"type":"Cost","shards":["Red","Red","Red"],"generic":3}}],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":4},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 4 damage to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"48ddba1e-2ad7-463f-9307-d2379a800e51","metadata":{"source_printing_ids":["2367b094-9482-4e3a-aa9d-dd878d1c3dea","544b2931-0af1-4743-b7c1-91e1dc9294d5","708557e2-c1b4-4e45-b568-17763b7a9924","85e72d7b-8d0f-4953-b8b1-7ddfaaa9fc06","bef58faf-4d5e-4c66-9780-28abfc4c0c69","c997501a-821e-4509-b752-fac01230342e","d4ded88d-2688-4f5e-a8b2-16216cf9c792"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["C15","CLB","GK1","MM3","PIO","PRM","RTR","SLD"],"rulings":[{"date":"2024-01-12","text":"Because a spell with overload doesn't target when its overload cost is paid, it may affect permanents with hexproof or with protection from the appropriate color."},{"date":"2024-01-12","text":"If you are instructed to cast a spell with overload \"without paying its mana cost,\" you can't choose to pay its overload cost instead."},{"date":"2024-01-12","text":"If you don't pay the overload cost of a spell with overload, that spell will have a single target. If you pay the overload cost, the spell won't have any targets."},{"date":"2024-01-12","text":"Note that if the spell with overload is dealing damage, protection from that spell's color will still prevent that damage."},{"date":"2024-01-12","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an overload cost), add any cost increases, then apply any cost reductions. The mana value of the spell remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare","mythic"]},"mogg war marshal":{"name":"Mogg War Marshal","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Echo {1}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen this creature enters or dies, create a 1/1 red Goblin creature token.","non_ability_text":null,"flavor_name":null,"keywords":[{"Echo":{"type":"Mana","data":{"type":"Cost","shards":["Red"],"generic":1}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 1/1 red Goblin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, create a 1/1 red Goblin creature token.","constraint":null,"condition":null,"batched":false},{"mode":"PayEcho","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.30a: At the beginning of your upkeep, sacrifice this permanent unless you pay its echo cost.","constraint":null,"condition":{"type":"EchoDue"},"unless_pay":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},"payer":{"type":"Controller"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"7b8f4879-578e-40e4-863a-41d0c32c6bdd","metadata":{"related_token_ids":["12a89d08-9938-5ef1-8c72-d8d57cff8cda","1e96a870-1f0d-59e2-ac6d-84d600c5125a","261364f9-97f9-5ecd-a221-2d7b039ed47f","32aa33fc-99b2-54ad-9990-fa9b874f2fff","624155e0-9fb2-5dc4-ab66-fb7cd6196d53","8d32e4af-d168-5a47-9b9e-4512e2063e6d","8eef2917-0d4d-50c8-a06f-49e75b85b242","a82aa998-5fbf-5125-ac16-b9d57f944875"],"source_printing_ids":["7fb6d241-f68b-45c8-a79a-f6c274bd8512","8b9e0bdb-b615-447a-b80d-d7244c25c56e","8c4ad771-b708-476f-bd08-3bd1ce8508d3","a7f7f39c-94a0-4ccb-b658-23095ada4005","d3f75cf8-5346-497d-b5af-72b268a72f2b","dc45b117-8ba1-4349-ac06-f690cde48c17","deed0a5a-6662-460c-bd78-e3d95e8bc83e","e6da34e4-3ad6-40a2-be7f-0b2cb6fa2be7","fc027246-1dd3-4be0-bea6-3a7476a833ce","fd170aa1-18be-470e-aa36-bfb11e9f92c1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["DD1","DMR","EMA","EVG","MMA","PLST","SLD","TSP","TSR"],"rarities":["common","rare"]},"momentous fall":{"name":"Momentous Fall","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nYou draw cards equal to the sacrificed creature's power, then you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"You draw cards equal to the sacrificed creature's power, then you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6a5ce1b0-ac78-4a74-9eb7-4064e1687bf1","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["0271550a-0610-4e21-849a-f29547a77bdc","91a6f558-a754-4437-8328-00a6ca47f9b5","ca079f33-2764-462e-ba6a-961cbb8318c3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C19","JMP","ROE"],"rulings":[{"date":"2010-06-15","text":"The sacrificed creature’s last known existence on the battlefield is checked to determine its power and its toughness."},{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["rare"]},"monastery siege":{"name":"Monastery Siege","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your draw step, draw an additional card, then discard a card.\n• Dragons — Spells your opponents cast that target you or a permanent you control cost {2} more to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Draw","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your draw step, draw an additional card, then discard a card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Raise","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":null}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Dragons"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells your opponents cast that target you or a permanent you control cost {2} more to cast."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"240a33a8-23a0-4cb2-a9fd-1a2a21966bb8","metadata":{"source_printing_ids":["30154ecf-f7ae-435b-a339-0219650bebed","32d2a1ad-210c-444d-9cb7-b78b493db7ea","eef398b5-38f7-4a11-8fcf-d4e0d27267cf"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won’t depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."},{"date":"2014-11-24","text":"The “Dragons” ability adds {2} per spell, not per target. It won’t cause a spell to cost more than {2} more to cast, even if that spell targets you and a permanent you control or more than one permanent you control."},{"date":"2014-11-24","text":"The “Khans” ability happens after you draw the card you normally draw during your draw step. That card and the additional card will be in your hand when you have to discard a card."}],"rarities":["rare"]},"mons's goblin raiders":{"name":"Mons's Goblin Raiders","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Goblin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a37159df-f6d7-4db6-85de-0ea77f425993","metadata":{"source_printing_ids":["0d3eff55-6a14-4c01-8b05-715094a319b3","2fbf039d-0ab9-4c42-a0a3-cbfa3ea1dd6e","34ac4e28-1677-4f88-9b1a-7a32635f0ab2","6e81e219-c840-4844-be87-0449ab0fa645","8324c5a9-d126-4510-90ac-c6b1424137d9","8874865b-5ce0-443f-a49e-0eaade5939da","9f31c715-9ab8-4578-989f-141099b6750c","affefdf8-a346-4e06-a727-67ce543ae8e6","b4eb3db3-6a7c-488a-9433-d5d1d3133816","bdbe033a-1771-4269-9381-4b460d574a38","e1a837b1-6808-4823-ac30-ca43009f14e4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","CED","CEI","FBB","ITP","LEA","LEB","RQS","S00","S99","SUM"],"rarities":["common"]},"moonlight hunt":{"name":"Moonlight Hunt","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you don't control. Each creature you control that's a Wolf or a Werewolf deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you don't control. Each creature you control that's a Wolf or a Werewolf deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f38a6cb4-79dd-4c12-9896-8c6655e275f8","metadata":{"source_printing_ids":["63f7afc6-dcc2-45ce-99e8-696cd5a11466","6d36aecd-4bd8-4350-9161-e6feecc09bb9","768ee736-9d47-4085-a0b6-a80ca150b499","d9633603-a80f-448d-98d9-00064d379c26"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["INR","J22","SIR","SOI"],"rarities":["common","uncommon"]},"morophon, the boundless":{"name":"Morophon, the Boundless","mana_cost":{"type":"Cost","shards":[],"generic":7},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Shapeshifter"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Changeling (This card is every creature type.)\nAs Morophon enters, choose a creature type.\nSpells of the chosen type you cast cost {W}{U}{B}{R}{G} less to cast. This effect reduces only the amount of colored mana you pay.\nOther creatures you control of the chosen type get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":["Changeling"],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":0},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"IsChosenCardType"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells of the chosen type you cast cost {W}{U}{B}{R}{G} less to cast. This effect reduces only the amount of colored mana you pay."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"IsChosenCreatureType"},{"type":"Another"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Other creatures you control of the chosen type get +1/+1."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":null}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"bf418a2f-e639-4e52-9cad-5a0713a1829b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["33c2e889-d2e1-4197-ba97-81a2b8512746","58e4a55f-b35a-411a-9a05-0cbb0d767920","84238335-e08c-421c-b9b9-70a679ff2967","9693e59b-032d-4ddc-a7d1-88a0f52dcc6c","9f4b771e-1f3a-406c-b92f-4c0664edacb5","c8e87f00-1772-4141-9ee4-e57344f5076e","dbf0e27d-9b68-44dc-82ff-53d6817fb9d5","ea2cfd10-37d9-4429-842e-f5a4c9abe3a4","f21e1de9-7128-4797-8483-86ac826ab1e4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMM","M3C","MH1","PJ21","PLST","PMH1","SLD"],"rulings":[{"date":"2019-06-14","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to other creatures you control of the chosen type may become lethal if Morophon leaves the battlefield during that turn."},{"date":"2019-06-14","text":"Cost reduction effects are applied after other cost modifiers, so Morophon can reduce additional costs or alternative costs of spells of the chosen type."},{"date":"2019-06-14","text":"If a spell has hybrid mana symbols in its mana cost, you choose which half you will be paying before determining the total cost. For example, if a spell of the chosen type costs {2}{W/U}{W/U}, you may choose for the cost to be {2}{W}{U} and then reduce it to {2}."},{"date":"2019-06-14","text":"Morophon's effect reduces the total cost by up to one mana of each color. For example, if a spell of the chosen type costs {4}{R}{W}{W}, it will cost {4}{W} after applying Morophon's effect."},{"date":"2019-06-14","text":"You must choose an existing creature type, such as Sliver or Warrior. Card types such as artifact, and supertypes such as legendary or snow, can't be chosen."}],"rarities":["mythic"]},"mortis dogs":{"name":"Mortis Dogs","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Dog"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature attacks, it gets +2/+0 until end of turn.\nWhen this creature dies, target player loses life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, it gets +2/+0 until end of turn.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ dies, target player loses life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a89994d0-2110-4ca0-abfc-5dd232981acf","metadata":{"source_printing_ids":["3cae1f40-0e43-41d8-bc5c-aa9873f7d7d5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"The loss of life is equal to Mortis Dogs’s power as it last existed on the battlefield."}],"rarities":["common"]},"mountain":{"name":"Mountain","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Mountain"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {R}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Red"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a3fb7228-e76b-4e96-a40e-20b5fed75685","metadata":{"source_printing_ids":["005a993c-5111-4364-9fba-75b3d94a8296","01534212-5a65-4088-b45b-0823736a8fd5","01550676-3659-47d7-9a47-67c31438ec09","0162885d-3f55-4440-b40d-e38d378c4567","021fa322-f38c-4d94-8122-5b13425106d9","02244055-cbeb-4074-9482-42ec20721312","025e57e4-d088-4ad9-b872-cba327f63e9c","0282ebd2-c264-4157-9808-7151988d7cb6","02c9e76e-6eb1-4d0f-9cce-376cb31eab4b","0333e39b-45e7-46df-908c-0748092ce8c1","03683fbb-9843-4c14-bb95-387150e97c90","03bacab3-25fb-4a0c-81b3-7e9e22899c2c","03cd5953-37fc-4a8a-89f8-0b5dd8412dc9","03e34d39-0628-4832-b42c-650ca7e9b318","042b04b4-f7f4-4c1a-86ad-b50d788aa99e","0497551e-eb90-48db-90e9-0f917da41d9e","05712bcb-eb67-4e84-a640-7e507675756a","05f9bdca-0d54-46c7-b803-9083dfc9ee24","061dae7f-e590-4760-b447-3a4a353084d0","068bbaea-874c-4f02-8188-9a15f3cd9cb9","080ba201-2e5d-4580-8921-397f91dcadc6","0826bec4-1958-4b5a-89be-70a4801e2384","08a2aea9-8b3a-4be3-aaa0-4c4a19f63d02","08bc7313-8b12-4ce1-9016-59b4e3c78ff1","0a7dbfd2-cda7-4fc9-9677-e442fb5f5f6f","0aaf15b9-1bf5-424a-a994-67beaae29d36","0ab63e49-0869-4c7c-a033-d8e50032dd13","0b04aed9-bab5-427b-8fd3-9ada33e93398","0b2f797a-0c9a-46a0-9f07-0f6af1846552","0b384d24-8771-4860-8fc1-1b74217f1c4c","0c5c9379-b686-4823-b85a-eaf2c4b63205","0c9cbae1-6b04-4408-82fe-3fcf61dffbe2","0cc818c8-32b7-4f15-9db5-0aacb92296b1","0cef98b7-d54a-456e-8240-1c5af3a72a04","0d446f70-cdbf-4ac3-81db-6fe77e064dd0","0d66423e-bc9f-41dd-9100-09d449c88980","0e468809-d639-43f0-8834-16e921547dee","0e6a9646-1034-4d09-a141-9a36f51ff229","0f5a0d49-71ae-42c4-a896-6828dc4f1e85","10478e22-d1dd-4e02-81a7-d93ce71ed81d","10918bf0-af19-4882-b96f-eb57d67b543a","111036dd-e295-4786-a372-fc7f71171cf7","117716bf-43c8-4534-92da-d7948d4b5628","11c94acd-ad60-4aec-b11b-f4dc4a9adfbc","1267a5fa-f9a9-4a7f-89f9-24889868ccff","135cbfbc-0fcc-49d8-b1a7-cb0740afd793","137f41ee-e6a8-4e84-8d43-9e6fa269f31f","13b0928b-0469-4e3a-a8c8-1df26abb6707","14c4ac40-e8fb-4076-9f11-dcb6a919aed5","14fff1a6-58e7-40e5-b091-672ad11827e3","15a7deb5-0163-42a5-90c7-388f8dda83fb","15c28158-fb96-4006-bc65-425dba031395","15c96b83-d0b3-4da9-bb2d-249cc18b55e9","16328444-5657-4f35-99c5-340d61472770","17990059-8368-45f8-8325-c82fc181450a","17ac61e4-b543-4c37-9bfa-43f0c928152d","17de9f2c-e051-404c-8ec0-c35f500efd67","186e36d5-3f1d-4423-a8db-f4c38898fa30","18abed94-d742-4ad6-a2b3-69e6bd0e3fda","1905eecb-d758-4a3b-aefe-8019ab2491e6","1921ce16-8ed8-41d7-a2b4-9e62f44ac8d6","19b5fff1-7a60-4e50-893a-8177cd62bf82","19f44dcb-e911-4000-935f-5455edb8f868","1a0d5140-0e5e-461a-bf70-d548f8f02f47","1a44ab4e-79fb-42eb-9c46-cf73ee5f0db5","1a44d8a4-21de-497d-9eed-702d7b592728","1a534ae1-4e6f-43ae-a8ad-89e306f11f21","1a8d9be0-255a-482a-b055-f483859266c5","1a96315d-edc6-4d68-a260-d14f61281dc1","1aa57b94-56c0-45c4-b707-05bbfd78db40","1b03e16c-bdb4-4bdf-998f-3ecf0857df81","1b0f41e8-cf27-489b-812a-d566a75cf7f7","1b8d1535-68e7-4ca0-aa71-fc7fc63090fc","1b9dd110-c03b-4945-9d56-580cebac63fb","1bd5fb3d-2c9e-4cdb-a202-ad5955eae42c","1ca86e9b-93af-461a-b69d-799711afddb8","1cef9230-34fa-496f-8835-5dfaac627f70","1d8bc14f-7009-440b-a72c-64e911b13379","1d91f2fa-58e7-49ac-b46c-5a0ba312015c","1dfead05-dd09-4a07-905f-56c3a69a43d5","1edc5050-69bd-416d-b04c-7f82de2a1901","1ef001a8-adb5-4125-aa1a-f5e3f8ca898b","1f7fe3c3-9cf7-4b73-b2bd-301667a2cd4d","1ffc2e95-dd9b-4581-988f-850d9e240a30","207a468f-79c3-486e-ac5a-4516361b7b4d","21041ed6-8f13-4909-a2c3-fa4894a2d1e3","21c8b7f3-7c5b-4004-8dc4-9157288e279c","22262a3a-c2e0-4639-9002-361b39ea9b3a","2237ee9b-fff6-472c-903c-11faf9bb116d","22965406-d8d7-46ad-992e-7fc0e994698d","232ee129-0db1-4a03-9eda-4692a8495b53","2373014c-21d1-43d5-b774-352cdc2a840e","23e043bf-a6d7-4778-8460-13bdf38b7d39","2472bfbc-ab29-455d-8ce4-7faa2cd33abc","24b61852-860e-4f89-a1b2-6429168f0c02","253c7d53-e34b-493b-8d46-da946245bebb","266a514a-076a-40c0-a756-c6fdd261c3cb","267db963-684f-4b2e-9af9-5ad5bfc6d341","26b1ce7e-26d5-44b3-b0f3-c6ec5839c6d8","272c67fd-3e0e-4559-ae6e-a9d9db01288e","277af45a-1f91-4fd4-804d-5b34241386b8","279df7e2-2a3b-464a-a7df-e91da28e3a8c","27ade9a7-2a2e-4ec9-aa9c-20bc8caaf8a3","28294aef-eba7-4f20-bf81-c857f34422bd","287c7486-472b-4069-9826-6a3adbdefaa6","28cde170-c7af-4ee1-85f4-8a9289c5a4d3","29557b92-fded-4aa8-8db7-99168c8e70d8","295b92bc-d66f-45d8-9bbe-5f5f13e39fd4","29b39c91-e367-487d-9820-893870df23b1","29b4a0e0-3d27-414b-80cb-352f16389a83","2a41bb43-0328-4093-88c6-4dc00dfdfb7e","2a456b1c-de58-4ba2-ac39-9e0b3e2a9b51","2a7b2779-92dd-455d-920f-684276608244","2c3c0f74-485e-4b21-8f41-56666a7d0005","2d78f1af-120f-4929-94ed-624ee1f2447a","2d9d3ae3-1f59-49f8-9bdb-2658091a29fc","2e4072f8-4833-4219-b620-3092a9f08874","2e7255ed-4fec-488e-b334-59d3c0f1acd6","2e97dadd-0849-4c18-9523-4775d09fca9a","2eb15b42-be2a-4663-b064-aad6c7cb2714","2eced8a4-67ce-403c-a567-82ace69d1cf1","2f0a5c8d-b9d2-448a-a321-22c45832243f","2fe601b0-0398-47f0-9e4f-9f841ad79b9b","30345500-d430-4280-bfe3-de297309f136","3064ff57-b2e4-4152-a91d-a67e0ea71749","318699f3-3ee4-4355-aebd-8a5a9006e07d","3204f401-1bcb-4d97-b15d-113a5d3c3e9f","32982ed2-96e4-4cc5-8562-744b06bca239","32eb6ab0-831e-4a30-a2fc-5ea1cb40930c","3306a711-b83e-4509-8363-1d9dac83f511","336ab17d-78d2-4008-ac48-e681967949c4","33e34fb2-dc64-4a35-9e8b-057f700196f7","34410953-113a-45ae-89d4-2ce39f75c3c6","344e6464-62a0-4766-b9cc-af719e3e211d","35132c99-01b9-463c-a00d-6f125893c870","37827425-f304-43eb-979b-1ec5b923a2b5","37acb733-b3bd-4140-915d-b2c0989208aa","37d0d802-2bd2-444f-81e0-4cc2f8ece38f","38576aaf-7286-49cc-8329-91159ee81025","38c1e97b-4d7a-4a76-8999-5c76b4bae9cb","397c6517-08e5-441f-a409-ffe383503864","399f7531-e137-463b-bec3-e86756b6ed71","3a200286-67f3-4bff-8a53-3e76733414fa","3a3afd00-da06-4a9f-8cd1-7133728e0fdd","3a42ac42-b21a-449b-abda-6906f06e8120","3a7245d4-7a29-4423-8b44-5e9694e1d9a1","3af0fbdf-95fe-4576-ad67-3f6c9aa7090c","3b4a196f-de7e-4100-ad65-56cf8b0a8b23","3ba24a61-e529-4490-8536-6276ea77c511","3c22765e-a131-4be6-ba48-64b84564ea51","3c6a38dd-e8f5-420f-9576-66937c71286b","3cecf0db-0e0e-4329-b055-bb9dad912ca8","3cefc72a-83ba-42e4-a036-a9f45363c8cf","3d0e93c3-48e3-4ae5-a33f-4ef83f67ee37","3d5691d3-751a-41dd-b2a3-c766c8973bfe","3d6da8eb-31b0-48c1-9ad9-552827967f91","3d811021-40b1-43b1-88f1-04d711c2ab57","3df7c206-97b6-49d7-ba01-7a35fd8c61d9","3e8ecccf-8786-4770-9879-86c4fbf44768","3f0e0823-cbf3-4cf7-8fe1-a032cf33ee66","3f64898e-d561-402e-8e4f-dda1ce241869","3f7b9b8a-77b2-4f83-b0f9-f522c165ac42","400199da-0fec-4dc0-b724-494b6d4f5845","4038773a-2fa6-47c3-8064-fb49da90816c","40d07155-d45d-4fec-a15e-525df5010af3","41db412a-d559-4cc3-9951-6f314daa9849","42232ea6-e31d-46a6-9f94-b2ad2416d79b","423f4311-9feb-4c63-8b4c-32ddd38382e0","430564c9-1cb7-4f46-8737-d5f78745846d","43579693-4b97-42dc-831e-4fc9597e29c0","4399a832-4406-4a12-a5e5-81744d02ceec","43b9efbc-ab04-4438-81e2-a558a67cafd0","43fe9a90-11a0-4cc9-b337-a4da45b28ded","449e4447-fbb6-43d9-a28b-f33331b70f34","44b08a29-8b53-44c9-82a0-ac689c9feeb5","44c1a862-00fc-4e79-a83a-289fef81503a","45651533-0c76-476a-bfaf-1b5ec74427cd","4567803d-3f01-407b-8df4-a00825a243f6","46ad38f6-ca2a-41a4-96cf-f41a41d54a37","46ae8b67-6239-47fa-b5d0-9c9454fbdcdf","46bad0eb-807f-4391-82c9-edc9d14070f5","47a55065-555a-4bdb-8ab1-8830ca5ba6fd","47ce4367-0e70-477b-8ff4-4b204d81981c","488ca216-de75-4acc-9c67-fd37070d7e92","489fdba7-5c25-4cf3-a1e0-3e0fda6c6ee6","49f1fe4e-8da1-4879-8129-bd8a440a45be","4abb2702-6f5e-4832-9e23-46aaf9f960f8","4b3eb87a-8f77-4859-95fd-10988f03da7b","4b827c54-8bfe-4ef5-830e-e17b8690bbe7","4b8489c0-b01c-466e-b33b-239406d7ea69","4bb5aad3-2c3c-41e1-b5e1-d5f7fc38617d","4bc26857-9cc2-4971-974e-c70dfac90856","4c80fc2f-4bbe-493c-bb5f-87192580c37a","4cc281cb-a583-45a7-85d1-c10d5900b966","4ce797d6-6773-4f34-be40-2e3443af6466","4cf7d0ad-8fe2-4065-89e3-c2ee04062695","4d6e2576-b5d9-4217-bfa0-411470155d71","4dbd12ed-e512-43d8-919d-478b18674deb","4e6bce91-f1e6-40d4-9ecc-cafa8d2586b6","4ecd2a9c-45b7-45c2-8936-d9e631367507","4ecf39c3-3b5f-4263-a7b5-9881bded3494","4f312d7b-f505-45c3-bb87-650259e5db50","4f45c7ed-cf98-455b-b665-81103fdc9331","4f570888-effb-44ff-a250-a7726a0b01f4","4f8f5a6b-2bd4-4e45-93f8-6017917b0ee0","50352268-88a6-4575-a5e1-cd8bef7f8286","5037330a-6e9b-4ce5-ba81-ae1ccef63334","50748a4c-43a0-4274-9a84-046d76027166","50e349f8-9860-4197-a40f-610659057365","50e7681b-37e3-4f6c-8415-ab9613446ccc","514f8188-3d9e-4937-bfcb-b73acd80878d","517ffb8e-4194-4958-85ec-b853b917764b","51acfb01-4b0b-48fc-9704-a9b4a1e43a23","51d25ead-70d6-4abd-b611-6c94ce042c89","52248fe8-0f1b-4e3d-9024-842c921b6071","5256e591-7510-41fd-8564-330562c00adb","52c79d57-a8eb-427d-86ac-b203c0bb7cda","5353e8b2-3280-48ec-9bc2-8c8e7a15b460","535ca5c1-7574-41ce-a504-a4f8de9eb1d8","5383b66e-e559-47d2-9967-9c2d5f898653","53b46e72-6ed0-47c1-ad42-38a893620fa1","53fb7b99-9e47-46a6-9c8a-88e28b5197f1","54278194-fc8b-4208-a3ca-e655fddca2df","545b397b-ff3a-49f6-bb10-e403b8fee85f","54968fa2-36f1-4d21-89e7-a307d68cfccc","54a773e3-93f0-4bf8-ab6a-8cee939d743a","553b6aaa-3ae3-4f3b-9ab6-361eddf996a2","55483163-c53a-424d-9cc4-74da9aa6dff9","55c61b29-797f-4fda-acf1-039a807954c9","562ca69a-e077-4e38-b2a7-013b3813b7f6","5687c7d1-4794-4132-9ca2-b039905882a3","56b65f77-85c1-49cd-bb2e-70e5225ace9a","577aff75-67f7-42c8-b31f-50026c5ba5c6","58b54fa5-99c0-4a2d-b36a-1c7963eeb210","58c34fe0-77ec-4ba3-a214-00d0eb42ebae","58dcb5ef-85f8-48ce-be39-d0a4eb8345af","5960dfdf-cba1-47d4-8e7c-f87f814b07ed","5a019603-2351-4923-96de-c0809f685a80","5a240d1b-8430-4986-850d-32afa0e812b2","5af90ad7-25e9-4a5c-9169-38f33d7640a6","5b7d9208-883e-4fce-8750-c694398c4ea2","5c356eb7-ebf4-400d-95a7-7452382bc32f","5c51021a-4a7d-471d-9286-f150ff5802d7","5c71906a-f885-49ba-a889-8baf4e74cce8","5cd39b01-9a06-4575-9c63-9fb3ba9ef101","5d1b7628-3c08-4cb7-b14c-36ea119574f6","5d3b9039-ffd0-4265-9854-9c722c88a40f","5e046ca7-f392-4036-8ec7-6cbd9133d8ee","5e4952a8-4e1f-4a74-8a06-c9d633b25dcd","5e4dc67c-95e2-4c65-9c73-b3ba70c49629","5e8b3a6c-8a76-4998-9fd1-41d5756e4956","5eeddb97-3b50-4ba3-b48d-d1807e644b72","5fb3e3b8-24a9-49bb-af3d-6b866f4187f1","5fd9acc5-0088-4621-8f48-e997da5f27c5","603114eb-c0eb-4734-87e6-7fc94beda3c7","60ee28b6-03ed-4cbe-9367-b8db2ae5a66a","617555d3-ae42-4cf5-ab74-8758eb9bfa53","621aa8e1-aebf-4eea-beb5-7fb47700a87a","6243f79f-b0e3-4fba-b899-7535e1a277e2","62465f68-6a84-41ae-8a14-41f41e817eff","6261592a-82d1-46dd-964f-a0a1cf22808f","62811570-cf16-43b5-8f50-e6358d726cb4","628ee82b-1f10-4466-bdca-75c0f89d49c9","62a92bef-0abb-49c0-94df-10d2da6845d0","62aaa129-69ff-4e22-861e-b2efd1cd5a10","62cac2df-9964-4931-9e03-7bc43395b88c","63120f1b-8052-49fb-9fc9-09d7746a627f","63993fbb-df88-49db-a3e9-655c87dd68cc","63a9637b-61de-4d77-8c35-b12a075d7faa","6410d20e-408a-42c6-9884-ea9e22e2ee7c","6418bc71-de29-410c-baf3-f63f5615eee2","6457f78b-aca6-4ebf-9e89-bf9321ceb35d","64729d4b-991f-45d0-aaef-4ab26746c57e","6477ebad-e1e5-4508-aa20-39b47e39a5c6","653e2393-30a7-4e0c-bd20-f05ca0ba3cb6","65d51676-2399-4db9-8c31-c8063be7b94a","6651e0fd-50ca-449e-84f1-ebb07fb305f5","66f1953d-e12c-4192-a4f1-930eb489f681","67057abf-749d-4512-968a-832c56324e13","676fb0ed-5a19-4fde-b2c4-f46c7e0915f8","681b9c8a-6140-4086-bc72-37f0058a8e9f","687611bf-b200-457b-a139-63502c93ea69","68c35440-ddb6-4b43-baba-889ff3ce0c0d","68df89dc-3909-4051-adc1-a86589d0e99d","69419307-53d5-40d7-82da-cab2e7bfbda4","69eea766-b22e-4c2d-9e98-d57f38e031da","6a58066e-f9a2-4508-9cc0-908b1cf747e3","6ad4e9cd-76e2-4ee0-8185-8b3aec3578ce","6af1f1db-eb91-4297-83f6-9318b87fd220","6b092822-f34f-4384-9d0a-23d863d27231","6b0e7f4f-99a5-4d80-8f10-40cf0977035a","6d65590b-f390-4faa-80e8-43bd87a70ff7","6d9e44c1-7b51-47cb-b564-608deb46cc44","6df2f49d-097e-4685-8ddb-69c55f07f60c","6e1a59c7-53d9-4e2c-9596-c64394838575","6e4622c3-d727-4e5e-979a-db45221636be","6e82bb8b-2a95-4935-a728-6898f64ce39a","6ea6d05f-dfeb-4d1b-b9ad-d006ec2437f8","6f29a2bf-75e1-4361-8a44-510d79323186","6f630e29-5ffd-473c-b5a7-96a9a5e3551f","70099566-ba66-4d66-aafa-8232aa664a6d","701aefd4-074a-47b8-88a3-32fb90b09dee","707ac400-885b-4424-87c3-1bb0cdbfea1e","70ff4fd5-c26f-4274-b899-1f995d4d8c25","71f2030b-f622-4cc3-ac83-258ae3645fd6","72308c3b-ac46-4bb7-889a-7860cbadae72","72776f25-48f5-4d7f-84a9-310928b9d7ad","72cc8e7e-3d78-456a-b4ef-c9f2eaa6ec7c","7352288b-ff7b-43c7-a5ae-3f6577d11708","737ac24f-a47b-486c-89df-3e3eaf495ff5","73c6382b-ceff-4092-9ec3-328cefab440e","748b9a1d-0fa3-41bc-beb0-7e3cf2eb33ed","75d30961-0285-4554-846c-7c4b0ea9b1da","76a38a60-7e1d-4ef3-acec-1699b29662ce","76ad8df0-20f3-4372-8b2b-7c4ccfc2e9c0","76dc6f1a-9eca-45bd-8788-cc34b9e1a980","76f30404-4d66-4aa0-81d3-351820854eda","77c65a79-b8ae-4743-b124-c34140a06731","787da7ce-527d-4abf-9e92-5de9db2250cd","78b8829d-7ac3-4563-8c3e-959c660dbe32","7a1ed4c3-0c0f-4194-afd6-2d891fa0f61b","7a298c5d-9937-4df6-a544-7b3bcfe84885","7a4c0731-555a-4bef-9d9e-b877f0339417","7af9c715-8d72-4eae-b412-fc89138ff588","7b150a6d-a33d-456a-a2b0-286e43bc636e","7b6d71a0-7603-4cf1-b874-2b2200e62183","7ba2d0d9-9b48-4edf-b1bb-e7f385ae97c8","7c0916a2-e2f1-42b5-9f2c-b6a18a605138","7c2cc19c-84ce-4c0b-b56f-7a2b3878a26e","7c5063be-9dd7-48fc-91aa-7bea13d97200","7cb82fdb-5090-45c0-ae67-4846667c8625","7cb88a03-7092-4d31-a9f1-4f16e39bc537","7d671616-f58c-4ee9-9ed7-78ebc385948a","7d75969d-c932-4b4e-8135-61968228bc32","7e19c7e1-1b4b-4c7e-b011-eff8ed7de0fd","7e5f3636-323b-4652-83b9-3b8b9c3191eb","7e8ae541-98e2-4a84-90a6-b17502f4442d","7e998ce9-4853-44d1-a01a-e2d493718ceb","7f78886b-335c-4227-a2a1-0b99108c89c5","7f918a49-a046-4115-80b8-13490ed5cd0a","7fa480be-8df1-4bd7-bbfd-d92f9c49aef1","802b1bb0-6c73-481a-ac3e-7d4e1682b4c2","80a372c6-cc5e-44f4-afab-2fd56aa79920","81c49cb2-ceb4-41e0-b3a6-d7820a01c92c","8210d0bb-1309-4de2-bd46-58759c72158f","82b5f331-3d6f-4e0f-b5a4-61040ed61d39","82c9463f-44f7-44a6-ae10-ae0ec1f55ca9","831f40f9-2642-4313-99ec-a4a7afe2839d","83706d20-fbb0-4a0a-b9c3-70e6fa3fdcf9","83beeef7-2bb5-4c3a-9be4-79a968696d65","83ee7310-d5cc-4f1f-b0c9-f0bde22a695d","8418acd5-ca4b-4fe8-a1f9-44b16e6dcda7","84298c7a-8bae-4e62-bd0a-bcce2156fdf1","84c3e407-2828-40e5-b335-7a0a3df1e5ad","8584b531-6dfa-43b2-99ba-b614b147f9a8","85f5bbab-7bf0-48d4-8138-d64f84f4d769","864b4fb7-dbfe-4d9d-b520-4a307c31c876","865ace8b-9e12-4f20-ac3c-d07a323b40dd","87d1c48f-1ca3-43ea-8109-964b29bb2d50","8822db23-34dc-452a-92bc-a3ceee4db375","887debac-305a-4713-9f23-f80072e7a39a","88b6057d-19f6-4cf3-8d13-a5e9c7a9941d","891b0e9b-6d3a-43cc-8b59-f617c4543189","8956585b-1268-4eb4-b97e-74ffb9f82688","8993e4d0-d306-4993-b5a7-dbba754d479e","8996cd43-5ecd-4a05-a5a9-e49326befaa1","899ee6f6-4aad-4093-b1ef-7e2ec2b78df8","89ad7ef0-101c-436e-a41a-cdc8e91d2f2a","8a38bea4-2d1b-442b-aad5-ab1a0ae67aac","8a4448b6-0dbe-427c-b145-8ac915fc0dfc","8be9bbc9-77f2-4a61-b19f-30f2e61b8e88","8c8841b2-9b4e-4f65-8e30-1e9423cb8fbc","8e3c2e1a-181e-4275-ad09-51c9de039d32","8e747bba-b521-4f81-9d9a-3e85747cefe9","8fbd06f1-3427-4168-9a34-82f43a514146","9058a084-485e-4b55-aab2-1d7dbad12886","9137b4aa-2289-4a4d-b1f5-ae75a0928278","91df0ada-4828-41ca-9000-5132fcb29e6b","91e5ce25-a0cb-4d9e-8274-af5672a85b0a","9252dd84-ba93-440a-bc2f-36fb703fb57d","92acb132-1f0b-41bb-8483-9616ea040601","937f96ed-dbf1-4ff2-bc55-6b0cd3795ccb","947a6ddd-6684-49b1-8e2f-1516ca7a2a34","94b728a4-c3a9-408e-8333-8266a02c64fa","95083e1d-faf5-40e4-9be5-909cd01cc2b5","9515ced4-b679-48f0-bf62-8b7baef5e1c2","95315204-a5f7-4d20-bda3-957029da29fe","95585c69-6474-432e-b80a-489a2b69d4e6","95b6bba2-cb1f-4598-827b-a0ab26e925aa","95ec918b-3039-402d-a52e-b9f0a08284e2","961dcc35-a282-4d40-93b3-1cc7fa5221f5","96297bcc-8480-4b14-8612-1c395d481bce","96328602-bf67-42a5-8cca-1fcea5656b8a","96549393-9607-43c8-91de-905462cbcb19","9660fb20-f499-4f7a-9f25-e463f095ab90","96614dc1-9386-4861-b792-b83bcc6c5811","969d5979-8ae8-4442-a3a5-3412ffeb5af8","96d52300-3fb9-49a6-8fe9-bd32adcbdb4b","96e14936-5614-46ba-874c-c1357243fe02","97004cdc-0baf-415d-8e87-7f36667c4628","970abfee-e888-4635-90a6-2ab88910c428","977527da-2953-493f-8e8c-ffc64ddeaf10","97a9360e-a02b-4dde-b14c-620ed0c54804","97eda14c-5e33-41cc-8651-109f5ef97bb0","9865657b-43da-48e2-ac55-6a29c21df253","987557ee-8344-4191-b85c-f9dedf4d1614","9885f3a6-27f0-453f-b2d5-1fbc0af05920","9894ec2c-e5c2-42a5-b44a-76ec02684171","98a5f21d-b403-4dc9-b33a-bc496b19e1b2","98c45686-6c6a-43de-abab-d0af9ef0e7e0","98f389ca-3662-4544-b0b5-9d2abd073b7b","98fcd666-7724-4c55-975e-20cfa759bba7","9983c9fb-84b2-4eec-adf8-c604e237b82b","99c3decf-4a32-45ff-b7f6-ea2d52387c89","99e6a7d5-678a-48ac-8296-71078e4d8521","9a58d03b-1b47-4d3c-9d8a-18f20c8f978b","9acc9266-3a8e-4a5b-9c00-bbc30e3bf5e7","9aec9409-1812-4f85-b396-39bd9783b65e","9af1a73f-e2ab-4832-b9a0-5bd9643f4fd3","9b1da399-d8ca-48a9-96a3-dd1af1ee5e1e","9b396f90-92b1-4cc0-9be8-2f724b39fbc6","9b6fe3e2-a2cf-4209-ac9b-e04d02599360","9c78da04-09c3-4a95-9586-4544c326d569","9c81a162-9735-4c3f-8eee-43b4f3b5a59c","9cccf957-a4b0-4d10-adcb-0393d7e50b0c","9d6dc341-89dc-4e99-baa2-ad0ae59f0e94","9d93aef6-daea-4010-adec-9f081fab4d6b","9db73fef-f5eb-4d98-aa11-117bbed46bbf","9dd6bb74-b58b-4019-bfa4-7325d70a2fc2","9e1170a5-e5bb-4b86-8718-f75eec679b4e","9e132fac-ee5b-486d-bd4b-d534134acf1a","9e7878e1-28a5-4527-ba61-ed6c6b855309","9eb23531-e89f-4b27-ae15-535e6c7bcd81","9eb742de-57fa-49f5-977e-bee1b8186e9a","9ecdbaa2-7e93-4969-97cd-d3ba5d776d25","9f5f2d43-42e5-49fc-8430-d972ac4e9d77","a0627111-1390-43cb-84e7-d6c0e46c02ea","a18ef64b-a9de-4548-b4d5-168758442db7","a1ba2d4f-7a9b-4cf7-98fd-17b1b8c70bcd","a1cfd796-50a5-404f-acc1-21dbf543ccc1","a1d7ea5b-b02b-47f7-801f-1af7024df231","a1f985de-fde4-497c-9cb1-00af00fccf77","a2a0f125-041e-4a5d-b100-3dbb6bf729a1","a35ff5f3-56a1-4862-809e-7ec77f9cc9ee","a3a4da7d-a703-4f91-9ef7-ce269c0b63fb","a4be3032-c55b-43b5-9ae0-f4e7470f4f83","a4db1b7a-93f2-40a5-b649-80a099ddeb62","a4f4d8ac-a69f-436a-9f3e-be2d66b056ff","a4f7b582-dc68-4d12-bebd-baf79fd226f0","a56424d3-ceda-4cd3-988f-48ced72d17b8","a5b2d0ed-0b47-459a-8f5c-554dd816c03a","a5c17b3c-6f3b-4952-a06b-0df5a5a18f0d","a5cae174-58da-43de-b7c8-f5e79f8cf986","a642c7b1-d4d1-4125-a66d-560438e5ee51","a68647c2-a343-4314-8abb-00e7de6ecf0d","a6a57c6a-3603-466c-8a81-a9eb8de92aec","a6e00407-8290-4924-afe8-424517867a93","a6f72e53-52bb-4cf4-9b8b-34ed0c5f7c3c","a7878436-bf83-45c6-a040-e2fad447862a","a78ca93f-a833-4ce5-b032-a4225e1ee45b","a7aae748-27d8-48f8-beb2-8e0192d7cc5c","a7d5cb40-7365-492b-a3bc-4a624f78cec4","a82f782e-abc8-4b92-a193-17b2c383f765","a92c5c74-d5b5-40bf-be86-39ac5e4c4f1a","aa01020a-f7c8-469b-bb39-d71c195838e3","aa04994a-4295-4be6-90c8-8f67fabd2e99","aac1b0e2-d164-4c98-ab9b-57fbbc95ea0e","aae84079-b65b-4132-86fb-e82503bb6c7b","abe82e5e-7496-42a5-87df-880e153bccbc","abf2ec64-a850-47e3-91a8-7323e04a5f4a","accb56f0-3903-4894-86f0-3965162064d4","acf03952-6d9d-4e57-acb5-44c855f3ad69","ad1e3ee1-c2b3-4d06-9e0d-a28e9b44fb30","ad25a56c-607b-4896-a34a-aeb2712b2a08","adde69b5-947f-4fe1-84fe-89cf44a35e8c","adf13285-d127-4534-9f49-aa86914da175","ae3d2fcd-11e0-4071-8c53-cb3315b7360a","ae41792d-4aa0-42ae-a9e1-9261cf9181a8","aeb56f0c-07a5-4b01-85ac-3ceaad0eb544","aef2ab8e-49de-443a-9236-97356aae2bb1","af1b83d9-078b-44dc-a118-4659201f4854","af426fb7-6bd0-470a-a887-0b1adeab1a11","af9ad645-e605-4048-bf4c-d636584f315b","afb4e4e8-33ba-4951-b7b1-170a1fc91567","b044630d-50e7-431b-8e91-bd53e967f594","b082f22f-6c01-4e8c-80ad-6fdae5c3f22f","b0eaaad2-5512-46f8-9bdb-84aa3ef0c2ac","b137c4c5-9091-4130-ba83-87a28435c9e8","b1902b98-7579-4b7a-8cb8-9bd0e0da5f67","b26e7306-df23-4339-b3af-faf9effe0140","b2e439e2-2c7c-42fd-a47b-f615641f7392","b373adfa-ebc2-4060-8ff3-d1f0eca03c02","b37dc16e-3631-46df-acc4-19040fb8a86e","b3d7738e-295d-4df4-9484-8b62049e22e9","b3e2ee4c-5548-4a17-bf27-e906d2825867","b4376426-c901-44eb-8186-c009a3657893","b469d5fa-89c2-4e5e-9c1d-c3edb80f7b59","b47ccd54-3bad-4926-8420-c88f9dfaf80e","b4af8aa4-2fa9-4489-94f2-63ce4b07b0c9","b55b57b3-6cbd-4571-8163-b6ba76904d9d","b560a15d-240e-42d0-ac06-19d8363d2080","b64e4622-e905-49da-948f-aeba1ba674ce","b6a0ca9e-c72b-4c99-8e6b-b6dbebf894e9","b6d39f35-c7b2-43b2-aee3-4ff2cd3e37e7","b7bf8555-019d-4a08-8004-b31fe7bf494d","b8352d89-48c0-48de-9bf6-330d05e7331f","b86fbf78-57ec-4a0f-9fb6-e4bf13861563","b92c8925-ecfc-4ece-b83a-f12e98a938ab","ba50901e-a030-4f52-8369-f4c9ca6b9c7a","ba6694bb-f3b7-48ff-9d93-cbed84fac210","ba88d76e-d71f-43ea-a272-5dc8b5928c6b","bb4004c8-c3d9-494e-a257-6d8443cbf1b7","bb74a761-0c83-4aa5-af58-fd5da8797b7d","bbbecd1f-81ad-427e-a50d-64b9ec029c3c","bbc9fa2e-0ec9-4b70-b602-a7e669ed0031","bc543a7a-698b-422d-a2be-8315bb366b27","bce45bc0-accd-4853-a166-9dd5597526d5","be7e4b30-7f45-4109-b5ed-9223a9422d95","be8e09c2-3384-4d00-a2d0-65d6b8056e30","bf11766b-2614-433d-a3b3-e49b31769c98","bf422aa4-f696-4019-ab7b-90e378c33aea","bfa10a88-12e0-4b79-80bb-6f4620277e20","c060a07b-7408-4b95-a546-e2b2010d7818","c15e5767-64e1-4f4e-a02e-1143db0f648e","c1b854c2-493b-4129-9688-c9db1524ee94","c1baebba-a975-45b1-bbcb-f4ce1ba682b5","c1bba8fb-d763-4efa-8db1-e5e81994b5f9","c321d0e1-ff30-4424-979b-25e1a33e45d5","c44f81ca-f72f-445c-8901-3a894a2a47f9","c451cdbc-c580-4728-b384-af157de6e505","c464b81a-3d91-4d07-bc9d-6756780417e3","c55498ad-f474-4805-b9e9-592ec1c8a8e5","c7533cbb-ab73-4a0c-9ea0-baa97c4665b8","c872e70c-626f-4d2c-b26b-d94f815fceea","c89b3c3a-3dba-47b3-9620-d4dd754a59e6","c9a3144f-9b4f-4d1a-b384-6228c99b38b7","c9ecf4e3-4ae2-4e15-95a8-280d2ebb5644","cb4abaf5-3bc0-464c-b31d-d579d0a9128d","cb524a84-34a4-43bf-9872-b4a053a141b5","cb939924-52e1-4802-86f1-3c2ab164007f","cbe67eb3-f10d-4f34-b4b0-fd00ee8cc325","cc9c1b6a-8fc9-4292-81a0-5cf423638c71","ccf928c4-c8ee-479c-88df-d6bb35e0778a","cd757142-45b7-40db-80f2-fe161379aa4e","cd8a0cd6-8d3b-44bd-b609-c12fb851d17b","cd95f833-27ce-447c-b505-02137daaba4c","cd976640-79c0-4aed-8a2f-a62025665d59","cdf5d88e-1699-4ce3-a4aa-3e8d1ef2bc39","ce3346e6-f8ca-45fa-944c-055ac038e828","ce70fbc1-eb96-449b-bc3c-53dc5eb7f3d3","cf0725c1-2b83-406e-8a19-0b9d159c8614","cf9095db-44ad-444b-bd9d-4a06102fe230","cf940cc3-282e-4b6b-877d-5ce71ee797bc","d00305f7-df9d-4cc9-aad7-aa83553a60f7","d061b9a8-e95d-48ec-a1c9-337433b62dfc","d0a55d99-d668-4621-bb14-f7df210adbe4","d0c82442-e201-407d-9db7-613f24c1eb03","d10d759b-db5b-4a59-840c-05bcbf2381f3","d2075dfe-b48c-46e3-bde1-f9f8e3b9d928","d2655e7b-ae35-45f0-b86d-c2f74ef3ee04","d28d244f-a41c-433a-932a-efef8623d9fe","d2c5b445-3679-4acc-9e88-1e8c7c656589","d3112990-3919-46b0-b927-14566c689a81","d3740beb-7fa5-4b83-be7d-039750b126c5","d3e3961c-d092-4a15-b5db-d7b5c70e4fc1","d4128057-3615-4df6-ab3b-d41c2c643cd5","d4606809-7066-4413-9dfd-e929004a71bb","d55384ef-6e5e-4e0b-8156-edad0fc9b25b","d5d68279-a6fd-4cf3-afb3-1ba4e26a78a3","d66b6951-50a0-4b30-aa73-d4ce1380ff49","d67cf0c1-5658-4f88-9fbd-63c1dbf77ee0","d67f591d-8bae-473e-9220-90502fc55cd0","d72d883e-d194-4154-a96c-35e601c5f797","d747c636-e5db-4905-8939-667f9ef4200d","d7f613b2-de5b-4592-8d14-5ad373537a21","d8a63f1a-8224-4c66-9a3a-6c04c656c73b","d9a754b9-a4f4-4183-b184-b7c12551c483","da8be748-3815-46a6-95fc-a90cdf697e73","dac11332-404c-4839-b0d0-3224a55ac579","dad3662a-f7b4-45d5-a35e-fc6c38474692","dae3e69d-ec38-43e2-b4a2-3a9064835a97","db6d3fb9-ecec-4a55-bfcf-6ae2d35e416a","db73b06f-ccb7-4b9a-8d30-671de35b86a7","dc3f4154-9347-4ceb-8744-9f1ace90d33f","dd2ac135-2411-4753-ba4f-41c33de526db","dd842290-fd0d-419d-b793-bd84b43f5d9a","dd8611ec-6db3-4d29-8d3b-01e87bb38a55","dd9b48f1-7c3a-4b1f-9a00-7b75eb6ea831","de0ac2b0-175b-4e71-9172-ce2a72234818","de69bda2-9690-4e8d-abeb-115bbb377fec","de6c04b6-7a25-4a0b-9561-0358a2acef43","de754d20-5371-456b-9064-8f0687d2eab7","df190cfa-ebb6-48e8-9980-950a26d0f2d8","e0571374-26b4-403c-b6da-4fd8b930cda6","e07ca6cd-4767-4c29-932f-fdb9bff5307e","e0e2923f-a585-4096-8268-1136655bbf3c","e10e313f-ba75-4324-b1ac-f2bbae99f7ab","e135c9f9-5099-4029-bc19-dd9a0760d86f","e13ee385-ad54-410a-b1db-19a0267294e1","e16f6a52-67d6-4215-9f3f-3b0a17dd8889","e1a4064e-3fe3-49ab-9dd5-85872fc8477d","e1dfeb23-204c-4e48-8a23-c69daf92340f","e1e88b41-7ae5-40fc-8947-5f5aa03388be","e21f4c3f-60f2-4f68-92e1-88fee822bb9a","e340b671-7daf-4f84-80a9-2ca4278aa33b","e34229e7-5dc4-47b3-9ba2-609e5b3ca6c2","e36b68e1-41fc-416b-94bb-59798edfa500","e3731001-4e6a-4a91-9e7d-fc2ea039a60b","e3de70f1-6fb1-4191-b66f-491c794f9c05","e49c0db1-5acc-48ed-a0f0-0510433d6d34","e5339dcb-2544-4f19-acf3-86f83793301c","e58a9634-c2c5-4bf2-b694-86b23f8cf923","e5a66092-6748-430e-877c-0ddc94c948c2","e609028b-43b8-4aea-9f9a-25aa127482db","e705bad9-1c4d-44e2-89ee-9a5824e2effa","e78801a7-af8c-4f1d-b29e-7a36676b6818","e7b95522-a9de-4ec1-8158-c66813919e62","e820a082-f876-4cfc-95a2-34be5b994d80","e82fc4bc-ac81-4ad6-8b33-781d047f60d5","e84db98e-c51a-4380-8704-57fdd5eb360f","e89a4cc9-bd45-4bb4-bc78-d555c5e16c74","e8aade2d-5cf5-44f6-9095-aa3756b1c1dd","e91e1aae-438b-41df-ad8e-25ba7c9a8f74","e91e2641-70cf-4055-8749-2c2826af816a","e9744bb5-9ad1-4287-9929-1146377d975b","e9d34a2f-09ed-4fb4-891a-890f450699bd","e9f08835-74ca-4ac5-980e-e802aada2bb7","ea1735b9-fd10-4c9c-b9d3-046d8c22b852","ea96ecc4-72f3-46a4-8900-6a7c5a83d4df","ea9cfa3b-686e-4933-88b2-fabe218ed7eb","eace2c85-976c-425e-9800-5a6ccbd91b56","eb1ba09d-ecdd-48c0-af0b-3dc5ef908f9e","eb359844-c9e7-4ab2-ac5f-d426c4fe6fc7","eb5257a6-5a4d-4b7d-ad4f-3ff0b7c74dfd","ec2b2bce-1b66-4cc6-ab87-50776e1d1e4b","ec82f4e4-97e2-4374-a255-ea6b35201e80","ed37e1e0-ed21-45c3-8266-c6b11068ceb6","ed6fd37e-a5b3-48c6-b881-cedadfd94833","ed783a0c-ba7c-48f4-aac6-ad93a02bce6b","edabc558-2c54-4c7b-a6fa-1e75ddcf12f9","edf40698-620e-4032-b2e3-0d513a4a4250","ee851c64-4bf9-4dde-b73e-41366828a1dc","eef2a9c2-2079-4a34-80f0-f0ca7f882498","efc70226-2926-4bc5-a602-c5d56f0cfc52","f0c889dc-f043-45fd-81a4-9ae424343f46","f14137e9-8743-4adf-a89e-9a7f455650bd","f1ddd6e0-dbdc-4ce0-bc26-f94c951f90ad","f23596e2-72ea-478d-baa8-3df0e81b4cdd","f243292a-e8a6-43c2-805c-15715fcebd67","f2e450ae-3ed8-424f-b974-7d9a8e8ac7e4","f3f43c81-10fc-4e08-9070-5453bc5826b4","f5110f2d-ff79-4a4b-9842-32a9fe82011f","f53b7e7e-494b-4346-b18e-0e879bba7cec","f6d3d5a6-7d26-44eb-b040-c50fb1f867e1","f76d6ecc-a774-44d5-8c16-e2ba4bf7d283","f836071c-9ee3-4dc0-95b6-28d0c5de76f3","f864b3de-b6eb-4870-995b-298fc2e08028","f8739e90-a967-4e06-b966-1a15755a25bd","f92e9e94-e5e9-4b2c-b9e5-35de42ca7b8e","fa08a961-cd6a-403e-a098-1e7f716262bb","fa712fb1-8840-4e26-9211-2653919fed91","faab0dc4-a9e6-453d-a2b1-12369084f7d6","fac247df-aa19-4627-8d65-6ddf5e7e5c8c","fb734fd1-7e4a-4d56-b85e-6638012cbda9","fb76cb6c-2f4d-4ca2-876f-d49ea529e59b","fb8fffd1-aff1-4aad-bfa0-9907adb5ce25","fb9140ee-9f74-4f6f-b2e6-abef3faf7882","fc0a5a9c-e59a-4e33-b584-d6daa7f81547","fc5004db-8db3-4506-bb01-f41be7968824","fcfb1db3-c0ea-4f8d-8208-5f8895ff686d","fd16edd0-4d4e-4db6-9da9-4bb5994fa047","fd194fb1-0d3a-4eff-a446-240d18dad43c","fdf1fea6-3e04-474c-9cda-ff49fee255f7","fe0865ba-47c0-40bc-b0c6-e1ea5ae08a98","fe14fc96-f33a-4bd2-8b04-c339936d3c24","fedbe1f9-b29f-4bdd-9718-615b7c2413b4","ff951c38-6e02-40f0-9f54-13ac0915332b","ffbd0396-2e7b-4b87-9504-953bd35e4fea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ARN","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DD1","DD2","DDE","DDG","DDH","DDI","DDJ","DDK","DDL","DDN","DDP","DDS","DDT","DDU","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","E01","ECL","ELD","EOE","EVG","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","JVC","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PD2","PELP","PF19","PF20","PGPX","PGRU","PIP","PL24","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TDM","THB","THS","TLA","TLE","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC01","WC02","WC03","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"mox amber":{"name":"Mox Amber","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add one mana of any color among legendary creatures and planeswalkers you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColorAmongPermanents","count":{"type":"Fixed","value":1},"filter":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]}]}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add one mana of any color among legendary creatures and planeswalkers you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"7a43bd27-fdd8-41f0-9bc4-92568f3408f1","metadata":{"source_printing_ids":["66024e69-ad60-4c9a-a0ca-da138d33ad80"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","DOM","PDOM"],"rulings":[{"date":"2018-04-27","text":"If you control no legendary creatures or legendary planeswalkers, you can activate Mox Amber's ability, but you won't add any mana."},{"date":"2018-04-27","text":"If your legendary creatures and legendary planeswalkers are all colorless, you can activate Mox Amber's ability, but you won't add any mana. Colorless is not a color."},{"date":"2018-04-27","text":"Mox Amber's ability adds one mana of the color of your choice from among the colors of legendary creatures and legendary planeswalkers you control. It doesn't add one mana of each of those colors."}],"rarities":["mythic"]},"mox pearl":{"name":"Mox Pearl","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {W}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {W}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"824597b8-c89a-47ec-8526-7efc6e24ef0e","metadata":{"source_printing_ids":["4da892c5-071f-416f-9e42-c4bff102eb88","8ebe4be7-e12a-4596-a899-fbd5b152e879","b3020358-9c59-45fb-bf74-9c69bc47580b","c84e8a0e-49a7-46f6-8a37-910e32753528","ed0216a0-c5c9-4a99-b869-53e4d0256326","eed1bd05-d085-4115-aa37-df4e7aef2e46"]},"legalities":{"commander":"banned","duel":"banned","legacy":"banned","oathbreaker":"banned","vintage":"restricted"},"printings":["2ED","30A","CED","CEI","LEA","LEB","OVNT","PRM","VMA","YDMU"],"rarities":["rare","bonus"]},"muldrotha, the gravetide":{"name":"Muldrotha, the Gravetide","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental","Avatar"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"During each of your turns, you may play a land and cast a permanent spell of each permanent type from your graveyard. (If a card has multiple permanent types, choose one as you play it.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"GraveyardCastPermission":{"frequency":"OncePerTurnPerPermanentType","play_mode":"Play"}},"affected":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During each of your turns, you may play a land and cast a permanent spell of each permanent type from your graveyard."}],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"e4625704-1d52-44e4-804f-2f45644d76ac","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["51710b19-68e3-4853-901f-e618bde61161","705b4d97-2f50-47f7-9053-d748f4337553","76f7d02a-7b83-4444-ac65-1661637183ee","adc15cd2-e6d1-406e-af58-2f5fbaa74a30","c4125bb0-b104-438e-a6a2-97f9d141243c","c654737d-34ac-42ff-ae27-3a3bbb930fc1","cf3f12dd-5b96-4eee-bd2d-a221757c24d3","d0a81b1b-92c1-4ee8-affe-6e1c027c7393","d5c19629-b129-4c8b-9456-c38309248189","ff672733-486b-4042-8209-fca70df86b7d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2X2","CMR","DOM","ECC","FCA","FDN","PDOM","PFDN","PLST","PRM"],"rulings":[{"date":"2020-11-10","text":"For example, you may cast an artifact creature spell as your artifact spell and cast another artifact creature spell as your creature spell."},{"date":"2020-11-10","text":"If a permanent card is put into your graveyard during your main phase and the stack is empty, you have a chance to cast it before any player may attempt to remove that card from your graveyard."},{"date":"2020-11-10","text":"If multiple effects allow you to play a card from your graveyard, you must announce which permission you're using as you begin to play the card."},{"date":"2020-11-10","text":"If you play a card from your graveyard and then have a new Muldrotha come under your control in the same turn, you may play another land or spell of that type from your graveyard that turn."},{"date":"2020-11-10","text":"Once you begin to cast a spell, losing control of Muldrotha won't affect the spell."},{"date":"2020-11-10","text":"Use the type of the card as it's played or cast to determine which permanent type to count it as. For example, if you cast a creature spell from your graveyard, you can cast a card with bestow as an enchantment spell."},{"date":"2020-11-10","text":"You must follow the normal timing permissions and restrictions of the cards you play from your graveyard. For example, you can't use Muldrotha to play a land if you don't have an available land play or to cast a planeswalker spell during your end step."},{"date":"2020-11-10","text":"You must pay the costs to cast a spell this way. If it has an alternative cost, you may cast it for that cost instead."}],"rarities":["mythic"]},"murder":{"name":"Murder","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"938b4e2c-88d9-4637-bc00-e228920c9a78","metadata":{"source_printing_ids":["0b5579cf-4e3f-4b65-a253-465459f3da81","0f2eb849-b3ab-4d26-86c5-235c8161cf2a","1c13ac76-7cd9-456f-9b89-92bfa07c64c5","1cde89d1-b789-4bd6-8dcb-856b525f775f","1ea6438b-0e6c-4d65-8bcd-34a988717c81","1f29d9e4-3100-43cb-9723-7d5c23f89b12","2c249609-9cf7-46f1-b94c-9329add966bb","320e195e-65c7-4220-bdc7-fe1e02a4adfc","440bfb8c-f29a-4c11-9fcb-ee935dead03f","45368bf3-d5e9-43e6-a67d-93c2e93acc72","4c98fcd3-8273-459f-857d-d0a34a1d285a","68c5d614-7b7a-4768-8e81-707f1f6bb34f","6a2b22bc-e81b-4f27-a52b-9f3edad25439","6c776ca4-4950-4a27-8ce2-fbe534579d62","86d73f4c-0bbd-4616-81a6-102db6cd7db9","95e18830-3668-4c23-96aa-d241f79adbd5","bdef7fea-2bd0-42a2-96f6-6def18bd7f0c","c8676f02-cf1e-4d40-a0c5-6e5a97417898","f7139613-488b-496b-a21d-a577b1426e6f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","ACR","ANB","CLB","CMR","CN2","DSK","EMN","J25","M13","M19","M20","MKM","OTP","PLST","PM19","PRM","SCD","SNC","ZNC"],"rarities":["common","uncommon"]},"muscle sliver":{"name":"Muscle Sliver","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sliver"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"All Sliver creatures get +1/+1.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Sliver"}],"controller":null,"properties":[]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"All Sliver creatures get +1/+1."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"06e0459f-d691-4470-884a-27c09b6612d2","metadata":{"source_printing_ids":["510a8590-48f5-40ee-a0c8-77238055a937","602a1e1f-4195-48c0-8290-562e7e0db6d8","e96fa876-5474-4374-bc51-fa5df9278042","f36faada-4f9c-43f9-b3e4-55714737a5c9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["F03","H09","PLST","PRM","SLD","TMP","TPR"],"rulings":[{"date":"2013-07-01","text":"Abilities that Slivers grant, as well as power/toughness boosts, are cumulative. However, for some abilities, like flying, having more than one instance of the ability doesn't provide any additional benefit."},{"date":"2013-07-01","text":"If the creature type of a Sliver changes so it's no longer a Sliver, it will no longer be affected by its own ability. Its ability will continue to affect other Sliver creatures."},{"date":"2021-03-19","text":"Because damage remains marked on a creature until the damage is removed as the turn ends, nonlethal damage dealt to a Sliver may become lethal if Muscle Sliver leaves the battlefield during that turn."},{"date":"2021-03-19","text":"Muscle Sliver's ability does give itself +1/+1."}],"rarities":["common","rare"]},"mycoloth":{"name":"Mycoloth","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Fungus"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Devour 2 (As this creature enters, you may sacrifice any number of creatures. It enters with twice that many +1/+1 counters on it.)\nAt the beginning of your upkeep, create a 1/1 green Saproling creature token for each +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Devour":2}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Saproling","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Saproling"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"P1P1"}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 1/1 green Saproling creature token for each +1/+1 counter on ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.82a: Devour 2 — sacrifice any number of creatures; this permanent enters with 2 +1/+1 counters per creature sacrificed.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"CR 702.82a + CR 614.1c: Devour 2 — as this creature enters, you may sacrifice any number of creatures; it enters with 2 +1/+1 counters for each creature sacrificed this way.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d7fd16ce-282d-49cd-b2b4-0d25935e7a72","metadata":{"related_token_ids":["0628f530-1f4d-5171-b7d0-da2a155273e6","993318ee-4e8f-58a6-b55f-894b9310a3d9","b97a960d-5d34-5fd0-a94c-af7bb41c3edb","ba1d8604-e466-5949-a156-abf0d3bbb33e","c0edfb5e-e4bc-52df-aa04-92671cb93cd2","dc6b409b-79e0-5103-9e78-2bf1c9a3deac"],"source_printing_ids":["014c07d2-b698-4459-b8b8-47f3aa1acce3","15360a16-b785-4ffe-bfa8-6c7f6a37455d","28b878b9-d6d2-4316-866e-0d6573ee80e1","6cc3ba22-3f1c-41fe-800b-cdf7af44e74b","75d495f2-2eb4-43b1-becc-1570ec57eb6a","798748d5-cb17-4f9a-85d4-1bc518222bb8","924976cf-9b46-4cbf-ab27-07ca72a21608","a45d83bb-5422-4a72-bbc0-2529ecfa0b4a","c3f7faed-de6b-404f-b54f-e60d5b55485b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ALA","C15","C16","CMA","PC2","PCA","PLST","SLD","SOC"],"rulings":[{"date":"2008-10-01","text":"If multiple creatures with devour are entering under your control at the same time, you may use each one's devour ability. A creature you already control can be devoured by only one of them, however. (In other words, you can't sacrifice the same creature to satisfy multiple devour abilities.) All creatures devoured this way are sacrificed at the same time."},{"date":"2008-10-01","text":"The number of Saproling tokens created by the triggered ability is based on the number of +1/+1 counters on Mycoloth, not on the number of creatures Mycoloth devoured. It doesn't matter where the +1/+1 counters came from."},{"date":"2008-10-01","text":"You may choose not to sacrifice any creatures for the Devour ability."},{"date":"2008-10-01","text":"You may sacrifice only creatures that are already on the battlefield. If a creature with devour and another creature are entering under your control at the same time, the creature with devour can't devour that other creature. The creature with devour also can't devour itself."}],"rarities":["rare"]},"myr retriever":{"name":"Myr Retriever","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Myr"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When this creature dies, return another target artifact card from your graveyard to your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"},{"type":"InZone","zone":"Graveyard"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return another target artifact card from your graveyard to your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"d07d3be3-f69d-4484-8467-cffd43871788","metadata":{"source_printing_ids":["33940107-e210-4334-a409-48ab591af2ec","72ad8e04-f3be-4bc8-b62d-e92291317aab","7f0149d4-0731-474a-a1c3-28c25e486c14","b8972a7c-ff64-4158-8277-2bd90e8db48d","e39c880d-f9b1-4572-b676-c1dd2d981b7c","ee766f7b-4e9c-442d-bf53-31c204646449","fd7081d5-1f90-477f-a06e-f0a8679f4f7d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["2XM","C14","C16","CM2","MMA","MRD","PLST","TD2"],"rulings":[{"date":"2020-08-07","text":"If Myr Retriever dies at the same time as another artifact you own, its ability can target that other artifact card."}],"rarities":["common","uncommon"]},"mystic forge":{"name":"Mystic Forge","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may look at the top card of your library any time.\nYou may cast artifact spells and colorless spells from the top of your library.\n{T}, Pay 1 life: Exile the top card of your library.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"PayLife","amount":{"type":"Fixed","value":1}}]},"sub_ability":null,"duration":null,"description":"{T}, Pay 1 life: Exile the top card of your library.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"MayLookAtTopOfLibrary","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may look at the top card of your library any time."},{"mode":{"TopOfLibraryCastPermission":{"play_mode":"Cast","alt_cost":null}},"affected":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"ColorCount","comparator":"EQ","count":0}]}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast artifact spells and colorless spells from the top of your library."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"994bc16d-fdc6-475c-96df-beeb4d5aa03e","metadata":{"source_printing_ids":["109a6275-331e-4696-85ea-6f7a0a0f865e","375e6985-e212-4bd0-b06c-0ca7dc1f68e6","74fd1f7f-4946-4f28-a759-3f73c0473536","7aac1711-05e3-402a-a7a2-d8eade84ed32","89f596ee-b551-411f-a460-bfffa89e358e","924a24e7-91b8-4ceb-a136-7a765d98c994","a26614a2-b6ce-4161-89ee-d9596a97a146","bc0de77a-c503-4000-9eb5-aa28a5e91082","cf56bef3-7f0e-47b4-96f5-325722f7708a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"restricted"},"printings":["40K","BRR","CMM","M20","M3C","PIP","PM20"],"rulings":[{"date":"2019-07-12","text":"Because you never \"cast\" a land card, Mystic Forge doesn't allow you to play an artifact land from the top of your library."},{"date":"2019-07-12","text":"If the top card of your library changes while you're casting a spell, playing a land, or activating an ability, you can't look at the new top card until you finish doing so. This means that if you cast the top card of your library, you can't look at the next one until you're done paying for that spell."},{"date":"2019-07-12","text":"If the top card of your library has a morph ability, you can cast it face down from the top of your library, even if it's normally not a colorless card."},{"date":"2019-07-12","text":"Mystic Forge lets you look at the top card of your library whenever you want (with one restriction—see below), even if you don't have priority. This action doesn't use the stack. Knowing what that card is becomes part of the information you have access to, just like you can look at the cards in your hand."},{"date":"2019-07-12","text":"You must follow the normal timing permissions and restrictions of the spells you cast from your library."},{"date":"2019-07-12","text":"You still pay all costs for a spell you cast from your library, including additional costs. You may also pay alternative costs."}],"rarities":["rare"]},"narset of the ancient way":{"name":"Narset of the Ancient Way","mana_cost":{"type":"Cost","shards":["Blue","Red","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Narset"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: You gain 2 life. Add {U}, {R}, or {W}. Spend this mana only to cast a noncreature spell.\n[−2]: Draw a card, then you may discard a card. When you discard a nonland card this way, Narset deals damage equal to that card's mana value to target creature or planeswalker.\n[−6]: You get an emblem with \"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["Blue","Red","White"]},"restrictions":[{"SpellType":"Noncreature"}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: You gain 2 life. Add {U}, {R}, or {W}. Spend this mana only to cast a noncreature spell.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":null,"description":"[−2]: Draw a card, then you may discard a card. When you discard a nonland card this way, ~ deals damage equal to that card's mana value to target creature or planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Command"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target","constraint":null,"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-6},"sub_ability":null,"duration":null,"description":"[−6]: You get an emblem with \"Whenever you cast a noncreature spell, this emblem deals 2 damage to any target.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red","Blue","White"],"color_identity":["Red","Blue","White"],"scryfall_oracle_id":"b7ac6e89-941f-4ad9-a437-38ec38ec5263","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["300f766f-9609-4105-9ed5-4299c48f7fa7","91ac6589-75ee-4fbf-8056-1860c1482592","fa7b28d8-b835-44a0-978d-cadfd392fff5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","IKO","PIKO","PRM"],"rulings":[{"date":"2020-04-17","text":"An ability that triggers when a player casts a spell resolves before the spell that caused it to trigger. It resolves even if that spell is countered."},{"date":"2020-04-17","text":"Because it's a loyalty ability, Narset's first ability isn't a mana ability. It can be activated only any time you could cast a sorcery. It uses the stack and can be responded to."},{"date":"2020-04-17","text":"If a card you discard has {X} in its mana cost, X is considered to be 0."},{"date":"2020-04-17","text":"Narset's second ability goes on the stack without a target. While that ability is resolving, you draw a card and may choose to discard a card. When you discard a nonland card this way, the reflexive triggered ability triggers and you pick a target to be dealt damage. This is different from effects that say \"If you do . . .\" in that you choose a target after looking at the card you draw and players can respond to the reflexive triggered ability knowing how much damage will be dealt."},{"date":"2020-04-17","text":"The emblem created by Narset's last ability is colorless. The damage it deals is from a colorless source."},{"date":"2020-04-17","text":"You can discard a card even if Narset leaves the battlefield before her middle ability resolves. The reflexive triggered ability will still trigger if you discard a nonland card."}],"rarities":["mythic"]},"nature's way":{"name":"Nature's Way","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gains vigilance and trample until end of turn. It deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain vigilance and trample"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gains vigilance and trample until end of turn. It deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8c04663a-1023-49a5-a0b9-78f24a72fb1e","metadata":{"source_printing_ids":["29a4abe5-9770-4a55-b20a-2ceb6bb00db6","36f59651-6205-464a-a7f3-d9465c1545b7","77cf9d11-936f-4e02-8595-0cbcabaafb1e","df6af750-838c-4306-b70c-2efe705db2c7","ec122287-fe33-4ac3-803c-f5173cae50a7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DDU","JMP","KLD","KLR","PLST"],"rulings":[{"date":"2016-09-20","text":"If either target is an illegal target as Nature's Way resolves, no damage will be dealt."},{"date":"2016-09-20","text":"If the creature you don't control is an illegal target as Nature's Way tries to resolve, the creature you control will still gain vigilance and trample."},{"date":"2016-09-20","text":"Trample only applies to the assignment of combat damage, not the damage Nature's Way has the creature deal."},{"date":"2016-09-20","text":"You can't cast Nature's Way unless you choose both a creature you control and a creature you don't control as targets."}],"rarities":["uncommon"]},"neerdiv, devious diver":{"name":"Neerdiv, Devious Diver","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Merfolk","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever Neerdiv becomes tapped, target player mills cards equal to its power.\nWhenever you cast a spell from your graveyard or activate an ability of a card in your graveyard, draw a card and put a +1/+1 counter on Neerdiv.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Taps","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever ~ becomes tapped, target player mills cards equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"Equals","data":"Graveyard"},"description":"Whenever you cast a spell from your graveyard or activate an ability of a card in your graveyard, draw a card and put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"b015ec84-95b9-4010-afef-d9d0cacb98dd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["070e0081-b0fe-4417-b943-d0496e3b8cd7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J25"],"rulings":[{"date":"2024-11-08","text":"If Neerdiv leaves the battlefield while its first ability is still on the stack, use its power as it last existed on the battlefield to determine how many cards the target player mills."},{"date":"2024-11-08","text":"Neerdiv's last ability resolves before the spell or ability that caused it to trigger. It resolves even if that spell or ability is countered or otherwise leaves the stack without resolving."}],"rarities":["rare"]},"negate":{"name":"Negate","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target noncreature spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Counter target noncreature spell.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3407fe41-fdd3-4119-8f70-4bc4590a379f","metadata":{"source_printing_ids":["026c499d-3d5b-4f65-a824-f78f146b82ef","1dc492d5-ec52-4ab3-813e-acb40b0b6d5a","31534f45-43e6-4103-bf58-ad8fa688e4b0","33b83158-78b4-425e-8379-be3ef038295c","3877d196-332c-4266-aac8-a35754d74297","3d5e6fdf-022a-480d-96fc-bfadbf7ee5f6","4016c6f7-7cb4-46c2-af73-3bd6d682ea5e","52d58fe4-6070-4022-9cd7-c35a11b44525","5a501252-e722-4ebf-bcf7-f53a42745fa7","60380ed0-fed1-4d68-9763-56a9ff8ac5e6","6276afe2-1bd9-456e-82d5-389909ae5ab0","64a2ba6d-ada1-4f06-b135-37606b6588fc","7f21cd05-2fdb-4c37-90a4-220a3eda23ef","81752db1-374e-4723-b695-a2f4a634dfc6","8da17a86-3666-46b8-932e-daafd6a0cd69","ae89bd67-3c72-449f-be72-d04bb7cca916","b12d13b4-a210-4d8d-bd04-42a00f68ae7b","cb142515-0856-441d-84d4-9c9d450a86e9","cfc1c914-fa52-4492-8dee-0c35bebc3766","d0165d1f-6d9f-40e1-aaff-d587e4112220","e848b632-e08a-4341-a99c-d8207f9ffe48","e92c7477-d453-4fa4-acf4-3835ab9eb55a","fbd28be5-c493-433a-a19f-cace2214b83e","ff3b0dba-0207-4249-bdab-e807c76ce39e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["AER","BBD","CN2","DMU","DPA","DTK","FDN","M10","M11","M12","M13","M14","M15","M20","MOM","MOR","OGW","ORI","P09","PLST","PM20","PRM","PS11","RIX","SCD","SS1","STA","TMT","ZNR"],"rulings":[{"date":"2024-11-08","text":"A \"creature spell\" is any spell with the creature type, even if it has other types such as artifact or enchantment."},{"date":"2026-01-27","text":"A \"creature spell\" is any spell with the creature type, even if it has other types such as artifact or enchantment."}],"rarities":["common","rare"]},"niambi, esteemed speaker":{"name":"Niambi, Esteemed Speaker","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nWhen Niambi enters, you may return another target creature you control to its owner's hand. If you do, you gain life equal to that creature's mana value.\n{1}{W}{U}, {T}, Discard a legendary card: Draw two cards.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","Blue"],"generic":1}},{"type":"Tap"},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]},"sub_ability":null,"duration":null,"description":"{1}{W}{U}, {T}, Discard a legendary card: Draw two cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may return another target creature you control to its owner's hand. If you do, you gain life equal to that creature's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"91c9dbd8-a8d8-4a4e-8408-3ad92e974d11","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["50b942b9-fcf4-421d-a470-73a90f0408a5","e21827eb-fa49-4784-a86b-aef164a5018e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","PM21","PRM"],"rulings":[{"date":"2020-06-23","text":"If a creature on the battlefield has {X} in its mana cost, X is considered to be 0."},{"date":"2020-06-23","text":"If the target creature is an illegal target by the time Niambi's triggered ability tries to resolve, the ability won't resolve. You won't return the card from the zone it moved to or gain any life."}],"rarities":["rare"]},"nibelheim aflame":{"name":"Nibelheim Aflame","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. It deals damage equal to its power to each other creature. If this spell was cast from a graveyard, discard your hand and draw four cards.\nFlashback {5}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Red","Red"],"generic":5}}}],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"Controller"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":4},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"CastFromZone","zone":"Graveyard"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. It deals damage equal to its power to each other creature. If this spell was cast from a graveyard, discard your hand and draw four cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"eab5eef8-d180-4b08-a770-6b3a1df03745","metadata":{"source_printing_ids":["3d3e926a-74af-4996-849f-d31e0fdedeae","f6c21de9-7278-4406-8037-afe2c29b271f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard if the resulting spell is an instant or sorcery spell by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2025-06-06","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2025-06-06","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2025-06-06","text":"If the target creature is an illegal target as Nibelheim Aflame tries to resolve, it won't resolve and none of its effects will happen. No damage will be dealt, and you won't discard and draw even if you cast Nibelheim Aflame from a graveyard."},{"date":"2025-06-06","text":"The creature is the source of the damage, not Nibelheim Aflame. For example, Nibelheim Aflame can have a white creature deal damage to a creature with protection from red."},{"date":"2025-06-06","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2025-06-06","text":"Use the power of the target creature as Nibelheim Aflame resolves to determine how much damage it deals to each other creature."},{"date":"2025-06-06","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2025-06-06","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["mythic"]},"nightfall predator":{"name":"Nightfall Predator","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Werewolf"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{R}, {T}: This creature fights target creature. (Each deals damage equal to its power to the other.)\nAt the beginning of each upkeep, if a player cast two or more spells last turn, transform this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"subject":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{R}, {T}: ~ fights target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if a player cast two or more spells last turn, transform ~.","constraint":null,"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"SpellsCastLastTurn"}},"comparator":"GE","rhs":{"type":"Fixed","value":2}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green"],"color_identity":["Green","Red"],"scryfall_oracle_id":"280624aa-5f9a-48fd-85ea-815c96c747b3","metadata":{"source_printing_ids":["25b54a1d-e201-453b-9173-b04e06ee6fb7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"transform","printings":["ISD"],"rarities":["rare"]},"nightmare":{"name":"Nightmare","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Nightmare","Horse"]},"power":{"type":"Variable","value":"*"},"toughness":{"type":"Variable","value":"*"},"loyalty":null,"defense":null,"oracle_text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nNightmare's power and toughness are each equal to the number of Swamps you control.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Swamp"}],"controller":"You","properties":[]}}}},{"type":"SetDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Swamp"}],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":true,"description":"~'s power and toughness are each equal to the number of Swamps you control."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"375932e6-1b3e-48dc-8154-9b664c3add34","metadata":{"source_printing_ids":["192bb40a-3ecd-41eb-acee-819f3138875a","3a3df8ed-ff36-478e-a4f4-bee041b77d15","3c2a1e82-4922-4075-a869-3a1b607498c3","51d23999-ac32-4145-9151-547087ac0b6b","5d0001a4-18f9-460c-b26f-476ce55e6294","60304328-7a02-4f4c-a884-fc6ce7816060","659c0edb-3afa-4f87-8a94-9fe10578ea1a","6b8d53fd-2d3b-4050-b5c5-1b75f525ca2c","747d4c99-0287-4138-af13-6244f33d2e57","88111e2b-84ff-48bf-9a64-b4e9022b6dae","8817ef5f-39f0-4358-bc98-f512f9cce8f0","92c79db0-731a-4aa5-b69f-f21e031815d4","932273e2-d501-45fc-802c-02b2c7b1bfd4","b7cf63e7-9143-4236-a887-afd3628d0c03","b8cdd6a7-f772-4ccb-914f-63f52ed54d6b","c04970ef-7aa5-42ca-9bed-5c89d55b7e4d","c3779fda-5de0-4d80-8af0-95956e87d9e1","c6659c13-1858-4a66-a11f-e37416855951","d423d4ee-5f79-4b8f-90dd-2661fe707875","db11b832-7584-4e4b-8d02-b03fe76dcbc3","dd088c4d-3e21-4979-b30f-4ec98a6c81df","eb535b69-4fc7-4b76-b85b-194755d6b355","f2838473-8e2a-48c9-bd6a-25c79c66d43b","f85ef8df-2577-4f0e-af83-bc49d930961d","fc78dced-27d2-441a-b63b-32356bc33747"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","30A","3ED","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ANB","CED","CEI","FBB","LEA","LEB","M10","M14","M15","ORI","PLST","SUM","W16","W17"],"rulings":[{"date":"2008-04-01","text":"If you control 0 swamps, then the Nightmare has 0 toughness and will be put into its owner’s graveyard as a state-based action right before the next player gains priority."},{"date":"2009-10-01","text":"Nightmare’s power and toughness changes as the number of Swamps you control changes."},{"date":"2013-07-01","text":"Nightmare’s ability counts all lands you control with the subtype Swamp, not just ones named Swamp."},{"date":"2013-07-01","text":"The ability that defines Nightmare’s power and toughness works everywhere, not just on the battlefield."}],"rarities":["rare"]},"ninja":{"name":"Ninja","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"You may activate this card's augment ability any time you could cast an instant.\nWhenever this creature deals combat damage to a player,\nAugment {2}{B} ({2}{B}, Reveal this card from your hand: Combine it with target host. Augment only as—oh, never mind.)","non_ability_text":null,"flavor_name":null,"keywords":["Augment"],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"effect_structure","description":"Effect sentence candidate but line failed effect parser: You may activate this card's augment ability any time you could cast an instant."},"cost":null,"sub_ability":null,"duration":null,"description":"You may activate this card's augment ability any time you could cast an instant.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Augment {2}{B}"},"cost":null,"sub_ability":null,"duration":null,"description":"Augment {2}{B}","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":null,"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player,","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black"],"color_identity":["Black"],"scryfall_oracle_id":"2a857df5-c3d8-4d95-bb2f-087d8aa6f478","metadata":{"source_printing_ids":["ff0c50dc-2bd6-47e3-9ca5-49e38898e774"]},"legalities":{},"printings":["UST"],"rulings":[{"date":"2018-01-19","text":"Augment can (and usually does) change the name, card types, subtypes, rules text, and power/toughness. The combined creature will have (at least) two artists and may now have multiple colors. Anything covered up in the augment process doesn't count, so ignore things to the left of the \"metal bar\" in the art of host creatures."},{"date":"2018-01-19","text":"Augment can't target creatures that aren't host creatures."},{"date":"2018-01-19","text":"Augment is an activated ability that you activate from your hand. To do so, reveal the card, choose a target host creature, and pay the augment cost. As this ability resolves, if the card with augment is still in your hand, put it onto the battlefield combined with the host creature."},{"date":"2018-01-19","text":"Creatures with augment don't have a mana cost and can't be cast."},{"date":"2018-01-19","text":"The creature card with augment isn't put onto the battlefield until the ability resolves. This means if the host is destroyed, the creature with augment stays in your hand. You can't choose a different host, but you can activate augment again if there's another host available."},{"date":"2018-01-19","text":"You can't activate augment unless there is a host creature on the battlefield. It doesn't need to be yours. Note though that if you augment another player's host creature, they control the combined creature."},{"date":"2018-01-19","text":"You can't put more than one augment card on a single host creature. Once a host creature is augmented, the host part gets covered up and it's no longer a host creature."}],"rarities":["uncommon"]},"ninja of the deep hours":{"name":"Ninja of the Deep Hours","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ninjutsu {1}{U} ({1}{U}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nWhenever this creature deals combat damage to a player, you may draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ninjutsu":{"type":"Cost","shards":["Blue"],"generic":1}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"1f3c2b00-0000-4ae1-9650-9553accac52e","metadata":{"source_printing_ids":["14fdc73b-5dca-429f-9e9c-7cad3edff803","2101b32f-2a7f-4cfa-80a4-fdae3756a7f1","26184ff2-3b8c-419a-9b28-95d6e4e996bb","367a67c7-54db-4336-b55a-3fa27625172a","522beeb1-3218-4bb9-95d2-1c25d4a53019","5fea7980-55e1-47c1-ab18-a89c976b55fc","6394b9e1-674e-4eda-ad0b-206cdbb5bf5e","b990c687-ae60-42b9-9dcd-3bbf7043f7ed","fb245a12-4cbd-4291-af67-f3677ca822dc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["BOK","C15","C18","J21","J25","PC2","PCA","PLST","PSAL","SLD","TSR"],"rulings":[{"date":"2021-03-19","text":"Although the Ninja is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2021-03-19","text":"As you activate a ninjutsu ability, you reveal the Ninja card in your hand and return the attacking creature. The Ninja isn't put onto the battlefield until the ability resolves. If it leaves your hand before then, it won't enter the battlefield at all."},{"date":"2021-03-19","text":"If a creature in combat has first strike or double strike, you can activate the ninjutsu ability during the first-strike combat damage step. The Ninja will deal combat damage during the regular combat damage step in this case, even if it has first strike."},{"date":"2021-03-19","text":"The creature put onto the battlefield with ninjutsu enters the battlefield attacking the same player or planeswalker that the returned creature was attacking. This is a rule specific to ninjutsu."},{"date":"2021-03-19","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. If you wait until after the declare blockers step, because all combat damage is dealt at once, the Ninja won't normally deal combat damage."},{"date":"2021-03-19","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."}],"rarities":["common","rare","special"]},"nissa's judgment":{"name":"Nissa's Judgment","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Support 2. (Put a +1/+1 counter on each of up to two target creatures.)\nChoose up to one target creature an opponent controls. Each creature you control with a +1/+1 counter on it deals damage equal to its power to that creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Support 2.\nChoose up to one target creature an opponent controls. Each creature you control with a +1/+1 counter on it deals damage equal to its power to that creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"14247820-5ecb-40bd-8dee-0625cc745ec2","metadata":{"source_printing_ids":["08d149d3-bfb7-4544-8d3a-3d8c54838969","96b263fb-00b5-4050-85e1-cfc4018bb75d","d10ff628-c0bd-4ed0-b927-3f2746aefa10","e9dcece0-13eb-4931-b39e-13de528a11a6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["CLU","DDU","OGW","PLST"],"rulings":[{"date":"2016-01-22","text":"As Nissa’s Judgment resolves, if at least one of its targets is still legal, it will resolve, affecting only targets that are still legal at that time. If none of its targets are still legal at that time, it won’t resolve and none of its effects will happen."},{"date":"2016-01-22","text":"If a spell with support has other abilities that target creatures, those abilities and the support ability can target the same creature."},{"date":"2016-01-22","text":"Support can target a creature you don’t control."},{"date":"2016-01-22","text":"You can’t put more than one +1/+1 counter on any one target using the support action."},{"date":"2016-01-22","text":"You finish the support action before any creatures deal damage. Creatures that get a +1/+1 counter will deal damage to the creature an opponent controls, if applicable."}],"rarities":["uncommon"]},"nissa's revelation":{"name":"Nissa's Revelation","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Scry 5, then reveal the top card of your library. If it's a creature card, you draw cards equal to its power and you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":5},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Scry 5, then reveal the top card of your library. If it's a creature card, you draw cards equal to its power and you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ba9cd7bc-846f-4b5c-a1dc-9763a60dafc9","metadata":{"source_printing_ids":["71143665-012f-4723-a58b-d5cfdbe82e8f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["GNT","ORI","PORI"],"rulings":[{"date":"2015-06-22","text":"If the top card of your library isn’t a creature card or it’s a creature card with power 0 or less, you won’t draw any cards. Otherwise, the first card you draw will be the card you revealed."}],"rarities":["rare"]},"niv-mizzet, parun":{"name":"Niv-Mizzet, Parun","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue","Red","Red","Red"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Wizard"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"This spell can't be countered.\nFlying\nWhenever you draw a card, Niv-Mizzet deals 1 damage to any target.\nWhenever a player casts an instant or sorcery spell, you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you draw a card, ~ deals 1 damage to any target.","constraint":null,"condition":null,"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts an instant or sorcery spell, you draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"33666a98-812f-4892-9f8d-33e0cbecc340","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3035a97f-5104-4b56-84a4-5206e75607fc","44146784-d7f0-4add-8242-8783b97a4d7d","4825e7cb-53ae-4e4b-bb37-8d8eb414772c","6f3d2dc5-7b9d-4af6-9f3b-4de90fbf63c9","7be6bedd-8d38-4bd9-aa93-29f88a7f0126","86c5c337-d25f-4c3e-9762-09ed0c2d36d7","a56cc7a4-b91f-4a6e-9e7e-b9200565b47c","d71e0e3c-2d23-4c1a-a6b5-a6bd2e8267fa","de656adf-0e2a-43ab-b4b0-dde04178e7a9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CLB","GRN","OTC","PGRN","PLST","RVR","SLD"],"rulings":[{"date":"2018-10-05","text":"If a spell or ability causes you to put cards into your hand without specifically using the word \"draw,\" Niv-Mizzet's first triggered ability won't trigger."},{"date":"2018-10-05","text":"If an effect instructs you to draw multiple cards, Niv-Mizzet's first triggered ability triggers that many times. You choose targets for those abilities after you've drawn all of the cards."},{"date":"2018-10-05","text":"Niv-Mizzet's second triggered ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered. This causes its first triggered ability to trigger, and that also resolves before the spell."},{"date":"2018-10-05","text":"Players can cast spells and activate abilities after Niv-Mizzet's second triggered ability resolves but before the spell that caused it to trigger does. Notably, the card you draw may be able to counter that spell."}],"rarities":["rare"]},"no mercy":{"name":"No Mercy","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature deals damage to you, destroy it.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"TriggeringSource"},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"description":"Whenever a creature deals damage to you, destroy it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"b9538d53-480b-481a-abbf-83ab17e1a45b","metadata":{"source_printing_ids":["4e2fc29c-0223-4b03-864f-eb9149abc921","63c5e1dd-2fe6-4734-8406-7bcdf17aa60c","7295eb82-8785-4a5f-ba64-0a0b5cb77d3f","c2598da4-0764-440a-9e9d-0161e68667fb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["DMR","MP2","P22","ULG"],"rulings":[{"date":"2022-12-08","text":"No Mercy’s ability triggers whenever any creature, including creatures you control, deals damage to you, not only combat damage."}],"rarities":["rare","mythic"]},"norn's annex":{"name":"Norn's Annex","mana_cost":{"type":"Cost","shards":["PhyrexianWhite","PhyrexianWhite"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({W/P} can be paid with either {W} or 2 life.)\nCreatures can't attack you or planeswalkers you control unless their controller pays {W/P} for each of those creatures.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":["PhyrexianWhite"],"generic":0},"scaling":{"type":"PerAffectedCreature"},"defended":"PlayerOrPlaneswalker"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you or planeswalkers you control unless their controller pays {W/P} for each of those creatures."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9a1fbe72-4a17-42be-8e23-d7d30a5e59c1","metadata":{"source_printing_ids":["70ed6db4-140c-4146-8467-f5eb05b2e73d","98ed8e2e-5519-4872-ba5a-7e2f91d8d619","a64073f2-99f5-4dc7-9403-e7cb94ce0e60","d25bbe18-709c-4ed3-a047-5578ecfaaba7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMM","NPH","ONC","PLST","PW23"],"rulings":[{"date":"2011-06-01","text":"A card with Phyrexian mana symbols in its mana cost is each color that appears in that mana cost, regardless of how that cost may have been paid."},{"date":"2011-06-01","text":"As you cast a spell or activate an activated ability with one or more Phyrexian mana symbols in its cost, you choose how to pay for each Phyrexian mana symbol at the same time you would choose modes or choose a value for X."},{"date":"2011-06-01","text":"If a player attacks with more than one creature, that player chooses how to pay each cost individually. For example, if you attack with two creatures, you may pay {W} for one cost and 2 life for the other."},{"date":"2011-06-01","text":"If you control Norn's Annex, your opponents can choose not to attack with a creature with an ability that says it must attack."},{"date":"2011-06-01","text":"If you're at 1 life or less, you can't pay 2 life."},{"date":"2011-06-01","text":"Multiple Norn's Annexes controlled by the same player will each impose a cost to attack. Players choose how they pay each cost individually. For example, if a creature you control is attacking a player who controls two Norn's Annexes, you may pay {W} for one cost and 2 life for the other."},{"date":"2011-06-01","text":"Phyrexian mana is not a new color. Players can't produce Phyrexian mana."},{"date":"2011-06-01","text":"The controller of each creature attacking you or a planeswalker you control pays either {W} or 2 life as attackers are being declared."},{"date":"2011-06-01","text":"To calculate the mana value of a card with Phyrexian mana symbols in its cost, count each Phyrexian mana symbol as 1."}],"rarities":["rare"]},"nourishing shoal":{"name":"Nourishing Shoal","mana_cost":{"type":"Cost","shards":["X","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Arcane"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may exile a green card with mana value X from your hand rather than pay this spell's mana cost.\nYou gain X life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":null,"sub_ability":null,"duration":null,"description":"You gain X life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2aa0e0e5-cb6d-4518-8eff-d29f935486e0","casting_options":[{"kind":"AlternativeCost","cost":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"Green"},{"type":"Cmc","comparator":"EQ","value":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},{"type":"InZone","zone":"Hand"}]}}}],"metadata":{"source_printing_ids":["4a6af212-2a94-4ddf-acdc-d70fafa1c5ee","9472cd09-0b0a-49c9-ab10-ec5b73ddb74b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BOK","UMA"],"rulings":[{"date":"2018-12-07","text":"If a card in a player's hand has {X} in its mana cost, X is considered to be 0."},{"date":"2018-12-07","text":"If a spell has {X} in its mana cost, include the value chosen for that X when determining the mana value of that spell, even if it was cast for an alternative cost and no mana was spent on X."}],"rarities":["rare"]},"noxious gearhulk":{"name":"Noxious Gearhulk","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhen this creature enters, you may destroy another target creature. If a creature is destroyed this way, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ZoneChangedThisWay","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may destroy another target creature. If a creature is destroyed this way, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a77b5be2-f361-4135-ba25-670a74d268ac","metadata":{"source_printing_ids":["279ee863-a5ce-467d-b83a-c6f0d0a38b29","289c11b7-a460-4a2f-b11a-e1ba54bd1f34","36b1e963-9b8c-4103-abbc-580866f144e7","60d1b650-6c5f-435c-826a-f025d7b796e5","6ea94d38-d99a-4668-adb4-5f60724ca484","77741652-d431-440d-8c47-3f95d68e846e","82db9fb9-51c0-4d06-a589-e4ea17589857","96886e7f-66b2-4f67-a5c6-c65500bcfdef","9f86e5fe-8723-4494-b4cc-b7ac3a047bd1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BRC","C21","DSC","KLD","KLR","MOC","MPS","NCC","PKLD","TDC","TLE"],"rulings":[{"date":"2016-09-20","text":"If the target creature has indestructible, it isn't destroyed this way and you won't gain life. If it is destroyed but put into a zone other than a graveyard, you'll gain life."},{"date":"2016-09-20","text":"Use the toughness of the creature as it last existed on the battlefield to determine how much life to gain."}],"rarities":["mythic"]},"ob nixilis, captive kingpin":{"name":"Ob Nixilis, Captive Kingpin","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying, trample\nWhenever one or more opponents each lose exactly 1 life, put a +1/+1 counter on Ob Nixilis. Exile the top card of your library. Until your next end step, you may play that card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Trample"],"abilities":[],"triggers":[{"mode":"LifeLost","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilNextStepOf":{"step":"End","player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"End","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever one or more opponents each lose exactly 1 life, put a +1/+1 counter on ~. Exile the top card of your library. Until your next end step, you may play that card.","constraint":null,"condition":null,"batched":true,"life_amount":["EQ",1]}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"55b6434b-1542-40fd-b12a-697d40976582","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["7f613db0-3303-4d54-a060-1bd8b37a208f","82c9077d-fdbf-4087-85a5-1d59c2ba7678","840a442f-a220-408f-b670-0c73e2ffa704","c8abcef7-31b0-4c17-9807-b26079fb6ed8","ddb68233-3683-41bd-9b6e-4f07a1b54244"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["MAT"],"rulings":[{"date":"2023-05-12","text":"If you don't play the card, it will remain exiled."},{"date":"2023-05-12","text":"Ob Nixilis's last ability looks at all combat damage dealt to an opponent in total to determine whether it triggers. For example, if three 1/1 creatures deal combat damage to an opponent, that player loses 3 life. Ob Nixilis's ability won't trigger."},{"date":"2023-05-12","text":"Ob Nixilis's last ability will trigger if an opponent is dealt exactly 1 damage, pays exactly 1 life, or loses exactly 1 life some other way."},{"date":"2023-05-12","text":"Playing the card exiled with Ob Nixilis follows the normal rules for playing that card. You must pay its costs, and you must follow all applicable timing rules. For example, if the card is a creature card, you can cast that card by paying its mana cost only during your main phase while the stack is empty."},{"date":"2023-05-12","text":"Unless an effect allows you to play additional lands that turn, you can play a land card exiled with Ob Nixilis only if you haven't played a land yet that turn."},{"date":"2023-05-12","text":"You may play the card exiled with Ob Nixilis even if Ob Nixilis leaves the battlefield or you lose control of it."}],"rarities":["mythic"]},"ob nixilis, the fallen":{"name":"Ob Nixilis, the Fallen","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, you may have target player lose 3 life. If you do, put three +1/+1 counters on Ob Nixilis.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":3},"target":{"type":"Player"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever a land you control enters, you may have target player lose 3 life. If you do, put three +1/+1 counters on ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"154104b7-4125-4276-8bc7-9a6edfe48cb9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["1515b0e0-ef8f-43c7-8097-ca7eba4fd44a","7824a001-3f0e-4ac5-8406-e58f4288f2f2","dc9d3ada-9d0d-489a-89b7-08f53f6601e1","e5769888-78e0-4d06-b6b6-b4602f7cd462"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["IMA","PLST","SLC","TDC","ZEN"],"rulings":[{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["mythic"]},"obeka, splitter of seconds":{"name":"Obeka, Splitter of Seconds","mana_cost":{"type":"Cost","shards":["Blue","Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Ogre","Warlock"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever Obeka deals combat damage to a player, you get that many additional upkeep steps after this phase.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"AdditionalPhase","target":{"type":"Controller"},"phase":"Upkeep","after":"Upkeep","followed_by":[],"count":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you get that many additional upkeep steps after this phase.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Red","Blue"],"color_identity":["Black","Red","Blue"],"scryfall_oracle_id":"1d15a06f-5471-48f2-8c4a-9b0886bef5af","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["03415c42-086e-4a2e-9be8-5cdcde83f134","183b8c06-62ab-41e8-82c1-f23066d832ee"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Abilities that trigger \"at the beginning of [your] upkeep\" will trigger at the beginning of each additional upkeep step as well."},{"date":"2024-04-12","text":"After the beginning phases containing the additional upkeep steps, the game proceeds to the next phase as normal, which is likely to be your postcombat main phase (unless something has added even more phases; see below)."},{"date":"2024-04-12","text":"If multiple phases are added to the same point in your turn, the most recently created phase happens first. For example, say Obeka deals combat damage and its ability resolves during your combat damage step, giving you two additional beginning phases each containing an upkeep step after this combat phase. During end of combat, another effect gives you an additional combat phase after this combat phase. The additional combat will happen first, followed by the additional beginning phases containing the two upkeep steps."},{"date":"2024-04-12","text":"Since the upkeep step can only occur during the beginning phase, getting one or more additional upkeep steps outside of the beginning phase actually means you get an additional beginning phase for each of those upkeeps after this phase. In those beginning phases, the untap and draw steps will be skipped."},{"date":"2024-04-12","text":"The beginning phases containing the additional upkeep steps occur after the current combat phase ends. The last step of the combat phase is the end of combat step."}],"rarities":["rare"]},"obliterate":{"name":"Obliterate","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":6},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This spell can't be countered.\nDestroy all artifacts, creatures, and lands. They can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all artifacts, creatures, and lands. They can't be regenerated.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"CantBeCountered","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"This spell can't be countered."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"47496941-8007-45a0-a981-76c683cbddc1","metadata":{"source_printing_ids":["1021bcbd-566c-4f31-b148-0517b96a63db","6d79f044-0434-4dc2-9d92-8975324f6c32","74c5f897-9ff9-4fdf-9820-45a61e5dce75","c85f9623-5900-473c-a3b1-f98473b9a545","cdabde40-2143-4677-b7b4-ea8fbf9b1f25","e2d96c48-7519-4f2b-ad93-4f62cf7e8ac8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","INV","PLST","V16","WC01"],"rulings":[{"date":"2004-10-04","text":"Counterspells can be cast that target it, but when they resolve they simply don’t counter it since it can’t be countered."}],"rarities":["rare","mythic"],"bracket_signals":{"game_changer":false,"mass_land_denial":true,"extra_turn":false,"efficient_tutor":false}},"old-growth troll":{"name":"Old-Growth Troll","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen Old-Growth Troll dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: Create a tapped 4/4 green Troll Warrior creature token with trample.'\"","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ReturnAsAura","enchant_filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]},"grants":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Unimplemented","name":"add","description":"Add {G}{G}' and '{1}, {T}"},"cost":{"type":"Unimplemented","description":"Enchanted Forest has '{T}"},"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"'","description":"'"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice ~: Create a tapped 4/4 green Troll Warrior creature token with trample.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and \"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice ~: Create a tapped 4/4 green Troll Warrior creature token with trample.'\"","constraint":null,"condition":{"type":"WasType","card_type":"Creature"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"11e3f1d3-9d78-4c00-b965-e14407fd5210","metadata":{"related_token_ids":["dbeac9d3-edd3-574a-9bdb-c8d419f6a373"],"source_printing_ids":["125915dd-0499-4690-8897-4c8906e9817c","b759b0f6-342c-4bba-89f1-8451835d8c45"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM","PKHM","PRM"],"rulings":[{"date":"2021-02-05","text":"If a nontoken permanent that's a copy of Old-Growth Troll dies while it is a creature, it will return to the battlefield as an Aura with both its own normal abilities and the two new abilities granted by old-Growth Troll. The resulting permanent will also retain its name, colors, and supertypes, but it will be an Aura enchantment with no other types or subtypes."},{"date":"2021-02-05","text":"If a token is a copy of Old-Growth Troll, it won’t return from its owner’s graveyard."},{"date":"2021-02-05","text":"If there’s nothing for Old-Growth Troll to legally enchant, it remains in its owner’s graveyard."},{"date":"2021-02-05","text":"If you control but don’t own Old-Growth Troll, you (not its owner) will return it to the battlefield when it dies. You’ll choose which Forest you control it will enchant as it returns to the battlefield."}],"rarities":["rare"]},"omniscience":{"name":"Omniscience","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":7},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast spells from your hand without paying their mana costs.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastFromHandFree":{"frequency":"Unlimited","origin":"Hand"}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast spells from your hand without paying their mana costs."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"730e39e6-c61d-48b5-8827-bfd952bf1be7","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"You may cast spells from your hand without paying their mana costs.","line_index":0}],"metadata":{"source_printing_ids":["1088f33e-cb5f-4248-ae8e-280c4e41f291","7c72dced-adae-4c66-af2a-0a1216953ab6","8f173425-8bae-47b1-8a2c-e27a071acd24","d33d91d0-1506-45e4-9def-975bf901815e","db534b4e-8bff-4924-baea-9988d195fb25"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","M13","M19","MP2","P22","PFDN","PM19","WOT"],"rulings":[{"date":"2018-07-13","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2018-07-13","text":"If you cast a spell \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, such as that of Tormenting Voice, those must be paid to cast the spell."},{"date":"2018-07-13","text":"Once you cast Omniscience, if it's your turn, you'll have priority immediately after it resolves. You can cast another spell before any player can attempt to remove Omniscience with spells or abilities."},{"date":"2018-07-13","text":"You must follow the normal timing permissions and restrictions of each spell you cast."}],"rarities":["mythic"]},"omo, queen of vesuva":{"name":"Omo, Queen of Vesuva","mana_cost":{"type":"Cost","shards":["GreenBlue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Shapeshifter","Noble"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever Omo enters or attacks, put an everything counter on each of up to one target land and up to one target creature.\nEach land with an everything counter on it is every land type in addition to its other types.\nEach nonland creature with an everything counter on it is every creature type.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"everything","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"everything","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, put an everything counter on each of up to one target land and up to one target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"everything"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddAllLandTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each land with an everything counter on it is every land type in addition to its other types."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Non":"Land"}],"controller":null,"properties":[{"type":"Counters","counters":{"type":"OfType","data":"everything"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddAllCreatureTypes"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each nonland creature with an everything counter on it is every creature type."}],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"021b91ea-18d8-4b50-97da-dd003380cd68","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["103f7efd-3421-41aa-8c84-22c97cc8f0ea","5be300b8-af07-4f90-91ce-888b14dd9be0","a5e466c8-9fc9-47ca-aeae-93aaa80a4df5","bf5a3655-cd08-46a3-b099-253708c6539e","c5c9b663-135a-4bd7-81d9-fa6a5331ef57","e5d1c814-4c22-4917-95ae-dffaf491db32","edac7b62-e21e-4418-8c0c-032c5aef5914"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"Omo's second ability grants every land type to lands with everything counters on them, not just basic land types. The full list of land types can be found in the Comprehensive Rules of Magic."}],"rarities":["mythic"]},"orchard warden":{"name":"Orchard Warden","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Treefolk","Shaman"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Whenever another Treefolk creature you control enters, you may gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature",{"Subtype":"Treefolk"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Treefolk creature you control enters, you may gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8afc6147-80b4-4296-a5aa-ce892cefb1a7","metadata":{"source_printing_ids":["7a4e2c5c-26ad-4b13-934b-e545038b6729"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOR"],"rulings":[{"date":"2008-04-01","text":"The creature’s toughness is checked as this ability resolves. If the creature has left the battlefield, use its last known information."}],"rarities":["uncommon"]},"orim's thunder":{"name":"Orim's Thunder","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {R} (You may pay an additional {R} as you cast this spell.)\nDestroy target artifact or enchantment. If this spell was kicked, it deals damage equal to that permanent's mana value to target creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["Red"],"generic":0}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact or enchantment. If this spell was kicked, it deals damage equal to that permanent's mana value to target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"380429d5-82db-449c-b9b9-3e82ab987972","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}}]}},"metadata":{"source_printing_ids":["05aa0e83-5d84-43b1-b742-8db05c28cd4c","24854d5f-2711-49ba-9e0d-f9bbe04b34a9","5f86bba5-e203-4a86-a415-ce748f6d1f6f","7a87fc96-7407-45b6-8138-ca2a1e21fdaa","d00bf192-4baf-46ba-947b-a22d07635b04"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["APC","C15","CM2","CMA","CMD","DMR","HOP"],"rulings":[{"date":"2022-12-08","text":"If Orim's Thunder is kicked, but the artifact or enchantment is an illegal target as Orim's Thunder tries to resolve, Orim's Thunder won't be able to determine the artifact or enchantment's mana value. No damage will be dealt to the target creature, even if it remained a legal target. If only the creature has become an illegal target, the artifact or enchantment will still be destroyed. (If both targets become illegal, Orim's Thunder won't resolve at all.)"},{"date":"2022-12-08","text":"If Orim's Thunder is kicked, it's the source of damage dealt to the target creature, not the artifact or enchantment."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["common"]},"ornithopter":{"name":"Ornithopter","mana_cost":{"type":"Cost","shards":[],"generic":0},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Thopter"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"a3a98bc9-caa0-49b7-951c-fe4e4f54e4ba","metadata":{"source_printing_ids":["00427d72-b140-45eb-b2ec-2ac2dab16966","051386e0-4c1c-48ed-8883-664c719cf0fe","09c6ac8a-01b1-4af5-89d8-ad66d9a81ceb","22bb9825-ad45-44ad-ace2-eb6b66e3f724","2aeb3ce1-1e7f-4269-a326-700f27e9e932","305078a5-ac18-4721-bba2-3434eba5b1cf","331a0a01-0c12-4999-9bd7-f26991e4dad5","59cc9bdb-7cf2-4795-bac7-ffff605c9eb0","6acf7453-1229-4758-bb17-8afc7dffa9a0","6c127765-1ff7-4f64-85e7-80e356ff13b4","8d784214-dc69-42d4-b897-995ca5751e13","919bc14b-603d-42fa-91fe-58c4d4b3b27f","969ebd20-de69-44ba-a0c2-9e2a89480370","b3654fd6-f8ac-471a-8559-ba4ed0fe75c3","c964c4a8-41fb-4df0-902d-de4c92ce7cc7","d8ea447f-3ea4-40ed-9bc8-6e78602be9a1","db2ef311-cda3-4f70-821d-e9fb03c85dc9","dd789709-6613-4688-9272-6d5624140053","ddb96645-44d2-426c-90cb-3186297a8728","ee42fd67-118d-4dba-8dc6-803ceaee35e8","ee98e86c-ac16-4159-8982-ed14d282811a","f6074277-c5c9-4fd0-979b-7b6d2f5e3770","fd6c46d6-aec8-420b-8018-7b2c3908e5a0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","3ED","4BB","4ED","5ED","6ED","9ED","AER","ATQ","BRR","DMR","FBB","HA1","KLR","M10","M11","M15","MPS","MRD","PLST","PS11","SLD","SUM","WC04"],"rarities":["common","uncommon","rare"]},"orzhov charm":{"name":"Orzhov Charm","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Return target creature you control and all Auras you control attached to it to their owner's hand.\n• Destroy target creature and you lose life equal to its toughness.\n• Return target creature card with mana value 1 or less from your graveyard to the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"BounceAll","target":{"type":"Typed","type_filters":[{"Subtype":"Aura"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":1}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"26f8626a-ce64-450c-bda5-833df2fbb4fb","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Return target creature you control and all Auras you control attached to it to their owner's hand.","Destroy target creature and you lose life equal to its toughness.","Return target creature card with mana value 1 or less from your graveyard to the battlefield."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["74043dc2-7ee0-4dbb-8cdb-66b61b587048","8ca44265-5e1b-4fbf-9002-52b2ce9b7448"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["EA3","GK2","GTC"],"rulings":[{"date":"2013-01-24","text":"For each of the modes, if the target creature or creature card is an illegal target when Orzhov Charm tries to resolve, it won’t resolve and none of its effects will happen."},{"date":"2013-01-24","text":"If you choose the first mode, any Aura controlled by another player attached to the creature will be put into its owner’s graveyard as a state-based action after the creature leaves the battlefield."},{"date":"2013-01-24","text":"If you choose the second mode, you’ll lose life equal to the creature’s toughness when it was last on the battlefield."},{"date":"2013-01-24","text":"Orzhov Charm’s first mode doesn’t target any of the Auras attached to the target creature."},{"date":"2013-07-01","text":"If you choose the second mode, and Orzhov Charm resolves but the creature isn’t destroyed (perhaps because it has indestructible or it regenerates), you’ll still lose life equal to the creature’s toughness."}],"rarities":["uncommon"]},"osseous sticktwister":{"name":"Osseous Sticktwister","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Scarecrow"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Lifelink\nDelirium — At the beginning of your end step, if there are four or more card types among cards in your graveyard, each opponent may sacrifice a nonland permanent of their choice or discard a card. Then this creature deals damage equal to its power to each opponent who didn't sacrifice a permanent or discard a card this way.","non_ability_text":null,"flavor_name":null,"keywords":["Lifelink"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":"sacrifice a nonland permanent of their choice","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"discard a card","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage equal to its power to each opponent who didn't sacrifice a permanent","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"discard a card this way","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if there are four or more card types among cards in your graveyard, each opponent may sacrifice a nonland permanent of their choice or discard a card. Then ~ deals damage equal to its power to each opponent who didn't sacrifice a permanent or discard a card this way.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"DistinctCardTypes","source":{"type":"Zone","zone":"Graveyard","scope":"Controller"}}},"comparator":"GE","rhs":{"type":"Fixed","value":4}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"33c3a81a-6cea-48c9-b966-67084d96e74f","metadata":{"source_printing_ids":["4f43473e-1302-4543-b331-1a86cfbc3ced"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK"],"rulings":[{"date":"2024-09-20","text":"Use Osseous Sticktwister's power as its last ability resolves to determine how much damage it deals to each opponent who didn't sacrifice a permanent or discard a card this way. If Osseous Sticktwister is no longer on the battlefield at that time, use its power as it last existed on the battlefield."},{"date":"2024-09-20","text":"While resolving Osseous Sticktwister's last ability, the next opponent in turn order chooses a card to be discarded without revealing it, chooses a nonland permanent to be sacrificed, or chooses to do neither. Then each other opponent in turn order does the same. Then all of the actions occur simultaneously. Opponents will know what choices opponents earlier in the turn order made, although cards chosen to be discarded this way won't be revealed until they're discarded at the end of the process."}],"rarities":["uncommon"]},"outpost siege":{"name":"Outpost Siege","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.\n• Dragons — Whenever a creature you control leaves the battlefield, this enchantment deals 1 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control leaves the battlefield, ~ deals 1 damage to any target.","constraint":null,"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ebb24fc7-dc71-4712-8c2a-b5920f78e55d","metadata":{"source_printing_ids":["057ec9ba-b104-40a6-ae84-0f5d63511de6","516a2034-25bf-4b42-9f47-a2418d48286c","51f8c63e-8778-43c5-9093-f419442295cf","880f6602-f335-4ad8-9e2f-f32b6d715f72","a8645f34-b830-4429-8fca-9458d1e3dccc","a9f75fce-f0a1-4dec-982d-a86925c6e9d4","ad63f120-f6d0-4394-b12a-f3e1cf728a2f","b909b8bc-667b-4784-979f-093029b5a156","ed9f3f18-c1fe-4ec9-bf06-eb73751c5d22"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","BLC","C17","C20","CLB","FRF","NCC","PIO"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won't depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"If a noncreature card is manifested and then leaves the battlefield while face down, the \"Dragons\" ability will trigger."},{"date":"2014-11-24","text":"If you exile a land card using the \"Khans\" ability, you may play that land only if you have any available land plays. Normally, this means you can play the land only if you haven't played a land yet that turn."},{"date":"2014-11-24","text":"The card exiled by the \"Khans\" ability is exiled face up. Playing a card exiled with the \"Khans\" ability follows the normal rules for playing the card. You must pay its costs, and you must follow all applicable timing rules. For example, if it's a creature card, you can cast it only during your main phase while the stack is empty."},{"date":"2014-11-24","text":"The words \"Khans\" and \"Dragons\" are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. \"[Anchor word] — [Ability]\" means \"As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].\" Notably, the anchor word \"Dragons\" has no connection to the creature type Dragon."}],"rarities":["rare"]},"oversimplify":{"name":"Oversimplify","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile all creatures. Each player creates a 0/0 green and blue Fractal creature token and puts a number of +1/+1 counters on it equal to the total power of creatures they controlled that were exiled this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Fractal","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Creature","Fractal"],"colors":["Green","Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"Aggregate","function":"Sum","property":"Power","filter":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[]},{"type":"ExiledBySource"}]}}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":"Exile all creatures. Each player creates a 0/0 green and blue Fractal creature token and puts a number of +1/+1 counters on it equal to the total power of creatures they controlled that were exiled this way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"25e1d5fe-c2d8-4a11-ad54-bf1626f9ab45","metadata":{"related_token_ids":["ad44b516-28bf-5949-b591-ea9cd4767bcd","cf9d8cf5-80c9-5720-aa4c-e788ba3e23ed"],"source_printing_ids":["0baba16f-086f-4051-9e86-527e45c0f367","4bfc75ff-3213-495d-9e46-3ba5e8b7b5d3","56eae179-f850-4661-b3f0-4d10be77ed8a","db0e1886-fe98-48a3-aa9c-8255c02c0604"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","DSC","PRM","SOC"],"rulings":[{"date":"2021-04-16","text":"If a commander is exiled this way, its power will be counted along with the other creatures. Once Oversimplify finishes resolving, that commander's owner may move it to the command zone."},{"date":"2021-04-16","text":"Oversimplify counts the total power of the creatures as they last existed on the battlefield, not the power of those cards in exile."}],"rarities":["rare"]},"overwhelming intellect":{"name":"Overwhelming Intellect","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target creature spell. Draw cards equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target creature spell. Draw cards equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"8038337b-aff9-49aa-800c-0e12d2688765","metadata":{"source_printing_ids":["9624bbf9-15b0-40f9-9f02-f2af3f1220f8","cbeea686-7efc-48f5-b90b-bf1befc76a30"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DDJ","SOK","TD0"],"rarities":["uncommon"]},"pacifism":{"name":"Pacifism","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature can't attack or block.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttackOrBlock","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature can't attack or block."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"5f5e0b10-c8cf-450c-bfd3-bcb0528ec330","metadata":{"source_printing_ids":["0bec2191-7478-4bf8-97d4-b8204990b5d7","0da7c6dc-9325-4866-8c09-78c7021f8f17","0ea081ac-c8b2-442b-908c-096287116a5d","132d0ac2-08aa-4f3b-9616-006c0bf09f59","1b0efc23-9284-4aa4-a0ed-1f1dfdce4cbb","1f44e0cc-68bd-49c6-97d2-be9b353d1579","296359f9-e236-410c-9efe-40089f1607c5","31279d7c-5246-40b2-a8c7-0be4a5f24a29","3d34551e-36a4-49ea-9d2a-4c72575fe06a","42d9d474-d783-432e-b9bb-22514e9eab57","47adc9fc-d620-4cb7-a03c-8d9578992249","5242a576-4d35-4f29-8d40-9a7179e51d0c","5b3a91a5-b897-413e-8fd1-482448a92d83","6492bf53-ad49-4cd5-83df-0005a5b77811","686352f6-d8e7-4d31-83bd-3d087c103e75","73d4f469-ff5c-4122-a254-2a4a2b1b7bf7","783ccfbb-4063-4614-8135-11787227ce97","7c5db339-9b27-404a-878d-16511b546862","839160d2-44a3-4566-be9d-558d043beac8","84817323-785e-4f8c-b0ce-6b9e36bebaf1","87c7ff88-c23e-4be6-989b-99d055db36df","9090b1fa-2785-4352-9aee-ec68a7cd7f45","9791442c-2f42-44f6-85c0-f9de21f113b0","9b8a9d48-ca39-4275-ba1e-f584a3b647df","abbc73f1-efe4-44ed-a97f-9f099afaa5c7","c891df1b-bae6-4d6d-85ee-42901c149f98","dc81638f-a74c-47fc-825a-ae778c524f66","ee262fde-8df1-431f-9e5c-0cafe9212b49","ee6758f0-86da-4812-bbe0-ebbb8c67937a","f3524e49-93df-4a3d-808e-7a2d31c3a12d","f442e3b2-9d65-40c4-a3b9-8cb821980d80","f7939502-d6aa-4bde-b42f-67ed433f95f1","f7b4f7e7-31fa-4009-9b23-cdc2060be8b8"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","6ED","7ED","8ED","9ED","A25","ANB","ATH","BBD","BRB","DDC","DMR","DTK","DVD","EMA","FDN","IKO","J25","JMP","M10","M11","M12","M13","M14","M20","MIR","ONS","PLST","PS11","PSAL","TMP","TPR","USG","WC04"],"rarities":["common","uncommon"]},"packsong pup":{"name":"Packsong Pup","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wolf"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of combat on your turn, if you control another Wolf or Werewolf, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, if you control another Wolf or Werewolf, put a +1/+1 counter on ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ControlsType","filter":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Wolf"}],"controller":null,"properties":[{"type":"Another"}]},{"type":"Typed","type_filters":[{"Subtype":"Werewolf"}],"controller":null,"properties":[{"type":"Another"}]}]}},"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"cd796e12-c422-4869-8d59-794600425381","metadata":{"source_printing_ids":["565640bf-cc41-4365-b1f7-54f66ebcfa01","d43d9686-a5e4-413b-8a34-3430788dd1b9","dd7587ca-9a17-46cb-bd13-fbee71d40f16"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","J22","VOW"],"rulings":[{"date":"2021-11-19","text":"Packsong Pup gets only one +1/+1 counter as its first ability resolves, no matter how many other Wolf or Werewolf creatures you control."}],"rarities":["uncommon"]},"pain for all":{"name":"Pain for All","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature you control\nWhen this Aura enters, enchanted creature deals damage equal to its power to any other target.\nWhenever enchanted creature is dealt damage, it deals that much damage to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, enchanted creature deals damage equal to its power to any other target.","constraint":null,"condition":null,"batched":false},{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"AttachedTo"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever enchanted creature is dealt damage, it deals that much damage to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4eedf21c-0ad1-48da-a9fe-2ffdbf8371e9","metadata":{"source_printing_ids":["2a9e9951-7ded-41de-808f-8a0fea964307","d2948913-817b-4715-92d5-ed3cde347be7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If lethal damage is dealt to the enchanted creature, Pain for All’s last ability still triggers."},{"date":"2025-07-25","text":"If the enchanted creature is dealt damage by multiple sources at once, such as by two creatures blocking it, Pain for All’s last ability triggers only once. When that triggered ability resolves, the enchanted creature deals damage equal to the total amount of damage dealt to it to each opponent."},{"date":"2025-07-25","text":"If the enchanted creature leaves the battlefield before Pain for All’s second ability resolves, use its power as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"pain seer":{"name":"Pain Seer","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Inspired — Whenever this creature becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Untaps","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"910036e7-ae27-4adb-a314-d9760bce1eb0","metadata":{"source_printing_ids":["8ce8891f-b44c-4be4-878e-9fc45a9dc9cb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["BNG","PBNG","PRM"],"rulings":[{"date":"2014-02-01","text":"If an inspired ability triggers during your untap step, the ability will be put on the stack at the beginning of your upkeep. If the ability creates one or more token creatures, those creatures won't be able to attack that turn (unless they gain haste)."},{"date":"2014-02-01","text":"If the inspired ability includes an optional cost, you decide whether to pay that cost as the ability resolves. You can do this even if the creature leaves the battlefield in response to the ability."},{"date":"2014-02-01","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2014-02-01","text":"If the revealed card doesn't have a mana cost (because it's a land card, for example), its mana value is 0."},{"date":"2014-02-01","text":"Inspired abilities don't trigger when the creature enters the battlefield."},{"date":"2014-02-01","text":"Inspired abilities trigger no matter how the creature becomes untapped: by the turn-based action at the beginning of the untap step or by a spell or ability."}],"rarities":["rare"]},"palace siege":{"name":"Palace Siege","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, return target creature card from your graveyard to your hand.\n• Dragons — At the beginning of your upkeep, each opponent loses 2 life and you gain 2 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, return target creature card from your graveyard to your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Khans"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses 2 life and you gain 2 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Dragons"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Khans","Dragons"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Khans or Dragons.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4d819d35-5cd3-48f1-a77a-b7c3ff82c62e","metadata":{"source_printing_ids":["367945dd-871a-46c9-b047-c701e664d2bb","d9ee5a83-7096-4cbd-ad16-eb839d293d88","da855bb6-adc2-484c-a084-83aff2b267f1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C17","FRF"],"rulings":[{"date":"2014-11-24","text":"Each Siege will have one of the two listed abilities, depending on your choice as it enters the battlefield."},{"date":"2014-11-24","text":"Each of the last two abilities is linked to the first ability. They each refer only to the choice made as a result of the first ability. If a permanent enters the battlefield as a copy of one of the Sieges, its controller will make a new choice for that Siege. Which ability the copy has won’t depend on the choice made for the original permanent."},{"date":"2014-11-24","text":"The words “Khans” and “Dragons” are anchor words, connecting your choice to the appropriate ability. Anchor words are a new rules concept. “[Anchor word] — [Ability]” means “As long as you chose [anchor word] as this permanent entered the battlefield, this permanent has [ability].” Notably, the anchor word “Dragons” has no connection to the creature type Dragon."}],"rarities":["rare"]},"paladin of atonement":{"name":"Paladin of Atonement","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f44dc71d-d08a-45ed-ac7c-f6d1ef811d96","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"At the beginning of each upkeep, if you lost life last turn, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life eq","line_index":0}],"metadata":{"source_printing_ids":["d0ad263e-7ff0-459b-b04b-1d03b09c48aa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PRIX","RIX"],"rulings":[{"date":"2018-01-19","text":"Paladin of Atonement’s first ability cares only whether you lost life last turn, even if Paladin of Atonement wasn’t on the battlefield when that happened. It doesn’t care how much you lost, whether you also gained life, or even whether you gained more life than you lost."},{"date":"2018-01-19","text":"To determine how much life you gain for the last ability, use Paladin of Atonement’s toughness as it last existed on the battlefield. If its toughness was less than 0, you won’t gain life. (You also won’t lose life.)."}],"rarities":["rare"]},"parallectric feedback":{"name":"Parallectric Feedback","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Parallectric Feedback deals damage to target spell's controller equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage to target spell's controller equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a01071c5-aca5-4faa-8a8a-30b50b642f42","metadata":{"source_printing_ids":["891f1d29-377a-4f71-917f-ff10e785caee"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["GPT"],"rarities":["rare"]},"passionate archaeologist":{"name":"Passionate Archaeologist","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":["Background"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Commander creatures you own have \"Whenever you cast a spell from exile, this creature deals damage equal to that spell's mana value to target opponent.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"IsCommander"},{"type":"Owned","controller":"You"}]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"spell_cast_origin":{"type":"Equals","data":"Exile"},"description":"whenever you cast a spell from exile, ~ deals damage equal to that spell's mana value to target opponent.","constraint":null,"condition":null,"batched":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Commander creatures you own have \"Whenever you cast a spell from exile, ~ deals damage equal to that spell's mana value to target opponent.\""}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"6299d18e-a6a7-414c-85c0-d57a8e7d2627","is_commander":true,"metadata":{"source_printing_ids":["1c4b515f-732d-415a-bc1e-6f1022150ebd","7b944e5a-46b8-4352-b598-87d756607fb2","bd5bbfa6-e5f4-413d-b132-ebae32d38657"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","SLD"],"rulings":[{"date":"2022-06-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2022-06-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2022-06-10","text":"Choose a Background is a variant of the partner ability. You may have two commanders if one of them is a legendary creature with the choose a background ability and the other is a legendary Background enchantment. Backgrounds and cards with choose a Background do not interact with cards which have any other partner ability."},{"date":"2022-06-10","text":"If a card refers to a commander creature you own, a Background won't usually be counted or included for that effect. If another spell or ability causes your Background to become a creature, however, it will be included. Any effect that refers to your commander or a commander you own or control without specifying creature will apply to a Background that is your commander, as appropriate."},{"date":"2022-06-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2022-06-10","text":"If you control a Background that grants an ability to commander creatures you own, and you own more than one commander creature, each of them will have that ability."},{"date":"2022-06-10","text":"If your Commander deck has two commanders, you can include only cards whose own color identities are also found in your commanders’ combined color identities."},{"date":"2022-06-10","text":"If your commander loses the choose a Background ability or stops being a Background during the game, as appropriate, it is still your commander."},{"date":"2022-06-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won’t have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 combat damage from any one of them, not from both of them combined (although your Background won’t usually be a creature anyway)."},{"date":"2022-06-10","text":"You can choose two commanders that are the same color or colors."}],"rarities":["mythic"]},"path of peril":{"name":"Path of Peril","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {4}{W}{B} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDestroy all creatures [with mana value 2 or less].","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["White","Black"],"generic":4}}],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Fixed","value":2}}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures with mana value 2 or less.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":"Destroy all creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"d41987b0-2ea0-4cc7-8608-70c486db76eb","metadata":{"source_printing_ids":["061be997-1519-41b6-9933-eb625db88eb2","a6c70710-7390-46d6-9f37-71b23323bc4d","f0c5449a-d63b-4b22-9432-8f0365c3c4d9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"pest problem":{"name":"Pest Problem","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Create two 1/1 black Rat creature tokens with \"This token can't block.\" (Then exile this card. You may cast the creature later from exile.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Token","name":"Rat","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Rat"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}]},"cost":null,"sub_ability":null,"duration":null,"description":"Create two 1/1 black Rat creature tokens with \"~ can't block.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ecc91e38-90fa-4d89-b262-d5f36dce5be4","metadata":{"related_token_ids":["2ff9f472-d654-56b6-bba6-cb501a09ad5d"],"source_printing_ids":["7f4c0959-a107-4d61-9e51-256b2955f6ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["WOE"],"rarities":["common"]},"peter parker":{"name":"Peter Parker","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Scientist","Hero"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"When Peter Parker enters, create a 2/1 green Spider creature token with reach.\n{1}{G}{W}{U}: Transform Peter Parker. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{G}{W}{U}: Transform ~. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spider","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spider"],"colors":["Green"],"keywords":["Reach"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 2/1 green Spider creature token with reach.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"f1b7488c-c675-42e9-818a-24a50347ec2c","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["cd0b828b-461a-5835-8da5-0d684b505914"],"source_printing_ids":["2ec821c3-3e5c-4af8-a6ef-e2e77aa8668c","3ce33422-5dba-4a42-8375-dd8ccc692a7b","97fcf5a5-54e1-43f3-95e3-edc6215bf973","98912aae-4e42-4434-b979-9c85f09f8d6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["OM1","PMEI","PSPM","SPM"],"rarities":["mythic"]},"phthisis":{"name":"Phthisis","mana_cost":{"type":"Cost","shards":["Black","Black","Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. Its controller loses life equal to its power plus its toughness.\nSuspend 5—{1}{B} (Rather than cast this card from your hand, you may pay {1}{B} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, you may cast it without paying its mana cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Suspend":{"count":5,"cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Sum","exprs":[{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}]},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. Its controller loses life equal to its power plus its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"time","count":{"type":"Fixed","value":5},"target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}},{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"MatchesCardCastTiming"}],"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RemoveCounter","counter_type":"time","count":1,"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: At the beginning of your upkeep, if this card is suspended, remove a time counter from it.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"time"},"minimum":1},"batched":false},{"mode":"CounterRemoved","execute":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"SelfRef"},"without_paying_mana_cost":true,"mode":"Cast","driver":"DuringResolution"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.62a: When the last time counter is removed from this card, if it's exiled, you may play it without paying its mana cost.","constraint":null,"condition":null,"counter_filter":{"counter_type":"time","threshold":0},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"530f088d-bfa1-4410-b1aa-ade8abdb2b7a","metadata":{"source_printing_ids":["6e798d8e-cc01-4cd1-9325-37d1bf73e042","98b84356-fa97-4f61-bd84-e8efd7f46e38","9ba55f16-a37c-4caa-9417-227a06cf4061","cb65f5ff-1f0a-469c-831f-618254727111"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","C13","MMA","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"If the creature's power is negative, you still add its power and toughness to determine how much life is lost. If that total is negative, its controller doesn't gain or lose any life. For example, Phthisis destroying a -1/3 creature would cause a loss of 2 life. Pthisis destroying a -4/3 creature would cause no loss of life."},{"date":"2021-03-19","text":"If the target creature is an illegal target by the time Phthisis tries to resolve, the spell doesn't resolve. No player loses life. If the target is legal but not destroyed (most likely because it has indestructible), its controller does lose life."},{"date":"2024-02-02","text":"Cards exiled with suspend are exiled face up."},{"date":"2024-02-02","text":"Due to a recent rules change to suspend, you are no longer required to cast the suspended card as the second triggered ability of suspend resolves. Instead, as the second triggered ability resolves, you may cast the card. Timing permissions based on the card's type are ignored. If you don't cast the card, it remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"Exiling a card with suspend isn't casting that card. This action doesn't use the stack and can't be responded to."},{"date":"2024-02-02","text":"If an effect refers to a \"suspended card,\" that means a card that (1) has suspend, (2) is in exile, and (3) has one or more time counters on it."},{"date":"2024-02-02","text":"If the card has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2024-02-02","text":"If the first triggered ability of suspend (the one that removes time counters) is countered, no time counter is removed. The ability will trigger again at the beginning of the card's owner's next upkeep."},{"date":"2024-02-02","text":"If the second triggered ability is countered, the card can't be cast. It remains exiled with no time counters on it, and it's no longer suspended."},{"date":"2024-02-02","text":"If the spell requires any targets, those targets are chosen when the spell is finally cast, not when it's exiled."},{"date":"2024-02-02","text":"If you cast a card \"without paying its mana cost,\" such as with suspend, you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those if you want to cast the card."},{"date":"2024-02-02","text":"Suspend is a keyword that represents three abilities. The first is a static ability that allows you to exile the card from your hand with the specified number of time counters (the number before the dash) on it by paying its suspend cost (listed after the dash). The second is a triggered ability that removes a time counter from the suspended card at the beginning of each of your upkeeps. The third is a triggered ability that gives you the option to cast the card when the last time counter is removed."},{"date":"2024-02-02","text":"The mana value of a spell cast without paying its mana cost is determined by its mana cost, even though that cost wasn't paid."},{"date":"2024-02-02","text":"When the last time counter is removed, the second triggered ability of suspend (the one that lets you cast the card) triggers. It doesn't matter why the last time counter was removed or what effect removed it."},{"date":"2024-02-02","text":"You can exile a card in your hand using suspend any time you could cast that card. Consider its card type, any effects that modify when you could cast it (such as flash) and any other effects that stop you from casting it (such as from Meddling Mage's ability) to determine if and when you can do this. Whether you could actually complete all steps in casting the card is irrelevant. For example, you can exile a card with suspend that has no mana cost or that requires a target even if no legal targets are available at that time."}],"rarities":["uncommon"]},"phyrexian delver":{"name":"Phyrexian Delver","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Phyrexian","Zombie"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, return target creature card from your graveyard to the battlefield. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield. You lose life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a13cbac0-4c76-4970-b61e-5f4e020ee95c","metadata":{"source_printing_ids":["86f6f3e9-b594-49da-b0af-75a672590da1","de66606d-6fe2-4c63-8d27-e808da7d4980","e2410ed3-49a3-40b5-afa6-81813929ae62","e66d87a5-7b67-4ec5-b5e2-518d67123118"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C13","C18","INV","MOC","PLST"],"rarities":["rare"]},"plaguecrafter":{"name":"Plaguecrafter","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, each player sacrifices a creature or planeswalker of their choice. Each player who can't discards a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},{"type":"ScopedPlayerMatches","filter":{"type":"All"}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each player sacrifices a creature or planeswalker of their choice. Each player who can't discards a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2e3ee458-fa3f-4452-ab95-5a7fb5a0483b","metadata":{"source_printing_ids":["0972aad9-c7a1-42e2-8d2f-aecbb5fd33b5","5c03e00b-034d-4a26-9fc2-f25fc2dfc661","63a10efc-4b8d-4e32-90fb-50ab73810b59","6d238383-e67f-4a34-b431-f079e55b2708","7092aa38-4f05-4b18-b894-d55ca9fe9b15","8682fb87-df14-4277-aaa0-0d53d766c406","97505837-e0e2-4f7b-8581-01942e886bb8","bbad4b00-b56b-4b55-9e6f-3de3e3748fe9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFC","BLC","C19","GRN","J22","PLST","RVR","SLD"],"rulings":[{"date":"2018-10-05","text":"As Plaguecrafter's ability resolves, first the player whose turn it is chooses a creature or planeswalker they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen permanents are sacrificed at the same time. Next, each player in the same order who couldn't sacrifice a permanent chooses a card in hand without revealing it, then the chosen cards are discarded at the same time."},{"date":"2018-10-05","text":"Each player chooses a permanent to sacrifice from among the creatures and planeswalkers they control. You don't choose which type of permanent any other player has to sacrifice."},{"date":"2018-10-05","text":"Plaguecrafter can be the creature its controller sacrifices for its own ability."}],"rarities":["uncommon","rare"]},"plains":{"name":"Plains","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Plains"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {W}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["White"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"bc71ebf6-2056-41f7-be35-b2e5c34afa99","metadata":{"source_printing_ids":["00293ce4-3475-4064-8510-9e8c02faf3bf","00bf269d-aca3-494c-8777-de90ae903af2","00c9001f-a8ee-4693-b8f7-59f10ad8f63a","014efd6a-5b0c-41d1-b7de-78eab5b62917","01e63bfc-c4a0-44a3-a120-13c3cd928ca6","021f3a8e-5ce2-4edf-827d-b748d146e6f3","023d333b-14f2-40ad-bb76-8b9e38040f89","026777d1-e3a7-45a3-8967-527c0b4236e2","02951be2-2521-4e07-a1ba-de2a664ab90f","031b61a1-db66-416d-8187-edc32123131f","034b047d-6363-45ca-9948-8184f822a2cb","0422da01-0252-4f3b-b2e5-9f5b2c0b94ae","0491b4f7-9722-4f7e-932c-e19dc0fdf6d2","07c15c48-8425-48f5-80f7-c8f74ad773e1","07fd89a6-56ef-4488-842b-27bf31d8c04f","080a001b-7815-469b-bd0c-c92453d80e9a","08417671-b22b-4f87-9219-f9291ce971d5","089ae01b-e042-4255-b0ee-17d8f416a8d9","09b484a4-cc3f-43ef-a632-462100bfd1eb","0a143c32-d78b-40ee-8d2b-a8ce303162d6","0a479838-b6b1-4d83-9104-0a79f3b934c7","0a4af7f5-c89c-4e61-9d4b-b9e467ca55b4","0a8bfc4f-ba82-462a-a5e6-5717de69414b","0a95b348-a12e-4ed6-9e95-00bc8ef03982","0b18bbfc-d624-44c5-b3bb-1e9a0fd1f784","0b1b55c1-d74b-4688-a3b8-8480d99524c7","0d0f1dd6-9564-4adc-af7d-f83252e8581a","0d124ab7-0e37-45e2-988f-c98324bf8d9e","0d21476a-6112-4f2a-b87e-e4aea514dcc7","0d4e5bc1-f0c3-4ea7-a549-c36d932103b1","0d7ae52e-9ea7-4e9d-a9c9-c819cc768cd6","0e683531-4a59-4461-b589-5ebcbc51a600","0e7eede2-e682-43b5-b5b7-a61fb8e98082","0eb24b22-d812-466b-b8bf-6562283ee335","0f55597c-f265-4c4b-a5f1-cc58da609534","0fdbb6ae-7c37-44e5-aabb-f1f4de372b16","101b36a6-9cfe-450b-9c61-7f3e8f8109d1","10a087d3-54b1-4000-89d1-0c428659158c","112303c9-e1d0-4a5d-8d18-156fa7e2e036","1164f7ec-7b2f-4cc9-90bb-7eaaa331b4cd","116a7806-1513-44b9-ae95-cbedb7e96b89","11a94c04-b6d3-4118-b252-5146eedae4e8","11e044a4-4332-4385-8279-08cb1cfddfe8","11ee1e3c-32a4-4f2f-b7e3-09a19305521b","11f87b5c-78b4-443c-ad92-f37bb62d0bbe","121cc3c5-522e-4b3c-9551-dc501b006ca1","128226f4-a733-4f0a-ab2b-7789cfa8b443","1299d0cf-76d1-4111-939c-5e1b43347a83","12a1f0bc-5c8a-406a-aea1-95cbc820f3f5","12cff32a-a365-43ee-a196-8ce32b3bb9fd","133c49a9-6c43-4b52-8ee5-b1fb34cba060","1358ef70-1dae-4bb6-a2e2-88ff30d43b99","14afb1a4-753d-4ff4-b283-a7482401b509","14f5f561-39fd-4cdf-b22e-40cfd6a19d12","15dd9a36-55df-4942-a7eb-1c49a7999e68","160af129-48ac-46d0-9400-7cdfde7a036f","16ebbce9-fd10-4c14-b52d-cf82c0c1a58c","18013a78-d156-42bf-89b7-72e7070872c0","18389963-e1d2-4f24-a865-76261c82e873","1851fac7-4f6e-4bba-928a-6485223ce1c8","1856ed2e-dfd6-4794-9fe3-b2a7babcee01","1859ba05-06bc-4e80-8c0b-fd2475c6ca55","1895cf0c-9c2d-41f9-9819-7348ac9e25f0","18a72e75-762b-4760-937a-05031cdec732","18b2a328-226b-4052-9d22-1a52c9f72e1d","1927feea-a2ee-43ca-a413-9084be8f50a2","19ba7ff5-7f2a-4268-9bdd-96061ce5e86a","19ce3b11-18de-4250-a405-8e731882dfd4","19d1d724-731a-4125-99d1-25a81e8ff08c","19e094ea-3dee-47a6-997e-842113774973","1aaea970-a19c-400a-a8cb-5d30f9cc2672","1abb3ffc-9471-42c7-a1f4-66b6a8f9672c","1b104eb8-7095-4aba-a155-d8e147639692","1b405611-27d4-435a-8e8e-6d528626fd27","1b499b37-efaf-4484-95e8-a70a9778c804","1c1cad1f-c81e-4b65-905f-350b02047ea9","1d13dbd6-6c6e-4120-a05a-e77f1e863b35","1d7dba1c-a702-43c0-8fca-e47bbad4a00f","1ee520e7-82c8-4083-855d-ae15931b8407","1f2c4f03-67bb-4cb7-b1c0-0e806b9fc3a8","1f38dded-f642-4c37-b479-9a91dfa2ebd6","20787f63-e310-4f2c-ab13-1bb108ae3eb2","20aec487-ac03-4912-969b-f537864902ce","20ddb0be-d62d-46fa-b753-36dfab935e8a","21a8b83f-b7c8-4a8b-9c5c-31c793c6d9f0","21e41416-bc0f-4e49-9137-df8572e91ae5","2296cffa-be1f-49af-aaca-3166e7043de0","22de1edc-ec67-4694-ab88-2a679c8a450f","241d9f61-b94d-4ba3-b709-791ec647a716","2443d32d-0576-4666-8da8-241de446b7db","247d1875-b59d-475c-926f-0ecf4e7c0faf","2484c9db-44bc-411c-af43-bfe0e30f0ffa","24dc369c-020a-4115-a4bb-d60a44de64e3","24dfb372-0fa8-4c50-adc2-31de4e3fb24e","2576dc74-1847-44b8-aef9-9d74f333b9cc","25d96d9e-c6c2-4c51-ac57-b63dee0cf27a","272e4d2b-2ba7-492f-9f0f-b2b2a2e4c049","27462523-a5b9-440a-8220-68ae46db5f18","275c03f9-f9d2-45c5-a332-b3bee54e7065","27ac1fc7-0698-4a94-8353-cc4c13bd6ffa","27d283ba-9d88-45d2-80d3-7e4fffea6d22","27f8ed5d-a63f-4e8f-8f1a-10bde4fea710","282908d5-29e8-4a55-915e-64883ec3b714","28fae600-d829-412a-8f77-3f25a106f574","29d7f240-803a-4c11-8f4c-6a784566ee13","2a34be94-2b31-45a8-9857-02a1cc29f4cb","2ab98b67-3450-4cb2-9d2d-b4e3448dcd73","2b069f97-735a-4d85-8504-b5a863bd659b","2bcd008d-446e-41ba-a92e-871b9296fead","2c4d8ef3-2b26-4376-a00e-ccd58e3ea2eb","2c88c670-db47-48de-a1f5-c1a06b1e6ce6","2d0ee927-f9f4-48d7-814a-5957ac71aea6","2d2da8b9-797f-46e8-a15d-a86c7c56dc84","2dfe1926-c0d5-40a2-b1aa-988524aefc31","2edf5042-d185-424e-922d-c0bd4ce3e8b0","2ef285a1-dbd0-4e41-9f04-a9120a0421f7","2f05ea5f-891e-4a66-82db-3ffb17efd002","2f2cbe94-227b-4de0-b901-d38d6e95a20d","2f3d1a99-4b5e-4138-b48b-6d7bb8a64293","2f6778ff-6c1c-498a-bbfa-46c35b77a72a","2fa4b03f-60f1-441f-8066-8bc13d5637d1","2fb86b5f-0ff7-4924-8c69-3042ddec7911","301a6a9b-c91d-4337-bc8c-411a50793385","304717bd-3c97-47d6-b2fd-e94c70655058","30f05dcd-3cd6-49f3-828b-01e4cb5d1459","3138154c-5763-4105-a635-b697fe4c1e52","315bc0a3-3d1a-4c2e-b12c-e81486a02311","322a6bc1-bb77-4913-a0b9-ac77316b30b0","324b97fb-da4a-4867-abde-825383c74b63","32912b82-bbe5-4d70-817d-cd18bfdecacb","32ebf9dd-2f3d-440c-9935-bb3903ca7452","334ca29a-7fb3-426f-922b-5a2b905a5565","34044cf5-79ed-479c-abdc-3718ec193dd3","34fe1359-c78c-41fb-95d9-fcc7c46f0bb1","3550f914-cacb-4849-af06-1a7b25c2c95f","36392057-e3a8-433f-949a-f62af913598d","36446ad6-8bf0-4e4e-bbab-379c22dbf4f6","3645e11b-6b46-44c0-9741-f70da15692d1","3663ff0c-d02f-49ac-bb88-6f0dbd684337","36ccde39-98bd-4a67-bfcf-a66d9fbd9417","3733ca13-1398-4f8f-a885-4b0b2c498d2b","37edc4b5-75f5-4b43-a57e-a8192565a2a0","38789fff-0207-4b38-9bfd-5464ab62a533","38e2b0ff-8fdf-4db0-85c0-c1010bacd36b","38fbd6fa-39d9-4bc1-b870-dd6f7ff8f807","3912c5c8-3b80-4e92-abc2-eb482e49e9b1","3959d473-10aa-482a-b5aa-ff7bb15cc128","39965b8e-0ddc-4c9d-9eb1-7536ec4a8723","3a438199-54f8-4702-81cf-a9d42e7cd9f1","3a8fd867-8be1-4ee7-bb67-32c3f22db59e","3b40b21b-eae1-4996-98ff-4621faf544b7","3bd35bef-1702-4b3d-b149-8761c5cc5ed9","3c53a80f-54e8-406c-bf84-b8d39b9b7842","3cd136b1-c276-41f9-98ee-3e07eb87bacb","3cf6c0d0-5de8-4909-aaaa-be46466fb370","3d88074e-d394-44aa-a697-43c63d1dc655","3d8d3cd4-0f5f-4424-82ee-d8ba81da47fd","3dd7745b-db3e-4477-a867-fea8c4a38350","3ddcb7af-1f99-427f-971d-dd16b42d1914","3deb3077-484d-42d4-a54b-5fade5335420","3e82b57f-a886-4423-a921-9932055feb68","3e8c67e5-587a-43b2-af47-bbad1f8b52e9","3efd25bb-853c-47fd-822c-02ca6fdc8bcf","3f700330-5fcc-49b8-9163-072627016b95","40337e60-065e-425d-ae35-c639d2bb5b42","405b531e-0f43-479c-9f8e-cf83f7b943a4","4069fb4a-8ee1-41ef-ab93-39a8cc58e0e5","40aca5ca-a37b-4919-aef6-2510b4779161","40e211fe-e843-4d05-a97d-b208b616179a","410d728f-c4fb-4681-9412-48c21976ed3d","418446b3-74e4-42a2-b6fd-bea74ee8c696","42014ad8-22d0-4313-906f-5baa39642cf4","425bc1f3-4e6b-4be9-8d3e-2a268a1eae60","4315d5ea-eb76-4378-a3da-5d5cdad809b8","4323e4e0-399e-495e-b090-7f3783fc4e4c","43559560-354d-4147-977f-766b58bca9fa","43711fbd-88e5-4300-a9d5-67010e7121c0","440680d3-1eea-442a-b58e-96db09bc279e","44214f36-8bb3-4a32-8046-3ecdfff8407b","44373f76-9b3b-4c27-8b70-eac43155bcde","449d4122-ee9d-477c-976a-809ba8cb1443","45031d49-c82b-47a4-a652-f8904cd9bb66","4528641d-8e3f-4f9f-aff1-94e88cf7eb3a","4578c984-afb6-4532-b5be-093ed4ecb8b9","46198629-2099-463d-ad5a-c919ae64cded","464723b3-0723-45f2-a258-32d098c39039","464fa166-82be-4f28-8fd8-0c9cc4393012","46b94de4-099e-43d7-8f24-d5450b09f1f1","46c75f8e-6590-4338-abbd-a37e08dbd58c","471577f8-dc62-4f10-8adf-1e566ffc75fa","4716a32c-91a6-470a-a686-d5eb3d27f46e","486fbcf9-3a04-47f6-8927-886c2a454499","49f7e5de-1fa8-406e-a411-fc8a11937000","4a4b95d4-4ffb-4db1-80cf-c2c90839e8a3","4a818aaa-7a8b-4547-aa2a-052af21b815d","4a8a055d-fa9e-4e41-970d-a395c357554d","4adc1cc7-e118-43b6-a1fd-45161a8f614c","4add62bc-d24c-4a1f-81bc-e3a6befe3f0d","4b593a52-826b-4da3-ba98-11d4b93458b2","4b7604bd-b3b0-4e55-91c4-3717bae7e457","4b97d2f5-498c-42db-95d9-f9002d4dfcc5","4bbce1b2-19f3-43fd-aa08-6cce9c8878a5","4be390eb-3470-4f36-9bf4-3f9f8e5d5b31","4be96696-aff8-4ef9-97dc-8221ef745de9","4c150b5b-542c-41ce-b980-bb4a940b6c20","4d48ef1f-e000-452b-aae8-c3257f149c7d","4d6b9abd-fd5f-4a7a-a911-77696e6bdf08","4d6f50a8-f210-479b-b7d3-ef01c00ea4c9","4d879a13-6ec3-44da-b3fd-d9c1545f3822","4d968b76-8787-40de-821f-46bd2754fa8a","4db21784-e56b-46bd-97a4-3770f2ef5caf","4e196d67-1923-459d-98cf-646337914d3b","4edb482d-6279-48d6-baa3-047b48c3e5df","4ef17ed4-a9b5-4b8e-b4cb-2ecb7e5898c3","4f04188d-9a76-495d-b3a7-ee44810cf671","4f10be33-bbf8-4b38-bb27-024c2d8dac7a","4ff9fbf5-de6f-4ef9-a6ab-56da4b341b77","50958c6e-9555-42ad-9bb3-2da9faa5cb52","514c9899-65c2-4f1b-8716-ab144766b385","516106ab-8b92-40ff-acb9-9c635f6159b7","51662253-789f-4a02-9937-688e36775024","51afc6cd-1a39-4160-a265-d92610db1d44","51b0dd0f-8ad8-4292-9df6-7b28ab4605e3","51bb9dee-0246-41f7-bcc6-e402ebc2b701","51cfdbd6-00c3-4eac-acd3-b058b82ff947","51ff6ee0-01f4-432f-916b-ed771904d64c","5221193c-7d9b-439a-991b-a41e27ba66fd","524ff04c-932e-4441-a2a7-1416cd43d232","52ff493a-6336-416e-af5e-1eb6d10c080e","539f0b05-61a2-48da-913a-886bf9d97594","5414daea-c5c2-46e2-bfd7-de96cc7bbfab","546507c7-8fa8-44e3-aeb7-56fabf419d82","54b1c00c-c292-44c7-a6c9-0dcdb00581aa","54db7822-ebed-4c7c-8ede-469d72fd694a","5665190e-ea2a-498e-9c4f-f0bc514bd80c","56bbcfb7-cfbc-4752-9b6c-ffbd5d3dd678","572eab93-7b1d-434b-ba92-844248e472d0","5822b027-369d-46da-b6dd-c31207e2f449","58a735c9-08a1-4950-bf8c-ed1cfba76765","58ba055f-18fd-4981-b181-85729e19112d","598f857d-ee17-4478-bb39-cc3ab77ab8d8","5a189684-bf9e-407f-a8ae-a554169d2ec2","5a8279b9-c1dd-43db-a01b-89567bb43374","5acefadb-8b2f-4319-a5e9-1e8fd9ef3086","5b364f40-c3c0-4e3a-8556-73f6fcc19eec","5b5f9eef-925c-479e-a9a5-ce61fc06f3be","5ba9ef2e-d3ec-41f7-802e-e1414f14dd10","5bac2d0d-43db-41f7-99dd-9ff55a4f2b3b","5bb495cc-9908-455e-bec9-3993d595f4f9","5bd5900e-100c-44e8-97e9-b0c15379fea1","5c2812cb-4fce-4ec0-a2d5-88ef4e34d5ef","5c45bab7-a8c3-4877-ae8b-85576f608b78","5cbfbafa-f58f-40b2-a374-68ac35b77d89","5ceff685-b416-43a2-a44e-ae6f0afd45b0","5d918248-85ff-4fea-ac91-aa5466dd2829","5dd76e71-df9b-4fd2-b534-d3f724a56a91","5e8b581b-5177-4cea-8021-42f4d21583ad","5f4bf87b-1e31-4c09-b685-86592eb32be9","5f8e477d-8772-4e54-8857-691f6ab207a6","5fc26aa1-58b9-41b5-95b4-7e9bf2309b54","5fe68013-a519-4dce-a28b-c6304dba8fac","600cc3f3-5400-40f4-99ff-8a4a905e79cf","6089330b-dc26-4c35-ba58-522d5bfb963a","614c9269-77c6-4cef-a987-8ef4c14fcebc","621c7296-a1d1-49da-a1f1-dd62758ad7f7","6242dbef-8412-4ebd-9486-42cec1dc6794","62836a1b-1d1f-4df7-b99b-8bbe07f705f1","62e339a9-3f9b-401e-a459-dc3affc9a114","63607a09-b00c-4c0e-b8ad-d1bb5a45517b","639e47dc-c90f-4f55-9b3a-721240ec04ed","6401c6e7-3415-4e68-b40c-9777c33785eb","65498b4f-a6da-49b9-a565-ac2079d23afe","65b7eb6a-aed1-4fc9-9b10-06169fa50690","65beef5d-df12-4e33-a585-b32f552b58a3","65e1287a-2166-4592-9518-da4b92b3623b","6620b5f4-b1e5-4d1b-bbf2-c6ad9c8284c5","6624e111-8c1e-4a39-812e-3ca2dd9f0dc7","663491e8-b2b2-432a-8d69-daa3fbe7e582","66ad5a57-7296-43cb-b477-826e65d37222","679cdcc9-8a6c-4cfc-9237-23af2cba1980","67a2ff8c-ac4a-425e-afd0-a9010bf87c1c","69f7ef07-37bf-49de-b5bb-c7641091b92b","6a18b41e-e02e-4348-82cf-57570150563f","6a462a95-f841-45a6-97a2-d6ddcffa3c20","6addf844-2790-4da5-a22d-18df878f2219","6b362e9b-8d25-405e-b70e-f3c9533627a7","6cab2ebd-6ab7-4273-bda3-d7dea81b52c3","6e3231c3-57d2-47d8-97cd-65dda2bc97e2","6e380260-6828-42df-a8b5-1943b05f91dc","6e4454b1-ec19-4917-915b-0c913964e9e9","6e5db4d0-61f4-4cc6-89c4-02a2060b556d","6e6d4bb5-9da7-4d21-9cdc-1732ea61121a","6e6f19b3-4c76-4078-8ed2-b2832a33d066","6ed1902d-0b09-4bbe-9059-a0779450ee05","6f501773-1b39-4a4c-9b45-a950385c9e82","6f6fff16-abbf-4e80-9450-4cb42b13fe38","6fdefa6c-4eee-4fe4-ab22-9e65acc55e3d","707c5467-2a54-4f77-a845-b50c9f5fc041","70dc47f2-a92d-446b-b788-8287b5d609c4","715b89c9-2820-41ec-8a87-b2657ca0c7fe","7244582e-39a6-479e-9239-fc5d98c1a52f","727164d2-2a24-409b-bfaf-c4f279673517","73d7ccab-4d35-495d-a45f-b6b98d32ba03","73fb4a34-c11e-45e9-a986-43c0a0ae5424","7432b894-e7a9-4de7-9470-846e65cd4d0c","74aae970-d66c-424e-8a23-577711af6eab","756abff9-9810-4e2d-b1d7-ec4e2d6d5187","75c3424f-0500-48ce-9779-b77e7763e253","75e639a9-6010-4453-9c25-4ab03664b9b2","763c1eaa-fe29-4b24-8e41-96b94e5a75a4","771294b5-c1a1-4456-8399-1391bc5ba40e","7734ae50-33de-4a2e-9ef9-768ee389b6b6","783eeb62-ab10-437d-a6cd-c3f99401b818","785c94fe-1c75-46d9-a59a-2d84ac531e7d","78bbb80e-880c-4362-98d7-9f1f92563439","796f129d-912f-400b-8077-7b2873ec2040","7978fa58-0860-4082-a674-2d6abce899b9","7a0f9892-89cd-46ff-bc87-114e175cb575","7a2c8b8e-2e28-4f10-b04f-9b313c60c0bb","7a76d8ee-28fc-49ac-951c-a4d29822f91e","7ab3d0fe-6af6-4d02-b41d-0b88b510be4f","7b68bdb0-41cc-48f6-905e-7da1ff4ba5e0","7bf7d68a-dbd0-45f3-acbb-59ee38e6057e","7c2839fa-33eb-47fb-9541-77c68612aa02","7c80d185-09f1-4b2d-9950-85d24a5fe120","7c88ade7-4b1c-4380-a19a-8ba18fa4adaa","7cfd53b2-3991-4a57-81b5-46618aecce4a","7d39625b-cfc5-439e-b888-fbd7849f47a6","7d93c502-5fe7-4129-aa3d-7758729cbd53","7ded4b2a-ba56-43da-8ea7-392b77fc2926","7e134268-9ce9-4192-b548-90bedbfe654e","7ec6a88c-0e68-45e0-bfb7-67ea1951ed51","7ee52bef-0586-46b8-a405-f4e0741f0059","7f2db9b8-648f-4c7f-bd58-1069a1417a22","7f65a77d-6fa9-4f26-a9bd-8b34a9b1bed4","80897666-ade2-4f70-9c4d-235753b44a23","80b6636d-a342-4d49-9d1a-ab15b3d837c5","81a1a8a6-916b-4eef-8079-6775afcb63cf","81bbbf38-5d1a-4013-aff9-6167709897f0","81c96115-3728-4f3c-9438-d53550974363","82283c22-9b64-4f41-a5bb-aeb737eee5c9","823a3cdb-2e98-46d0-9a6e-18ff967de644","825f809d-fb64-4101-a985-c3533f26a345","82dd5b8c-2c2f-4185-b176-a94b43729a29","83edf237-817e-4482-8dc0-1a502846720b","83fbc748-fe45-4b06-b2ec-71087f7225ec","8410f6f6-4557-4102-9f84-fe208f7118e4","84144d57-f0b6-4011-aee8-c626c21998c4","8427be4a-126e-4188-9f3f-ad67b9d7fea5","84621715-ce30-4736-99d0-b7984cc8776b","84908444-ee0f-430b-9a5e-f6810aa8bce1","8538a97f-302d-468a-8a6c-50c800d614e5","854a255e-fd89-4c5d-b97b-416a9ac70960","859e0813-96e9-40c3-8e7c-bee8bef27585","864501ff-41b6-4732-b975-e4bc7ae36115","86626d69-78e0-42b9-81ed-fef46e3a89f7","8673e184-2b58-44ef-bb68-bd3d139ed0ba","8703ecd3-1ffa-489c-b8e1-f4d9b5ba2c12","879162e8-3a10-40da-8d86-9a7dff67c961","879f7f54-25a3-440b-848d-0e780277a681","87a66868-2efa-4985-b4fc-405d7fa8d410","87e53e2e-0703-45d3-ab91-78f5241c32bb","887f543d-e120-41f1-be69-e21b40bc1003","888f32ad-3bdd-4c46-b3f0-522ac9763591","888f8793-83ed-437a-b06c-aec97205664b","88f96591-4f22-451e-bfb5-32561cc4640d","8911f09d-1c82-410e-9de0-21b619820da5","895fcea3-23a0-4442-90a2-26684cbae3b4","89f97882-408d-4e00-910d-ad0598d630f4","8a299a1e-1ce9-4668-a5f5-c587081acf6b","8a3cedf5-901b-4ea9-882b-d0058c2f9e00","8a65b379-47a9-48f2-be6e-abb4e7868ad0","8a790328-70b3-477d-bf02-8718870367ae","8a880169-41ca-4507-83fd-306a489d31ce","8b74c845-494d-42de-99df-02d07047a3c5","8bbb3646-c427-4302-86ac-9ac28d045959","8e07d3e6-c602-446f-a453-f54f13bfc55a","8e5173aa-1eca-46ae-81ea-0b1dfe5e12de","8faef4f9-931f-40ab-8ed6-5fcb5c680afa","8fb2afd8-7958-4864-81d4-210d91470aca","8fd675c7-7dac-4ad1-9243-6d1eda0fa30c","9045a9a2-e63f-4a68-9f20-28a43518f71f","904a9d1f-8e3e-4cbb-ab2b-99fe0abae01a","90742ab3-89fb-4ac1-9bf0-0e2d17252bff","910f2bcd-8d37-417c-a969-86e04f1daf23","9129628e-ee2b-450b-a3d6-fc94e9bf477d","912e30e7-9b8b-4c27-af3a-ffdcfe8b6feb","91348123-e2d0-4acb-ab4e-ec17652b7853","92342f45-ccfe-4d94-82ba-2fd55128326f","926aad15-87a8-4510-b327-d1648f89c497","933be7f9-9bfe-45cf-9dfc-60f72cd58db1","93653b18-3821-485e-afeb-edafb0a9e84e","938a2c05-eff1-4cdc-9c14-ede3f62fa0f5","9433619d-5bd1-41e9-ab7a-364c98347b1d","94e88862-d53d-49b6-8aa5-95f07507c6e1","95347dba-09e9-47a3-a068-db78ba39714e","9591fd15-78d9-4089-a075-031ab2affd2d","96ac45c4-2495-4a1b-bc37-11e31ee0a952","96c9319a-a257-472a-9ab3-676d41adf877","96f86c6a-b43d-4c41-bd80-a203520a6e5c","97b7beb9-0805-47b9-8e62-ff110e9e086a","97e0aaf3-eba0-445e-b560-f889b800e6b7","999d82f8-6c64-4b6a-a8ac-fbc48dd1750c","9af8111d-cdfa-40c3-8a85-ae2890032bfd","9b13182c-0529-4da2-b5ae-9d61fe0a0f5f","9b5fbeae-9bd5-4741-80a2-9b646b374328","9c49b9c5-f701-49ff-aa3c-59e11add5d52","9ca16bd5-e261-4229-a92d-7cd55654dd11","9d025ba8-f966-4af4-a7f6-a148b1515bc6","9d4b8bde-412b-4d12-b296-7364c95e0510","9dd2d666-7c6b-48ce-93dc-c004ebdd1fe9","9deeda0b-81f7-484d-a99d-0e7d2449d157","9eafee37-1191-40b4-af5d-cc51b737b966","9f015fe9-c7fa-4503-b0cc-c0e7f098882f","a04af0ed-b978-498a-aa56-27f009d58d58","a081aa52-4809-4109-acd4-6a67ca3a114a","a1cf2f81-3041-4349-9b37-f215c4e38c5b","a1e5a611-ad7b-4654-a8f1-d024056c346e","a2125c3e-d52c-44b9-b9f1-89f02236d447","a251f4cb-054f-43ac-94af-bd205f97327f","a26fd28e-d053-48b3-ab4c-2dc6fd33fa64","a2b0679c-e7cd-43e0-bf8b-4518734f946b","a334360b-2943-4442-8557-e0a5efd272b7","a34ef351-2864-42f6-8943-75bb6fffc9f7","a37c667a-f035-49b2-9f34-9831e186ae82","a3ae6956-7f2d-4569-a9f8-3972b5ec5e56","a3cc4f04-9fc2-4ee0-b60c-a102e442141f","a410e95b-afd0-4ac4-beb5-96163b411fe2","a4446149-341b-449b-86e2-2b6b47b7a75e","a4901260-073a-4d06-8167-c322c55ab210","a4c77ab1-aae2-44b4-94a8-74819db16363","a5bfb654-ab99-4272-a184-b95e1022af5c","a6dc63b6-3a3f-4f14-af8a-f239b07f5b5a","a7394e45-797f-4991-98b2-6570eaf82c81","a7f1d17a-c17c-4a27-97db-a37ee8c0e706","a845de50-4af0-4f4a-9c2a-db587973571c","a8ab8c09-851d-4f38-8d30-a61fca7629be","a8d4a0cf-9bbc-43da-a88c-47cb43fe13af","a9891b7b-fc52-470c-9f74-292ae665f378","aa69cedc-49ce-48f3-88e1-94b9bc061bf4","aa6f0743-c433-4348-bcef-20cfe7b28293","aa74b27d-2381-496d-a3ef-af3722c7b4e7","ab53b300-38b2-436c-834c-b0162dd3b757","abadcf9e-46ed-4a8b-888c-0cd3756bc8ab","ac15978d-41e6-4eaa-9456-0de3b912d437","ac754820-343e-4c01-bcfa-89fa5c8c7e1d","ad0b7076-03b9-4a8b-a55c-6cba0b8162e8","ad1317da-9e81-4aff-8c04-9155d14be90c","ad6be912-4d77-45d2-b653-7fbbee6a881a","adf67e21-3306-4c4e-a021-9b997cc8c48c","ae15af8d-da17-4967-9d1d-49a9071d80df","ae92dc5d-00dd-42c2-8f02-a6658dfb3f01","ae92e656-6c9d-48c3-a238-5a11c2c62ec8","af6db62d-62de-4b63-938c-2d2c946c5aca","afb59eef-385b-4a9d-b70c-952387b30310","afcf799a-7a65-474b-b9c8-755f25ac74a9","afd8bc4a-46a6-48af-9e17-712517e9d8a6","b078ef66-a83b-4e12-bcba-838bc3809322","b0b9bcca-b41a-4a6a-b380-36bfea9f0715","b0e22017-301e-4c02-b496-c648ef97d919","b11c9a26-3234-480b-94cf-49f15f2b0002","b1623d57-4729-4796-b3f7-f1837a05c6ed","b18fb598-90bf-41fa-ab53-a182580296e5","b251c9f7-7df5-4abf-afd7-813999996dfe","b2715553-ba9c-4753-9a1f-d13d8e2ed24f","b2a646c9-8347-4b62-829e-6af6b275346a","b3344d18-e7b6-43ad-ab59-9ceaf49269f7","b3bce7a8-b9ff-4e38-853c-58ffaad53fef","b41e0881-6ecb-4b1b-816b-d80a74a414ac","b43da6f6-fe15-41d3-932d-4ec3d16cc0b2","b4da90d5-d793-4412-acc3-e0c2a5c10e18","b4f8fa19-a872-4542-bf24-8bba9f0a64a1","b5453630-bfff-4403-a9a9-49f1534e1d42","b5626933-5b62-4389-ac99-334ad71b7a78","b5b4963b-c706-439f-9800-ff5d70003dcf","b7231444-005c-44c6-bfa5-274eda30b419","b7331b03-be66-419c-94bc-ed494c042ea3","b75ca372-c110-4321-b497-8841547f3c2b","b7de212e-93d3-430d-b4b8-242b7b526eda","b8c391f2-b340-43c7-89e6-afac5b70491f","b8d7d5f2-29bd-4015-b98d-c7ed71373f0d","b8e41010-a7d2-4e78-8f7b-502347f8c47d","b983acda-68b6-468b-b0c1-aad8b53db49c","b98f9405-b8bb-4f50-8ace-0969abc86308","b9dbdef6-e141-45bc-9209-5c17a8ad135b","b9e35567-05df-4a3f-8c29-d8327abc2e8d","ba708fff-a428-4783-b405-4c7e6ea72fd3","ba855a4c-a16e-4609-94e3-d780f2df2dea","bac08825-ca54-4a9f-bf4f-f75708a1550b","bac23c5e-a489-4fba-b14f-a968b202ac22","bc14d179-1833-4364-a2e8-c94851df0b67","bc4f4b6d-ff35-4b1f-974b-f39569e6b3c7","bc73d7ff-bbef-4df9-ae7f-aa2ac8ac7025","bc7bc42c-1619-43c1-b720-1dafa391391f","bcdd1595-d94d-46b1-b87f-b910ae35fa3a","be0334fe-3de3-4779-a31d-d021db50b62b","be26189e-1de6-4f69-b5f6-29ea7f5a7d9c","be849ad5-9f96-4605-a0dc-8b9588ac7dd6","beaa0e2d-2003-48c8-bc18-a4fae1972594","bf39f344-1204-4c90-93b5-c04a24f0f1f5","bf756c6e-df34-4834-b0ef-824e0aec3ee3","bfa36806-235e-49b7-a637-494c91926ede","c05ce2e3-44e9-441b-9467-46a3c6642184","c0690e60-e11e-4903-b1e0-e36854213b65","c160b1e7-8fad-4592-899c-995d09bc8b52","c20ec10e-78fc-49dc-a112-7863a34056b1","c23864ff-e83c-4899-99e0-4ca5167bd4e1","c260e1fd-8de2-41f1-a228-5476dbc56b17","c3345553-8f04-4a83-9b6b-95ca0654921d","c3f33598-1344-4365-9067-17a7379de894","c40b8460-30ae-4390-8bc6-ef69ff048572","c453d1ea-9a42-4ccb-9391-eec122025647","c574549f-da6c-4080-8748-6ef146a7ae48","c577a2c0-88e3-49da-9586-6148f19e5c27","c5b472d5-da70-4fd9-a68c-10e17797ad0d","c62977b4-ffbd-43e5-9b36-2d3e6557b56b","c71446bd-08f2-41fe-ae44-db44814c8afb","c7191d23-b68f-406b-8c28-8dadbaef6562","c7595395-cfc0-45e3-8290-6c97735a860d","c75d8ab6-0391-4bd7-9861-d2f6dd745a51","c789adc0-69ed-4d1c-8a20-ca219020fd2c","c7f7baf6-de14-40f8-871f-dda889672608","c80e0478-8c53-4406-acc0-b7662c9c382d","c8409f3e-aa2d-4ee0-b9e8-97c03aff5eff","c95e9696-6e9d-462a-a40e-117df77e3909","c9cd4d57-8c51-4fcf-8a9f-5d6a61c33e3d","ca8fb179-7e81-4b20-8b81-ea1aa97afe58","cb382733-ff3d-43e2-9b1e-efa2f7c28173","cb3b6487-6a9d-4297-aa38-94cd687f8f80","cc084e24-22fe-4326-b894-54d79fbeba2f","cc0bcdbe-be63-446a-8838-8790bda308a3","cc3db531-3f21-49a2-8aeb-d98b7db94397","cc623027-2b5c-489a-9bfc-763d678832d6","cd825844-18af-4c35-9a37-595c6fc8084d","cd97a3ed-e266-4cf3-bdf3-305d87373742","cd9a8337-e4ca-458d-8fcd-672d8d6f1c0d","cdf91075-8d8d-43c3-8125-2469e2dcd132","ce48b0a0-40b7-4f32-b841-7deae02045c6","ce617aad-2c72-4b47-a9ae-51792459cffd","cefbe595-93a9-4a5d-b5a5-4f517cec7bdd","cfe51d97-66f6-4ac3-b926-01ab7e4c5686","d056a94a-a07d-4494-a75c-b3f6f59457b3","d08e9aad-3b06-4cef-8b91-0087bc5881f8","d0bb41fb-f224-4705-ba61-b7cac835be4d","d17f8abd-c087-4039-8dfd-c6168f7db0a6","d293ea0f-8b87-4d8a-ad8f-650131c83c20","d34b85da-bd53-45bd-8ff6-d5dc73514103","d3bd857b-87d0-4a0f-9aac-0b1b661bb3bd","d3c1ab59-3771-484c-8a79-2bb36655b6dd","d595ba72-3334-48f4-9ea9-a43f5e824aa8","d5aa2449-6b74-4319-858f-caa9282da5c1","d5e327d5-2e51-4fdc-a0c8-edd3dd77c058","d60f837e-736c-4a20-ab47-dbee4617ebcc","d7147b73-a7fa-4ecf-b9a1-a3f4851a5bef","d7744562-1df1-4aea-ba15-5aa1e50e26a0","d7d20b8a-0aa7-45f6-8c87-01d85beb2771","d8098d41-38dc-4f82-b65e-d3bc7d8e0fcc","d812b6f3-83f0-44c9-8583-eb97fd8fade8","d85121b9-2aec-4a79-bd18-d472fb9a8d0b","d85d0f25-a24a-4de0-9b8b-93fb5017bce9","d8fdfa7d-fd11-4c11-8743-a21538474314","d92ef517-2417-43a2-8b1a-0673d1531c65","da033f5a-bc5a-4d99-ab25-4055eef56cf7","da26da6d-781a-432d-8b67-0674c9fbf933","da37f78a-a0a6-4ca3-921c-4bc2c17ccda6","db0c6f01-42be-40a1-becb-085f54750830","db14da86-6721-4e22-9b61-4a5680d4e5a3","db3036bd-95f0-403f-a6ba-b3b05f81a3c9","db48af31-8309-46fb-b178-657c3e2fa05a","db4b9e75-b948-487a-8417-3b6feec41ef0","db68b6a3-10e5-42d1-9325-94a4a821782a","db9ab619-6a22-4b26-a8ab-48a6aef0aaa2","dc34d24d-9c1e-45a5-8d0e-ccef1211906f","dd29103a-f34a-4d4e-83a8-93a1a590d3c5","dd3df51a-d173-44c8-9630-4652630cc544","dd81973f-c7a8-4855-affe-6a65b7f88406","deabdaa1-6227-48e4-82d5-63a1771320b2","dec72b07-8f41-4d42-a455-794bf106302c","deff6a75-2ecd-49d6-b58b-a9d24615f9b7","df31f72c-076e-4d8e-9975-6d6281ab71f6","df3e94f7-9f97-4652-a1f1-381feb15f688","df5de603-4abd-46f6-873a-4265e1326a6f","dfa01578-faf9-4694-86a0-c81f5b2a0dd8","e025d0ef-ecef-4fdd-b00f-aa5e22360b63","e0281fba-d771-4431-931f-920db2f14c47","e06c72cb-03ce-48eb-b5dc-b2301c6871a2","e0d1a81e-6710-4922-ba0a-510966c39449","e14e6193-f60b-46c8-a7eb-02a437138568","e20726fa-d99b-4e3d-8054-b7d313ceb02f","e3e536cc-e724-43d4-9fe3-dfb4952613cb","e4734a7c-67d0-4124-b76e-d53634557c7d","e4f48ac3-f0cb-4e5c-8ea6-e423aa92ce11","e52ed647-bd30-40a5-b648-0b98d1a3fd4a","e54dbbc4-2136-47d4-a014-1206707f6bcb","e590059d-57e5-4696-9bb1-30d8d35c4329","e5c5946e-93f1-4c70-bd3e-694013e743c3","e623b058-76d2-476b-9ee6-82807f7992c3","e67be1a3-24cc-43d9-bc22-3777a0549b5c","e67ce864-bf29-42f1-81ca-a98022892eec","e6a6edf8-47a8-4471-9d62-8fe3d102567a","e6ec1f39-08e0-45ce-b4ec-c25d64bd3461","e7667207-283c-4318-b918-caa6368bb6e3","e76a9b20-746c-42e5-9977-f5dce6aef0f2","e77924e4-0f15-48a3-b494-89b544ee9d37","e7847fb1-bb6b-414f-9639-8be5b6f09917","e81ecd4f-4cde-4d8f-a9b7-d7c6098be981","e84f2b9b-1412-476f-8739-17d35ea48a51","e86b943e-0c07-4b5c-a850-857a86d59c57","e882099c-63cd-42f0-b160-35e6922106b1","e891d622-9369-4eeb-b7e2-183c60ec54d2","e9495172-6fde-4aae-b47e-fc887440120e","e94e2710-7b95-46d0-8261-0afa6b192e70","e9646663-ba93-446b-ad83-71503924e7f8","eac11282-82d6-40db-8c28-5ed02268d2c6","eb17acb3-0765-4703-a03d-6867a2f59db2","eb308263-96b1-4307-b8f7-907569bf2e15","ebb35754-99e3-47de-8df5-ee485b5a7b49","ec05cb6c-6e7f-4d40-ba38-a9fc06158094","ec9451d7-adec-4199-9a95-44b91ebf8681","ec9ecf19-9f9d-4642-ac70-ddc08fad7e17","ecabd341-b3d9-41a7-a045-39121715ad87","ed39f11e-a7c4-4a35-aed6-7cd7590723b7","ed4f7329-9c72-4369-8b66-2a89423e957d","ee310608-e669-4fe3-a8e3-05530438dbf0","ee7cfabc-902f-46f7-b1de-fa0a88c8f852","ee7f525c-d777-4adf-8920-8adfc73bbc55","ee86ac2f-f398-4422-8721-8ac859fbf5bc","eecfb420-ace3-4627-a2e0-62a701d025c9","eed1af19-e075-4e6f-9394-d258143e15a4","ef1c6830-758e-4242-85f7-3f20b872272c","ef37dd1c-27f6-409d-932e-56520a65791a","efe75b38-c145-420e-9446-f2ac443ab3a5","f090db87-b7a9-4c88-a211-495b27ae37c9","f0b68c00-59ed-410f-87fe-b411f07662e3","f0d7bd96-db52-4f61-925b-0db725b5d35b","f0f9fda9-50b0-4ce4-b351-cd2b5e6409c8","f2bb7059-588b-4ba6-9ad0-78169e4e4483","f2da8374-7e37-49cd-affa-14cfafd12822","f37db921-ab2a-46db-82c1-1f1abf7a3cf7","f3ccf9db-6f4f-403a-8b0c-9e0b115eb741","f5719c9d-0b6e-427d-ac46-15aa4a6496fd","f59dcb79-1ab1-4204-b50b-14bc3f709c46","f5a19fcc-f465-43ac-8d08-ba0d2345b66d","f5bccd95-0703-4755-8f31-bd8ab615bd04","f724ae86-b968-4f49-8267-c2c34c22f1b6","f75d3f2a-5120-4056-a816-4f38c1f18459","f768de9b-3d31-468d-876d-2cb7c5c601a3","f82548c7-24ed-4529-8b57-7407dc0b8c8b","f8b86eac-3cd5-48ef-9fda-b4beff540c94","f8dca86c-4dd3-4016-bab1-dd259b68b66c","f944d762-b01c-4e7c-a539-434cbf99c504","f9706bb7-4fcb-4561-981d-aef34e23756b","fa21cca2-59cb-4223-b67b-1a8fc54aadd8","fa3db823-69a3-4a82-80a5-e12e4b40a01f","fb0f2cf5-801d-49b2-b365-3129f53948dc","fb4f4abf-841b-4fae-9a53-505a2f8dc1ff","fc776814-bc15-421e-990f-6de7b5f6873f","fcab7eaa-5e16-40b5-992b-9cc51a95376b","fceab58a-304a-40e4-8830-837a7b51d31b","fceb6a79-6d36-4780-b9c0-557fc3676c19","fd7babbe-f8c1-4e7c-8de2-2224dd357de4","fe60da77-084c-49e8-9948-9ac4b6a6382f","feb949a6-9261-4175-bcf1-5519d82f9dc3","febd8326-9ba6-43de-bb29-910cb459498e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CMR","CST","DDC","DDE","DDF","DDG","DDH","DDI","DDK","DDL","DDN","DDO","DDP","DDQ","DFT","DMR","DMU","DOM","DSK","DTK","DVD","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GS1","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","MD1","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PDGM","PELP","PF19","PF20","PGPX","PGRU","PIP","PL26","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","PZ2","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TLE","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC00","WC02","WC03","WC04","WC97","WC98","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"planeswalker's fury":{"name":"Planeswalker's Fury","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{3}{R}: Target opponent reveals a card at random from their hand. This enchantment deals damage equal to that card's mana value to that player. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"card_filter":{"type":"None"},"count":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{R}: Target opponent reveals a card at random from their hand. ~ deals damage equal to that card's mana value to that player. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2e482522-2eef-4f6c-887a-fcc51be61dc2","metadata":{"source_printing_ids":["6fa09e3a-bc7e-4292-aa5d-ce97c1b1f79f","a5125eb2-10bc-4571-8730-f03df36136a6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS","PLST"],"rulings":[{"date":"2004-10-04","text":"If the opponent has no cards in hand, then no damage is dealt."}],"rarities":["rare"]},"planeswalker's mirth":{"name":"Planeswalker's Mirth","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{3}{W}: Target opponent reveals a card at random from their hand. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealHand","target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"card_filter":{"type":"None"},"count":null},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{W}: Target opponent reveals a card at random from their hand. You gain life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"cebc1e6d-ab14-4e54-9906-e8a7cf4c2043","metadata":{"source_printing_ids":["0205d094-c846-4aa0-ade8-2a52c57b11da"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS"],"rulings":[{"date":"2004-10-04","text":"If the opponent has no cards in hand, then no life is gained."}],"rarities":["rare"]},"polar kraken":{"name":"Polar Kraken","mana_cost":{"type":"Cost","shards":["Blue","Blue","Blue"],"generic":8},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Kraken"]},"power":{"type":"Fixed","value":11},"toughness":{"type":"Fixed","value":11},"loyalty":null,"defense":null,"oracle_text":"Trample\nThis creature enters tapped.\nCumulative upkeep—Sacrifice a land. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)","non_ability_text":null,"flavor_name":null,"keywords":["Trample",{"CumulativeUpkeep":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":1}}],"abilities":[],"triggers":[{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":1}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"d0ff30c8-ddb7-439d-b14d-c83fe3c8da87","metadata":{"source_printing_ids":["aee01e9c-0445-4228-a73a-3e5744844ed3","c4643512-6071-45c4-bffc-8feec5bb094f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ICE","ME1"],"rulings":[{"date":"2008-10-01","text":"Paying cumulative upkeep is always optional. If it's not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can't be made. For example, if a permanent with \"cumulative upkeep {1}\" has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either pay {4} or sacrifice the permanent."}],"rarities":["rare"]},"polukranos, world eater":{"name":"Polukranos, World Eater","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Hydra"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"{X}{X}{G}: Monstrosity X. (If this creature isn't monstrous, put X +1/+1 counters on it and it becomes monstrous.)\nWhen Polukranos becomes monstrous, it deals X damage divided as you choose among any number of target creatures your opponents control. Each of those creatures deals damage equal to its power to Polukranos.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Monstrosity","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["X","X","Green"],"generic":0}},"sub_ability":null,"duration":null,"description":"{X}{X}{G}: Monstrosity X.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"BecomeMonstrous","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"distribute":{"type":"Damage"},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes monstrous, it deals X damage divided as you choose among any number of target creatures your opponents control. Each of those creatures deals damage equal to its power to ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ecbf5560-853a-43a9-bf70-ac8d403b0ce8","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3501b97d-76c3-4ff9-b6e9-b882f33c03d0","4979cc1b-9c1a-47e4-ae37-7c41798eb89a","8b5a1182-c707-4024-9000-de57793fba0d","ed6daf80-cbbd-4789-aa15-649574aaf189"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DDL","PIO","PLST","THS"],"rulings":[{"date":"2013-09-15","text":"An ability that triggers when a creature becomes monstrous won't trigger if that creature isn't on the battlefield when its monstrosity ability resolves."},{"date":"2013-09-15","text":"As Polukranos's triggered ability resolves, Polukranos deals damage first, then the target creatures do. Although no creature will die until after the ability finishes resolving, the order could matter if Polukranos has wither or infect."},{"date":"2013-09-15","text":"If some, but not all, of the ability's targets become illegal, you can't change the division of damage. Damage that would've been dealt to illegal targets simply isn't dealt."},{"date":"2013-09-15","text":"Monstrous isn't an ability that a creature has. It's just something true about that creature. If the creature stops being a creature or loses its abilities, it will continue to be monstrous."},{"date":"2013-09-15","text":"Once a creature becomes monstrous, it can't become monstrous again. If the creature is already monstrous when the monstrosity ability resolves, nothing happens."},{"date":"2013-09-15","text":"The value of X in Polukranos's last ability is equal to the value chosen for X when its activated ability was activated."},{"date":"2013-09-15","text":"You choose the division of damage as you put the ability on the stack, not as it resolves. Each target must be assigned at least 1 damage. In multiplayer games, you may choose creatures controlled by different opponents."}],"rarities":["rare","mythic"]},"ponder":{"name":"Ponder","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top three cards of your library, then put them back in any order. You may shuffle.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":3},"destination":"Library","keep_count":null,"up_to":false,"filter":{"type":"Any"},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top three cards of your library, then put them back in any order. You may shuffle.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"02090581-61aa-4348-ad57-451be8ee91c2","metadata":{"source_printing_ids":["20edb8fa-6e26-46f7-a5a8-b4c4c3e75dfa","262285ab-3a6f-4932-b53b-8ab20bcad955","308d4ee7-d188-47e0-b1be-8add6e229356","3c02b8ee-84cb-44cb-ba14-9e725a9d03ee","44dcfc0c-b23d-48be-bf3a-a6fc6806c5e1","5af43ceb-56d2-47d4-ab43-853338ab293c","636c17b3-53f6-4f2e-a6a2-36e851f6d001","7b0d4d01-9044-4b68-8b55-1b27ff0ffa75","81c908ee-e70a-4406-a32d-ab5ab17e67b1","8404f081-2d5f-4433-84cc-77918532eedf","84d02bf4-eefd-4916-ab5a-cc16b3e6a186","8a676db5-9911-4dc6-bcf2-6c5588027b14","8cbab1d1-25cb-456f-8d1c-3d64eb7265ea","91382955-bcfc-4fb6-8cce-dc107e5b4c32","9cee2eb1-f60e-4626-ba4a-b543142ca950","af450adb-23be-4332-a54c-d647a1fd0248","ba6b6fc5-5077-4812-b8e9-906783dbaf67","dc69f960-68ba-4315-8146-6a7a82047503","fb1724cc-8432-4ff8-ac51-b8c4f4914494"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"banned","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["C18","C21","DSC","J21","LRW","M10","M12","MAR","MB2","NCC","OMB","OTC","P08","PEWK","PF25","PLST","PRM","SLC","SLD","SLP","TDC","TSR","WHO"],"rulings":[{"date":"2021-03-19","text":"If you choose to shuffle your library, that includes the three cards you just looked at and put back on top of it."}],"rarities":["common","rare","special"]},"power fist":{"name":"Power Fist","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":["Equipment"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Equipped creature has trample and \"Whenever this creature deals combat damage to a player, put that many +1/+1 counters on it.\"\nEquip {2}","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"sub_ability":null,"duration":null,"description":"Equip {2}","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EquippedBy"}]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, put that many +1/+1 counters on it.","constraint":null,"condition":null,"batched":false}},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Equipped creature has trample and \"Whenever ~ deals combat damage to a player, put that many +1/+1 counters on it.\""}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"bdfcf7df-8c06-4abe-af41-eccabb9fc2c8","metadata":{"source_printing_ids":["6171b2a6-0052-4329-9c9f-5c4d7f2c2eba","7ee6b263-c15a-47a3-9546-fc36dbda74b6","9e8f7fbc-bf2a-43c1-a88d-807c1e7dab69","e05c5af9-67ad-4c20-9d5f-91bda19d5809"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP"],"rarities":["rare"]},"predatory urge":{"name":"Predatory Urge","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature has \"{T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.\"","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature has \"{T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.\""}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f6175cca-0e19-4db8-a175-3369fb650f24","metadata":{"source_printing_ids":["18e3e459-992c-4990-8305-fa479c7870ac","d7f8adaa-2852-4e9c-b91d-ce80a21859c9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PC2","PCA","ZEN"],"rulings":[{"date":"2009-10-01","text":"If the enchanted creature’s ability is activated, that creature is the one that will deal and be dealt damage when the ability resolves. It doesn’t matter if Predatory Urge leaves the battlefield or somehow becomes attached to another creature by that time."},{"date":"2009-10-01","text":"If the targeted creature leaves the battlefield (or otherwise becomes an illegal target) before the ability resolves, the ability doesn’t resolve. The enchanted creature isn’t dealt damage."},{"date":"2009-10-01","text":"On the other hand, if the enchanted creature leaves the battlefield before the ability resolves, the ability continues to resolve. The enchanted creature deals damage to the targeted creature equal to the power the enchanted creature had as it last existed on the battlefield."},{"date":"2009-10-01","text":"The controller of the enchanted creature may activate the ability, not the controller of Predatory Urge."},{"date":"2009-10-01","text":"You may have the enchanted creature target itself with its own ability. If you do, it will deal damage to itself equal to its power, then immediately do it again."}],"rarities":["rare"]},"prime speaker zegana":{"name":"Prime Speaker Zegana","mana_cost":{"type":"Cost","shards":["Green","Green","Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Merfolk","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Prime Speaker Zegana enters with X +1/+1 counters on it, where X is the greatest power among other creatures you control.\nWhen Prime Speaker Zegana enters, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Aggregate","function":"Max","property":"Power","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with X +1/+1 counters on it, where X is the greatest power among other creatures you control.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"311e9368-696a-47e7-aa2f-3ef1b1a92e2b","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["44974a77-5d36-49a8-b298-69d3721cfff9","4f0a166b-eb00-489d-b4eb-44ec2f0bad32","51d29fb4-72e3-4400-a57b-7e18acfb2909","7b844055-7581-4fbf-a0c9-6c4e9328a83e","d2f007b0-b578-44f8-be65-cd9e2ac56e09","e11f5f45-0f33-416b-a8bd-1e839efa02a9","f30dfb8e-f540-45ab-a4e8-63425099646a","f5cf50cb-0937-403b-a4b6-b6da0732bdcc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["C15","FDN","GTC","LCC","RVR"],"rulings":[{"date":"2024-11-08","text":"If Prime Speaker Zegana enters at the same time as another creature you control, you won't consider that creature when determining the greatest power among creatures you control."},{"date":"2024-11-08","text":"If Prime Speaker Zegana is no longer on the battlefield when its last ability resolves, use its power as it last existed on the battlefield to determine how many cards to draw."},{"date":"2024-11-08","text":"The value of X is calculated only once, as Prime Speaker Zegana's first ability resolves. If you control no other creatures at that time, X is 0."}],"rarities":["rare","mythic"]},"primo, the unbounded":{"name":"Primo, the Unbounded","mana_cost":{"type":"Cost","shards":["X","Green","Green","Blue"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Fractal","Wolf"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Trample\nPrimo enters with twice X +1/+1 counters on it.\nWhenever one or more creatures you control with base power 0 deal combat damage to a player, create a 0/0 green and blue Fractal creature token. Put a number of +1/+1 counters on it equal to the damage dealt.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Token","name":"Fractal","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Creature","Fractal"],"colors":["Green","Blue"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Ref","qty":{"type":"EventContextAmount"}}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Base","comparator":"EQ","value":{"type":"Fixed","value":0}}]},"description":"Whenever one or more creatures you control with base power 0 deal combat damage to a player, create a 0/0 green and blue Fractal creature token. Put a number of +1/+1 counters on it equal to the damage dealt.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":2,"inner":{"type":"Ref","qty":{"type":"CostXPaid"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with twice X +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"65fb0e20-61f8-4c61-bc08-7f6f718ee9ee","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["ad44b516-28bf-5949-b591-ea9cd4767bcd"],"source_printing_ids":["a2d14b99-15e2-4e96-89a2-7e0ee5dc059f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If a creature has a characteristic-defining ability that sets its power and toughness, indicated with a */* or similar in the power and toughness box, that ability is taken into account when determining its base power and toughness."},{"date":"2026-03-20","text":"Normally, a creature's base power and toughness are the power and toughness printed on the card or, for a token, the power and toughness set by the effect that created it. If another effect sets a creature's power and toughness to specific numbers or values, those become its base power and toughness. If an effect modifies a creature's power and/or toughness without setting them, that is not included when determining its base power and toughness."},{"date":"2026-03-20","text":"Some creatures have base power and toughness 0/0 and an ability that gives them a bonus based on some criteria. Those are not characteristic-defining abilities, and that ability doesn't change its base power and toughness."}],"rarities":["mythic"]},"profit":{"name":"Profit","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures you control get +1/+1 until end of turn.\nFuse (You may cast one or both halves of this card from your hand.)","non_ability_text":null,"flavor_name":null,"keywords":["Fuse"],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Creatures you control get +1/+1 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"c41e8a99-e4a8-4323-a59d-265266e29fa9","metadata":{"source_printing_ids":["0eb3ce46-ddd2-43b3-9e45-019ae91df686","320e1e05-12b8-4301-8cd7-3ead8046d94a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"split","printings":["DGM","PIO"],"rulings":[{"date":"2013-04-15","text":"If a player names a card, the player may name either half of a split card, but not both. A split card has the chosen name if one of its two names matches the chosen name."},{"date":"2013-04-15","text":"If you cast a split card with fuse from your hand without paying its mana cost, you can choose to use its fuse ability and cast both halves without paying their mana costs."},{"date":"2013-04-15","text":"If you're casting a split card with fuse from any zone other than your hand, you can't cast both halves. You'll only be able to cast one half or the other."},{"date":"2013-04-15","text":"On the stack, a split spell that hasn't been fused has only that half's characteristics and mana value. The other half is treated as though it didn't exist."},{"date":"2013-04-15","text":"Some split cards with fuse have two halves that are both multicolored. That card is multicolored no matter which half is cast, or if both halves are cast. It's also multicolored while not on the stack."},{"date":"2013-04-15","text":"Some split cards with fuse have two monocolor halves of different colors. If such a card is cast as a fused split spell, the resulting spell is multicolored. If only one half is cast, the spell is the color of that half. While not on the stack, such a card is multicolored."},{"date":"2013-04-15","text":"To cast a fused split spell, pay both of its mana costs. While the spell is on the stack, its mana value is the total amount of mana in both costs."},{"date":"2013-04-15","text":"When a fused split spell resolves, follow the instructions of the left half first, then the instructions on the right half."},{"date":"2013-04-15","text":"When resolving a fused split spell with multiple targets, treat it as you would any spell with multiple targets. If all targets are illegal when the spell tries to resolve, the spell doesn't resolve and none of its effects happen. If at least one target is still legal at that time, the spell resolves, but an illegal target can't perform any actions or have any actions performed on it."},{"date":"2013-04-15","text":"You can choose the same object as the target of each half of a fused split spell, if appropriate."}],"rarities":["uncommon"]},"propaganda":{"name":"Propaganda","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"CantAttack","affected":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"modifications":[],"condition":{"type":"UnlessPay","cost":{"type":"Cost","shards":[],"generic":2},"scaling":{"type":"PerAffectedCreature"},"defended":"Player"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures can't attack you unless their controller pays {2} for each creature they control that's attacking you."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ea9709b6-4c37-4d5a-b04d-cd4c42e4f9dd","metadata":{"source_printing_ids":["01115986-1963-45c6-b706-2faee6c71e8f","0806d4a1-4d2f-454b-b830-5ab58e13a452","16023fe1-f5e7-4ec0-aef2-c34c131b8ff3","1b8aa419-dc96-4cd7-9e6a-c2d071df98d1","3e3f0bcd-0796-494d-bf51-94b33c1671e9","4c7c9072-d14c-442c-a386-bfdc0cbe110d","8fdbe10e-4a5c-43ee-abb5-20a8d5be9727","923c8a2b-dbba-423d-8f86-7c5ec184bfcf","bc0331b2-7a5b-46f5-9698-f185431ca711","c180f9bd-7dd7-4318-8625-2fa674cbc528","e040aaf3-1331-4960-8220-22bb2c2591da","e175bba4-c131-48f4-8e31-16ec07a12e59","e3308ce8-df83-4f8e-b493-39f95b2d0237","e5f293d7-9c2b-41cb-8e3c-dfc1daa6635f","f67dde4d-3df1-480d-a8b8-ab22c768bb12","f74d378d-6a21-474b-a71c-652a1c92b898"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ACR","AFC","C13","C16","C20","CLB","CMD","FIC","M3C","OTC","PLST","PZ1","SLD","TMP","WHO"],"rulings":[{"date":"2004-10-04","text":"If there are multiple attacks in a turn, then you have to pay for each attack."},{"date":"2004-10-04","text":"If there is more than one Propaganda on the battlefield, the cost is cumulative."},{"date":"2004-10-04","text":"Paying this cost is not an instant or any other kind of ability, it is an additional cost on the declaration of the attacker."},{"date":"2004-10-04","text":"The payment is made during the declare attackers step at the same time you are declaring the attacker."}],"rarities":["uncommon","rare"]},"proper burial":{"name":"Proper Burial","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control dies, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e5bf77c2-a9b2-4366-8412-e263160403c1","metadata":{"source_printing_ids":["ae8a4756-d82b-4c6d-b652-5c3722d3edec"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DIS"],"rarities":["rare"]},"protection racket":{"name":"Protection Racket","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, repeat the following process for each opponent in turn order. Reveal the top card of your library. That player may pay life equal to that card's mana value. If they do, exile that card. Otherwise, put it into your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Life","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"payer":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, repeat the following process for each opponent in turn order. Reveal the top card of your library. That player may pay life equal to that card's mana value. If they do, exile that card. Otherwise, put it into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"4b51edb1-37cc-4993-a8a5-2eb5f79fa191","metadata":{"source_printing_ids":["046c2801-4e94-4e33-9039-9b7d2f409d19","7723cf0b-de49-44f6-a52e-6e339a080457"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NCC","PNCC"],"rarities":["rare"]},"pyretic rebirth":{"name":"Pyretic Rebirth","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target artifact or creature card from your graveyard to your hand. Pyretic Rebirth deals damage equal to that card's mana value to up to one target creature or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target artifact or creature card from your graveyard to your hand. ~ deals damage equal to that card's mana value to up to one target creature or planeswalker.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a38ace5b-34f5-4105-b6ee-dedb86037729","metadata":{"source_printing_ids":["5968f641-48b5-4b97-8072-ddd8073cd4d7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"If the target card in your graveyard is an illegal target when Pyretic Rebirth tries to resolve, no damage will be dealt."},{"date":"2024-06-07","text":"If the target creature or planeswalker is an illegal target when Pyretic Rebirth tries to resolve, you'll still return the target artifact or creature card from your graveyard to your hand."}],"rarities":["uncommon"]},"pyrotechnic performer":{"name":"Pyrotechnic Performer","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard","Assassin"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Disguise {R} (You may cast this card face down for {3} as a 2/2 creature with ward {2}. Turn it face up any time for its disguise cost.)\nWhenever this creature or another creature you control is turned face up, that creature deals damage equal to its power to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[{"Disguise":{"type":"Cost","shards":["Red"],"generic":0}}],"abilities":[],"triggers":[{"mode":"TurnFaceUp","execute":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control is turned face up, that creature deals damage equal to its power to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"78f9ec0f-6015-4024-aca6-9a14cba373fa","metadata":{"source_printing_ids":["0fa5671b-2651-4944-a50a-c768ec70229e","348027a1-1fb4-4473-b77e-b961e00a22b7"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["MKM","PMKM"],"rulings":[{"date":"2024-02-02","text":"A disguise ability lets you cast a card face down by paying {3} and announcing that you are using a disguise ability. Any time you have priority, you can turn a face-down permanent with disguise face up by paying its disguise cost."},{"date":"2024-02-02","text":"A permanent that turns face up or face down changes characteristics but is otherwise the same permanent. Spells and abilities that were targeting that permanent and Auras and Equipment that were attached to that permanent aren't affected unless the new characteristics of the object change the legality of those targets or attachments."},{"date":"2024-02-02","text":"Any time you have priority, you may turn the face-down creature face up by revealing what its disguise cost is and paying that cost. This is a special action. It doesn't use the stack and can't be responded to. Only a face-down permanent can be turned face up this way; a face-down spell cannot."},{"date":"2024-02-02","text":"At any time, you can look at a face-down spell or permanent you control. You can't look at face-down permanents or spells you don't control unless an effect instructs or allows you to do so."},{"date":"2024-02-02","text":"Because face-down creatures don't have a name, they can't have the same name as any other creature, even another face-down creature."},{"date":"2024-02-02","text":"Because the permanent is on the battlefield both before and after it's turned face up, turning a permanent face up doesn't cause any enters-the-battlefield abilities to trigger."},{"date":"2024-02-02","text":"If a creature that is turned face up leaves the battlefield before Pyrotechnic Performer's triggered ability resolves, use that creature's power as it last existed on the battlefield to determine how much damage it deals."},{"date":"2024-02-02","text":"If a face-down creature loses its abilities, it can't be turned face up with a disguise ability because it will no longer have a disguise ability (or a disguise cost) once face up."},{"date":"2024-02-02","text":"If a face-down spell leaves the stack and goes to any zone other than the battlefield (if it was countered, for example), you must reveal it. Similarly, if a face-down permanent leaves the battlefield, you must reveal it. You must also reveal all face-down spells and permanents you control if you leave the game or the game ends."},{"date":"2024-02-02","text":"The creature spell is a 2/2 creature spell with ward {2} that has no name, mana cost, or creature types. The resulting creature is a 2/2 creature with ward {2} that has no name, mana cost, or creature types. Both the spell and the resulting creature are colorless and have a mana value of 0. Other effects that apply to the spell or creature can still grant it any characteristics it doesn't have or change the characteristics it does have."},{"date":"2024-02-02","text":"The face-down spell has no mana cost and a mana value of 0. When you cast a face-down spell, put it on the stack face down so no other player knows what it is, and pay {3} to cast it. This is an alternative cost."},{"date":"2024-02-02","text":"Turning a permanent face up or face down doesn't change whether that permanent is tapped or untapped."},{"date":"2024-02-02","text":"You must ensure that your face-down spells and permanents can be easily differentiated from each other. You're not allowed to mix up the cards that represent them on the battlefield to confuse other players. The order in which they entered the battlefield should remain clear, as well as what ability caused them to be face down. (This includes disguise, cloak, and in games involving older cards, morph and manifest, as well as a few other effects that turn cards face down.) Common methods for doing this include using markers or dice, or simply placing them in order on the battlefield."}],"rarities":["rare"]},"queen's bay paladin":{"name":"Queen's Bay Paladin","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire","Knight"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature enters or attacks, return up to one target Vampire card from your graveyard to the battlefield with a finality counter on it. You lose life equal to its mana value. (If a creature with a finality counter on it would die, exile it instead.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["finality",{"type":"Fixed","value":1}]]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, return up to one target Vampire card from your graveyard to the battlefield with a finality counter on it. You lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"60b18d94-8ae5-4508-b4db-18f92c2d39fd","metadata":{"source_printing_ids":["a40cdb01-d303-438c-9c87-ca334ac68582","d0a3339d-6067-4af5-9536-7e2d5ddd8918"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rulings":[{"date":"2023-11-10","text":"Finality counters aren't keyword counters, and a finality counter doesn't give any abilities to the permanent it's on. If that permanent loses its abilities and then would go to a graveyard, it will still be exiled instead."},{"date":"2023-11-10","text":"Finality counters don't stop permanents from going to zones other than the graveyard from the battlefield. For example, if a permanent with a finality counter on it would be put into its owner's hand from the battlefield, it does so normally."},{"date":"2023-11-10","text":"Finality counters work on any permanent, not only creatures. If a permanent with a finality counter on it would be put into a graveyard from the battlefield, exile it instead."},{"date":"2023-11-10","text":"Multiple finality counters on a single permanent are redundant."}],"rarities":["rare"]},"questing beast":{"name":"Questing Beast","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance, deathtouch, haste\nQuesting Beast can't be blocked by creatures with power 2 or less.\nCombat damage that would be dealt by creatures you control can't be prevented.\nWhenever Questing Beast deals combat damage to an opponent, it deals that much damage to target planeswalker that player controls.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch","Haste","Vigilance"],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"DamagePreventionDisabled","source":0,"expiry":{"type":"EndOfTurn"},"scope":{"type":"SourcesControlledBy","data":0}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Planeswalker"],"controller":"TargetPlayer","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to an opponent, it deals that much damage to target planeswalker that player controls.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CantBeBlockedBy":{"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":2}}]}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't be blocked by creatures with power 2 or less."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"b685757b-521e-4353-a233-97052359723d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["5357e802-2d25-48d3-a188-101c142787b7","de1c717a-ede7-4f6d-b9a9-da6cf0fd3d5d","e41cf82d-3213-47ce-a015-6e51a8b07e4f","f22676dc-9c00-4fe6-aa39-1fd801ad7102"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ELD","PELD","PLST","SLC","SLD"],"rulings":[{"date":"2019-10-04","text":"If the opponent dealt damage controls no planeswalkers, Questing Beast's last ability simply does nothing."},{"date":"2019-10-04","text":"Once a creature with power 3 or greater has blocked this creature, changing the power of the blocking creature won't cause this creature to become unblocked."},{"date":"2019-10-04","text":"Questing Beast only stops combat damage from being prevented by effects that specifically use the word “prevent.”"},{"date":"2019-10-04","text":"The damage Questing Beast deals to the target planeswalker as its last ability resolves isn't combat damage."}],"rarities":["mythic"]},"quirion ranger":{"name":"Quirion Ranger","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Ranger"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Return a Forest you control to its owner's hand: Untap target creature. Activate only once each turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Untap"}},"cost":{"type":"ReturnToHand","count":1,"filter":{"type":"Typed","type_filters":[{"Subtype":"Forest"}],"controller":"You","properties":[]}},"sub_ability":null,"duration":null,"description":"Return a Forest you control to its owner's hand: Untap target creature. Activate only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3ecaefc8-ead2-47a3-a7ea-b030faab65a7","metadata":{"source_printing_ids":["11da032d-1cd5-48ed-ace7-fc042c4859e8","2a68656e-799d-414b-be27-4b25bd2bd468","320fdf89-e158-41c5-b0bf-fee9dec36a75","56efe72c-6d7f-44f6-ac74-01af9305c4b6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["F01","MH2","PLST","PRM","VIS","WC97"],"rulings":[{"date":"2021-06-18","text":"Returning the Forest you control to its owner's hand is the cost to activate the ability. Once you activate the ability, no one can try to do anything to the Forest to stop you from activating the ability."},{"date":"2021-06-18","text":"You can target any creature with Quirion Ranger's ability, not just a tapped creature."},{"date":"2021-06-18","text":"You may return any land you control with the subtype Forest. It doesn't have to be one named Forest."}],"rarities":["common","uncommon"]},"rabid gnaw":{"name":"Rabid Gnaw","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn. Then it deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn. Then it deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"077ae62d-ed94-4365-a8b7-97fd99cff028","metadata":{"source_printing_ids":["2f815bae-820a-49f6-8eed-46f658e7b6ff"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB"],"rulings":[{"date":"2024-07-26","text":"If the creature you control is a legal target but the creature you don’t control isn’t as Rabid Gnaw resolves, the creature you control will get +1/+0 until end of turn, but no damage will be dealt. If instead the creature you control is an illegal target but the creature you don’t control is still a legal target, nothing will happen when Rabid Gnaw resolves."}],"rarities":["uncommon"]},"ragavan, nimble pilferer":{"name":"Ragavan, Nimble Pilferer","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Monkey","Pirate"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever Ragavan deals combat damage to a player, create a Treasure token and exile the top card of that player's library. Until end of turn, you may cast that card.\nDash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Dash":{"type":"Cost","shards":["Red"],"generic":1}}],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"TriggeringPlayer"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, create a Treasure token and exile the top card of that player's library. Until end of turn, you may cast that card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"37108cd4-bbab-4ce3-9ed6-f60e8422e703","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["4873fe20-675e-5db5-b9ba-8d996c2806ba","74d281e4-6c2a-53c2-b0ea-253ef143d22c","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85"],"source_printing_ids":["3a29b9b5-8c15-4058-a7d2-db7297635364","8d27e717-8bda-44dc-90b9-a6f7029c7b93","a9738cda-adb1-47fb-9f4c-ecd930228c4d","b3e685f9-cc0f-4dc6-98dc-4727944de445","e90f19e0-2461-4233-80ef-dd9c582726a2","fae3bf4a-a732-48aa-a1a4-7e5fd007774c","fc898fec-4cc6-4587-b556-c5a8d38ccbd0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"banned","legacy":"banned","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FCA","H2R","MH2","MUL","PMH2","PRM","SLP"],"rulings":[{"date":"2021-06-18","text":"If a creature enters the battlefield as a copy of or becomes a copy of a creature whose dash cost was paid, the copy won't have haste and won't be returned to its owner's hand."},{"date":"2021-06-18","text":"If you choose to pay the dash cost rather than the mana cost, you're still casting the spell. It goes on the stack and can be responded to and countered. You can cast a creature spell for its dash cost only when you otherwise could cast that creature spell. Most of the time, this means during your main phase when the stack is empty."},{"date":"2021-06-18","text":"If you pay the dash cost to cast a creature spell, that card will be returned to its owner's hand only if it's still on the battlefield when its triggered ability resolves. If it dies or goes to another zone before then, it will stay where it is."},{"date":"2021-06-18","text":"You don't have to attack with the creature with dash unless another ability says you do."},{"date":"2021-06-18","text":"You must still follow all timing restrictions and pay all costs when casting the exiled card. If you exile a land card, you can't play that card."},{"date":"2021-06-18","text":"You'll create a Treasure token even if that player has no cards left in their library to exile."}],"rarities":["mythic"]},"rage extractor":{"name":"Rage Extractor","mana_cost":{"type":"Cost","shards":["PhyrexianRed"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({R/P} can be paid with either {R} or 2 life.)\nWhenever you cast a spell with {H} in its mana cost, this artifact deals damage equal to that spell's mana value to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell with {H} in its mana cost, ~ deals damage equal to that spell's mana value to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e45f0a12-e1ca-432f-a208-9359dd18513d","metadata":{"source_printing_ids":["d8cebc2c-a46b-4459-b62b-7fce1a744b11"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"A card with Phyrexian mana symbols in its mana cost is each color that appears in that mana cost, regardless of how that cost may have been paid."},{"date":"2011-06-01","text":"As you cast a spell or activate an activated ability with one or more Phyrexian mana symbols in its cost, you choose how to pay for each Phyrexian mana symbol at the same time you would choose modes or choose a value for X."},{"date":"2011-06-01","text":"If you're at 1 life or less, you can't pay 2 life."},{"date":"2011-06-01","text":"Phyrexian mana is not a new color. Players can't produce Phyrexian mana."},{"date":"2011-06-01","text":"Rage Extractor's ability checks for any spell you cast with any Phyrexian mana symbol in its mana cost, regardless of that symbol's color or how the cost was paid."},{"date":"2011-06-01","text":"To calculate the mana value of a card with Phyrexian mana symbols in its cost, count each Phyrexian mana symbol as 1."}],"rarities":["uncommon"]},"rakdos joins up":{"name":"Rakdos Joins Up","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When Rakdos Joins Up enters, return target creature card from your graveyard to the battlefield with two additional +1/+1 counters on it.\nWhenever a legendary creature you control dies, Rakdos Joins Up deals damage equal to that creature's power to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"enter_with_counters":[["P1P1",{"type":"Fixed","value":2}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield with two additional +1/+1 counters on it.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a legendary creature you control dies, ~ deals damage equal to that creature's power to target opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"6a47865c-8fa2-4cb2-aebf-8009c065395f","metadata":{"source_printing_ids":["761a743a-6358-4e08-a6b7-6eaaf7ab9ddc","c7154dca-7e10-4c34-aa56-9f200c6277d1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"Use the power of the legendary creature as it last existed on the battlefield to determine how much damage is dealt."}],"rarities":["rare"]},"rancor":{"name":"Rancor","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nEnchanted creature gets +2/+0 and has trample.\nWhen this Aura is put into a graveyard from the battlefield, return it to its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"ParentTarget"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from the battlefield, return it to its owner's hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":0},{"type":"AddKeyword","keyword":"Trample"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +2/+0 and has trample."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"9d2d6479-531c-4ce1-b52b-00e36fa63b64","metadata":{"source_printing_ids":["1d86ea97-0d7a-42ee-9d46-1c0dd10474c7","26ddcdcc-28eb-43ce-b912-499c735491b8","38e281ab-3437-4a2c-a668-9a148bc3eaf7","4073ecc9-5d3a-452f-b708-0572fa27a6f0","59e256c2-38df-4012-9308-ce17dd889e5f","62d0d6a4-783f-4ec3-99c5-6c21aefdb997","6e3e20db-94d2-47eb-ab21-c8159e42f677","86118251-416c-4fe8-a0bd-d3e61079655b","86d6b411-4a31-4bfc-8dd6-e19f553bb29b","8a4d8527-af29-408d-a3a3-6781db0cf439","a13768a2-caa3-4489-b1e2-ba5f0e104931","abd96a99-c3a0-4923-80a1-51d26fc8bb91","b982558f-5b82-4918-9b54-c7ac1e6f8da5","c45de3ce-c2d5-47ac-8e9e-c6b24dd6047c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2X2","A25","AFC","ARC","DDD","E02","EMA","F05","GVL","M13","PC2","PCA","PIP","PLST","PRM","PZ1","ULG","WC99"],"rulings":[{"date":"2018-03-16","text":"If the creature this Aura would enchant is an illegal target by the time Rancor tries to resolve, the Aura spell doesn't resolve. It won't enter the battlefield, so it won't be put into a graveyard from the battlefield and its ability won't trigger."}],"rarities":["common","uncommon"]},"ranging raptors":{"name":"Ranging Raptors","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Enrage — Whenever this creature is dealt damage, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2a86b70b-34ca-45df-8aa1-c3fb2da72dc3","metadata":{"source_printing_ids":["08df7e63-65d6-4e42-8699-7510453d3100","7d4f04bc-30ee-4948-9905-774f532ac811","9e91efc6-0e6a-4a9e-a486-adf53e53d3f1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GN2","LCC","XLN"],"rulings":[{"date":"2018-01-19","text":"If lethal damage is dealt to a creature with an enrage ability, that ability triggers. The creature with that enrage ability leaves the battlefield before that ability resolves, so it won't be affected by the resolving ability."},{"date":"2018-01-19","text":"If multiple sources deal damage to a creature with an enrage ability at the same time, most likely because multiple creatures blocked that creature, the enrage ability triggers only once."}],"rarities":["uncommon"]},"rapacious guest":{"name":"Rapacious Guest","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Halfling","Citizen"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever one or more creatures you control deal combat damage to a player, create a Food token.\nWhenever you sacrifice a Food, put a +1/+1 counter on this creature.\nWhen this creature leaves the battlefield, target opponent loses life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, create a Food token.","constraint":null,"condition":null,"batched":false},{"mode":"Sacrificed","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Food"}],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you sacrifice a Food, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, target opponent loses life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"54accd4a-b471-4ae5-b3b2-a5cec44023b7","metadata":{"related_token_ids":["f6e24d97-b7f8-5da8-ab97-978ecbecb85e"],"source_printing_ids":["685c72fb-ebb8-4474-bd73-bcbbbc38c496","ea0c8ff8-9d4d-4c17-a5ed-3e1ab9f3d849","ff9dfba4-07d2-4407-a441-88acc7284d43"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"Rapacious Guest's third ability triggers whenever you sacrifice a Food for any reason, not just to activate a Food's activated ability."},{"date":"2023-06-16","text":"To determine the amount of life the target opponent loses from Rapacious Guest's last ability, use Rapacious Guest's power as it last existed on the battlefield, not its power in the graveyard."},{"date":"2024-11-08","text":"Food is an artifact type. Even though it appears on some creatures, it's never a creature type."},{"date":"2024-11-08","text":"If an effect refers to a Food, it means any Food artifact, not just a Food artifact token. For example, you can sacrifice Tough Cookie (an Artifact Creature — Food Golem) to activate Maraleaf Rider's ability (an ability with \"Sacrifice a Food\" in its cost)."},{"date":"2024-11-08","text":"Whatever you do, don't eat the delicious cards."},{"date":"2024-11-08","text":"You can't sacrifice a Food to pay multiple costs. For example, you can't sacrifice a Food token to activate its own ability and also to activate Maraleaf Rider's ability."}],"rarities":["rare"]},"rashida scalebane":{"name":"Rashida Scalebane","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Soldier"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{T}: Destroy target attacking or blocking Dragon. It can't be regenerated. You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Blocking"}]}]},"cant_regenerate":true},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Destroy target attacking or blocking Dragon. It can't be regenerated. You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"4aff0f09-0607-41b7-8f60-4ef35ff6183e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["ebb48053-da60-477a-b1eb-a9ab9ea682af"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["rare"]},"ratcatcher trainee":{"name":"Ratcatcher Trainee","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Peasant"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"During your turn, this creature has first strike.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"FirstStrike"}],"condition":{"type":"DuringYourTurn"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"During your turn, ~ has first strike."}],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ecc91e38-90fa-4d89-b262-d5f36dce5be4","metadata":{"related_token_ids":["2ff9f472-d654-56b6-bba6-cb501a09ad5d"],"source_printing_ids":["7f4c0959-a107-4d61-9e51-256b2955f6ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["WOE"],"rulings":[{"date":"2023-09-01","text":"An adventurer card is a permanent card in every zone except the stack, as well as while on the stack if not cast as an Adventure. Ignore its alternative characteristics in those cases. For example, while it’s in your graveyard, Questing Druid is a green creature card whose mana value is 2. It can’t be the target of Tenacious Tomeseeker’s triggered ability (“return target instant or sorcery card from your graveyard to your hand”)."},{"date":"2023-09-01","text":"An effect may refer to a card, spell, or permanent that “has an Adventure.” This refers to a card, spell, or permanent that has an adventurer card’s set of alternative characteristics, even if they’re not being used and even if that card was never cast as an Adventure."},{"date":"2023-09-01","text":"Casting a card as an Adventure isn’t casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Adventure."},{"date":"2023-09-01","text":"If a spell is cast as an Adventure, its controller exiles it instead of putting it into its owner’s graveyard as it resolves. For as long as it remains exiled, that player may cast it as a permanent spell. If an Adventure spell leaves the stack in any way other than resolving (most likely by being countered or by failing to resolve because its targets have all become illegal), that card won’t be exiled and the spell’s controller won’t be able to cast it as a permanent later."},{"date":"2023-09-01","text":"If an adventurer card ends up in exile for any other reason than by exiling itself while resolving, it won’t give you permission to cast it as a permanent spell."},{"date":"2023-09-01","text":"If an effect copies an Adventure spell, that copy is exiled as it resolves. It ceases to exist as a state-based action; it’s not possible to cast the copy as a permanent."},{"date":"2023-09-01","text":"If an effect instructs you to choose a card name, you may choose the alternative Adventure name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2023-09-01","text":"If an effect refers to a card, spell, or permanent that has an Adventure, it won’t find an instant or sorcery spell on the stack that’s been cast as an Adventure."},{"date":"2023-09-01","text":"If an object becomes a copy of an object that has an Adventure, the copy also has an Adventure. If it changes zones, it will either cease to exist (if it’s a token) or cease to be a copy (if it’s a nontoken permanent), and so you won’t be able to cast it as an Adventure."},{"date":"2023-09-01","text":"If you cast an adventurer card as an Adventure, use only its alternative characteristics to determine whether it’s legal to cast that spell. For example, if you control Johann, Apprentice Sorcerer (“Once each turn, you may cast an instant or sorcery spell from the top of your library.”) and Questing Druid is on top of your library, you can cast Seek the Beast, but not Questing Druid."},{"date":"2023-09-01","text":"When casting a spell as an Adventure, use the alternative characteristics and ignore all of the card’s normal characteristics. The spell’s color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."},{"date":"2023-09-01","text":"You must still follow any timing restrictions and permissions for the permanent spell you cast from exile. Normally, you’ll be able to cast it only during your main phase while the stack is empty."}],"rarities":["common"]},"ravenous gigantotherium":{"name":"Ravenous Gigantotherium","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Beast"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Devour 3 (As this creature enters, you may sacrifice any number of creatures. It enters with three times that many +1/+1 counters on it.)\nWhen this creature enters, it deals X damage divided as you choose among up to X target creatures, where X is its power. Each of those creatures deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[{"Devour":3}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}}},"distribute":{"type":"Damage"},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, it deals X damage divided as you choose among up to X target creatures, where X is its power. Each of those creatures deals damage equal to its power to ~.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"UpTo","max":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Multiply","factor":3,"inner":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"CR 702.82a: Devour 3 — sacrifice any number of creatures; this permanent enters with 3 +1/+1 counters per creature sacrificed.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"CR 702.82a + CR 614.1c: Devour 3 — as this creature enters, you may sacrifice any number of creatures; it enters with 3 +1/+1 counters for each creature sacrificed this way.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"022624eb-c9d7-4110-bcc3-465c8d48fcd7","metadata":{"source_printing_ids":["ca260253-40b8-4846-9e41-4e9cfc56d691"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C20"],"rulings":[{"date":"2020-04-17","text":"If some of the targets become illegal for Ravenous Gigantotherium's ability, the original division of damage still applies, but the damage that would have been dealt to illegal targets isn't dealt at all."},{"date":"2020-04-17","text":"Ravenous Gigantotherium can't devour creatures entering the battlefield at the same time as it."},{"date":"2020-04-17","text":"Static abilities, such as that of Glorious Anthem, modify Ravenous Gigantotherium's power before its triggered ability is put onto the stack. Spells, activated abilities, and triggered abilities can't raise its power in time to change the value of X."},{"date":"2020-04-17","text":"The creatures targeted by Ravenous Gigantotherium's ability deal damage back to Ravenous Gigantotherium before dying if they're dealt lethal damage."},{"date":"2020-04-17","text":"The value of X is locked in as you divide the damage while putting Ravenous Gigantotherium's ability onto the stack. Changing Ravenous Gigantotherium's power after that time won't change how much damage is dealt."},{"date":"2020-04-17","text":"You divide the damage as Ravenous Gigantotherium's triggered ability is put onto the stack, not as it resolves. Each target must be assigned at least 1 damage. You can't choose more than X targets and assign 0 damage to a target."},{"date":"2020-04-17","text":"You may choose zero targets. If you do, Ravenous Gigantotherium deals no damage and is dealt no damage."}],"rarities":["rare"]},"razor hippogriff":{"name":"Razor Hippogriff","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Hippogriff"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, return target artifact card from your graveyard to your hand. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target artifact card from your graveyard to your hand. You gain life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d121108e-f0bc-469b-bf94-e5e5308014a2","metadata":{"source_printing_ids":["fc7ac3bf-eed2-417d-8b60-e8c84bfb98ab"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C13","SOM"],"rulings":[{"date":"2011-01-01","text":"If the artifact card in your graveyard is an illegal target by the time the ability resolves, the ability won’t resolve. You won’t gain any life."},{"date":"2011-01-01","text":"If the mana cost of the targeted card includes {X}, X is considered to be 0."}],"rarities":["uncommon"]},"reanimate":{"name":"Reanimate","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a044474a-cd72-4e9d-bd8d-a08f2de9cdc0","metadata":{"source_printing_ids":["04fc99dc-bfbe-4567-b791-6b1db96471ec","1d12804c-dda0-4dae-9eb8-f670e72c17e7","33961d8a-e2a3-4eee-9ff4-11455f262c66","368b6903-5fc4-43e7-bd44-46b8107c8bb4","487b76e9-999b-432d-9e7a-bf64e68d98b5","58838b71-404f-41ad-9a9b-2c7f875bab06","609c34f9-9f53-4773-a02b-517209024fc2","652271a0-80e8-4b9b-8823-26c1528378fc","7d0fe02b-f45a-45c6-ab7c-270594a29da7","8b1e10e8-ea14-4761-910b-4072e2a18456","ae1ef31c-8ca5-444c-8f39-e1d1827318f5","d27c6aaa-289e-451e-8fde-97a044c53fc4","e2f1fea1-f008-4bf9-93ae-869ac60aa55c","eee48ed0-3965-4bcc-8eee-bcd8f1607808"]},"legalities":{"brawl":"legal","commander":"legal","duel":"banned","historic":"banned","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["ARC","BRB","CC2","DSC","F04","FIC","JMP","LTC","MAR","MKC","OMB","OTP","PD3","PLST","PRM","PUMA","TMP","TPR","UMA","VMA"],"rulings":[{"date":"2025-09-19","text":"If a card in a graveyard has {X} in its mana cost, X is 0."},{"date":"2025-09-19","text":"If any abilities trigger on the creature entering the battlefield, those abilities resolve after you lose life. If losing life results in you losing the game, those abilities won't resolve."},{"date":"2025-09-19","text":"In a multiplayer game, if a player leaves the game, all cards that player owns leave as well. If you leave the game, the creature you control from Reanimate is exiled."},{"date":"2025-09-19","text":"The amount of life you lose is determined by the mana value of the card in your graveyard, not the creature once it's on the battlefield."},{"date":"2025-09-19","text":"You lose life after the creature is already on the battlefield. Any abilities it has that interact with loss of life, such as that of Platinum Emperion, apply to that loss of life."}],"rarities":["uncommon","rare"]},"reanimate [6cb8b8c4-0674-4f14-9d89-010969fbb80e]":{"name":"Reanimate","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6cb8b8c4-0674-4f14-9d89-010969fbb80e","metadata":{"source_printing_ids":["04fc99dc-bfbe-4567-b791-6b1db96471ec","1d12804c-dda0-4dae-9eb8-f670e72c17e7","33961d8a-e2a3-4eee-9ff4-11455f262c66","368b6903-5fc4-43e7-bd44-46b8107c8bb4","487b76e9-999b-432d-9e7a-bf64e68d98b5","58838b71-404f-41ad-9a9b-2c7f875bab06","609c34f9-9f53-4773-a02b-517209024fc2","652271a0-80e8-4b9b-8823-26c1528378fc","7d0fe02b-f45a-45c6-ab7c-270594a29da7","8b1e10e8-ea14-4761-910b-4072e2a18456","ae1ef31c-8ca5-444c-8f39-e1d1827318f5","d27c6aaa-289e-451e-8fde-97a044c53fc4","e2f1fea1-f008-4bf9-93ae-869ac60aa55c","eee48ed0-3965-4bcc-8eee-bcd8f1607808"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["uncommon","rare"]},"reflection of kiki-jiki":{"name":"Reflection of Kiki-Jiki","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control, except it has haste. Sacrifice it at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NotSupertype","value":"Legendary"},{"type":"Another"}]},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"extra_keywords":["Haste"]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"LastCreated"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}: Create a token that's a copy of another target nonlegendary creature you control, except it has haste. Sacrifice it at the beginning of the next end step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Red"],"color_identity":["Red"],"scryfall_oracle_id":"c0957e5e-c71b-439c-931c-9f55d2f76ace","metadata":{"related_token_ids":["54edcc8d-dc97-5a6e-b42b-00d63b81e738","ebb9c0a4-c359-58de-b739-03fddd775dfa","fe4dffe8-dc27-5c0d-aaa3-589a15e78f55"],"source_printing_ids":["0b696cd1-0d72-4df5-bacc-dc77e62f9a13","24c0d87b-0049-4beb-b9cb-6f813b7aa7dc","6dee0388-a78d-4b3c-a0c5-25655e14115e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["NEO","PNEO","PRM","SCH"],"rarities":["rare"]},"refurbished familiar":{"name":"Refurbished Familiar","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Zombie","Rat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)\nFlying\nWhen this creature enters, each opponent discards a card. For each opponent who can't, you draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Affinity":{"type_filters":["Artifact"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"OriginalController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"CurrentScopeSucceeded"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent discards a card. For each opponent who can't, you draw a card.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"009e1638-9055-4872-93e1-85841bce4648","metadata":{"source_printing_ids":["b338e078-629c-4cac-bd1d-e1f0a132728d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"When Refurbished Familiar's last ability resolves, the next opponent in turn order (or, if it's an opponent's turn, that opponent) chooses a card in hand without revealing it, then each other opponent in turn order (if any) does the same. All chosen cards are then discarded at the same time."}],"rarities":["common"]},"refuse":{"name":"Refuse","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Refuse deals damage to target spell's controller equal to that spell's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals damage to target spell's controller equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"7db22241-fe43-4071-9af9-de1cf394f7f5","metadata":{"source_printing_ids":["054b07d8-99ae-430b-8e54-f9601fa572e7","ca4caa4e-6b8f-4be8-b177-de2ebe2c9201","eb6b2fc9-1bb7-4142-a7d4-644a7bba1100"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","C19","HOU","PHOU"],"rulings":[{"date":"2017-04-18","text":"A spell with aftermath cast from a graveyard will always be exiled afterward, whether it resolves, it's countered, or it leaves the stack in some other way."},{"date":"2017-04-18","text":"All split cards have two card faces on a single card, and you put a split card onto the stack with only the half you're casting. The characteristics of the half of the card you didn't cast are ignored while the spell is on the stack. For example, if an effect prevents you from casting green spells, you can cast Destined of Destined // Lead, but not Lead."},{"date":"2017-04-18","text":"Each split card has two names. If an effect instructs you to choose a card name, you may choose one, but not both."},{"date":"2017-04-18","text":"Each split card is a single card. For example, if you discard one, you've discarded one card, not two. If an effect counts the number of instant and sorcery cards in your graveyard, Destined // Lead counts once, not twice."},{"date":"2017-04-18","text":"If another effect allows you to cast a split card with aftermath from a graveyard, you may cast either half. If you cast the half that has aftermath, you'll exile the card if it would leave the stack."},{"date":"2017-04-18","text":"If another effect allows you to cast a split card with aftermath from any zone other than a graveyard, you can't cast the half with aftermath."},{"date":"2017-04-18","text":"If you cast the first half of a split card with aftermath during your turn, you'll have priority immediately after it resolves. You can cast the half with aftermath from your graveyard before any player can take any other action if it's legal for you to do so."},{"date":"2017-04-18","text":"Split cards with aftermath have a new frame treatment—the half you can cast from your hand is oriented the same as other cards you'd cast from your hand, while the half you can cast from your graveyard is a traditional split card half. This frame treatment is for your convenience and has no rules significance."},{"date":"2017-04-18","text":"While not on the stack, the characteristics of a split card are the combination of its two halves. For example, Destined // Lead is a green and black card, it is both an instant card and a sorcery card, and its mana value is 6. This means that if an effect allows you to cast a card with mana value 2 from your hand, you can't cast Destined. This is a change from the previous rules for split cards."},{"date":"2017-07-14","text":"Cooperate can copy any instant or sorcery spell, not just one with targets."},{"date":"2017-07-14","text":"If a spell has {X} in its mana cost, include the value chosen for that X when determining the mana value of that spell."},{"date":"2017-07-14","text":"If the spell has damage divided as it was cast (like Chandra's Pyrohelix), the division can't be changed (although the targets receiving that damage still can)."},{"date":"2017-07-14","text":"If the spell that's copied has an X whose value was determined as it was cast (like Torment of Hailfire does), the copy will have the same value of X."},{"date":"2017-07-14","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode. A different mode can't be chosen."},{"date":"2017-07-14","text":"If you copy a spell, you control the copy. It will resolve before the original spell does."},{"date":"2017-07-14","text":"Once you've started to cast a spell with aftermath from your graveyard, the card is immediately moved to the stack. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"The controller of a copy can't choose to pay any alternative or additional costs for the copy. However, effects based on any alternative or additional costs that were paid for the original spell are copied as though those same costs were paid for the copy."},{"date":"2017-07-14","text":"The copy is created on the stack, so it's not \"cast.\" Abilities that trigger when a player casts a spell won't trigger."},{"date":"2017-07-14","text":"The copy will have the same targets as the spell it's copying unless you choose new ones. You may change any number of the targets, including all of them or none of them. If, for one of the targets, you can't choose a new legal target, then it remains unchanged (even if the current target is illegal)."}],"rarities":["rare"]},"rest in peace":{"name":"Rest in Peace","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, exile all graveyards.\nIf a card or token would be put into a graveyard from anywhere, exile it instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile all graveyards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a card or token would be put into a graveyard from anywhere, exile it instead.","condition":null,"destination_zone":"Graveyard"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"087f9ad7-e74f-40e2-8102-1ed2925d0418","metadata":{"source_printing_ids":["37c2b1d1-faa0-40fd-82f4-216604ce7635","3a52b1bc-cf29-49bd-a877-03a21fe8a6c5","4ac99506-a891-4d5d-8747-23aa29004b02","7f9bf9e0-cb43-411c-a955-dc8e2f331e2d","9008f826-9e24-4ba1-b17e-1638b7cdd78d","9648392a-78a2-4ae5-a218-cfd2bcd9bc5d","98040e14-8182-4a94-9322-bbd967dc4dfe","9f2b39be-0fec-4647-ade1-8e1626dc5470","ab6ef698-caad-47cd-ba35-41be64a58c99","ba5115e9-02cb-47f2-944b-514a126430ba","cda8edb5-f42d-46a4-8469-a121222c7e75","d108c2b1-236e-4b8d-8445-d9749ccc4fea","e8baa00b-b27b-4e97-b834-61e54b0ba154"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["A25","ACR","AKR","BIG","MAR","MB2","OMB","PLST","PRM","RTR","RVR","SLD","SS2","WOT"],"rulings":[{"date":"2018-03-16","text":"If Rest in Peace is destroyed by a spell, Rest in Peace will be exiled and then the spell will be put into its owner's graveyard."},{"date":"2018-03-16","text":"If a card is discarded while Rest in Peace is on the battlefield, abilities that function when a card is discarded (such as madness) still work, even though that card never reaches a graveyard. In addition, spells or abilities that check the characteristics of a discarded card (such as Chandra Ablaze's first ability) can find that card in exile."},{"date":"2018-03-16","text":"While Rest in Peace is on the battlefield, abilities that trigger whenever a creature dies won't trigger because cards and tokens are never put into a player's graveyard."}],"rarities":["rare","mythic"]},"reviving vapors":{"name":"Reviving Vapors","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's mana value. Put all other cards revealed this way into your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":3},"destination":"Hand","keep_count":1,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":true,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Graveyard","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Another"}]}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's mana value. Put all other cards revealed this way into your graveyard.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"57104a79-cfb6-4330-8ea1-7726534ada56","metadata":{"source_printing_ids":["47a23c32-e122-400b-b252-e636ea2e684b","7abcabef-ba25-4c57-888c-07a53d9b7007","b7a6c902-4705-4210-8e5e-08d6a6f67573"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["INV","UMA","VMA"],"rulings":[{"date":"2018-12-07","text":"If a card in a player’s library has {X} in its mana cost, X is considered to be 0."}],"rarities":["uncommon"]},"reyhan, last of the abzan":{"name":"Reyhan, Last of the Abzan","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"loyalty":null,"defense":null,"oracle_text":"Reyhan enters with three +1/+1 counters on it.\nWhenever a creature you control dies or is put into the command zone, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control dies, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.","constraint":null,"condition":null,"batched":false},{"mode":{"Unknown":"Whenever a creature you control is put into the command zone"},"execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control is put into the command zone, if it had one or more +1/+1 counters on it, you may put that many +1/+1 counters on target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with three +1/+1 counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"3e7df01c-75af-440d-97fd-1b1b794281b9","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0a34158d-9925-4de8-b862-d1cc06bbae60","564e116b-4ef0-40a7-bd05-59a667373e43","8afad106-a49b-4910-959e-228c109ea983"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C16","CM2","CMR","PRM","PZ2"],"rulings":[{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"If enough -1/-1 counters are put on a creature at the same time to make its toughness 0 or less, the number of +1/+1 counters on it before it got any -1/-1 counters will be used to determine how many counters you put on target creature. For example, if there are three +1/+1 counters on Reyhan and it gets six -1/-1 counters, the target creature gets three +1/+1 counters."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["rare","mythic"]},"riddle of lightning":{"name":"Riddle of Lightning","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose any target. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's mana value to that permanent or player.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose any target. Scry 3, then reveal the top card of your library. ~ deals damage equal to that card's mana value to that permanent or player.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ea480035-9f1b-40c9-a3a5-ce7cd093dfcf","metadata":{"source_printing_ids":["2e14f36e-54b8-4019-bc85-0d9218c52ad2","338be9e2-c0b8-4b69-b7b6-6ba9927a3a4d","3e380151-abb6-457c-bac9-39f1a3744ed0","98f4250b-4493-4054-b0b2-465f76f0c2f0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["FUT","JMP","JOU","TSR"],"rulings":[{"date":"2021-03-19","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."},{"date":"2021-03-19","text":"If the chosen target is an illegal target by the time Riddle of Lightning tries to resolve, the spell doesn't resolve. You don't scry 3 or reveal any card."}],"rarities":["common","uncommon"]},"righteous valkyrie":{"name":"Righteous Valkyrie","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel","Cleric"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever another Angel or Cleric you control enters, you gain life equal to that creature's toughness.\nAs long as you have at least 7 life more than your starting life total, creatures you control get +2/+2.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Angel"}],"controller":"You","properties":[{"type":"Another"}]},{"type":"Typed","type_filters":[{"Subtype":"Cleric"}],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Angel or Cleric you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddPower","value":2},{"type":"AddToughness","value":2}],"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LifeAboveStarting"}},"comparator":"GE","rhs":{"type":"Fixed","value":7}},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as you have at least 7 life more than your starting life total, creatures you control get +2/+2."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"891d2690-7144-4f87-b6ef-96f2469780a9","metadata":{"source_printing_ids":["02fb5f9f-8750-4eb5-a03a-6dacc60e0b90","7e01a5ab-13ae-41a4-a196-d8bb2317d674","b5e8e2a9-8dcb-40dd-8079-6c8484c3b157","c0ff8c9f-a865-4570-8bd3-8229a18e5c99","de21677c-53d1-4054-a5de-abe34ce85754"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","J25","KHM","PKHM","PLST","PRM"],"rulings":[{"date":"2021-02-05","text":"Because damage remains marked on creatures until the damage is removed as the turn ends, nonlethal damage dealt to creatures you control may become lethal if your life total drops below 7 life more than your starting life total or if Righteous Valkyrie leaves the battlefield that turn."},{"date":"2021-02-05","text":"The amount of life you gain is equal to the Angel or Cleric's toughness as the triggered ability resolves. If the Angel or Cleric is no longer on the battlefield at that time, use its toughness from when it was last on the battlefield."}],"rarities":["rare"]},"riot control":{"name":"Riot Control","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You gain 1 life for each creature your opponents control. Prevent all damage that would be dealt to you this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PreventDamage","amount":"All","target":{"type":"Controller"},"scope":"AllDamage"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a189e20f-1072-4608-9e50-da2a9d7a7ee3","metadata":{"source_printing_ids":["d7886607-86db-4221-8752-296104aaaef2","f0ca86cd-1b24-4abc-a877-c3aee6acf873"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BLC","DGM"],"rulings":[{"date":"2013-04-15","text":"Count the number of creatures your opponents control as Riot Control resolves to determine how much life you gain."},{"date":"2013-04-15","text":"Riot Control doesn't prevent combat damage that would be dealt to planeswalkers you control. It also doesn't prevent damage that would be dealt to creatures you control."}],"rarities":["common"]},"ripples of undeath":{"name":"Ripples of Undeath","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your first main phase, mill three cards. Then you may pay {1} and 3 life. If you do, put a card from among those cards into your hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"AbilityCost","cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"PayLife","amount":{"type":"Fixed","value":3}}]}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Any"}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"PreCombatMain","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your first main phase, mill three cards. Then you may pay {1} and 3 life. If you do, put a card from among those cards into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2acf8e34-9215-4a72-a24f-09d3bdd0083a","metadata":{"source_printing_ids":["0136a022-6b16-4b33-a817-946ded4e9dd5","a201d1bc-e3fe-4f59-bd48-3683996ac308"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rarities":["rare"]},"rise of the dark realms":{"name":"Rise of the Dark Realms","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":7},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put all creature cards from all graveyards onto the battlefield under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"enters_under":"You"},"cost":null,"sub_ability":null,"duration":null,"description":"Put all creature cards from all graveyards onto the battlefield under your control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"e5223a09-f732-4747-8914-e6546ab0ef4c","metadata":{"source_printing_ids":["073f81e8-8c0c-4430-bd3e-95ed3625340f","7c0e1064-47c3-4f03-a1f2-3bcb356db82b","7d466d44-3203-4e9d-befc-877414a7308d","8645bf0c-631f-4003-bd24-3e069ae23513","953c7338-e30d-452c-89ff-0c5fca690b2f","afefa7d5-e83a-4bbe-a9eb-e20c1bc25cdd","ceb5df52-4e03-4629-b8d5-d440d9cc5175","f4ed0f96-7dc2-47c0-9cac-d24dab264e05"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FDN","FIC","JMP","M14","MKC","PFDN","SLD"],"rarities":["mythic"]},"rite of consumption":{"name":"Rite of Consumption","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nRite of Consumption deals damage equal to the sacrificed creature's power to target player or planeswalker. You gain life equal to the damage dealt this way.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"CostPaidObject"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"PreviousEffectAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ deals damage equal to the sacrificed creature's power to target player or planeswalker. You gain life equal to the damage dealt this way.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"327121a1-f193-44c6-a834-802095abec84","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["67cc5d9a-fba5-4a42-a3fa-d41e20b7b8fd","f62d999c-c81e-4bea-aefd-0d12251dcdd1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["PLST","SHM"],"rulings":[{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["common"]},"roaming throne":{"name":"Roaming Throne","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Golem"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Ward {2}\nAs this creature enters, choose a creature type.\nThis creature is the chosen type in addition to its other types.\nIf a triggered ability of another creature you control of the chosen type triggers, it triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ is the chosen type in addition to its other types."},{"mode":{"DoubleTriggers":{"cause":"Any"}},"affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"IsChosenCreatureType"}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a triggered ability of another creature you control of the chosen type triggers, it triggers an additional time."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"3640c29b-1534-4952-b297-619ade948431","metadata":{"source_printing_ids":["0ff7858d-f18d-4e5a-9467-ebef3ef53ac1","32fd8b7c-baf3-4d3d-be6f-044a917b11a0","4e81692d-bbb1-4051-83c0-f7251f98d5ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","PLCI"],"rulings":[{"date":"2023-11-10","text":"If you control two Roaming Thrones with the same chosen creature type, triggered abilities of other creatures you control of the chosen type trigger three times. Three such Roaming Thrones result in four triggered abilities, and so on."},{"date":"2023-11-10","text":"Roaming Throne's last ability doesn't copy the triggered ability; it just causes the ability to trigger an additional time. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."}],"rarities":["rare"]},"rooftop storm":{"name":"Rooftop Storm","mana_cost":{"type":"Cost","shards":["Blue"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may pay {0} rather than pay the mana cost for Zombie creature spells you cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":{"CastWithAlternativeCost":{"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":0}}}},"affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Zombie"}],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"You may pay {0} rather than pay the mana cost for Zombie creature spells you cast."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"6835bf6d-7197-481b-ac26-276ce363b4ad","metadata":{"source_printing_ids":["1a2b9c41-6bf7-4892-bef8-dec5f8a8df46","31146f03-cb5e-4f33-aad7-ce970b914d90","3fe2c09a-584d-434b-92a4-cb75c69719c7","80cdee59-0ead-4b95-a348-c1e360d781ab","ab01d871-ba50-400a-95e7-09af9e34405f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["INR","ISD","MIC","PLST"],"rulings":[{"date":"2011-09-22","text":"The mana cost and mana value of the spell are unchanged. Rooftop Storm only changes what you pay."},{"date":"2011-09-22","text":"You must still pay any mandatory additional costs, such as exiling a creature card from your graveyard for Makeshift Mauler."}],"rarities":["rare"]},"roost seek":{"name":"Roost Seek","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Omen"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle. (Also shuffle this card.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search your library for a basic land card, reveal it, put it into your hand, then shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7cee6d43-5dec-4989-85ec-c635ec783ec7","metadata":{"source_printing_ids":["b72ee8f9-5e79-4f77-ae7e-e4c274f78187","d8b43b00-f4d1-436c-bf3f-6d414cd4ce38"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["TDM"],"rarities":["common"]},"roots of wisdom":{"name":"Roots of Wisdom","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Mill three cards, then return a land card or Elf card from your graveyard to your hand. If you can't, draw a card. (To mill a card, put the top card of your library into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":3},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null,"selection":"at_resolution"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"ZoneChangedThisWay","filter":{"type":"Any"}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Mill three cards, then return a land card or Elf card from your graveyard to your hand. If you can't, draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8f6af612-a4a1-4165-ae4d-ff6353cbaf8d","metadata":{"source_printing_ids":["734afb5b-3163-47fa-856f-8a85b9da22d3","eacd6f7b-3bb7-4957-afb6-f59881b55bb1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["J22","KHM"],"rulings":[{"date":"2021-02-05","text":"If there’s a land card or Elf card in your graveyard, you must return one. You can’t choose not to in order to draw a card."},{"date":"2021-02-05","text":"Roots of Wisdom doesn’t target any cards in graveyards. You may return a land card or an Elf card that was just milled or one that was already there."}],"rarities":["common"]},"rotfeaster maggot":{"name":"Rotfeaster Maggot","mana_cost":{"type":"Cost","shards":["Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, exile target creature card from a graveyard. You gain life equal to that card's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile target creature card from a graveyard. You gain life equal to that card's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"67d0df0f-37d1-46da-b1c3-4fc9d1e3cc05","metadata":{"source_printing_ids":["41b5e1d4-2a7e-4d34-8ca7-ba8ccbf8f775","5c8e2442-0677-4ea6-8d70-4c39fbb552ed","6a438aef-3752-416c-b795-8ce0a39924a9","cf857631-8cd5-424f-b93e-d3e98a929988"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BBD","IMA","M15","PLST"],"rulings":[{"date":"2014-07-18","text":"Rotfeaster Maggot’s ability is mandatory. If you are the only player with creature cards in your graveyard, you must target one of them."}],"rarities":["common"]},"rottenmouth viper":{"name":"Rottenmouth Viper","mana_cost":{"type":"Cost","shards":["Black"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Snake"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, you may sacrifice any number of nonland permanents. This spell costs {1} less to cast for each permanent sacrificed this way.\nWhenever this creature enters or attacks, put a blight counter on it. Then for each blight counter on it, each opponent loses 4 life unless that player sacrifices a nonland permanent of their choice or discards a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"blight","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"for","description":"for each blight counter on it"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":4}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, put a blight counter on it. Then for each blight counter on it, each opponent loses 4 life unless that player sacrifices a nonland permanent of their choice or discards a card.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"OneOf","costs":[{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"count":1},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]},"payer":{"type":"ScopedPlayer"}},"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":null,"dynamic_count":{"type":"FilteredTrackedSetSize","filter":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]}}}},"affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"AdditionalCostPaid"},"affected_zone":null,"effect_zone":null,"active_zones":["Hand","Stack","Command","Graveyard","Exile","Library"],"characteristic_defining":false,"description":"This spell costs {1} less to cast for each permanent sacrificed this way."}],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"2c75623c-59f4-4449-ab43-9d1225185ad9","additional_cost":{"type":"Optional","data":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"count":4294967295}}},"metadata":{"source_printing_ids":["735e79b1-a3a9-4ddf-8bbc-f756c8a0452b","7bad7555-3e5d-4096-a671-184630d38113"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["BLB","PBLB"],"rulings":[{"date":"2024-07-26","text":"An opponent can always choose not to sacrifice a nonland permanent or discard a card (and therefore lose 4 life) even if they have cards in their hand or nonland permanents on the battlefield."},{"date":"2024-07-26","text":"If Rottenmouth Viper leaves the battlefield before its triggered ability resolves, use the number of blight counters that were on it as it last existed on the battlefield to determine how many times each opponent must make the listed choice."},{"date":"2024-07-26","text":"In a multiplayer game, each opponent in turn order makes all of their choices, then all of the actions occur simultaneously. Opponents will know what choices opponents earlier in turn order made, although cards chosen to be discarded this way won’t be revealed until they’re discarded at the end of the process."},{"date":"2024-07-26","text":"While resolving Rottenmouth Viper’s triggered ability, your opponent chooses a card to be discarded without revealing it, chooses a nonland permanent to be sacrificed, or chooses to do neither. Cards or permanents they’ve chosen previously during this process can’t be chosen again. Then that player repeats that process if it hasn’t yet been done once for each blight counter on Rottenmouth Viper. Finally, that player discards the chosen cards, sacrifices the chosen permanents, and loses 4 life the appropriate number of times."}],"rarities":["mythic"]},"ruin raider":{"name":"Ruin Raider","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Orc","Pirate"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Raid — At the beginning of your end step, if you attacked this turn, reveal the top card of your library and put that card into your hand. You lose life equal to the card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you attacked this turn, reveal the top card of your library and put that card into your hand. You lose life equal to the card's mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"AttackedThisTurn"}},"comparator":"GE","rhs":{"type":"Fixed","value":1}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d6a837d0-d4f9-45ed-bbd7-5e37a9ca3b56","metadata":{"source_printing_ids":["457ba695-3637-40de-a8a8-e3a43a71674f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"If the mana cost of the revealed card includes {X}, X is considered to be 0."},{"date":"2017-09-29","text":"If the revealed card doesn't have a mana cost (because it's a land card, for example), its mana value is 0."},{"date":"2017-09-29","text":"The mana value of a split card, such as cards with aftermath from the Amonkhet block, is based on the combined mana cost of its two halves."},{"date":"2024-11-08","text":"Raid abilities care only that you attacked with a creature. It doesn't matter how many creatures you attacked with or which player, planeswalker, or battle those creatures attacked."},{"date":"2024-11-08","text":"Raid abilities evaluate the entire turn to see if you attacked with a creature. That creature doesn't have to still be on the battlefield. Similarly, the player, planeswalker, or battle it attacked doesn't have to still be in the game or on the battlefield."},{"date":"2024-11-08","text":"Some raid abilities trigger at the beginning of your end step. These abilities trigger if you attacked with a creature that turn, even if the permanent with that raid ability wasn't on the battlefield when you attacked."}],"rarities":["rare"]},"run":{"name":"Run","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Attacking creatures you control get +1/+0 until end of turn for each other attacking creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PumpAll","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"},{"type":"Attacking"}]}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Attacking"}]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Attacking creatures you control get +1/+0 until end of turn for each other attacking creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"2554a591-8592-4a9f-a4dc-eb9a7e6dc3eb","metadata":{"source_printing_ids":["b44c30a9-1af4-4287-a809-d2de4e8b4070"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rarities":["uncommon"]},"rupture":{"name":"Rupture","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Sacrifice a creature. Rupture deals damage equal to that creature's power to each creature without flying and each player.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"WithoutKeyword","value":"Flying"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Sacrifice a creature. ~ deals damage equal to that creature's power to each creature without flying and each player.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d2179a54-4b45-4b67-a31c-aa1a7bcfda2c","metadata":{"source_printing_ids":["6f3becdf-4019-43a4-999b-15b83fe53b8e","db53c1fb-3641-44a3-b0b4-b7b2ba993646"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["NEM","PLST","PRM"],"rarities":["uncommon"]},"rush of ice":{"name":"Rush of Ice","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target creature. It doesn't untap during its controller's next untap step.\nAwaken 3—{4}{U} (If you cast this spell for {4}{U}, also put three +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Awaken":{"count":3,"cost":{"type":"Cost","shards":["Blue"],"generic":4}}}],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantUntap","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantUntap"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"doesn't untap during its controller's next untap step"}],"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target creature. It doesn't untap during its controller's next untap step.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"e9d62416-c4b1-4982-9593-174d46e975c7","metadata":{"source_printing_ids":["f9ae6f63-d1b2-4bf9-a423-ed6fbb540d4b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["BFZ"],"rulings":[{"date":"2015-08-25","text":"Awaken doesn’t give the land you control a color. As most lands are colorless, in most cases the resulting land creature will also be colorless."},{"date":"2015-08-25","text":"If a spell with awaken has multiple targets (including the land you control), and some but not all of those targets become illegal by the time the spell tries to resolve, the spell won’t affect the illegal targets in any way."},{"date":"2015-08-25","text":"If the non-awaken part of the spell doesn’t require a target and you cast the spell for its awaken cost, then the spell won’t resolve if the target land you control becomes illegal before the spell resolves (such as due to being destroyed in response to the spell being cast)."},{"date":"2015-08-25","text":"If the non-awaken part of the spell requires a target, you must choose a legal target. You can’t cast the spell if you can’t choose a legal target for each instance of the word “target” (though you only need a legal target for the awaken ability if you’re casting the spell for its awaken cost)."},{"date":"2015-08-25","text":"Rush of Ice can target a creature that’s already tapped. It still won’t untap during its controller’s next untap step."},{"date":"2015-08-25","text":"Rush of Ice tracks the creature, but not its controller. If the creature changes controllers before its first controller’s next untap step has come around, then it won’t untap during its new controller’s next untap step."},{"date":"2015-08-25","text":"The land will retain any other types, subtypes, or supertypes it previously had. It will also retain any mana abilities it had as a result of those subtypes. For example, a Forest that’s turned into a creature this way can still be tapped for {G}."},{"date":"2015-08-25","text":"You can cast a spell with awaken for its mana cost and get only its first effect. If you cast a spell for its awaken cost, you’ll get both effects."}],"rarities":["common"]},"sacrifice":{"name":"Sacrifice","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As an additional cost to cast this spell, sacrifice a creature.\nAdd an amount of {B} equal to the sacrificed creature's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"CostPaidObject"}}},"color_options":["Black"]}},"cost":null,"sub_ability":null,"duration":null,"description":"Add an amount of {B} equal to the sacrificed creature's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"068b3692-411b-44d4-a7e9-005262760cfc","additional_cost":{"type":"Required","data":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":1}},"metadata":{"source_printing_ids":["12164aee-6a27-4246-8d15-2d6dd20d92e9","288323c1-13f1-481e-940e-5e4ecebb404e","43334dee-ec2c-44fe-b526-8a38b9f62cc4","652bd781-1a48-42c1-9aff-f9050a9285d6","76bc3b43-158c-420e-a3fb-7413334699ca","8abe7d62-6a99-4d1f-9b81-cff0485997a8","8f067622-edb8-4c52-b2d7-cea1370b9a16","e30287fe-e949-44a3-9878-8b095b7748ba"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","CED","CEI","FBB","LEA","LEB","SPG","SUM"],"rulings":[{"date":"2004-10-04","text":"Sacrificing an animated land gives no mana since the converted mana cost was zero."},{"date":"2013-04-15","text":"Players can only respond once this spell has been cast and all its costs have been paid. No one can try to destroy the creature you sacrificed to prevent you from casting this spell."},{"date":"2013-04-15","text":"You must sacrifice exactly one creature to cast this spell; you cannot cast it without sacrificing a creature, and you cannot sacrifice additional creatures."}],"rarities":["uncommon"]},"sagu wildling":{"name":"Sagu Wildling","mana_cost":{"type":"Cost","shards":["Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, you gain 3 life.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain 3 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7cee6d43-5dec-4989-85ec-c635ec783ec7","metadata":{"source_printing_ids":["b72ee8f9-5e79-4f77-ae7e-e4c274f78187","d8b43b00-f4d1-436c-bf3f-6d414cd4ce38"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["TDM"],"rulings":[{"date":"2025-04-04","text":"An omen card is a creature card in every zone except the stack, as well as while on the stack if not cast as an Omen. Ignore its alternative characteristics in those cases. For example, while it’s in your graveyard, Twinmaw Stormbrood is a white creature card whose mana value is 6. It can’t be the target of the reflexive ability created by Kishla Trawlers’s triggered ability (“…When you do, return target instant or sorcery card from your graveyard to your hand.”)."},{"date":"2025-04-04","text":"As a player casts an omen card, the player chooses whether they cast the card normally or as an Omen."},{"date":"2025-04-04","text":"Casting a card as an Omen isn’t casting it for an alternative cost. Effects that allow you to cast a spell for an alternative cost or without paying its mana cost may allow you to apply those to the Omen."},{"date":"2025-04-04","text":"If a spell is cast as an Omen, its controller shuffles it into its owner’s library instead of putting it into its owner’s graveyard as it resolves."},{"date":"2025-04-04","text":"If an Omen spell has one or more targets and all of those targets are illegal when the spell tries to resolve, it won’t resolve. None of its effects will happen, and it will be put into its owner’s graveyard. It won’t be shuffled into its owner’s library."},{"date":"2025-04-04","text":"If an Omen spell is copied, that copy is also an Omen and is shuffled into its owner’s library as it resolves. Its owner still shuffles their library, but the copy ceases to exist as a state-based action."},{"date":"2025-04-04","text":"If an Omen spell is countered or an effect causes it to otherwise leave the stack, it won’t be shuffled into its owner’s library."},{"date":"2025-04-04","text":"If an effect instructs you to choose a card name, you may choose the alternative Omen name. Consider only the alternative characteristics to determine whether that is an appropriate name to choose."},{"date":"2025-04-04","text":"If you cast an omen card as an Omen, use only its alternative characteristics to determine whether it’s legal to cast that spell. For example, if you control Thundermane Dragon (“You may cast creature spells with power 4 or greater from the top of your library.”) and Twinmaw Stormbrood is on top of your library, you can cast Twinmaw Stormbrood, but not Charring Bite."},{"date":"2025-04-04","text":"When casting a spell as an Omen, use the alternative characteristics and ignore all of the card’s normal characteristics. The spell’s color, mana cost, mana value, and so on are determined by only those alternative characteristics. If the spell leaves the stack, it immediately resumes using its normal characteristics."}],"rarities":["common"]},"sapling of colfenor":{"name":"Sapling of Colfenor","mana_cost":{"type":"Cost","shards":["BlackGreen","BlackGreen"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Treefolk","Shaman"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nWhenever Sapling of Colfenor attacks, reveal the top card of your library. If it's a creature card, you gain life equal to that card's toughness, lose life equal to its power, then put it into your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, reveal the top card of your library. If it's a creature card, you gain life equal to that card's toughness, lose life equal to its power, then put it into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"0c1e2bb8-0629-466c-b435-c4c71cdc755d","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["33c19062-9e1c-4cae-bb97-7ca9e4523593","7b3c373d-9733-425b-8ff5-2862a96f5188"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","EVE"],"rulings":[{"date":"2008-08-01","text":"If a creature card has “*” in its power or toughness, the ability that defines “*” works in all zones. Note that the card is in your library when Sapling of Colfenor’s ability checks the card’s power and toughness."},{"date":"2008-08-01","text":"If the revealed card is not a creature card, it remains on top of your library."},{"date":"2008-08-01","text":"The triggered ability results in three sequential events: you gain some life (subject to effects that might alter life gain), then lose some life (subject to other effects that might alter life loss), and then put the card into your hand."},{"date":"2014-02-01","text":"Lethal damage and effects that say “destroy” won’t cause Sapling of Colfenor to be put into the graveyard. However, Sapling of Colfenor could be put into the graveyard if its toughness becomes 0 or less, if it’s sacrificed, or if you control another Sapling of Colfenor (due to the “legend rule”)."}],"rarities":["rare"]},"sarkhan the mad":{"name":"Sarkhan the Mad","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sarkhan"]},"power":null,"toughness":null,"loyalty":"7","defense":null,"oracle_text":"[0]: Reveal the top card of your library and put it into your hand. Sarkhan deals damage to himself equal to that card's mana value.\n[−2]: Target creature's controller sacrifices it, then that player creates a 5/5 red Dragon creature token with flying.\n[−4]: Each Dragon creature you control deals damage equal to its power to target player or planeswalker.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":{"type":"Loyalty","amount":0},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[0]: Reveal the top card of your library and put it into your hand. Sarkhan deals damage to himself equal to that card's mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Dragon","power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"types":["Creature","Dragon"],"colors":["Red"],"keywords":["Flying"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"ParentTargetController"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[−2]: Target creature's controller sacrifices it, then that player creates a 5/5 red Dragon creature token with flying.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Or","filters":[{"type":"Player"},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":{"type":"Loyalty","amount":-4},"sub_ability":null,"duration":null,"description":"[−4]: Each Dragon creature you control deals damage equal to its power to target player or planeswalker.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"e70a93e4-2fe7-46d3-8958-153ab2fcfd99","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["4588ccb3-283b-51b2-9840-7d08f985f47f","921f2257-6e27-5e00-945a-dc599f4711b3"],"source_printing_ids":["02e58076-86a3-4bf1-a3e4-8b53a4e93543","26c1ba92-556e-4da9-8e3a-a4a82612cb29"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"If the targeted creature is a legal target by the time the second ability resolves but its controller can't sacrifice it (due to Tajuru Preserver, perhaps), the ability continues to resolve. That player gets a Dragon token."},{"date":"2010-06-15","text":"If the targeted creature is an illegal target by the time the second ability resolves, the ability doesn't resolve. The player won't get a Dragon token."},{"date":"2010-06-15","text":"If you target an opponent with the third ability, you choose separately for each Dragon creature you control whether or not to redirect the damage dealt by that Dragon to a planeswalker that player controls."},{"date":"2010-06-15","text":"Once the first ability starts to resolve and you reveal the top card of your library (and see how much damage Sarkhan the Mad deals to himself), it's too late to respond."},{"date":"2010-06-15","text":"The first ability causes Sarkhan to deal damage directly to himself, resulting in that many loyalty counters being removed from him. The damage would never have been dealt to you, so prevention effects that would prevent damage from being dealt to you won't affect it."},{"date":"2010-06-15","text":"Unlike previous planeswalkers, Sarkhan the Mad has no way to raise his loyalty."},{"date":"2010-06-15","text":"You choose a single target as you activate the third ability. All your Dragons deal damage to that player."}],"rarities":["mythic"]},"satoru, the infiltrator":{"name":"Satoru, the Infiltrator","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ninja","Rogue"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Menace\nWhenever Satoru and/or one or more other nontoken creatures you control enter, if none of them were cast or no mana was spent to cast them, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"NonToken"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ and/or one or more other nontoken creatures you control enter, if none of them were cast or no mana was spent to cast them, draw a card.","constraint":null,"condition":{"type":"Or","conditions":[{"type":"Not","condition":{"type":"WasCast"}},{"type":"ManaSpentCondition","text":"no mana was spent to cast them"}]},"batched":true}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"7555c429-5f2d-4171-b6b0-8e3c8da7f314","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4b9a76f0-b697-4c1d-9b60-c66f7fc4316e","acc9a5cc-2b3c-4c2f-8176-4a2d86265cc5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"If you cast a creature spell without paying its mana cost but you paid mana for additional costs or cost increases (such as from Aven Interrupter), Satoru's last ability won't trigger."}],"rarities":["rare"]},"savannah lions":{"name":"Savannah Lions","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Cat"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":null,"non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"60ba93eb-39e6-4af2-9c66-cd38f72daff2","metadata":{"source_printing_ids":["2af2b107-1938-4d42-9bfa-0c88fd1e822a","345920d9-b842-42a3-996f-457e737baab2","3da61fc1-6201-4823-975f-2d4d9f7f3193","5ada7133-d23b-47e9-8a58-c1f78f4095e0","60c597ee-eaf9-4294-9865-af8a18067eda","67d1945d-d228-4dc3-a593-859408b2016b","69da8664-c9b9-4f9c-b1c4-099990637646","75798ac5-9843-4a8b-a5f3-dbd38b4e4bad","8455221d-683b-4313-8e53-73cbf7e05aa5","89b77ad5-1585-49dc-b635-780143e1e1c8","9c9ac1bc-cdf3-4fa6-8319-a7ea164e9e47","a2ee9127-d007-48e8-b797-88ef72bc7c8b","a9757246-e782-4d7a-8273-d9efe284edaf","ad41b1aa-1482-4d71-990b-031b30685cb1","b387ece0-8db7-482e-b41b-6c1af74aa136","c0ea8d9f-2b77-4cff-8b96-387f43366c1a","c58dbcf3-f8ad-4e82-9515-0290fa5373f7","d05b92bd-797e-413f-a8b0-32e0937a1ee0","d136d1fc-c413-4deb-952c-b10aa1c72abe","db9f9f3c-d024-4529-bffb-c7a5a3085e58","e770d089-9957-412c-a51f-3f11b6b9692a","e79d52e0-dfa6-4ac0-909e-81d1a16b84b4","e865dc3c-45b9-475a-8937-5d7bb2e10896"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","8ED","9ED","A25","CED","CEI","DMR","FBB","FDN","J22","J25","LEA","LEB","ME4","PLST","SUM"],"rarities":["common","uncommon","rare"]},"sawhorn nemesis":{"name":"Sawhorn Nemesis","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"As this creature enters, choose a player.\nIf a source would deal damage to the chosen player or a permanent they control, it deals double that damage instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a player.","condition":null,"destination_zone":"Battlefield"},{"event":"DamageDone","execute":null,"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a source would deal damage to the chosen player or a permanent they control, it deals double that damage instead.","condition":null,"damage_modification":{"type":"Double"},"damage_target_filter":{"PlayerOrPermanentsControlledBy":{"player":{"type":"SourceChosenPlayer"}}}}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f9107c5-991a-4c20-9b77-2e2fb4b9dc53","metadata":{"source_printing_ids":["29b33e43-ffd5-4697-8261-9b4f5de36a19","b3f1c76f-9afc-47b1-a223-4ff5aab91c3a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"If another effect (or effects) modifies how much damage a source would deal to the chosen player or a permanent they control (for example, by preventing some of that damage), the player being dealt damage or the controller of the permanent being dealt damage chooses the order in which any such effects, including the effect of Sawhorn Nemesis, apply. If all of the damage is prevented before Sawhorn Nemesis's effect would apply, its effect no longer applies."},{"date":"2024-06-07","text":"If damage dealt is being divided or assigned among multiple permanents or players, that damage is divided or assigned before any effects that modify how much damage will be dealt. For example, if you attack the chosen player with a 5/5 creature with trample and it's blocked by a 2/2 creature they control, you can assign 2 damage to the blocker and 3 damage to the defending player. Those amounts are then doubled to 4 and 6, respectively."},{"date":"2024-06-07","text":"The damage is dealt by the same source as the original source of damage. The doubled damage isn't dealt by Sawhorn Nemesis unless it was the original source of damage."},{"date":"2024-06-07","text":"The protector of a battle with the Siege subtype is not that battle's controller."}],"rarities":["rare"]},"scattering stroke":{"name":"Scattering Stroke","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to that spell's mana value. (Each clashing player reveals the top card of their library, then puts that card on their choice of the top or bottom. A player wins if their card had a greater mana value.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Counter","target":{"type":"StackSpell"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Clash"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"PreCombatMain","player":0},"effect":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EventOutcomeWon"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to that spell's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"314a9604-34ec-4529-bd14-7b63be28669f","parse_warnings":[{"type":"SwallowedClause","detector":"Optional_YouMay","description":"Counter target spell. Clash with an opponent. If you win, at the beginning of your next main phase, you may add an amount of {C} equal to th","line_index":0}],"metadata":{"source_printing_ids":["c536c1ce-a012-4d77-ab29-8574be164731"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMD","LRW"],"rulings":[{"date":"2007-10-01","text":"You can't add just some of the mana. You either add all the mana or none of it."},{"date":"2007-10-01","text":"You decide whether or not to add that much {C} as the delayed triggered ability resolves at the beginning of your next main phase. You don't decide before then."}],"rarities":["uncommon"]},"scrap trawler":{"name":"Scrap Trawler","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature dies or another artifact you control is put into a graveyard from the battlefield, return to your hand target artifact card in your graveyard with lesser mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"zone_change_clauses":[{"origin":{"type":"Equals","data":"Battlefield"},"destination":"Graveyard","valid_card":{"type":"SelfRef"}},{"origin":{"type":"Equals","data":"Battlefield"},"destination":"Graveyard","valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"}]}}],"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ dies or another artifact you control is put into a graveyard from the battlefield, return to your hand target artifact card in your graveyard with lesser mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"164f3f85-21fc-40b7-9871-4f303ba98428","metadata":{"source_printing_ids":["0be3f03b-929a-4787-b889-6f24f047e4f5","614be454-3829-4c3b-9485-930755dfa16d","68abc75f-596f-4169-96fc-ada941ef47ed","bf1e1b54-2f97-4d33-807a-99ca38f21777"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AER","BRR","C21","KLR","MOC","PAER","PRM"],"rulings":[{"date":"2017-02-09","text":"If Scrap Trawler and another artifact you control are put into a graveyard at the same time, Scrap Trawler's ability triggers for each of them."},{"date":"2017-02-09","text":"If an artifact is a copy of another artifact with greater mana value, such as Sculpting Steel copying an artifact with mana value 4, Scrap Trawler's ability can target that artifact card in your graveyard when that artifact is put into your graveyard."},{"date":"2017-02-09","text":"The target artifact card must have a lesser mana value than the artifact that caused Scrap Trawler's ability to trigger by being put into a graveyard. Use the artifact's mana value as it last existed on the battlefield to determine what may be returned."},{"date":"2017-02-09","text":"While on the battlefield or in a graveyard, {X} in an object's mana cost is 0."}],"rarities":["rare"]},"screaming nemesis":{"name":"Screaming Nemesis","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Spirit"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Haste\nWhenever this creature is dealt damage, it deals that much damage to any other target. If a player is dealt damage this way, they can't gain life for the rest of the game.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantGainLife","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantGainLife"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't gain life"}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to any other target. If a player is dealt damage this way, they can't gain life for the rest of the game.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"fcb7c93c-46ab-49b5-a6e0-35d73f3be8f0","metadata":{"source_printing_ids":["ad3f4c72-ff6e-4d7f-8eb8-45a0a9605fc0","ce35e6fb-ff54-44c4-a216-7ddd37f46882"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"banned","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK"],"rulings":[{"date":"2024-09-20","text":"If Screaming Nemesis is dealt damage by multiple sources at once, such as by two creatures blocking it, its last ability triggers once and one target is dealt that much damage."},{"date":"2024-09-20","text":"If an effect says to set a player's life total to a number that's higher than their current life total while they're affected by Screaming Nemesis's last ability, their life total won't change."},{"date":"2024-09-20","text":"If lethal damage is dealt to Screaming Nemesis, its last ability still triggers."},{"date":"2024-09-20","text":"Once Screaming Nemesis's last ability causes it to deal damage to a player, that player won't be able to gain life for the rest of the game. It doesn't matter if Screaming Nemesis remains on the battlefield or not."},{"date":"2024-09-20","text":"Spells and abilities that cause a player affected by Screaming Nemesis's last ability to gain life still resolve. That player won't gain life, but any other effects of that spell or ability will happen."}],"rarities":["mythic"]},"scryb sprites":{"name":"Scryb Sprites","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Faerie"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flying","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"a1f20695-6f08-4d5c-9fba-b0018bee298e","metadata":{"source_printing_ids":["1014748d-926e-47c7-b39d-c907384f3490","178975a9-51ea-40ff-8fd9-247445d1a545","1b9e1d37-47cd-41d7-9fee-b8504c689462","26f191de-8c59-458c-a1ab-80e2bccdb974","281e8da8-1383-460e-b74e-ad56f1b6d007","2d0a7b28-63bb-4aeb-98de-5a795cef838a","35fd0955-999c-4591-b726-aa5213abc81d","6d929c38-91e6-457c-937a-d1884f4bba44","ab52f491-26f1-494f-8ec7-9630c4f9653a","e05cacf1-31c4-4538-81ae-575049567367","e9b72a87-67b0-4858-b524-02b096e2f5dd","e9e2f1fe-4df0-48c8-b469-4175ba5011e8","fafe9639-e9d0-4aa2-8a16-f4ec24c140c0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","BRB","CED","CEI","FBB","ITP","LEA","LEB","ME1","ME3","PRM","RQS","SUM"],"rarities":["common"]},"scute swarm":{"name":"Scute Swarm","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Insect"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, create a 1/1 green Insect creature token. If you control six or more lands, create a token that's a copy of this creature instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Insect","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Insect"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":6}}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, create a 1/1 green Insect creature token. If you control six or more lands, create a token that's a copy of ~ instead.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"aa854d50-444c-49d9-bfb1-5476b33c1c0b","metadata":{"related_token_ids":["3bbbe9b2-6a32-575f-90af-6b419debf932","4d2ba458-569a-5a74-b079-cd2b89ec3f47","52626921-713d-5fbe-823b-c222119520aa","570cd489-7238-5cc6-9f6e-c789738dd1e6","61aa5086-680f-5638-801a-69b49c0fe160","9b02e27b-70be-56ba-a683-9e2a622ec8f5","b25392e1-0377-5a67-857d-c6271b7ae245","c260fa03-ae9a-5bda-8c06-aab126a23edd","cce49cc0-36bd-55e9-b593-465545cf3902","d0174949-c2b2-537a-8e5e-51298d3f97bc","ebb9c0a4-c359-58de-b739-03fddd775dfa","fdc7aa74-0ebb-5ec9-987d-82b3714dd8db"],"source_printing_ids":["1abdf386-56bc-4575-af89-6edc9a38cd43","309b2cb5-b9a8-417d-b5ae-0a7d03ff93f0","373f199d-f1a6-4a3d-ac83-28741131f313","61f42823-8a48-4b81-a037-664ba1c69f29","62c19f87-1bbc-4309-8781-4519db8b91a2","acd42ebf-6dee-44cc-a023-a7f9b67cfa2f","ea630ba1-22f9-4a10-bdc6-0d03128214f4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DSC","M3C","NCC","OTC","PRM","PZNR","SLD","ZNR"],"rulings":[{"date":"2020-09-25","text":"If Scute Swarm leaves the battlefield before its triggered ability resolves, the token will still enter the battlefield as a copy of Scute Swarm, using Scute Swarm's copiable values from when it was last on the battlefield."},{"date":"2020-09-25","text":"The token copy will have Scute Swarm's ability. It will also be able to create copies of itself."},{"date":"2020-09-25","text":"The token copy won't copy counters or damage marked on Scute Swarm, nor will it copy other effects that have changed Scute Swarm's power, toughness, types, color, and so on. Normally, this means the token will simply be a Scute Swarm, but if any copy effects have affected the original Scute Swarm, the token will take those into account."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"season's beatings":{"name":"Season's Beatings","mana_cost":{"type":"Cost","shards":["Red","Red","Red","Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Family gathering — Each creature target player controls deals damage equal to its power to another random creature that player controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":"Family gathering — Each creature target player controls deals damage equal to its power to another random creature that player controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d3c36e20-3c6c-423a-a9ba-8e8bd7b735e6","metadata":{"source_printing_ids":["e177c12e-551a-4688-aa34-740f873dd37d"]},"legalities":{},"printings":["HHO"],"rarities":["rare"]},"seasoned dungeoneer":{"name":"Seasoned Dungeoneer","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you take the initiative.\nWhenever you attack, target attacking Cleric, Rogue, Warrior, or Wizard gains protection from creatures until end of turn. It explores. (Reveal the top card of your library. Put that card into your hand if it's a land. Otherwise, put a +1/+1 counter on the creature, then put the card back or put it into your graveyard.)","non_ability_text":null,"flavor_name":null,"keywords":["Explore"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"TakeTheInitiative"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you take the initiative.","constraint":null,"condition":null,"batched":false},{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":{"Protection":{"CardType":"creatures"}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain protection from creatures"}],"duration":"UntilEndOfTurn","target":{"type":"Or","filters":[{"type":"Typed","type_filters":[{"Subtype":"Cleric"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Rogue"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Warrior"}],"controller":null,"properties":[{"type":"Attacking"}]},{"type":"Typed","type_filters":[{"Subtype":"Wizard"}],"controller":null,"properties":[{"type":"Attacking"}]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"TriggeringSource"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Explore"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever you attack, target attacking Cleric, Rogue, Warrior, or Wizard gains protection from creatures until end of turn. It explores.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"5ea675aa-88d6-4387-a14d-e606fa9c3aec","metadata":{"source_printing_ids":["2af98a7e-6335-4040-a831-d0911ab89dc5","648d9da3-5790-4d64-8b52-83141d2faf36","7fee3f76-20a8-4621-84fb-ddf79c955532","b2025340-4751-46bd-aeeb-abff2e2d5378"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","SLD"],"rulings":[{"date":"2022-06-10","text":"A player who currently has the initiative may take the initiative again. This causes that player to venture into Undercity again, but does not cause them to have multiple initiative designations."},{"date":"2022-06-10","text":"If the player with the initiative leaves the game, the active player takes the initiative at the same time that player leaves the game. If the active player is leaving the game or if there is no active player, the next player in turn order takes the initiative."},{"date":"2022-06-10","text":"If you aren’t in a dungeon when instructed to venture into Undercity, you will put Undercity into the command zone and move your venture marker to Secret Entrance (the first room)."},{"date":"2022-06-10","text":"If you’re already in a dungeon when instructed to venture into Undercity, you move to the next room of that dungeon. If you are already in the last room, you will complete that dungeon and start Undercity. This is true whether you’re already in Undercity or any other dungeon."},{"date":"2022-06-10","text":"In a Two-Headed Giant game, if both players on a team deal combat damage to the player that has the initiative at the same time, the player with the initiative will choose the order of the triggered abilities. Then, as those abilities resolve, one team member takes the initiative (and ventures into Undercity) and then the other team member does the same. The last player to take the initiative keeps it until the initiative changes again."},{"date":"2022-06-10","text":"Only one player can have the initiative at a time. As one player takes the initiative, any other player that had the initiative ceases to have it."},{"date":"2022-06-10","text":"Similarly, when instructed to venture into Undercity, you can’t start a dungeon that isn’t Undercity."},{"date":"2022-06-10","text":"The initiative is a designation a player can have. A player with the initiative designation is said to “have the initiative.” The initiative carries two inherent rules. First, whenever a player takes the initiative, and at the beginning of the upkeep of the player with the initiative, that player ventures into Undercity. Second, whenever one or more creatures a player controls deal combat damage to the player who has the initiative, the first player takes the initiative. Also, some abilities will refer to having the initiative and provide other benefits."},{"date":"2022-06-10","text":"There is no initiative in a game until an effect instructs a player to take the initiative. Once a player is instructed to do this, they have the initiative until another player takes the initiative."},{"date":"2022-06-10","text":"You cannot venture into Undercity unless instructed to do so, either because you have the initiative at the beginning of your upkeep or because you take the initiative. Notably, if you aren’t in a dungeon and an effect instructs you to venture into the dungeon (not venture into Undercity), you can’t start Undercity."}],"rarities":["rare"]},"secrets of the key":{"name":"Secrets of the Key","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Investigate. If this spell was cast from a graveyard, investigate twice instead. (Create a Clue token. It's an artifact with \"{2}, Sacrifice this token: Draw a card.\")\nFlashback {3}{U}","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"Mana","data":{"type":"Cost","shards":["Blue"],"generic":3}}}],"abilities":[{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"ConditionInstead","inner":{"type":"CastFromZone","zone":"Graveyard"}},"optional_targeting":false,"optional":false,"repeat_for":{"type":"Fixed","value":2},"forward_result":false},"duration":null,"description":"Investigate. If this spell was cast from a graveyard, investigate twice instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"55c7ce94-3cd3-42f3-9dd8-0c118fa626c8","metadata":{"related_token_ids":["57ae50b3-6f72-5a02-b3f4-49da0022bfc9","d5f5a562-498f-5454-8027-47b398224f68"],"source_printing_ids":["9b022ba8-07b6-4993-99c8-89c6dcb19e60","c136e3ee-5134-480e-a322-69c9ed9b4677"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID"],"rulings":[{"date":"2021-09-24","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2021-09-24","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-09-24","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2021-09-24","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-09-24","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-09-24","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["common"]},"seeds of innocence":{"name":"Seeds of Innocence","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy all artifacts. They can't be regenerated. The controller of each of those artifacts gains life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy all artifacts. They can't be regenerated. The controller of each of those artifacts gains life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"f5ebad5c-9675-4a37-b76c-760416083939","metadata":{"source_printing_ids":["f9c868f5-0f90-4f7e-bafb-c45d2372fe06"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rarities":["rare"]},"seek":{"name":"Seek","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Search target opponent's library for a card and exile it. You gain life equal to its mana value. Then that player shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Exile","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Search target opponent's library for a card and exile it. You gain life equal to its mana value. Then that player shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red","White"],"scryfall_oracle_id":"60e59923-ecd9-457e-b772-693138e05ab2","metadata":{"source_printing_ids":["ac347ec8-4537-4cdf-aeff-44da1f7be01b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"layout":"split","printings":["DIS"],"rarities":["rare"]},"selfless exorcist":{"name":"Selfless Exorcist","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"{T}: Exile target creature card from a graveyard. That card deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Tap"},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{T}: Exile target creature card from a graveyard. That card deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"78e875b1-e621-4bf0-ad81-24ed9e2b43f8","metadata":{"source_printing_ids":["c9b1c300-aec3-4512-9902-309615e86c73"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["JUD"],"rulings":[{"date":"2013-04-15","text":"The reminder text printed on Selfless Exorcist is no longer correct. Abilities that define a creature’s power (and toughness) apply in every zone. The value of * is defined by such an ability."}],"rarities":["rare"]},"semblance anvil":{"name":"Semblance Anvil","mana_cost":{"type":"Cost","shards":[],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Imprint — When this artifact enters, you may exile a nonland card from your hand.\nSpells you cast that share a card type with the exiled card cost {2} less to cast.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Exile","target":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you may exile a nonland card from your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":2},"spell_filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"SharesQuality","quality":"CardType","reference":{"type":"ExiledBySource"}}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Spells you cast that share a card type with the exiled card cost {2} less to cast."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"bbd0c406-c995-46e0-898d-375fdbede203","metadata":{"source_printing_ids":["0380b46d-1660-404d-9d11-705d8809ea46"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","SOM"],"rulings":[{"date":"2011-01-01","text":"Artifact, battle, creature, enchantment, instant, kindred, planeswalker, and sorcery are card types."},{"date":"2011-01-01","text":"Semblance Anvil can reduce the amount you pay for a spell's cost that includes {X}. For example, Blaze is a sorcery that costs {X}{R}. If the card exiled with Semblance Anvil is a sorcery, and you want to cast Blaze with X equal to 5, you'll have to pay only {3}{R}. This is true even if the ability states that {X} must be paid with a certain color of mana (as Drain Life does)."},{"date":"2011-01-01","text":"Semblance Anvil takes the total cost to cast a spell into account, not just its mana cost. This includes additional costs (such as kicker) and alternative costs (such as evoke). It also includes cost increases from other sources (such as Lodestone Golem's ability)."},{"date":"2011-01-01","text":"Semblance Anvil won't affect the part of a spell's cost represented by colored mana symbols. For example, a spell that normally costs {1}{U} to cast would cost {U} if it shared a card type with the exiled card."},{"date":"2011-01-01","text":"Semblance Anvil's cost reduction effect is mandatory."},{"date":"2011-01-01","text":"Spells you cast that share multiple card types with the exiled card still cost just {2} less to cast. They don't get a greater cost reduction."}],"rarities":["rare"]},"serene offering":{"name":"Serene Offering","mana_cost":{"type":"Cost","shards":["White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target enchantment. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target enchantment. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"6cef0548-6010-4781-8e83-431d014dd1da","metadata":{"source_printing_ids":["6c0b3795-7f30-4c61-b5d8-f238055d6be1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["TMP"],"rarities":["uncommon"]},"serpent's soul-jar":{"name":"Serpent's Soul-Jar","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever an Elf you control dies, exile it.\n{T}, Pay 2 life: Until end of turn, you may cast a creature spell from among cards exiled with this artifact.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"CastFromZone","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Exile"}]},{"type":"ExiledBySource"}]},"without_paying_mana_cost":false,"mode":"Cast","duration":"UntilEndOfTurn"},"cost":{"type":"Composite","costs":[{"type":"Tap"},{"type":"PayLife","amount":{"type":"Fixed","value":2}}]},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{T}, Pay 2 life: Until end of turn, you may cast a creature spell from among cards exiled with ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever an Elf you control dies, exile it.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"5d451958-25f3-4e70-8be2-c832f60f39e9","metadata":{"source_printing_ids":["08ae371f-ce62-475f-89a2-1f8a17cf950f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["KHC"],"rulings":[{"date":"2021-02-05","text":"Players can respond to the triggered ability that exiles the card from your graveyard by removing it in some other way. If the card leaves the graveyard before the ability of Serpent's Soul-Jar exiles it, Serpent's Soul-Jar won't let you cast it."},{"date":"2021-02-05","text":"The activated ability doesn't change when you can cast the creature spell. In most cases, this means during your main phase while the stack is empty, although flash may change this."}],"rarities":["rare"]},"serra's emissary":{"name":"Serra's Emissary","mana_cost":{"type":"Cost","shards":["White","White","White"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Angel"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Flying\nAs this creature enters, choose a card type.\nYou and creatures you control have protection from the chosen card type.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddKeyword","keyword":{"Protection":"ChosenCardType"}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You and creatures you control have protection from the chosen card type."},{"mode":{"PlayerProtection":"ChosenCardType"},"affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You and creatures you control have protection from the chosen card type."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CardType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a card type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"7a56c6e1-0509-4783-9b29-cf3163977166","metadata":{"source_printing_ids":["216ee3a4-6be1-46f4-87e7-d2e86b0cb65c","8de657fb-e68e-4400-9a12-60aaaa075fc4","b6534049-3045-4546-b1e8-e5b1b0df5f56"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["J21","MH2","PMH2"],"rulings":[{"date":"2021-06-18","text":"The card type choice is a replacement effect, not a triggered ability. It doesn't use the stack and can't be responded to. Notably, if you choose instant, your opponent can't try to cast an instant on the Emissary before it has protection."},{"date":"2021-06-18","text":"You may choose any card type. The ones that may appear in a normal game of Magic are artifact, battle, creature, enchantment, instant, kindred, land, planeswalker, and sorcery. Supertypes such as snow and basic may not be chosen. Subtypes such as Angel, Aura, and Forest also may not be chosen."}],"rarities":["mythic"]},"sever soul":{"name":"Sever Soul","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. You gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"577d027a-96c3-46fe-880b-f8b5dd3f3a3d","metadata":{"source_printing_ids":["4f5229ee-099a-4b19-8bb8-367f4c7cdc85","93c25ea3-1f01-4dcd-9d2d-d7fb85712110","c2d84fec-18f1-4231-a293-0dc1ff868a40","df1cb775-3a45-4f2c-9c45-febda6434c59"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["8ED","MMQ","PHUK","PLST","PSAL"],"rarities":["common","uncommon"]},"shalai and hallar":{"name":"Shalai and Hallar","mana_cost":{"type":"Cost","shards":["Red","Green","White"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Angel","Elf"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying, vigilance\nWhenever one or more +1/+1 counters are put on a creature you control, Shalai and Hallar deals that much damage to target opponent.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Vigilance"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more +1/+1 counters are put on a creature you control, ~ deals that much damage to target opponent.","constraint":null,"condition":null,"counter_filter":{"counter_type":"P1P1"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red","White"],"color_identity":["Green","Red","White"],"scryfall_oracle_id":"e7604cd9-d00d-4957-82c9-46a7cdb88209","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0dcb27cd-e5f1-46c6-b7cf-33fa90335459","80804f25-efc3-44a2-bbae-9a97fec98009"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC"],"rarities":["mythic"]},"sheltering word":{"name":"Sheltering Word","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gains hexproof until end of turn. You gain life equal to that creature's toughness. (A creature with hexproof can't be the target of spells or abilities your opponents control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Hexproof"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain hexproof"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gains hexproof until end of turn. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"77aaaad5-7960-453d-b024-6dacbca3d606","metadata":{"source_printing_ids":["93cd9be4-1ce4-4a7c-b2a6-98d3fde0a92b","c178ff60-30db-4d71-9f13-56e5b8407a6f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["AVR","PLST"],"rulings":[{"date":"2012-05-01","text":"If a creature gains hexproof in response to a spell or ability controlled by an opponent that targets only it, that spell or ability doesn’t resolve for having an illegal target when it tries to resolve."}],"rarities":["common"]},"sheoldred's edict":{"name":"Sheoldred's Edict","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Each opponent sacrifices a nontoken creature of their choice.\n• Each opponent sacrifices a creature token of their choice.\n• Each opponent sacrifices a planeswalker of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Token"}]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"217062f5-96f1-454c-9507-17f34ef37070","modal":{"min_choices":1,"max_choices":1,"mode_count":3,"mode_descriptions":["Each opponent sacrifices a nontoken creature of their choice.","Each opponent sacrifices a creature token of their choice.","Each opponent sacrifices a planeswalker of their choice."],"allow_repeat_modes":false,"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["838201e5-42ec-426e-b24d-6ca77140cd07","a9225cc3-90f0-448f-a8d9-7c6c2796d077","c32ae26c-cba4-4226-8a60-62fd95558ce8","d7d6e50e-d339-49b5-ab97-4b38bba7c187"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ONE","PLG24","PLST","SOA"],"rarities":["uncommon","rare"]},"sheoldred's restoration":{"name":"Sheoldred's Restoration","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {2}{W} (You may pay an additional {2}{W} as you cast this spell.)\nReturn target creature card from your graveyard to the battlefield. If this spell was kicked, you gain life equal to that card's mana value. Otherwise, you lose that much life.\nExile Sheoldred's Restoration.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["White"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target creature card from your graveyard to the battlefield. If this spell was kicked, you gain life equal to that card's mana value. Otherwise, you lose that much life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","White"],"scryfall_oracle_id":"df587772-516f-4ae8-aefe-e6fc63f8b365","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":2}}]}},"metadata":{"source_printing_ids":["ed719f25-1aab-4a1e-8c9f-dd574db5de0c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"If the target creature card is an illegal target as Sheoldred's Restoration tries to resolve (usually because the card has been removed from the graveyard in response), it won't do anything. You won't gain or lose life, and Sheoldred's Restoration will go to the graveyard rather than be exiled by its last ability."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["uncommon"]},"shifting woodland":{"name":"Shifting Woodland","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control a Forest.\n{T}: Add {G}.\nDelirium — {2}{G}{G}: This land becomes a copy of target permanent card in your graveyard until end of turn. Activate only if there are four or more card types among cards in your graveyard.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {G}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"BecomeCopy","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"duration":"UntilEndOfTurn"},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green","Green"],"generic":2}},"sub_ability":null,"duration":"UntilEndOfTurn","description":"Delirium — {2}{G}{G}: ~ becomes a copy of target permanent card in your graveyard until end of turn. Activate only if there are four or more card types among cards in your graveyard.","target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":{"type":"ZoneCardTypeCountAtLeast","zone":"Graveyard","count":4}}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control a Forest.","condition":{"type":"UnlessControlsSubtype","subtypes":["Forest"]},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7c2a4fe5-43e8-4e20-bef2-0278d18afc4b","metadata":{"source_printing_ids":["059164e1-894d-4586-9800-e60d6fbd6eb6","890e97b5-6750-4fae-8481-1244e311da7e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Any effects that applied to Shifting Woodland before it becomes a copy of another card will continue to apply after it becomes a copy. The same is true of any counters that are on Shifting Woodland."},{"date":"2024-06-07","text":"Because Shifting Woodland isn't entering the battlefield when it becomes a copy of a card, any \"When [this creature] enters the battlefield\" or \"[This creature] enters the battlefield with\" abilities of the copied card won't apply."},{"date":"2024-06-07","text":"If a card in your graveyard has {X} in its mana cost, X is considered to be 0."},{"date":"2024-06-07","text":"Shifting Woodland copies exactly what was printed on the original card and nothing else. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2024-06-07","text":"You must already control a Forest as Shifting Woodland enters the battlefield for it to enter untapped. If it enters the battlefield at the same time as a Forest when you control no other Forests, it will enter tapped."}],"rarities":["rare"]},"shock":{"name":"Shock","mana_cost":{"type":"Cost","shards":["Red"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Shock deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":"~ deals 2 damage to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"a9d288b8-cdc1-4e55-a0c9-d6edfc95e65d","metadata":{"source_printing_ids":["00365412-41db-427c-9109-8f69c17c326d","0f568875-9ccb-487f-8977-cce816bb3a28","297d1cef-c181-481b-912c-385b81efd972","298747bb-eb40-4b58-bb22-4ac2bc1d795c","2fbec2ea-7b60-4c51-9782-52ccdd96c4b7","334ad39a-4088-4530-8f3c-d34e7cc99fae","3c866bdb-ff94-4f3f-8429-e72c2cbb94ef","4aef9732-28a6-4e6a-b1ba-79b28d85d78b","59fa8e8d-bcb8-47bf-b71a-df11c8d0f2c9","63ecf91b-853b-41a5-b655-18cfeeddbab6","68a68db8-5e4e-4c98-a319-7717cc39e831","69a5dbe6-e671-4aec-845b-2e86912d69c6","6f096de6-995a-4c54-9e9e-b46410d6022d","760b41a1-c087-4b11-b8a0-fb01d8a4c0c6","83c92b5d-103c-4719-a850-690a7010291a","a706d6a1-e398-41d8-b28b-060023300dda","b8fed52c-e84e-41c9-b683-d8b26fa03c5f","bf5a0e1e-5239-41f3-a63f-d9303b1b01fc","c8828ece-9583-429b-8013-35cfca955721","daef5f10-ccb5-4304-b04f-b52a7d2f4158","ea653772-a5fe-4416-bef3-fd41133371db","ec8b241a-a58e-440a-8591-91dce118bd95","efd56707-4a27-4102-a517-ed65436376aa","f8314410-53e1-4264-87f1-5c6484670693","f9b2ff2a-6dfe-4635-8da2-22d525e82b94"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","6ED","7ED","8ED","9ED","AER","ANB","BBD","BTD","DDN","DPA","FNM","J25","M12","M14","M19","M20","M21","MAR","MKM","OM1","OMB","ONS","PLST","PMEI","PRM","PS11","PSAL","SPM","STA","STH","WC98","WC99"],"rarities":["common"]},"showstopping surprise":{"name":"Showstopping Surprise","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose target creature you control. Turn it face up if it's face down. Then it deals damage equal to its power to each other creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"turn","description":"Turn it face up if it's face down"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Choose target creature you control. Turn it face up if it's face down. Then it deals damage equal to its power to each other creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"e16cbcbd-b03a-404c-8d1e-0a05848181d9","metadata":{"source_printing_ids":["1ffdad45-0111-4c6a-bfb0-25aeee7aea1d","299028df-9dac-43c3-a11d-b5f076101ced"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MKC"],"rulings":[{"date":"2024-02-02","text":"If the target creature is a face-down creature that can’t be turned face up for any reason, it will remain face down on the battlefield and still deal damage equal to its power (which is very likely to be 2) to each other creature."}],"rarities":["rare"]},"shrink":{"name":"Shrink","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets -5/-0 until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":-5},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"Target creature gets -5/-0 until end of turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"252330b1-67cf-4d9e-a413-917ba61e731f","metadata":{"source_printing_ids":["30785867-32f7-46c9-94c2-775078e792ae","84f96537-76d2-4887-b17f-b8297fa50fd5","c4e319d7-53f3-40e8-9a75-fe1fd8716733","d9f4eaa1-3c2b-4f5d-8d4e-98d153899873"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["5ED","HML","ME2"],"rarities":["common"]},"shriveling rot":{"name":"Shriveling Rot","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Choose one —\n• Until end of turn, whenever a creature is dealt damage, destroy it.\n• Until end of turn, whenever a creature dies, that creature's controller loses life equal to its toughness.\nEntwine {2}{B} (Choose both if you pay the entwine cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Entwine":{"type":"Cost","shards":["Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"whenever","description":"whenever a creature is dealt damage, destroy it"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9ce8691a-d9e2-45b2-bda0-2c3891b55307","modal":{"min_choices":1,"max_choices":2,"mode_count":2,"mode_descriptions":["Until end of turn, whenever a creature is dealt damage, destroy it.","Until end of turn, whenever a creature dies, that creature's controller loses life equal to its toughness."],"allow_repeat_modes":false,"entwine_cost":{"type":"Cost","shards":["Black"],"generic":2},"chooser":{"type":"Controller"}},"metadata":{"source_printing_ids":["25c255d5-9246-4a93-8750-0da8871fb12d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DST"],"rarities":["rare"]},"sifter wurm":{"name":"Sifter Wurm","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Wurm"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":7},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen this creature enters, scry 3, then reveal the top card of your library. You gain life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, scry 3, then reveal the top card of your library. You gain life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ed36b1f6-2922-46a9-b48d-b9ebedb9a142","metadata":{"source_printing_ids":["492ff217-1bf6-4942-8d2f-8ddd71da683f","5dbaf7e3-e2fc-4399-aa83-c13df43008a0","c330b248-282b-4aa5-80de-f0656304e697"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","CMR","HOU"],"rulings":[{"date":"2020-11-10","text":"For cards in your library with {X} in their mana costs, X is considered to be 0."},{"date":"2020-11-10","text":"Once Sifter Wurm's triggered ability begins to resolve, no player may take other actions until it's done. Notably, opponents can't try to change your library after you scry but before you reveal the top card of your library."}],"rarities":["uncommon"]},"signature slam":{"name":"Signature Slam","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control, then each modified creature you control deals damage equal to its power to target creature you don't control. (Equipment, Auras you control, and counters are modifications.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Put a +1/+1 counter on target creature you control, then each modified creature you control deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5ae23752-47a6-4031-8398-b8f6c77cfaad","metadata":{"source_printing_ids":["634e05c9-96da-467a-870d-3af68da53071"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"A creature that is equipped is considered modified no matter who controls the Equipment that's attached to it."},{"date":"2024-06-07","text":"A creature with a counter on it is considered modified no matter what kind of counter it is or which player put it on that creature."},{"date":"2024-06-07","text":"An Aura controlled by another player does not cause a creature you control to be modified."},{"date":"2024-06-07","text":"If the creature you control is an illegal target as Signature Slam tries to resolve but the creature you don't control is still a legal target, each modified creature you control (which may include the target creature you control if it's still on the battlefield) will still deal damage equal to its power to the creature you don't control."},{"date":"2024-06-07","text":"If the creature you don't control is an illegal target as Signature Slam tries to resolve but the creature you control is a legal target, you'll still put a +1/+1 counter on the target creature you control."}],"rarities":["uncommon"]},"sin prodder":{"name":"Sin Prodder","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Devil"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Menace\nAt the beginning of your upkeep, reveal the top card of your library. Any opponent may have you put that card into your graveyard. If a player does, this creature deals damage to that player equal to that card's mana value. Otherwise, put that card into your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Graveyard","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"else_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"optional_for":"AnyOpponent","target_choice_timing":"Resolution","forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, reveal the top card of your library. Any opponent may have you put that card into your graveyard. If a player does, ~ deals damage to that player equal to that card's mana value. Otherwise, put that card into your hand.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"745efa76-7063-4971-9d1b-b2b4cb336a57","metadata":{"source_printing_ids":["ad61d59f-0933-469e-a962-6768d6a919c2","cefeb031-9dda-4717-a8d1-e2c21551e43a","db89172e-0542-4858-9e65-38b1bac8cdeb"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["JMP","PSOI","SIR","SOI"],"rulings":[{"date":"2016-04-08","text":"Each opponent in turn order, starting with the one after you in turn order, may choose to have you put that card into your graveyard. Once a player does so, Sin Prodder deals damage equal to that card's mana value to that player immediately and Sin Prodder's trigger has no further action."}],"rarities":["rare"]},"singe-mind ogre":{"name":"Singe-Mind Ogre","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ogre","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, target player reveals a card at random from their hand, then loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"RevealHand","target":{"type":"Player"},"card_filter":{"type":"None"},"count":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, target player reveals a card at random from their hand, then loses life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"a0f26f84-9607-4411-bca5-681ba4e57756","metadata":{"source_printing_ids":["ab1564d7-43fe-4072-91a6-622713848b7e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["ARB"],"rarities":["common"]},"sister hospitaller":{"name":"Sister Hospitaller","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Medicus Ministorum — When this creature enters, return target creature card from your graveyard to the battlefield. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature card from your graveyard to the battlefield. You gain life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"06c39c1c-0e34-4ef0-bd06-23245cb9cc59","metadata":{"source_printing_ids":["69ae36ca-683b-4557-9c2a-130db4150152","fb086307-b089-45ba-81d3-789ed35dc5b8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rulings":[{"date":"2022-10-07","text":"Use the mana value of the card as it last existed in the graveyard to determine the amount of life you gain."}],"rarities":["rare"]},"skullwinder":{"name":"Skullwinder","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhen this creature enters, return target card from your graveyard to your hand, then choose an opponent. That player returns a card from their graveyard to their hand.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":{"ChosenPlayer":{"index":0}}},{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target card from your graveyard to your hand, then choose an opponent. That player returns a card from their graveyard to their hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d3d8dd6e-a80b-4063-a542-ff67ef8dad4f","metadata":{"source_printing_ids":["0d53c93a-3d02-4a89-bf3a-58c19d861f9b","6133735c-37ea-4c91-a848-59bc47dcb0b7","94d406ed-bf60-4adc-9721-e64d1313f6b7","96105316-a060-4bb6-9144-491b0c14e5d6","cb7f2e86-5445-4835-8cad-e08aea651ebb","e820c022-c3a8-4c98-a60b-1fb105d38937","e90c4b81-69b8-4310-9799-431e4da8eb48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C15","C20","CLB","CMA","M3C","OTC","PLST","PZ1"],"rulings":[{"date":"2015-11-04","text":"Skullwinder's enters-the-battlefield ability targets only the card in your graveyard. If that card is an illegal target as the ability tries to resolve, the ability won't resolve and none of its effects will happen. No cards will be returned to any player's hand."},{"date":"2015-11-04","text":"You choose the opponent as the ability is resolving. You may choose an opponent with no cards in their graveyard."},{"date":"2022-06-10","text":"Skullwinder's enters-the-battlefield ability targets only the card in your graveyard. If that card is an illegal target as the ability tries to resolve, the ability won't resolve and none of its effects will happen. No cards will be returned to any player's hand."},{"date":"2022-06-10","text":"The chosen opponent gets to choose which card to return from their graveyard to their hand."},{"date":"2022-06-10","text":"You choose the target card as you put Skullwinder's triggered ability on the stack, but you don't choose an opponent until after you have returned the card to your hand."},{"date":"2022-06-10","text":"You may choose an opponent with no cards in their graveyard. In that case, they will not get to return anything."}],"rarities":["uncommon"]},"sly spy":{"name":"Sly Spy","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Spy"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature deals combat damage to a player, you may destroy target creature facing right in its art. (Creatures without faces don't face anywhere.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may destroy target creature facing right in its art.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"8ca76d15-a3b8-424e-920a-66d28da6ef62","metadata":{"source_printing_ids":["596ee7af-cc78-41b5-93c5-945189d5e46c","5d37a3fc-d652-4c87-892e-bf8b8dc71e35","94008ffb-f0fe-4e83-bf73-d8ade4104d86","bdaf902f-4139-4a54-a519-a60aea84e669","e5d4df93-078e-4266-82f2-cf4fc5945ce3","ebc2eae1-8e24-4bef-aa03-a3e428f291a1"]},"legalities":{},"printings":["UST"],"rulings":[{"date":"2018-01-19","text":"A creature is facing right if it’s facing the side of the card where the mana cost normally is."},{"date":"2018-01-19","text":"If there are multiple figures in the art, the one depicting the creature itself is the one that counts."}],"rarities":["uncommon"]},"sol ring":{"name":"Sol Ring","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}{C}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}{C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"6ad8011d-3471-4369-9d68-b264cc027487","metadata":{"source_printing_ids":["04002706-2236-4b79-bdea-4f263e43cb9c","06be8262-4636-4a2c-a0c8-de741cf45aed","0afa0e33-4804-4b00-b625-c2d6b61090fc","0d38ff41-a60c-4d70-92e4-4d3d3ab073a3","0ddf922b-2005-411c-9537-ab2884b54507","0f003fde-be17-4159-a361-711ed0bee911","0f44a54b-512e-45ef-80ee-7982d2eaf762","13788423-db82-4e76-83ad-3f812a4d547a","14dbce79-1fcc-4cc9-bf38-7729e44a411e","16089845-be81-4fc2-82a8-8a28ec7e20d4","16a2c470-b2b8-4633-89b1-7b936bcaff8d","16fbbd8d-bb18-4a8b-95a4-30ad6d548f72","180000d4-6844-4292-b768-b1f74a3b8b2d","19911e6e-7c35-4281-b31c-266382f052cc","199cde21-5bc3-49cd-acd4-bae3af6e5881","1abcafa9-0f27-482f-95a9-24520f0106b8","1b023575-4cb5-434f-92ef-d3b81aaa3c3e","1b3a4537-1d51-47ac-a12e-6b8d68f530e6","21365def-bec7-4ec0-a1e9-34c85bf6c274","2418af21-7be9-4dec-8be6-4d0bcf84a7ca","27ea0aa3-30c0-4eb4-b262-ce70781277ce","2824f3fb-82e6-43bd-babf-da6777a5b075","286bea73-8ad8-4423-8a7c-8497420fdb54","2c52c96d-e20f-4025-b759-674b36cf0db3","2d47121d-8b90-4d28-9ffa-0a640b9dd611","2f18e125-ac4a-45d0-8055-98f59c77324e","33773feb-5b49-4d44-adca-93b99009acc0","3459b229-7c46-4f70-87d4-bb31c2c17dd9","38d347b7-dc17-417a-ab07-29fe99b9a101","3917f744-b876-47ae-94ad-f72b215ff1e7","3dd5ea51-68f7-4c12-a96b-8caca0d54640","3e10052f-b3e5-4a2c-b268-9a12ce354eb9","40c825d3-004f-4dea-9d82-815617fb0a41","46ca0b66-a000-4483-b916-f5b89e710244","4cbc6901-6a4a-4d0a-83ea-7eefa3b35021","4f943781-ce41-40e2-9c45-25dcd24f0090","508b2c62-a344-4897-a3a4-4f0555627fc1","5805f64c-dd88-4e94-8f0a-a01dae67e3ba","58b26011-e103-45c4-a253-900f4e6b2eeb","5b9fe249-9bda-462b-922c-f01c904c233a","60bc8cfc-8f68-4ec7-92a7-98380d92f69e","65b145dd-8529-4bff-b381-b4be53f24b54","6714ffab-5950-4cb7-9b25-d7423dda9ccc","69c43267-e862-4c08-ae7b-0d400d31f297","6c5c9437-3d99-4a7c-8255-9acdcb1acc40","6d5b06e4-bbc8-405b-bc53-1380dba3696e","74109c41-d1e7-4108-bed1-3d9110d5e7d2","7454e0cc-98c2-48a1-b2c9-49908d2aedcc","76cd916c-7464-4391-814b-09eac0d8d204","772edef7-2f17-4244-b1bb-4e7a53c253e1","7a8db21f-722b-4a07-985b-8d25a0b0006a","7b0ccfd4-f118-4497-9c5a-54cf12000e16","7bf22be9-bf1a-48ec-a825-d19504f9dfcc","7d698bdd-b485-409d-b03e-c7c7d3fe9a92","7fccf54e-c257-4be6-af85-4e0a0fb42f36","803fd65f-4ca6-4fe4-abc2-72aa32ebb3a5","82f1a8a3-7fdb-49a3-9649-b5c0b4755cd5","835df088-5860-46b1-9c4d-3607d0293963","83a0f2eb-2f6d-4aaa-b7a9-ea06d5de7eca","842c3df8-43c9-4555-901c-67cdbfd26348","858e0b83-7927-4e34-ae25-6ad7a787ad97","870ec754-a76c-40ea-9b81-81b3dca1f62c","8a5edac3-855a-4820-b913-44de5b29b7d0","8ae6d023-2945-47f1-bc9f-f9c5ff9f5282","8f69a74a-778c-4a1d-99ad-6ca04771fb23","8fb860f9-3729-436e-adfb-c98c2a389d5d","90f2398b-d41e-4e4b-bc93-5a1f34b52345","9138d11a-d55f-4c46-bb27-7e8e15a44e8c","9a34ac23-e318-4c0b-ab4c-e1eaa0e2547e","9ef06694-e05d-4e96-a588-bd276447dcf8","9f4d9a0c-5a9a-4486-b8a0-942e73688fb4","9fac535f-46a3-440b-bb93-6fe4b2dba600","a8260eef-5ff2-4058-8aa5-469b402eaf65","aa21fc27-42d0-456a-9882-34d7f404270b","ab696cab-2d83-444f-8068-dbf071c75de9","acce65cc-9093-45a6-8c86-97edce545050","af88e4e8-b694-4ec0-8885-701ea30bf84c","b162b131-5612-4605-9de8-a5731eeac37e","b68a8c69-0e59-4491-9e4d-4c50600a035e","b79cb394-eb91-4b3b-91d4-c6a0f723feb1","beebe533-29b9-4041-ab66-0a8233c50d56","c0fb91ec-20a8-4c13-9469-18885b1ecca3","c1f93f78-645b-4f21-a80b-5542f3328111","c4300d24-1cae-4dd5-be7e-38cc677cf5bd","c46138f0-224a-4ca9-bf03-badb2ae5ee21","c5430a1d-a575-4853-93f2-635c327eea15","c6399a22-cebf-4c1d-a23e-4c68f784ac1b","c6721419-70aa-4137-98d5-98ef17720c8e","c946b161-0e4f-4c0a-a075-cdcf05504d0b","ca15027f-0f32-4018-9da8-50e4002fa6f8","ca57eebe-5bc9-4cff-ae91-ccd509aa36ce","d105068a-d4f1-4971-b5a0-72806a798497","d1d8d32d-ebb2-46c2-b909-b7f71d33159e","d582b3c3-996e-4f4b-9efd-134e127d563c","d74a72a2-d46a-41c2-a400-70571197b020","d75bfbe3-41a0-44e1-86ce-f56c9bcf57d7","d9e098aa-a886-430e-8f11-78fb6f2d8ada","db0dfaa7-40b2-4065-9cef-22e6af8ad53c","e07f656c-97b5-4147-821a-edbb49f34e19","e1187999-521d-4ed0-8673-6eb8f3c58bb8","e3450882-d791-4172-b02a-ee7fdb36acfc","e3b2235b-6c18-436e-9d80-4a82ce0cac14","e672d408-997c-4a19-810a-3da8411eecf2","e675f7e2-5c9f-4912-8fdd-daaeda284a3d","ebfcda26-1f28-4d60-bc7b-8c0bafc6b132","eca9ae7b-a6d9-43ea-92d4-0110fd6643a7","ee6e5a35-fe21-4dee-b0ef-a8f2841511ad","f19a0013-ebf9-4472-a2ed-462c59d212a5","f2301532-a61f-4038-b771-6c34b6505b09","f48f7190-9ee3-477f-8b25-91e8c2916624","f9a32f17-49c4-4654-a087-1ba474f37377","fe202721-c5be-46de-9fb3-ac18c699e10d","fff440c0-7e6a-46c2-9989-f1b5af20fd44"]},"legalities":{"commander":"legal","duel":"banned","legacy":"banned","oathbreaker":"banned","vintage":"restricted"},"printings":["2ED","30A","3ED","40K","AFC","BLC","BRC","C13","C14","C15","C16","C17","C18","C19","C20","C21","CC1","CC2","CED","CEI","CLB","CM2","CMA","CMD","CMM","CMR","DMC","DRC","DSC","ECC","EOC","FBB","FDC","FIC","G05","KHC","LCC","LEA","LEB","LTC","M3C","MB2","ME4","MIC","MKC","MOC","MPS","NCC","NEC","ONC","OTC","PF19","PFDN","PIP","PLG22","PLST","PRM","PZ1","SCD","SLC","SLD","SOC","SUM","TDC","TLE","TMC","V10","VMA","VOC","WHO","WOC","ZNC"],"rarities":["common","uncommon","rare","mythic"]},"solitude":{"name":"Solitude","mana_cost":{"type":"Cost","shards":["White","White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Incarnation"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flash\nLifelink\nWhen this creature enters, exile up to one other target creature. That creature's controller gains life equal to its power.\nEvoke—Exile a white card from your hand.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Lifelink",{"Evoke":{"type":"NonMana","data":{"type":"Exile","count":1,"zone":"Hand","filter":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"HasColor","color":"White"},{"type":"InZone","zone":"Hand"}]}}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile up to one other target creature. That creature's controller gains life equal to its power.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.74a: When this permanent enters, if its evoke cost was paid, sacrifice it.","constraint":null,"condition":{"type":"CastVariantPaid","variant":"Evoke"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dcb9c2a7-ae54-4ddc-a567-640bf4bf4366","metadata":{"source_printing_ids":["0150e5a9-99d8-4d81-be9c-3a8e98a41758","47a6234f-309f-4e03-9263-66da48b57153","bbc46960-fdf1-4227-93b8-3fd778be896b","febad44a-eaf0-4122-87c5-a12d17f28392"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["H2R","MH2","PMH2","PRM","SLD","SPG"],"rulings":[{"date":"2021-06-18","text":"If you pay the evoke cost, you can have the creature's own triggered ability resolve before the evoke triggered ability. You can cast spells after that ability resolves but before you have to sacrifice the creature."},{"date":"2021-06-18","text":"To determine the total cost of a spell, start with the mana cost or alternative cost you're paying (such as an evoke cost), add any cost increases, then apply any cost reductions. The mana value of the spell is determined by only its mana cost, no matter what the total cost to cast that spell was."}],"rarities":["mythic"]},"sorin the mirthless":{"name":"Sorin the Mirthless","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sorin"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Look at the top card of your library. You may reveal that card and put it into your hand. If you do, you lose life equal to its mana value.\n[−2]: Create a 2/3 black Vampire creature token with flying and lifelink.\n[−7]: Sorin deals 13 damage to any target. You gain 13 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":1},"destination":null,"keep_count":0,"up_to":false,"filter":{"type":"Any"},"rest_destination":null,"reveal":false,"enter_tapped":false},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Reveal","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Look at the top card of your library. You may reveal that card and put it into your hand. If you do, you lose life equal to its mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Vampire","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"types":["Creature","Vampire"],"colors":["Black"],"keywords":["Flying","Lifelink"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":null,"duration":null,"description":"[−2]: Create a 2/3 black Vampire creature token with flying and lifelink.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":13},"target":{"type":"Any"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":13}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−7]: Sorin deals 13 damage to any target. You gain 13 life.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fbffaf9f-40e7-4113-a037-533b733cebce","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["fe9ee815-6717-5dbc-9c88-30054c02cd69"],"source_printing_ids":["112394a6-7819-43b4-adad-f6900aff2936","260d784d-0213-44da-8f78-58968a185012","51089813-8ad5-4ee0-af75-cfba870b675c","cc7ff5f4-a7cc-41a1-a22b-8cf67ad18707","d1a38e25-297f-43e1-9455-73f00eb08cec"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"If you choose not to reveal the card you looked at with Sorin's first loyalty ability, it stays on top of your library."}],"rarities":["mythic"]},"sorin, grim nemesis":{"name":"Sorin, Grim Nemesis","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Sorin"]},"power":null,"toughness":null,"loyalty":"6","defense":null,"oracle_text":"[+1]: Reveal the top card of your library and put that card into your hand. Each opponent loses life equal to its mana value.\n[−X]: Sorin deals X damage to target creature or planeswalker and you gain X life.\n[−9]: Create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the highest life total among all players.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"[+1]: Reveal the top card of your library and put that card into your hand. Each opponent loses life equal to its mana value.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"[−X]: ~ deals X damage to target creature or planeswalker and you gain X life."},"cost":null,"sub_ability":null,"duration":null,"description":"[−X]: ~ deals X damage to target creature or planeswalker and you gain X life.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Token","name":"Vampire Knight","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Vampire","Knight"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"AllPlayers","aggregate":"Max"}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":{"type":"Loyalty","amount":-9},"sub_ability":null,"duration":null,"description":"[−9]: Create a number of 1/1 black Vampire Knight creature tokens with lifelink equal to the highest life total among all players.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"0a01dd05-e289-489f-b3ad-88e15e157bd0","brawl_commander":true,"is_oathbreaker":true,"metadata":{"related_token_ids":["101bbc93-a09f-5922-a6cc-3a258ec33722","5a28cd23-684e-554a-87dd-710c22b6f805"],"source_printing_ids":["829fba64-6708-40a9-b134-3cdfbf2c648f","c2933144-c931-498a-9e91-f5165873c3b7","d25c3609-a200-4532-9df8-8e92c24544bc"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["PSOI","SIR","SLD","SOI"],"rulings":[{"date":"2016-04-08","text":"If a card in your library has {X} in its mana cost, X is considered to be 0."},{"date":"2016-04-08","text":"In a Two-Headed Giant game, the highest life total among all players is the highest life total among all teams."}],"rarities":["mythic"]},"soul warden":{"name":"Soul Warden","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f3fad295-1af2-4ecc-8546-b121ad6be27b","metadata":{"source_printing_ids":["122cfae7-ab44-4458-9f1d-ca43f9766777","37fee9ca-a9bc-4369-b71f-69f4183d1c1e","494d4f46-4cf7-40f6-9988-5103146f3ff2","5fe5fe13-b57d-4514-89e6-79909474f7e8","6bbdd169-958f-42df-812d-f75fbed9576f","8e883f62-57de-4005-a937-27d0809ca04a","ad5590a7-dca5-40e3-b760-4d68d99b8740","d563249e-7203-4d54-af5a-82d2f1a584cb","d5ee24ee-4d28-4634-bd43-90eff15c16dd","d96266b3-a7cb-40ce-a328-ac13719fe5f0"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","9ED","BRB","EXO","HA1","HOP","M10","MD1","MM3","PLST","PSAL","SLD","SPG","WC98"],"rulings":[{"date":"2025-01-24","text":"If this creature enters at the same time as one or more other creatures, its ability will trigger for each of those other creatures. "}],"rarities":["common","uncommon","rare"]},"south wind avatar":{"name":"South Wind Avatar","mana_cost":{"type":"Cost","shards":["Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Snake","Spirit","Avatar"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control dies, you gain life equal to its toughness.\nWhenever you gain life, each opponent loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control dies, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false},{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, each opponent loses 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"003e5dc6-8b26-4a0a-a50b-5f0806a7bacd","metadata":{"source_printing_ids":["ac182338-ab26-4f9e-87f9-be83c5cc7cd7","c17bc07c-7147-4c84-aa0b-8a0865fba94e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["TMT"],"rulings":[{"date":"2026-01-27","text":"Each creature with lifelink dealing combat damage causes a separate life-gaining event. For example, if two creatures you control with lifelink deal combat damage at the same time, South Wind Avatar's last ability will trigger twice. However, if a single creature you control with lifelink deals combat damage to multiple creatures, players, planeswalkers, and/or battles at the same time (perhaps because it has trample or was blocked by more than one creature), the ability will trigger only once."},{"date":"2026-01-27","text":"If you gain an amount of life \"for each\" of something or \"equal to the number\" of something, that life is gained as one event and South Wind Avatar's last ability will trigger only once."},{"date":"2026-01-27","text":"In a Two-Headed Giant game, life gained by your teammate won't cause South Wind Avatar's last ability to trigger, even though it caused your team's life total to increase."},{"date":"2026-01-27","text":"South Wind Avatar's last ability triggers just once for each life-gaining event, whether it's 1 life from Illegitimate Business or 3 life from Guac & Marshmallow Pizza."},{"date":"2026-01-27","text":"Use the creature's toughness as it last existed on the battlefield to determine how much life you gain with South Wind Avatar's second ability."}],"rarities":["rare"]},"spellstutter sprite":{"name":"Spellstutter Sprite","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Faerie","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nFlying\nWhen this creature enters, counter target spell with mana value X or less, where X is the number of Faeries you control.","non_ability_text":null,"flavor_name":null,"keywords":["Flash","Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Counter","target":{"type":"And","filters":[{"type":"StackSpell"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Cmc","comparator":"LE","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Faerie"}],"controller":"You","properties":[]}}}}]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, counter target spell with mana value X or less, where X is the number of Faeries you control.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"32e60fb4-e841-4f82-9c83-5e63766e8e6f","metadata":{"source_printing_ids":["181434ed-65eb-4b47-9b12-7bbe6e0d262e","3899605d-2203-4ab6-9ff5-69490382eea4","4e5ba4a9-a282-4d4b-b25a-179e05e458f4","650221f7-d935-498b-a9a1-ec23c89fc5f8","a0e262a3-0e69-4d61-8143-b9d137c31496"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["F11","J22","LRW","MMA","PLST","PRM","SLD"],"rulings":[{"date":"2007-10-01","text":"The value of X needs to be determined both when the ability triggers (so you can choose a target) and again when the ability resolves (to check if that target is still legal). If the number of Faeries you control has decreased enough in that time to make the target illegal, Spellstutter Sprite’s ability won’t resolve (and the targeted spell will resolve as normal)."}],"rarities":["common","rare"]},"spelunking":{"name":"Spelunking","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this enchantment enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the battlefield this way, you gain 4 life.\nLands you control enter untapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":4}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the battlefield this way, you gain 4 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"ChangeZone","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Untap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"description":"Lands you control enter untapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"2962fe4c-bf48-454b-8a6b-0f8253352ae8","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"When this enchantment enters, draw a card, then you may put a land card from your hand onto the battlefield. If you put a Cave onto the batt","line_index":0}],"metadata":{"source_printing_ids":["d3be4257-2316-4a2e-b347-f71c0368a947"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If Spelunking would enter the battlefield at the same time a land you control would enter the battlefield tapped, that land still enters the battlefield tapped."},{"date":"2023-11-10","text":"If a land has an ability that says it enters the battlefield tapped, you choose the order in which that ability's effect and Spelunking's effect apply. This means you can choose to have the land enter tapped or untapped. If a land you control is simply put onto the battlefield tapped without a replacement effect being applied, it always enters untapped if you control Spelunking."}],"rarities":["uncommon"]},"spikeshell harrier":{"name":"Spikeshell Harrier","mana_cost":{"type":"Cost","shards":["Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Robot","Turtle"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, return target creature or Vehicle an opponent controls to its owner's hand. If that opponent's speed is greater than each other player's speed, reduce that opponent's speed by 1. This effect can't reduce their speed below 1.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},{"type":"Typed","type_filters":[{"Subtype":"Vehicle"}],"controller":"Opponent","properties":[]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeSpeed","player_scope":{"type":"ParentObjectTargetController"},"amount":{"type":"Fixed","value":1},"direction":{"type":"Decrease"},"floor":1},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"Speed","player":{"type":"ParentObjectTargetController"}}},"comparator":"GT","rhs":{"type":"Ref","qty":{"type":"Speed","player":{"type":"AllPlayers","aggregate":"Max","exclude":{"type":"ParentObjectTargetController"}}}}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, return target creature or Vehicle an opponent controls to its owner's hand. If that opponent's speed is greater than each other player's speed, reduce that opponent's speed by 1. This effect can't reduce their speed below 1.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"23102d8a-3a93-4e83-af5b-401c85ba9dbc","metadata":{"source_printing_ids":["8f1ece22-ca32-45bb-b5f4-480f9b366cb5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT"],"rarities":["uncommon"]},"spinal embrace":{"name":"Spinal Embrace","mana_cost":{"type":"Cost","shards":["Blue","Blue","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cast this spell only during combat.\nUntap target creature you don't control and gain control of it. It gains haste until end of turn. At the beginning of the next end step, sacrifice it. If you do, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]},"scope":{"type":"Single"},"state":{"type":"Untap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste"}],"duration":"UntilEndOfTurn","target":{"type":"ParentTarget"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Untap target creature you don't control and gain control of it. It gains haste until end of turn. At the beginning of the next end step, sacrifice it. If you do, you gain life equal to its toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"4cf3fb65-9107-428a-8853-029ec97112b5","casting_restrictions":[{"type":"DuringCombat"}],"metadata":{"source_printing_ids":["692ad1eb-62a3-4560-bf8e-35f7db73c7a3","8b647204-715a-4f30-9ba3-f0be3410c0a0","cd12b2d6-3940-4d47-8c76-ae73b8a14b15","fa304be0-3944-42c3-94cd-6568db8a661e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["C13","DMR","INV","ZNC"],"rulings":[{"date":"2022-12-08","text":"You must sacrifice the creature if you still control it as the delayed triggered ability resolves."}],"rarities":["rare"]},"spirebluff canal":{"name":"Spirebluff Canal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control two or fewer other lands.\n{T}: Add {U} or {R}.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["Blue","Red"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {U} or {R}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control two or fewer other lands.","condition":{"type":"UnlessControlsOtherLeq","count":2,"filter":{"type_filters":["Land"],"controller":"You","properties":[{"type":"Another"}]}},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"eb0d8093-5f93-4b25-9384-08f9731bfb28","metadata":{"source_printing_ids":["4e587ea7-0632-4789-ba75-3c410da2bb96","59a04e16-a767-4112-ab01-6ca1b09c286c","9d83bdb3-1f04-4b99-a36b-312da0cbed50","cdd8310d-6a91-46f6-aa85-f73ea37a66a2","f4fc41f3-87d4-4a0d-9ced-d263980378a3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["KLD","KLR","OTJ","PKLD","POTJ","SLD"],"rulings":[{"date":"2016-09-20","text":"If one of these lands enters the battlefield at the same time as one or more other lands (due to Oblivion Sower or Warp World, perhaps), it doesn't take those lands into consideration when determining how many other lands you control."},{"date":"2016-09-20","text":"If one of these lands is your first, second, or third land, it enters the battlefield untapped. If you control three or more other lands, however, it enters the battlefield tapped."}],"rarities":["rare"]},"spirit flare":{"name":"Spirit Flare","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature you control. If you do, it deals damage equal to its power to target attacking or blocking creature an opponent controls.\nFlashback—{1}{W}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Flashback":{"type":"NonMana","data":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"PayLife","amount":{"type":"Fixed","value":3}}]}}}],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Untapped"}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature you control. If you do, it deals damage equal to its power to target attacking or blocking creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d19a2c28-8d09-40bf-aeb1-e699672b009f","metadata":{"source_printing_ids":["efdbe7c6-99ad-4c73-bffe-7bbdc6965854"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["TOR"],"rulings":[{"date":"2004-10-04","text":"If either target is illegal when the spell resolves, it will do no damage."},{"date":"2021-03-19","text":"\"Flashback [cost]\" means \"You may cast this card from your graveyard by paying [cost] rather than paying its mana cost\" and \"If the flashback cost was paid, exile this card instead of putting it anywhere else any time it would leave the stack.\""},{"date":"2021-03-19","text":"A spell cast using flashback will always be exiled afterward, whether it resolves, is countered, or leaves the stack in some other way."},{"date":"2021-03-19","text":"If a card with flashback is put into your graveyard during your turn, you can cast it if it's legal to do so before any other player can take any actions."},{"date":"2021-03-19","text":"To determine the total cost of a spell, start with the mana cost or alternative cost (such as a flashback cost) you're paying, add any cost increases, then apply any cost reductions. The mana value of the spell is determined only by its mana cost, no matter what the total cost to cast the spell was."},{"date":"2021-03-19","text":"You can cast a spell using flashback even if it was somehow put into your graveyard without having been cast."},{"date":"2021-03-19","text":"You must still follow any timing restrictions and permissions, including those based on the card's type. For instance, you can cast a sorcery using flashback only when you could normally cast a sorcery."}],"rarities":["common"]},"spoils of the hunt":{"name":"Spoils of the Hunt","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature you control gets +1/+0 until end of turn for each mana from a Treasure that was spent to cast this spell. Then that creature deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"ManaSpentToCast","scope":"SelfObject","metric":{"type":"FromSource","source_filter":{"type":"Typed","type_filters":[{"Subtype":"Treasure"}],"controller":null,"properties":[]}}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature you control gets +1/+0 until end of turn for each mana from a Treasure that was spent to cast this spell. Then that creature deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c29713ee-57e9-40b4-8ca3-a4cc6ede0f46","metadata":{"source_printing_ids":["10dfdfd4-8621-40ef-a60f-74e9c107bbaf"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR"],"rarities":["common"]},"springheart nantuko":{"name":"Springheart Nantuko","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Insect","Monk"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Bestow {1}{G}\nEnchanted creature gets +1/+1.\nLandfall — Whenever a land you control enters, you may pay {1}{G} if this permanent is attached to a creature you control. If you do, create a token that's a copy of that creature. If you didn't create a token this way, create a 1/1 green Insect creature token.","non_ability_text":null,"flavor_name":null,"keywords":[{"Bestow":{"type":"Cost","shards":["Green"],"generic":1}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"AttachedTo"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Insect","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Insect"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, you may pay {1}{G} if ~ is attached to a creature you control. If you do, create a token that's a copy of that creature. If you didn't create a token this way, create a 1/1 green Insect creature token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddPower","value":1},{"type":"AddToughness","value":1}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature gets +1/+1."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"8a3ad2ef-8bcb-40c0-85de-f03328c2b644","metadata":{"related_token_ids":["52626921-713d-5fbe-823b-c222119520aa","fdc7aa74-0ebb-5ec9-987d-82b3714dd8db"],"source_printing_ids":["54a3ea87-005e-4985-b2a5-21711d0b71c0","cf723c91-e3ae-4a71-93b2-65d05bfa9b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3","PMH3"],"rulings":[{"date":"2024-06-07","text":"Auras attached to a creature don't become tapped when the creature becomes tapped. Except in some rare cases, an Aura with bestow remains untapped when it becomes unattached and becomes a creature."},{"date":"2024-06-07","text":"If a permanent with bestow enters the battlefield by any method other than being cast, it will be an enchantment creature. You can't choose to pay the bestow cost and have it become an Aura."},{"date":"2024-06-07","text":"If you don't pay {1}{G}, either because you simply chose not to or because Springheart Nantuko isn't attached to a creature you control, you'll still create a 1/1 green Insect creature token when Springheart Nantuko's landfall ability resolves."},{"date":"2024-06-07","text":"On the stack, a spell with bestow is either a creature spell or an Aura spell. It's never both, although it's an enchantment spell in either case."},{"date":"2024-06-07","text":"Unlike other Aura spells, an Aura spell with bestow isn't countered if its target is illegal as it begins to resolve. Rather, the effect making it an Aura spell ends, it loses enchant creature, it returns to being an enchantment creature spell, and it resolves and enters the battlefield as an enchantment creature."},{"date":"2024-06-07","text":"Unlike other Auras, an Aura with bestow isn't put into its owner's graveyard if it becomes unattached. Rather, the effect making it an Aura ends, it loses enchant creature, and it remains on the battlefield as an enchantment creature. It can attack (and its {T} abilities can be activated, if it has any) on the turn it becomes unattached if it's been under your control continuously, even as an Aura, since your most recent turn began."},{"date":"2024-11-08","text":"A landfall ability doesn't trigger if a permanent already on the battlefield becomes a land."},{"date":"2024-11-08","text":"A landfall ability triggers whenever a land you control enters for any reason. It triggers whenever you play a land, as well as whenever a spell or ability puts a land onto the battlefield under your control."},{"date":"2024-11-08","text":"Whenever a land you control enters, each landfall ability of the permanents you control will trigger. You can put them   on the stack in any order. The last ability you put on the stack will be the first one to resolve (As a result, you can have those abilities resolve in the order of your choosing.)."}],"rarities":["rare"]},"steadfast armasaur":{"name":"Steadfast Armasaur","mana_cost":{"type":"Cost","shards":["White"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Vigilance\n{1}{W}, {T}: This creature deals damage equal to its toughness to target creature blocking or blocked by it.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{W}, {T}: ~ deals damage equal to its toughness to target creature blocking or blocked by it.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"dc0bd3a3-f34e-4d81-b9e8-b172b005d671","metadata":{"source_printing_ids":["197934d5-726c-4cd3-a934-3d6449a5a56e"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["XLN"],"rulings":[{"date":"2017-09-29","text":"If Steadfast Armasaur is no longer on the battlefield as its ability resolves, use its toughness as it last existed on the battlefield to determine how damage is dealt."},{"date":"2017-09-29","text":"Tapping an attacking or blocking creature doesn't remove it from combat. If the target of Steadfast Armasaur's ability survives the damage, Steadfast Armasaur will deal combat damage to and be dealt combat damage by that creature as normal."}],"rarities":["uncommon"]},"steely resolve":{"name":"Steely Resolve","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nCreatures of the chosen type have shroud. (They can't be the targets of spells or abilities.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"IsChosenCreatureType"}]},"modifications":[{"type":"AddKeyword","keyword":"Shroud"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures of the chosen type have shroud."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"48c127f0-2857-4c36-97bc-1291b6fe4a82","metadata":{"source_printing_ids":["36ea852d-ed2b-4c56-9b73-52dce8a3e520","b88c530a-abc3-4cc4-8a48-5b76e1504a3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["ONS","SLD"],"rarities":["rare"]},"stomp":{"name":"Stomp","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":["Adventure"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Damage can't be prevented this turn. Stomp deals 2 damage to any target.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"AddRestriction","restriction":{"type":"DamagePreventionDisabled","source":0,"expiry":{"type":"EndOfTurn"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":2},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"d6d72f5f-8f5d-4180-b514-f22ff5482902","metadata":{"source_printing_ids":["09fd2d9c-1793-4beb-a3fb-7a869f660cd4","3a6431fd-4b79-488e-a0c0-57731616bd08","b5b71cd2-de35-451f-b16e-2e3936169407","c402a722-d412-4598-8a1e-edb889b957e8","ff984a4c-1818-4f8f-a9d7-fce57e77937d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"adventure","printings":["CLB","ELD","PELD","PLST","PRM"],"rarities":["rare"]},"stronghold arena":{"name":"Stronghold Arena","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Kicker {G} and/or {W} (You may pay an additional {G} and/or {W} as you cast this spell.)\nWhen this enchantment enters, you gain 3 life for each time it was kicked.\nWhenever one or more creatures you control deal combat damage to a player, you may reveal the top card of your library and put it into your hand. If you do, you lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[{"Kicker":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Multiply","factor":3,"inner":{"type":"Ref","qty":{"type":"KickerCount"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain 3 life for each time it was kicked.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDoneOnceByController","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"description":"Whenever one or more creatures you control deal combat damage to a player, you may reveal the top card of your library and put it into your hand. If you do, you lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","White"],"scryfall_oracle_id":"7dabd64c-8d0b-4e56-b6be-5651c9e985c5","additional_cost":{"type":"Kicker","data":{"costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":0}},{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}}]}},"metadata":{"source_printing_ids":["b3c48497-7ef8-4b45-b160-8af28d8e61ba","fb64b0a7-3e9a-490f-bf02-c62fc8cf750d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"As Stronghold Arena's last ability resolves, you don't get to see what the card of your library is before deciding whether to reveal it. If you choose to reveal it, you must put it into your hand and will lose life."},{"date":"2022-09-09","text":"Normally, combat damage is dealt all at the same time. In that case, Stronghold Arena's last ability triggers once for each opponent that creatures you control dealt combat damage to, regardless of how many creatures were dealing that damage. If any of those creatures have double strike or first strike, the ability will trigger once for each opponent dealt damage in each combat damage step."},{"date":"2022-09-09","text":"You may kick Stronghold Arena only once for its {G} cost and only once for its {W} cost. You can kick it twice by paying {G}{W}, but you can't kick it twice by paying {G}{G} or {W}{W}. You can't kick it more than twice."},{"date":"2024-11-08","text":"If a card or token enters as a copy of a permanent, the new permanent isn't kicked, even if the original was."},{"date":"2024-11-08","text":"If a spell's kicker cost was paid, the spell is \"kicked.\""},{"date":"2024-11-08","text":"If you copy a kicked spell on the stack, the copy is also kicked. If the copied spell is a permanent spell, the token the copy of that spell becomes when it enters is also kicked."},{"date":"2024-11-08","text":"If you put a permanent with a kicker ability onto the battlefield without casting it, you can't kick it."},{"date":"2024-11-08","text":"The kicker ability doesn't let you pay a kicker cost more than once."},{"date":"2024-11-08","text":"To determine a spell's total cost, start with the mana cost (or an alternative cost if another card's effect allows you to pay one instead), add any cost increases (such as kicker), then apply any cost reductions. The spell's mana value remains unchanged, no matter what the total cost to cast it was."}],"rarities":["rare"]},"student of warfare":{"name":"Student of Warfare","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Level up {W} ({W}: Put a level counter on this. Level up only as a sorcery.)\nLEVEL 2-6\n3/3\nFirst strike\nLEVEL 7+\n4/4\nDouble strike","non_ability_text":null,"flavor_name":null,"keywords":[{"LevelUp":{"type":"Cost","shards":["White"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"level","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["White"],"generic":0}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3},{"type":"AddKeyword","keyword":"FirstStrike"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":2,"maximum":6},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 2-6 / 3/3 / First strike"},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"AddKeyword","keyword":"DoubleStrike"}],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"level"},"minimum":7},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"LEVEL 7+ / 4/4 / Double strike"}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0bc2875b-3a5a-4885-86b9-16ab7330ac10","metadata":{"source_printing_ids":["2f2cf48b-949e-4920-a72d-fddca05c6e98","9f4df9be-324b-458a-9379-ab4aa437a6d2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PLST","ROE"],"rulings":[{"date":"2010-06-15","text":"A creature’s level is based on how many level counters it has on it, not how many times its level up ability has been activated or has resolved. If a leveler gets level counters due to some other effect (such as Clockspinning) or loses level counters for some reason (such as Vampire Hexmage), its level is changed accordingly."},{"date":"2010-06-15","text":"Effects that modify a leveler’s power or toughness, such as the effects of Giant Growth or Glorious Anthem, will apply to it no matter when they started to take effect. The same is true for counters that change the creature’s power or toughness (such as +1/+1 counters) and effects that switch its power and toughness."},{"date":"2010-06-15","text":"Effects that set a leveler’s power or toughness to a specific value, including the effects from a level symbol’s ability, apply in timestamp order. The timestamp of each level symbol’s ability is the same as the timestamp of the leveler itself, regardless of when the most recent level counter was put on it."},{"date":"2010-06-15","text":"If another creature becomes a copy of a leveler, all of the leveler’s printed abilities — including those represented by level symbols — are copied. The current characteristics of the leveler, and the number of level counters on it, are not. The abilities, power, and toughness of the copy will be determined based on how many level counters are on the copy."},{"date":"2010-06-15","text":"The abilities a leveler grants to itself don’t overwrite any other abilities it may have. In particular, they don’t overwrite the creature’s level up ability; it always has that."}],"rarities":["rare"]},"stuffy doll":{"name":"Stuffy Doll","mana_cost":{"type":"Cost","shards":[],"generic":5},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Construct"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Indestructible\nAs this creature enters, choose a player.\nWhenever this creature is dealt damage, it deals that much damage to the chosen player.\n{T}: This creature deals 1 damage to itself.","non_ability_text":null,"flavor_name":null,"keywords":["Indestructible"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"ParentTarget"},"damage_source":"Target"},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: ~ deals 1 damage to itself.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageReceived","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ is dealt damage, it deals that much damage to the chosen player.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Player","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a player.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"499dceab-1890-49c8-b35d-b059a1dc950f","metadata":{"source_printing_ids":["14ca7425-a499-4864-b955-369ef2577849","23038e62-9c7b-4e2a-8661-035966b6ed4a","978c2c7d-6898-4be2-aed7-e673210ce654","b33b5e4e-e68f-4b7d-a9c3-af01aa92c4e8","ce427213-4ce5-478e-83d8-fe80ec446a58"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","M13","SLD","TSP","TSR"],"rulings":[{"date":"2021-03-19","text":"A creature can be dealt an amount of damage greater than its toughness. For example, if Stuffy Doll is dealt 3 damage, its triggered ability deals 3 damage, not 1, to the chosen player."},{"date":"2021-03-19","text":"If your life total is brought to 0 or less at the same time that Stuffy Doll is dealt damage, you lose the game before its triggered ability goes on the stack."}],"rarities":["rare"]},"summon: kujata":{"name":"Summon: Kujata","mana_cost":{"type":"Cost","shards":["Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Enchantment","Creature"],"subtypes":["Saga","Ox"]},"power":{"type":"Fixed","value":7},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Lightning — This creature deals 3 damage to each of up to two target creatures.\nII — Ice — Up to three target creatures can't block this turn.\nIII — Fire — Discard a card, then draw two cards. When you discard a card this way, this creature deals damage equal to that card's mana value to each opponent.\nTrample, haste","non_ability_text":null,"flavor_name":null,"keywords":["Haste","Trample"],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantBlock","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantBlock"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block"}],"duration":"UntilEndOfTurn","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":3}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"9fe77f70-85cf-4a18-9451-2fad4c341f07","metadata":{"source_printing_ids":["a469904f-f144-4e70-b689-c7869e40bcb2","ba934866-efd0-4126-b1ff-9c7e82b73bd6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"If the discarded card has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["rare"]},"sunscourge champion":{"name":"Sunscourge Champion","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When this creature enters, you gain life equal to its power.\nEternalize—{2}{W}{W}, Discard a card. ({2}{W}{W}, Discard a card, Exile this card from your graveyard: Create a token that's a copy of it, except it's a 4/4 black Zombie Human Wizard with no mana cost. Eternalize only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Eternalize":{"type":"NonMana","data":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","White"],"generic":2}},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}]}}}],"abilities":[{"kind":"Activated","effect":{"type":"CopyTokenOf","target":{"type":"SelfRef"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetColor","colors":["Black"]},{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"RemoveManaCost"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","White"],"generic":2}},{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false},{"type":"Exile","count":1,"zone":"Graveyard","filter":{"type":"SelfRef"}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"activation_zone":"Graveyard","condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"f5e9c69f-b949-4e9a-91d8-e0d52f8d8d3e","metadata":{"related_token_ids":["5186a529-39ed-5561-8577-2a86a9d17ec1"],"source_printing_ids":["281bd31f-a4ae-4554-8944-fbc14db21dfd","f0bb41cc-6edb-4a31-92cb-b17850b49432"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AKR","HOU"],"rulings":[{"date":"2017-07-14","text":"For each card with eternalize, a corresponding game play supplement token can be found in some Hour of Devastation booster packs. These supplements are not required to play with cards with eternalize; you can use the same items to represent an eternalized token as you would any other token."},{"date":"2017-07-14","text":"If Sunscourge Champion leaves the battlefield before its triggered ability resolves, use its power as it last existed on the battlefield to determine how much life to gain. If that number is negative, you don't gain any life and you don't lose any life."},{"date":"2017-07-14","text":"If a creature card with eternalize is put into your graveyard during your main phase, you'll have priority immediately afterward. You can activate its eternalize ability before any player can try to exile it, such as with Crook of Condemnation, if it's legal for you to do so."},{"date":"2017-07-14","text":"If the card copied by the token had any \"when [this permanent] enters the battlefield\" abilities, then the token also has those abilities and will trigger them when it's created. Similarly, any \"as [this permanent] enters the battlefield\" or \"[this permanent] enters the battlefield with\" abilities that the token has copied will also work."},{"date":"2017-07-14","text":"Once you've activated an eternalize ability, the card is immediately exiled. Opponents can't try to stop the ability by exiling the card with an effect such as that of Crook of Condemnation."},{"date":"2017-07-14","text":"Several cards have an eternalize cost that includes \"Discard a card.\" You can't discard the card with eternalize to pay its own cost because the card has to be in your graveyard to begin activating its eternalize ability."},{"date":"2017-07-14","text":"The amount of life you gain is determined as Sunscourge Champion's triggered ability resolves. Players may respond to the ability by attempting to change its power."},{"date":"2017-07-14","text":"The token copies exactly what was printed on the original card and nothing else, except the characteristics specifically modified by eternalize. It doesn't copy any information about the object the card was before it was put into your graveyard."},{"date":"2017-07-14","text":"The token is a Zombie in addition to its other types and is black instead of its other colors. Its base power and toughness are 4/4. It has no mana cost, and thus its mana value is 0. These are copiable values of the token that other effects may copy."}],"rarities":["uncommon"]},"swamp":{"name":"Swamp","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":["Basic"],"core_types":["Land"],"subtypes":["Swamp"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {B}.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"56719f6a-1a6c-4c0a-8d21-18f7d7350b68","metadata":{"source_printing_ids":["00030770-5e99-4943-819d-8d807c24cc14","000366c8-7a43-49d7-a103-ac5bd7efd9aa","004e232c-ea3d-4a8c-bf16-234ac09e4567","00daa026-aba3-421e-9eaa-aa5649b36eb2","013612b4-fed9-4112-8018-9267ae608fd7","01c46b9a-07ea-40ab-9a2b-5bee8e7d3496","0223cf7f-4c6e-487f-babb-a740a15e1f0c","02cb5cfd-018e-4c5e-bef1-166262aa5f1d","02dc1392-7701-4f3e-b5af-d8756bef6d07","02fe3fdf-1d21-4e35-b0f3-3bcde7b05e23","0306607d-2a42-4008-ac84-8d3ed91fe3aa","0356ae45-e5ca-46b9-8ebc-42bf4776e89c","03e82924-899c-47b4-862a-7a27a96e285a","040d064e-b023-4750-afeb-1f58e36bc4ab","04559991-3278-469f-b2be-07c3b27ad5a5","0520813a-fe20-4bde-8dc9-9a7add51c722","058ebefe-ad31-430b-b298-c9df929e03cc","05e8d2d8-2880-4c1a-97f3-ed3f206883bb","06017c14-2b8b-4840-be21-023602a3e8d8","066b5162-8724-4df3-a3d5-274036d0049d","06a570b2-bcab-4500-b790-252baaf1f6d8","06e0edda-1943-47a3-9ad3-673b38f42c86","07504e2d-9d70-4957-bee6-abab92368a33","07a6df7a-a080-4aef-9a76-5b08bbc4e762","07ab266b-ad6a-422e-9277-27d9f48d2c29","084efea7-2a22-4cca-a1f9-b47aad2ebcac","085b4641-62fb-4820-aded-ccc9403d319e","0863a079-1cc2-4388-85bb-a24eae251e99","086468db-5ecb-4b57-90a8-041eff6faad8","08ec1e4f-e284-4216-a022-bd94c4dae02b","091e1917-6e93-4d36-8cc2-1b553aa92bc0","09af769d-a051-40d4-b203-7ec818c367ca","09d7e861-8dda-4073-bfd6-4ade3bca5cff","09eeb6aa-45ac-4a0e-bab2-1a004aac841f","0ad7a944-0bdd-41a0-a1c5-33531d62a210","0b35ed4a-c1b1-4cf7-8eab-95a85ce75e92","0b3f0063-9a59-4ce1-90b5-e45921d5cc3c","0b8515d2-e8a4-45ab-b361-88eb4ec959bd","0be8241f-cfe9-4e48-8005-8bfcba92547a","0c70db5a-3d7f-4534-9e5a-01d510b8d62a","0cf904da-496c-4d88-a62b-c736ba895078","0d1a1df0-e6dc-4815-bb73-9d100ee6e0b2","0d846729-deec-436f-af5c-08faf53ec36f","0df95545-fe5e-47a5-99d8-1776e02c5713","0e2a9fa6-3c7c-409a-8565-e3d533107971","0e864369-2837-4487-8eee-0d643889d642","0eed3360-1634-4e60-b24d-4128c4896994","1017347b-6b1a-4a2f-9147-98acad779616","103538d1-1b8f-4b18-91ac-17975f353785","11093e3f-092e-49d9-aef9-b9855b040bf2","1176ebbf-4130-4e4e-ad49-65101a7357b4","11c7299b-7a98-4c2f-8be9-35e0630e2995","11fd1aaf-b33d-4a27-8394-c0dadf889b1b","12681e76-6ffc-489e-8dcd-131a31170ced","132155ae-f7a4-4957-91cb-e51ff52716f9","13505c15-14e0-4200-82bd-fb9bce949e68","13964bf9-c391-438a-a28c-2a0716375e0c","13bd1c69-2561-4ff1-af00-bb519b3897c2","1481cb23-7f39-47cf-afe8-aecc798a1dab","15d6b53a-3b40-43be-ae35-c22a2a17a141","1660f317-d337-4c24-8523-613dc3072ca9","166fc328-20d1-4158-bcb6-3cebcf788ef5","1797d5c7-d3fa-4184-85ae-46db14ddf523","183acdf0-bd08-4598-966d-426dea71583d","184a196e-8604-49d2-a66a-6f7c0eafd5de","187e9fa1-6a50-4697-8645-fea4524e8dde","1967d4a8-6cc4-4a4d-9d24-93257de35e6d","19c03592-debd-4b4f-a5ea-a31ce63f5d23","19f62f5c-ddea-4564-bc47-5845ab15d8e2","1af26e12-8518-4b15-afcd-c44faaebb574","1b1d4996-ed4e-4818-a9ec-f5d8ee84ad26","1c590ebb-1e3a-4861-b8f2-aef9c4259efd","1c5d8a2c-b98a-4dae-8b89-4a2435fa7103","1c90f777-2f98-4010-80a3-5fe395747e5f","1ccdc3f2-0e3e-45b4-a141-2eb029275e9a","1cfcda3b-2bd2-4b54-959f-bf4b4f311f6b","1dd4d605-02a2-4183-b191-0bca8dfbf962","1e4ad69e-843c-4f33-be2f-711568f8aac7","1ee0be63-ec99-4291-b504-e17061c15a67","1f7cac8b-6609-42ac-a594-002068e02de4","204f051f-50a6-48fe-aa0e-04c513f1b3ed","20a28816-8e41-4c17-9478-2c85e13ee23b","20f26dde-d1a3-4d0f-9ed9-cfcd9e4ce01e","211b98e5-8ec2-4108-bacd-97e854a85b6f","21900fe6-ae43-42af-a601-d70c25457239","21c39822-b53e-488b-b5df-c0ce325d9039","22687920-e310-4122-a01d-2aff720d2071","22b2ddff-46df-4c0c-9840-edf3d02586f0","2326267f-2412-4217-af73-f5392167a3a6","2333076d-db67-405a-9e76-27edfc591e02","237204ad-ab8a-496f-a093-48d00417350b","2380a8a1-474a-43f7-91db-68cfd7e0b790","239511f0-34b7-423c-b53b-1327d6b7da28","23c03147-e9ff-4a52-b579-12d259b4be23","23e09e49-1a87-4967-8557-6d331c48a563","23e8c5ea-12a2-44b6-a0b6-6c7cea1119f3","24eeb424-235d-4346-9355-57914e740ec6","25ad2444-9985-423c-ad36-387218866409","25bcf9b0-ee35-4911-b515-7182e703beba","26142ae3-5aa1-4b9b-989a-21c0e4e5089d","2646cdba-bf2a-4eda-9d35-c15d1546b6ec","267d4321-4411-499c-a476-70c805abf02a","26c57bee-2810-467c-8ed7-6cecb5cbc379","2755f9f7-95f9-4907-8ec9-21853eb376f4","276b18fb-66cb-4dc0-9c67-60cee1502c7f","2931ebfb-ee76-45f1-8b86-ea77775c323e","296d546a-7481-4cb9-9170-59402592507b","2a0fba6e-54d2-498c-83bc-41024307e608","2a7ce037-e04d-404a-afde-9122518e6a31","2bfe9801-b683-45d9-924c-6734110816bf","2c4be2d6-d168-4e67-8d75-a04f637b56dd","2cce9570-e5d7-44e5-bc93-6d03dd1a3794","2cf4d911-6aad-4007-9735-40d125496aec","2d29e1c2-7afc-45d0-a1cf-78998dc416f7","2d49fc14-e848-4c44-a03c-6dfb83efed80","2d6df214-baa7-4de3-8333-d751c45873e0","2d8c3f29-121e-42d1-be21-29f403f97708","2e55a405-bf5b-4158-ba9a-239627ac9701","2ef981a9-303e-4313-9265-77cc60323091","2f4b9030-f04a-4f42-8dd8-2eae0ce7e420","2f8705f4-c569-4d5f-bfd5-f076fbc78440","2fe8fd6b-f6b0-442a-950e-65144a019b74","306bc28b-a21c-4d8a-9dbe-193333a16182","308809ad-c150-49b1-83e3-b78494156d7a","30b3d647-3546-4ade-b395-f2370750a7a6","30d7edb2-3bb4-4a0f-ad66-eef31cc8ed6b","31228d3c-08e4-4042-a1a1-db8dff3177d9","3122fe7c-3121-43a6-a37c-3fd17bc93a4d","3125bc4d-7e9e-4133-8d11-1abf3dc2cec9","319bc1f0-ee42-44e5-b08b-735613ded2ba","31a756b0-f430-4286-afe1-97c641e4f3b4","32d5f86d-19c3-4a9a-956f-8c52cec5ba83","339c3f05-444c-4e0a-a556-fc09417ee984","34b5fe23-e909-422b-b5a9-74907739ca95","352a5dab-69e7-42f3-8be7-e1d2e8f456a9","352ff74f-6f32-4f1d-992c-b5708756a39b","357bde61-3a24-486f-ab35-8fa4d04515e8","359ca653-664b-4dfc-96cc-06bfb1b700a2","35fe42f9-dd55-4ca4-af0a-59ecdff0dba8","364ee0ec-4970-4a30-bf5b-b045a6122860","36aaa8d9-4b03-4dd2-9b3c-d8b3bf19da73","36af939c-11d9-43a5-bd69-c915a62e972b","376aea7a-6ebd-48fd-ac4f-a16b2e997dce","3810ec60-3f93-46c0-af39-7628b77bacec","3813bf1d-470f-408b-ad6b-aa9e20124b88","38625a65-868f-4cbf-a512-9142f1eddf4a","387ec72f-dd6b-4769-be3a-981d580715be","38fef662-993c-4522-8b3f-7c1d3bb1d946","39c6032a-8a2d-4718-b541-617777db6ec2","3a310639-99ca-4a7e-9f65-731779f3ea46","3b383b16-8128-4d9e-a0d0-9b8ccc9ad6df","3c51de66-a3ed-4ca9-befb-9813e96c4ade","3ce4394a-14c9-4a6e-898c-056108b16e09","3cea8d65-34ba-472e-b50e-da8bdbf54c7a","3dd02eca-557a-4ed8-af50-994d16dfc7f3","3dd92a77-c852-410a-9ee9-abc01e9867a4","3e724e54-a622-4c77-8183-5a397a7c14a9","3f89288a-9958-45c6-9bd2-24e6b3935171","3fecc759-61fa-4040-9b46-710512baa4bf","3ff995d3-e322-422c-9385-4d93152dc7c8","40705a25-2de4-4a54-9fc4-02899085da27","418335b2-398f-499e-92ad-8d21a5a5b69f","4187a894-1a26-43ec-8e38-5422ae7e6b9b","41aa58c2-eaf2-4b17-b014-afbba7199d4a","41c7688d-8155-45fd-83ba-ff9be4d414a3","42a1264f-bda3-45ac-b959-463c6e532fd3","42fec83d-8260-478e-a20f-94d265036e31","430341f3-7dd5-4161-96a2-e76350699b66","4324380c-68b8-4955-ad92-76f921e6ffc1","438a54b0-49e6-4f79-8379-ccb30d06fb60","43c8e72a-3305-41ee-b2e3-8099d4e91edb","442c806c-3af3-401e-8dc8-7be2ef441ba9","447f8dbc-2f09-4995-81e2-2dc1654031fd","44baaa0a-9951-4ee7-a9db-64f841bd1bd0","4510090f-b42d-4df1-af71-64a77dfbc1b2","453aa0d9-b535-4bd9-951c-4304773399b1","45919fc2-da64-4bfd-ba15-e61ed268b422","45927890-52ef-448c-b302-4192afa27a04","45991831-1018-4f98-a4ad-0998a9577d97","459d175e-2b9c-4f30-be03-4e05cd3c68ef","45cbe554-ffdc-4de6-bf27-57790b71effb","4650ebaf-8e9f-431c-998d-e0f426b24d41","46908606-f572-4b2d-9562-ed9c6f50f1ad","4695653a-5c4c-4ff3-b80c-f4b6c685f370","46a6375e-9477-4871-8a15-02439f3f6f34","46c86589-5e1f-42a8-8436-553265e4805b","46e0aaac-fc82-4ce9-87d1-8dead8ec29fd","4760cdcc-e973-439c-a74a-5cb73b4fa22f","47c4fa0e-cfd8-416a-8d88-9bd0791e7f5d","47f114dd-7954-4674-994f-d4b06288ce5b","485df5c7-5653-4bb2-ae0b-8ec83359f192","48621dca-9708-4688-a212-90b382bb4329","48f7492c-67f2-4ba3-848b-7a6a8df7e88b","490452a3-22fb-4c75-9bf2-5cd6d6719446","499f548a-9e41-4b95-812d-a739d945123f","4a0243d2-5fde-489f-8113-4ece0511cb5c","4a0e7a70-672e-400d-971b-63dd128f5229","4abfe418-15f8-46ce-9b39-fd5a38b25d12","4aca4e94-3e7f-462b-a900-84e1f3609ed8","4b0c331d-56c6-47d9-bd52-30a92b6415b3","4b8167f6-854f-40bc-bc86-6a6c915ae357","4bc918af-527c-46d7-861d-32e9150ed3df","4dab8252-5f15-4b83-a167-039ad64c95e4","4dbfdbdd-6322-4ea6-9680-d4e480d78437","4dc185cc-5b8e-43ea-aa75-94ddffb74ad0","4e321257-f494-49fc-a26f-3c65aa5b1377","4e74c620-a445-46a4-a1aa-b5b8ef657f18","4e964e2e-8bc5-423c-ac85-4f0c860afb8a","4ebf5f38-527b-4f7d-9980-4aca116e5b88","4f3a387a-4bc1-4338-9d1e-0fbcb6f03b82","4f4f94cc-eb76-4fa6-b7d5-3cca73e8691a","4f799604-bbbf-4d57-83c8-13a0eafa974e","4f7d8adb-36b1-4f7b-b01d-e60c7bec79be","4f893107-84b0-4e3f-b1f5-b04632f192c5","4fc9d935-2a33-4928-b4b2-25c48544bf24","50205489-2960-462c-a6cb-35a491dc54d5","5083de34-d127-45df-9252-ff09b5cf8b47","50aa6685-48b5-44ac-9588-b94382957bb8","50bdea83-efb5-4371-8d25-5703c6efee65","51477c65-1fc6-4a0c-986f-d51d4e36bc1a","515eff31-24f6-462e-bbd4-b49540421a75","51fe930f-2b5a-4b1e-9007-6ee74fb44715","5205f782-e6af-4152-a15f-080935017e4b","53002007-21ee-4953-9832-157968881b9e","5317d9a0-64f4-4b5f-ab1f-f1e0d91feaf2","537fb023-4352-406f-8435-51b37b99a6be","53d0a415-26b8-4ba2-9503-b4ee2b93617c","53f5c55d-09e5-49dd-906c-0f48a79b4c15","541cd2a1-034b-4f23-8468-40891ccff9fc","541e7f83-4a77-4544-ac4f-53b8c993724d","5452c8e4-3463-4ae3-a9d1-5947bea4684e","551eeb34-09d7-4d08-a0fa-dc313c946279","55fce17b-f57f-4863-bf74-71e45bec4040","5629fcbc-5003-4198-8bef-45845faba258","575fadbe-75a6-4183-be46-53de6af74790","5788684f-1339-4cb4-863a-a9883ccab79b","57da24a0-89a7-4756-b4ca-4dea132e8f67","57ef531e-2a8f-4d40-b509-92e3a86b2257","58496a56-437f-4204-9691-f63795e5cdab","58c4bbf1-2e52-4b43-ad35-9272b48d36a8","58c53fd4-032f-47a9-9f1f-4f6d3c907bd2","5912d2aa-fe91-4cea-9c7a-6dca745f8560","59e221bf-6b14-4a9f-b7fd-eb42bc3d63a5","59e597d5-37e7-4add-b454-c3399b4e3704","5a4a9736-da37-4327-b9ee-e9a38fbe8a19","5a846f00-ccb9-4ee2-8358-7c7722258601","5b643680-4e28-4ae2-b4d6-609d2150a171","5b7096fd-48b1-4eb5-8c18-945ebbd63168","5b923822-7bbc-439f-9994-f80587a6d575","5bd7ee9b-1be6-44f7-8896-11c2f537a15e","5c2c9dc0-7f3a-4f3a-ba08-5c2f87e252bc","5c818f03-0e20-4ef4-bac7-11b2b7f41b5c","5c8cdf65-0113-47c3-a0d5-e0b74c333c81","5cb03b18-d74c-4c89-9539-3549d2e8ff5f","5f1e5571-866b-4b19-b786-e57781353913","5f1ecc8a-4f83-46ce-80cc-acdff31d9ece","5f75f4aa-cede-452b-80c1-bd3b8221dbcb","5f917d8d-7037-4f11-91f6-1ef96b3541bb","6079aea9-145a-445d-a00f-1c0f4018a529","60b7c997-e520-4ff6-8b3b-705c2f12a9d4","6125ffe3-4e48-4e0f-8390-7462446fc8bf","6168225b-d6bc-4844-89ed-e5582a933ac2","6176936d-72e2-4205-8871-4c5a4f1cb2d8","62050e5d-50b3-4c4d-b8c7-b85ff20c4d71","62dbed02-6871-4830-8308-9f2f48e6730d","63803c6b-144c-4c11-b8c1-4a1861085ab7","63d11a38-3b0e-44d4-bf7d-28bed6303693","65181db5-3fc5-497b-ba61-385efdf740ed","65422b02-47ee-4c68-ac27-81fa6368864e","66bb5192-58bc-4efe-a145-2e804fd3483d","674de0e1-be2d-4fda-8519-8775802a7b36","689cf978-7492-4bf9-9b20-a91c21008841","68c40a79-7213-42e2-b93e-d14f0cc5deef","69384f97-3333-4aa7-bc4f-928ba49a2c80","6a90b49f-53b3-4ce0-92c1-bcd76d6981ea","6aa4980a-dcd8-48e0-aca8-ef1590f51c10","6ae08c8d-dc38-4042-a599-ecce6974b095","6b65be65-d32e-42b5-98ee-d53556f17c29","6ba77dad-f157-4e31-9654-921967ea98c0","6bae27d4-9de5-4f95-8c56-79afc6cbeb0c","6bc8f8cb-dc67-4549-be2f-f4d4057065a3","6be28351-642c-4ed1-9041-e99ecb79cba8","6bf5b682-6505-46ab-bf97-af26bda358ba","6c0ea7e6-0659-4944-a997-f46e00340542","6c5301f8-350a-4e26-8d97-0f643e5da7d6","6c8c3f0e-7af4-410b-a675-9ea84f51e812","6cfae795-d3d2-4758-9717-ed33cd0f3bfb","6d2f6bcd-9360-4be8-b516-f1d0238df00b","6d4873cb-43ce-47b4-9d91-a8495a244c85","6dd377f3-cd2a-4df7-8b5e-7c4fbc270014","6ecb02b0-adb9-42b1-86b0-23eab29f5dda","6f0c11f7-f131-4d12-a027-a25df8155cc6","6f23a73a-522b-40cf-a14b-ffdf47a24c01","6f59dee4-89d0-47bf-ace7-901944b7dcc3","6fae7689-a9df-4f69-8040-9fbe24f64838","70202db7-63f6-4ba7-a79e-1afc23d86e24","70d0ef58-c0b3-4bcd-b470-0cf41219a4e6","716460ce-2602-476c-aa53-40d1f22ea7c8","719b570c-1773-4a0c-8ea3-e75b1c14c35f","71d6c388-5da9-4c7a-907f-dfa7237e71aa","72020810-bfa3-42d5-ad0d-6d02a6fe1b31","7232adef-c8eb-461f-b563-cb54cdeb22d5","72dbb928-fa14-4c91-b9d9-ed3787309fc9","736a0484-e091-4178-92c5-c517b0e92f3d","73e124b6-3af7-41c0-b829-ff85aa0c3782","7442c1c7-1c10-4387-92e6-4bdea263064f","745b1731-af31-44d2-ad50-b3e43b620913","74c16759-117f-4f17-baea-88b18d391c38","7577198f-8b2d-4cee-b400-ebab8fb0df8c","757d7085-fbd1-4343-b09a-5113d749c731","75ac1b9a-d919-4b4e-b80a-635de721fb67","76beef17-2beb-44a0-99a3-a8c4f4dd3d50","76f8def9-ee46-4abf-9059-7d1ec6f24951","77ba59d8-c13c-4966-845f-c090e9f061cb","79f2f27c-2ffe-4f6b-8542-00940e805ae0","7a2baa78-f161-4e09-9a30-74ca208d5163","7aa97b25-1ea0-4351-ab9f-f06c8bb4d044","7ac4979a-5b2f-4db1-b665-9d8ccc15ba82","7ace7e2d-17af-467d-a0fc-9af922189452","7b4ddbe5-1be4-47ee-b07a-74c8bec4d752","7b7a442a-16a0-459a-8c24-cd0c72edee03","7c4291fe-eefc-4649-a768-568ae712fe01","7c6e2449-812a-494a-b99d-43b63d59c10d","7c71891b-9980-4b71-8301-e92288d33235","7cb90852-1a5c-4aff-9be2-d783990d2d41","7cd6becc-f06a-4fd3-8305-70604b92a187","7cdb8b9d-2573-4162-9255-50a281dfb775","7d3a6460-eb98-49ed-bdf9-dc97d970c706","7d790d45-12b5-463f-bb3a-eea3511c3c27","7d7c39aa-7bba-4156-b325-91b1369de6bc","7e62bff1-e78e-4e1a-b021-d891eb0f309b","7f61e5b1-8710-4150-8b10-92650d029ed3","801b419b-2a35-41e5-9439-a6e1d8a4c3c9","806d26a2-2f2a-4a77-b5bc-a6c97ba5db42","80906a47-ef4b-4e59-889c-946d40a79d94","81047292-e537-47b5-acfa-ed839707109c","81a8861a-ae60-4a1f-9b25-0bc080cfe3af","82f74cd0-cd73-4b08-8544-5f56b6d96f78","833f9340-4600-4e11-876b-93b80387c895","8365ab45-6d78-47ad-a6ed-282069b0fabc","8394a4fc-809b-4586-88a4-1d3c2c3c84ef","83b16e93-ee53-4c1b-9dea-6db7977e9c2f","8430c66d-55ba-4fc9-9e18-0bba2e459222","843b35ec-7b59-4a22-8fee-2e876a02306b","84634023-5c94-4dcc-9449-abf73ecea542","84737e2d-9d75-4c41-9afa-691260e1f5f2","847cac15-b404-4e0f-964e-7aee41c93346","85288987-6f3f-4b7b-9ecc-9393dd37f115","855c45a9-7031-407e-a6b6-80721b701fe7","85b37484-037a-497a-9820-97299d624daa","85c3d3a3-1199-4936-b5a6-4889072c7e64","85f7b339-cce2-421e-83b8-1764c53dee47","870b65a1-314b-4c22-b942-38f60ba2c392","8747d2d5-1977-4ab7-bd90-aa9a0ab25297","874f0f27-81a4-4853-aaa0-2c15e07c177e","87861e3c-d445-4452-b7e0-19b53e69b6e3","8808d9dd-70c0-46ff-bd9c-dd60240dd121","8838fb77-a484-4323-aa62-c944f3fefa95","888cdb76-d365-41df-8b6a-378ac58ca8b2","89b84af6-8fa6-4224-9f51-0edf48358dcd","8a97cc92-6894-4c6f-8c8d-bfc9fdd4f974","8b153bb8-f9d9-44dc-ae19-d0eb2ea26ba1","8ba9664e-b482-4ea4-8a84-fef817363e0f","8c63838a-49d0-4292-914c-6ae4506dcd3b","8d37e23b-7898-4b5d-b088-d4e54947f579","8def00d9-2e93-4d65-bba5-09c45258bf5e","8e10b125-eaa6-4630-a6fe-6b1805921f07","8e5eef83-a3d4-44c7-a6cb-7f6803825b9e","8f9dc477-a3e4-4fc0-af62-c8b8eb68d360","9019a639-929a-40d9-98b1-6b5268da5246","901c8aa6-9874-4059-9474-b26e51f2f9d2","904b1621-17d3-4f02-b42c-cdf75425f037","907ff242-885f-4948-b95c-61cf033d0969","91afb4f0-70ef-4539-9081-dc130c7c63f5","91f15da4-396e-4704-926f-cda3b3f532e0","92af0cba-c058-4833-a74a-21ad91e5ad7c","92d8ea25-dfed-4453-9e63-57339f948cac","92dec693-a086-4a6b-8af9-a67ee093719a","92f7a995-c648-4835-8df3-135d7472cd2d","9330376c-0242-4e28-b535-26c84b43c3e6","9364178a-1963-4665-b8c1-a5096ece07e2","93d48cef-cfaf-4223-9efb-d76762a896d6","93f6555b-426c-4eeb-96ea-ba3fafc96964","94cb941f-e3cf-45d2-9989-2a0a454d5497","94cf9d05-153f-42c5-b48a-ad06da0ef4d5","959cb185-a280-493c-b85c-69b74e042c15","95a58ce4-e07f-4c9c-98ae-3173d6d63cc5","95e936cf-3bbb-4f3b-8e1a-4be1d4702b99","95e9b77a-2d94-4c3b-a43a-b3755f5e7d11","9730b3bc-f66a-427f-989e-a99c65e57e0f","99b2bba7-8889-460c-a18f-fcd1e350ef4e","99e144bb-5350-40d5-8287-59468d2712c2","9a189653-dc0b-4b04-9544-5314cebf23fd","9a50165d-2ee4-4d7b-be20-d326b8bc0728","9a63a791-ad18-4d96-a0e7-e6b46cc3b4c6","9a63c166-93c2-4c56-a202-1f9dc40fd557","9b5f68bc-1842-4efd-b85a-d897cfd63bde","9b8728eb-ae5e-4ff6-8012-5e30d88a04db","9bf0df5b-ff45-4610-9c4b-355d670ef995","9d376282-adf0-4d37-b9a4-1329cd496516","9d762697-4c1e-4c69-8c1b-afa3d0b53a41","9df93f14-494f-4051-8a55-8d23eb2fc012","9e3b9156-4b50-4883-a76b-3a418b39e62d","9eaedaf2-a9a3-44c6-84c1-4cc2da1da459","9efeec59-1236-4d66-a4e0-16f1a1ce4274","9f3b5252-afab-4994-8303-3e0bee67b687","9f85076a-d15c-4fb3-ace9-2423149a9d92","9f9e61c0-b185-4704-913f-9284ed0ce250","a095fed4-0a2a-4092-b923-8f46c8ea22d8","a0daa93a-8cc3-4fa3-944b-5b0b41e88fa3","a1973dcf-b22c-478a-b782-6d355cb74904","a1d2dedf-d0d8-42c5-a498-31e172a1b503","a1f8f29a-5771-4407-8a2b-cfeeeff04611","a20e773f-9220-4212-b39a-eaccb1c265c6","a22f49c5-1dcd-453c-b169-0b2519c44d0c","a28f0a69-376d-470a-bc7e-2f5f771843e3","a3544148-49b2-4320-8e3a-5bab81e0f7fd","a37f8bb9-1d63-4f28-b15d-06f423785599","a48f0e9a-c2d9-4b7f-b1af-baad3e5c45e3","a5572582-07c0-49a1-9ccb-ca2b003d839b","a5734a18-9a64-430e-84cf-e495d9f6e45d","a5a14894-2936-4fc4-b6a5-f9c73c32b177","a6285f63-a5d8-4b8b-a6dd-51ce7968fbaf","a63b7238-ebdc-4dd8-b799-1ca33c14163b","a7150a6e-240f-4628-acdc-153d404370ff","a7dc4523-075d-425e-9b53-77921d26c173","a7f56d20-16dc-4b7f-98bf-124817a83bae","a7fd3031-8284-4098-a5e6-2fdfc4362752","a825ac86-d642-42fd-b6aa-94aa804907d9","a834bc0c-2676-4901-a928-5de111b4eedc","a8594426-c965-4187-a72d-7582f21b0ea1","a88de1af-d97b-4228-85ff-41e484c18662","a8af7440-779d-4206-a543-a857292850b1","a9023215-035f-4f12-9f75-04b995b5d24a","a903c179-319b-40ff-9023-d583d53eca08","a9bb8c7b-88f3-4ce5-8b07-8f78aa5eb456","a9ec9765-4449-4ddf-8f0a-0d90ba81b9b7","aa3eee77-3dc3-4438-a485-ba0fee6f5357","aa6b4b26-f5a1-4932-b1a8-afff458d206b","ab891f92-bd3c-4ef7-bfe2-855fb01f583e","ab950987-d88c-4326-98f4-1b1195788921","ac35ea80-deb6-480a-b5f7-b0b0bd4a5933","ac8546d1-bfea-4cf7-bfa1-48555ea81bd4","ac885eb7-9dae-4c48-b45c-97ef9c62c99e","acc5f835-1fda-4eff-9aeb-0394db8fcf60","ad4e701b-4a03-4c3d-9574-ca2f035a7a5c","aeccfafb-0b3e-4e22-8c5c-6d5a0f5896c5","af92ec23-a252-4ae2-98d7-0dce19d18e35","afca9592-da1a-443c-9250-f55a59250352","afcfb4d2-02a5-46af-bc7f-0cf00ed50c28","b0175a2a-db46-4d25-ab8e-feca7e565b8d","b0673fff-345d-4384-a63e-ace7740e20c3","b080a42a-03cd-400b-bc67-379d3a6e5c6b","b0caeb29-03ec-421c-b5c6-f66ae5ca542f","b0d5294d-8f26-47f9-90f2-c0eb095dbcfc","b14ee02b-f7e9-499b-a51e-b069eec1b72b","b16f11b9-8ac5-4e02-84b7-40b64a664ccd","b1cbccfc-3585-4895-94d1-c3a67205e5fe","b22033bc-bbc7-420c-b7be-d6d5712fd5df","b31dbc7a-8d66-44bb-836a-c1ed95152b86","b4569823-af23-4eea-acc9-2a2c62bce3b0","b53dbcc0-169d-4b5c-b4e5-d82716c1539d","b56d4e89-93aa-4b1e-84f6-8addef529a3f","b5f7cc91-e555-4f40-82db-12ffc74dfc6d","b63ffa5f-9bab-4c49-bd8f-aa7d970c25c4","b6566108-ccc7-4fac-b935-1eb212889543","b6787446-3a5b-4639-87f9-f605f59f4baf","b6ec5e94-acd6-481d-a5cb-0ca8628614b1","b6ed633b-6452-4a0c-b308-ac28ad438933","b77efb22-790e-4f72-b103-662214634efd","b7d40417-124b-4231-92f8-c4a55729afdc","b8e58e37-6393-4e51-b129-849711e15335","b930f28b-0415-42db-9591-e688a2d6bcd5","b938ac10-bd0f-4ce3-a743-958d5beadf58","ba042d60-b1e8-44ad-9103-f40588a0b29c","ba8f5ba9-0d7f-42cb-b49e-9bddf69f4565","babd424c-38cf-45e8-9684-de7bfc1ed86a","bb003613-75de-487d-99be-782fdde9b739","bbd9e399-74fb-4650-ad43-439d79dc31ed","bc6ec4ca-ab4c-4d5f-98df-aa166b60bb1d","bc9e2d99-a3ad-4bfb-a781-a8a9454085c9","bcf9c724-6fe2-4755-be13-701bcb9518c7","bdd5a7f0-5ad3-44e8-a103-07739fd53630","be68e315-ffef-40a8-8a46-1c042b148c03","be73b50e-8230-41e5-8492-db8f749d00a4","be87de91-aa10-4ed8-83a2-261b4f57e7db","bfc9f472-c410-4595-b08d-87c115b9148d","c0408cbd-ac97-46d5-b2a9-594c8c078a75","c04dac6d-a7c2-44ee-b735-bd4eade06e4e","c11d5d19-382f-4c63-b0bf-6a44fcd288b0","c12c03f3-4d4e-426a-92ed-e605d840fbd5","c14c3697-6a20-4387-a02d-377eb4a65281","c163a697-01ee-4a55-814f-b0ba79be3a7f","c1f11dc9-cedd-4691-9615-0ed65b5398ba","c2436ceb-05c0-40e6-b370-a6f02f4adbe4","c29134a2-548b-4c80-8017-7e50a44c3585","c2c1107c-5026-416f-88d4-543c5df26ca7","c44092af-f1a0-4018-a77b-d9ef2a9579ca","c4b5147e-99b0-47fd-bec2-3baaf7e8ac4a","c50b3d79-2361-4858-98b0-64d83c4f7f70","c576c27d-f361-4448-8607-0f6a99642283","c5f590a3-9993-4ac4-a93c-1beb44eda17b","c617c618-8320-4f76-80a6-83581470dc13","c706106e-f556-4ba5-98f1-c5536eb9a0b0","c7827d75-eb0e-4ebf-876e-7a2f9e373fb3","c78bad70-2aec-4580-a777-483d72db8d90","c794f2c8-9c64-4b93-b7d9-3040f325d43c","c7f4498e-e753-418e-8db6-e11d2caac3b1","c802ec1c-4d12-45d0-930b-6b4ca77487e8","c808e2ea-ae28-47f3-9dec-5cfc94dae705","c823fae2-e5ff-4dee-be49-f32971c058d5","c8e3909e-e00a-4855-a0be-b1c538f89cb8","c8ea7816-e501-4384-9176-61819a1784f6","c956611e-5748-42ff-b8ea-bca0c3d94de4","c96dbfea-3b79-4e5b-a356-3c04d1e78e83","ca98a492-5c4e-4527-8c03-2ab2442ba7e1","ca9f9d83-17cc-4595-b032-0e326608247a","cabe866d-01c3-4ec5-9d41-70305208c2b1","cb3d03a6-35bf-415e-9faa-972edff92777","cb5fabce-2488-470a-82ce-e40992657811","cba6da22-2366-4f16-84ce-47f84ea14523","cbd95de0-702a-4b88-a1cc-981cf1d9673e","cd11fd2a-d872-4abc-ac2b-c0678c1be773","cd85fe1b-9dc1-48ac-9ec1-ae6d7093808f","ce6966a1-cbf9-4ee9-9fa8-c72e0b1f24ff","cebdd6db-9434-4e60-bdf2-234e21ccbb10","cf253ee5-378b-4396-b826-4c0f2fae38a0","cf6d56d1-ba2c-49d3-bbb9-2c29f09fd9b5","d03d40db-9754-4fa1-8023-e30dfef4b0d8","d0878ac9-6a80-4412-999d-4c6549b9afd4","d0a801ba-ebf7-4b9e-98c2-db50448845b7","d0ddebc0-ce79-443e-b69f-6a38af2a4f0d","d1309a80-a761-4b80-8cf1-1a8b83190511","d134fdda-a3b7-4379-960a-8d1dd499f335","d284ddf5-a1cb-4073-a53e-e8ccaaded32c","d3b69012-c74c-4606-b518-8b13ecf1082d","d412d727-4fe8-4c21-a2cb-609395935dd8","d485c620-f1fb-4715-b7c5-d2d56588308d","d4b7c6cf-ba1e-4b9e-bbb9-15588b84ae32","d500a6ce-5a5b-4509-b110-2d29dd0b353f","d56b5831-e39a-4898-be06-b84f62d38456","d6190620-f88c-4eaf-853f-bfa0ea8f96d3","d6d027bd-d8bf-4592-9ba9-ee4a917a1904","d7148e45-3163-4cf3-a729-600729f671a5","d72aa721-c20c-4306-aca9-dbf2e36d5ba7","d79f1754-9213-48e7-8186-46ef2fea1e52","d86cd8fb-4ba7-4311-b0f3-b06fa112eda5","d8a3e999-c75b-4be3-ae7f-ac5430b760b6","db0a4140-b500-45ef-a91d-91cc3c88bb69","db3c0baf-9b5c-44ff-86eb-ca0f24ab0fe1","db3f0816-76ea-40d6-935f-e3b1bdc4415b","db4134e0-45f9-48d7-90a9-f058e1d31671","db69a637-5770-4eea-9b04-c00e6f90a12a","dbeae38f-67e3-48fe-81ea-6af5db74cb28","dcdbc78a-7854-4a66-911f-a40b33e25f39","dcf4e561-d430-432e-8c65-a5a12616f552","dd391ae7-5414-4541-ab2a-f148f66dccc8","dd634a88-c114-469a-8133-59cfc9bf3215","ddaa0be1-7358-4ea2-8c40-be6d699a6631","ddca7e2e-bb0a-47ed-ade3-31900da992dc","de62de43-a74e-499f-8fe6-68a8a51078ce","de7b6238-752d-49b7-8cdc-56587676e52d","de8e7cd9-354d-4b2e-9823-79d6e8eed7e4","e0866a19-429b-43e4-a4a1-338fe12ead42","e19e24a8-5a4f-4a2d-b8dd-eb92aac7be78","e1ae0b13-c9f6-4659-ba85-a87a81f6e730","e1d99025-46bc-4848-bcbc-bee858ed906c","e2029951-b0cb-4c09-8dc1-ec177e278877","e269461e-638f-433b-979b-820f87fb431a","e3133726-0eda-480c-9d67-64719cb77f1d","e32d2387-39d4-4aea-99eb-9f56a3d995c8","e35962e5-00ed-4a2c-a6e1-67373615178a","e43ac31a-942e-4871-be29-426e19e52701","e49a9a01-46fb-4e9d-8e7d-5f2c267ab1f9","e4adbaff-92ae-4217-8a87-f11228edb12a","e4e81c04-ad42-4676-a610-0733fdf7ca25","e4ea7c31-340f-49e8-bcf9-287717102cb0","e4f184c5-4f3c-4aea-afa1-f0903d3cc71a","e54a44f2-70bf-4782-bd13-9d03e109d60d","e56cc977-6756-493b-a95d-9ab60ec16b72","e5976c0b-ce42-4057-a04c-bdb47ebc71f0","e59eff2f-2f15-4f70-90e5-759de12caf55","e809db1f-12d7-4556-bdd2-db832f991cd0","e88091ab-6fda-4516-b180-daff10cd2417","e969e168-e74c-4608-9fa0-a5660bf7fa02","e9ca6518-aa90-4614-86aa-b972f60cce49","ea640731-b367-4ece-934e-6d86634fc1c8","eb10bac7-f839-4a28-9a85-b7e8d98ca010","eb7dc259-9949-4673-a8f1-874396948392","ec08dcdb-7b8a-4ffd-b7d6-27e5961c1763","ec4d0d7a-0ab1-45c6-95a5-308b89e8d197","ed0b0b4f-2b31-4fe1-aedb-be9d34fce688","edeba4e1-9012-4962-8797-3a1f6a660952","ee68f2cb-851b-4196-ac58-844d72628e6a","ef235170-8276-4ef0-bdfd-ba68d5b218ec","ef5cb444-7b48-40c8-a4d9-3fee37429513","ef713de6-daf5-45e4-b23b-19bfd6edce36","f0247757-74e0-4c26-9447-650398758a0d","f097d952-b3c5-4cce-8ca3-36c1ab0cf538","f0b234d8-d6bb-48ec-8a4d-d8a570a69c62","f0bfdb9e-318f-4acd-9fbd-41b98a8875d6","f0de4ea5-77e6-474e-99f9-36192bbd37d5","f108b0fb-420a-422d-ae85-9a99c0f73169","f18dd43d-0d9e-4d61-90f9-63822cf0cb2d","f1b8c9a6-62eb-436e-9277-e2b8075d482d","f2a8d790-61e5-4b46-94b8-54ea68ed18ea","f2b55128-02a0-48be-8ae4-262d0b4f6d02","f2d28477-8be1-4caf-8185-64f47905ccb1","f32a6e87-a9fb-4bd8-a09d-b160aa302a2b","f3c850b9-d014-4cd1-8ffd-361ed4fe1e6d","f49d825e-0a51-43e8-9b5a-43a376b58d6f","f4d198b3-2ff5-484a-905f-c272de7c139d","f52b53b7-4a20-48eb-a0bd-4ddf40aae740","f57958e2-1e8f-48fa-816d-748ea2c7cb4e","f5a65d3b-83e7-4f32-89b3-d152e66f1868","f5a9f8ee-1416-4be8-9da1-f4546164c522","f5e672fc-673b-4476-b9cc-a395dc60b471","f5f4fbb8-c91a-4193-b6ef-0a3d4436caad","f626d1a6-84c8-452f-b3fe-976020fccb6e","f6497c73-4bbb-4923-8151-8234c98ca6d4","f66094ef-059b-4511-aa6e-835906736de4","f72d1102-0ad5-40df-9ca2-26448321d3d1","f7adaa8f-18e8-4f26-9867-535b41884cff","f7cd375e-f41c-42b1-bbd4-36032d4fb92d","f7f24df7-65c6-4488-967a-e847bdec7db0","f88a6fa7-58e7-459c-8e2e-be5a4692450b","f9c5c795-5463-425b-9720-627004925e20","fa3b8665-31f2-4142-a076-54bccdaf5a15","faa54bef-c90e-4e9b-b94b-942ea829e0d2","fb6d08cf-a746-4147-91e3-180646de7158","fbd659b0-1f79-4e3b-bc20-8f384aa43670","fc4111be-6dae-4ca5-bd58-c1ce7cfa9cf6","fcd2ecdd-37ee-4351-833a-f4eac3c55eca","fcdfd30f-91f0-493c-92ac-b2e64eb08d89","fd7f974d-2634-4fc7-aa4e-bfeb6f3169ea","fd8897b2-0ef2-4812-9772-cd99c5ce5586","fda1dbfa-a57b-4aa8-9993-c8f97aec28bb","fdfebc79-5d84-4ce5-8bff-d09fe333f4a3","feb9faf5-8f7b-4d0d-a3ca-963832e7f711","ff6e4fd4-ca86-420b-b731-22d417a55b29"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","premodern":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["10E","2ED","2XM","30A","3ED","40K","4BB","4ED","5ED","6ED","7ED","8ED","9ED","ACR","AFR","AKH","AKR","ALA","ANA","ANB","ARC","ATH","AVR","BBD","BFZ","BLB","BRB","BRC","BRO","BTD","C13","C14","C15","C16","C17","C18","C19","CED","CEI","CHK","CLB","CLU","CM2","CMA","CMD","CMM","CST","DDC","DDD","DDE","DDH","DDJ","DDK","DDM","DDN","DDP","DDQ","DDR","DFT","DKM","DMR","DMU","DOM","DPA","DSK","DTK","DVD","E01","ECL","ELD","EOE","FBB","FDN","FIC","FIN","FRF","G17","GK1","GK2","GN2","GN3","GNT","GRN","GVL","H09","HBG","HOB","HOP","HOU","ICE","IKO","INR","INV","ISD","ITP","J14","J22","J25","JMP","KHM","KLD","KLR","KTK","LCI","LEA","LEB","LRW","LTR","M10","M11","M12","M13","M14","M15","M19","M20","M21","MBS","MD1","ME1","ME3","MH2","MH3","MID","MIR","MKM","MMQ","MOM","MRD","NEO","NPH","ODY","OLEP","ONE","ONS","ORI","OTJ","P02","P23","PAL00","PAL01","PAL03","PAL04","PAL05","PAL06","PAL99","PALP","PANA","PARL","PC2","PCA","PD3","PELP","PF19","PF20","PGPX","PGRU","PHUK","PIP","PLST","PMPS","PMPS06","PMPS07","PMPS08","PMPS09","PMPS10","PMPS11","POR","PPP1","PRM","PRW2","PRWK","PS11","PSAL","PSS2","PSS3","PSS4","PTC","PTK","RAV","REX","RIX","RNA","ROE","RQS","RTR","S99","SCD","SHM","SIR","SLD","SLP","SNC","SOI","SOM","SOS","SPM","STX","SUM","TD0","TD2","TDM","THB","THS","TLA","TMP","TMT","TPR","TSP","UGL","UND","UNF","UNH","USG","UST","VOW","WAR","WC01","WC02","WC03","WC97","WC98","WC99","WHO","WOE","XANA","XLN","ZEN","ZNR"],"rarities":["common","rare"]},"swords to plowshares":{"name":"Swords to Plowshares","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. Its controller gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. Its controller gains life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"b1544f21-7e98-461b-aed5-e748b0168c52","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["04e0738b-b856-401e-8b41-096e2c48cf96","057d2410-30d3-4b7a-9dc3-f2512c1cf31c","06554274-78ee-4bfc-b203-b81cb4639427","06d67c87-ae38-4b84-98da-818e451a727f","0e7ff4dc-af63-4342-9a44-d059e62bd14c","0e8e8743-de34-4d1c-b2ac-b8c334a34362","0f34ecf6-460c-4451-b26c-a1fced340c92","12401907-17c5-47cc-8e10-fa917a5f14ea","19733c08-a007-46c8-af85-7c943f289ee8","1c3a8a52-f909-4863-9cce-dcc4e5262f7f","1db2cf7a-5e66-4f49-a2b2-f32677ddace9","20ef813e-2bec-431f-b010-995791285d0a","255099be-c64e-4f6a-8463-4fc058d6908d","31b1ca46-d2fb-4772-8975-64836ce72f0a","375fd2cb-443b-4be4-ad60-6d1a8e74f510","386ea9eb-abc1-4862-aa2d-8fb808d79490","3b701a88-6074-476f-b87c-9a6d5d22c414","42ecba4b-9624-428f-a8af-dd88139ab13c","4bc8dea8-a6af-4bba-affa-92aca36a8413","50fc5b10-6215-48a9-8993-b61681f61186","5220accc-2095-43d9-9114-7599c1cb8e41","5287cab9-29f3-4516-b1f0-57ff6ebe889a","57c2632e-5181-43e4-8744-baafb8f7d213","5a8b56db-47cb-4c62-9b54-2a48576947d1","5ae3067d-768b-40e7-80d6-08cc42f162b6","5f3fe6b7-3f77-4670-bd26-2914588271c2","61f917dc-2685-4ce9-9be0-1d69e467337d","6431a83f-715f-449d-a985-60b5cea68dac","64b295e4-bc12-4c12-9eaf-4df22b84144d","68357502-cf23-4bf6-ab4e-371428e540d0","68ec2aed-7662-48ae-ab25-04f74ece1e41","6a8ee402-a0f8-4724-8f74-aba5735876d7","6ff9af62-1895-465a-b1f3-61f0d8318958","7cdee412-3519-4626-80ca-e3e431a604f0","7d839f21-68c7-47db-8407-ff3e2c3e13b4","7e7f00d0-4be4-4d4c-8c56-8bde093936d7","802ace56-18ec-47d8-bfeb-5680912b2ec5","809cc7e4-215b-4b39-a5f3-e60240f1723f","80f46b80-0728-49bf-9d54-801eaa10b9b2","81c31217-7919-40fd-97e7-88431b7bd277","87ae26b5-bb60-4138-ab08-740e45455373","89005926-9960-49ed-b0f8-4bb202c7973c","8bd501ae-5814-4336-a45b-2b88cb85d29e","8f6597c9-8271-49c7-b4f6-9265f5d95f99","904956c6-3bd3-4b7b-9c61-d8993ec37e20","9443c31e-9f36-44ef-bc59-6d1d3a5499bb","948cdb9d-adae-4161-a233-7f7d28b3e1a7","96d09581-e8da-4169-82d1-14389b53c375","9869a753-5e41-4098-ab41-e75b4396ec50","99263917-25ca-4d54-b1f9-d6d316747088","99ac832b-34dd-4f59-92cb-9cd1571d6706","9abddd8c-626b-4896-b550-93f2e93d209e","9bbec76c-c1e4-4c6d-ad24-078fe097f195","9f083ec7-e589-4415-8c30-1c60cde2ce04","a004dc79-3857-4663-930c-59b2240e84bc","a61f40cd-7641-4228-9239-8894d1d04851","b16321b6-3e28-424b-ac72-038cc4ed6458","b635680a-12ae-49f8-a3d7-7254cb0962ec","b6bafa7b-62a4-477c-b2f5-6b9d26c6cbf4","be0bda98-e3f7-4a9e-b05d-5f8529e762ab","be2b4177-e47c-4dde-9ead-31b7602065ec","be45567a-ca1d-4e3a-a630-ddf4fbd97bc6","bfd607c0-7ed7-4a4e-abdd-508080f40ef2","c6563536-2751-4b09-8e28-23438eb32533","c80d1df6-247d-4ceb-8493-226a2a4a8f75","c8777821-c142-4793-9942-c3a081316e76","c9c10b68-7ac5-4c0a-8fe5-f76da619a04b","cd33c0f5-5545-477a-9185-53c707983795","d8d4eaeb-6546-44d8-a96f-7270e23014d1","ddeb2ed7-1dc6-443c-85b3-ba8edaa4a60b","e136f064-459a-49b1-a501-9b935db11e35","e58e681e-a069-4414-aafe-634c7987fd0d","ea68cf78-e200-4169-89f4-cdee3aa13592","eadd0f51-703f-4235-af9a-74a1d8aeec50","ed55827d-1d72-4884-8a4f-fe7acbedab2c","ef51caf8-f9d9-48d7-9145-9dfc91054f70","f3a0ae49-8aca-44fe-abea-2cff92a6adbc","f87cf997-14b5-4a2c-a7d1-34b7de6561a2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"banned","legacy":"legal","oathbreaker":"legal","premodern":"legal","timeless":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","40K","4BB","4ED","A25","AFC","ATH","BBD","BLC","BRB","BRC","C16","C17","CED","CEI","CMM","CMR","CNS","CST","DDF","DMR","DRC","DSC","EMA","EOC","F01","FBB","FIC","GN3","ICE","IMA","J13","J21","LCC","LEA","LEB","LTC","M3C","MB2","ME2","ME4","MIC","MKC","MOC","NCC","NEC","OLEP","ONC","PF25","PIP","PLST","PMEI","PRM","PTC","SCD","SLD","SLP","SOC","SPG","STA","SUM","TD0","TDC","V13","VMA","VOC","WC97","WHO","WOC"],"rulings":[{"date":"2022-12-08","text":"Use the power of the creature from when it was last on the battlefield to determine how much life is gained."}],"rarities":["uncommon","rare","mythic"]},"swords to plowshares [e6c41473-2398-4888-9f0c-467dce7c39a4]":{"name":"Swords to Plowshares","mana_cost":{"type":"Cost","shards":["White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. Its controller gains life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Target"}}},"player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. Its controller gains life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"e6c41473-2398-4888-9f0c-467dce7c39a4","metadata":{"related_token_ids":["03e437ca-c6d9-5728-ba28-aac7b5166161"],"source_printing_ids":["04e0738b-b856-401e-8b41-096e2c48cf96","057d2410-30d3-4b7a-9dc3-f2512c1cf31c","06554274-78ee-4bfc-b203-b81cb4639427","06d67c87-ae38-4b84-98da-818e451a727f","0e7ff4dc-af63-4342-9a44-d059e62bd14c","0e8e8743-de34-4d1c-b2ac-b8c334a34362","0f34ecf6-460c-4451-b26c-a1fced340c92","12401907-17c5-47cc-8e10-fa917a5f14ea","19733c08-a007-46c8-af85-7c943f289ee8","1c3a8a52-f909-4863-9cce-dcc4e5262f7f","1db2cf7a-5e66-4f49-a2b2-f32677ddace9","20ef813e-2bec-431f-b010-995791285d0a","255099be-c64e-4f6a-8463-4fc058d6908d","31b1ca46-d2fb-4772-8975-64836ce72f0a","375fd2cb-443b-4be4-ad60-6d1a8e74f510","386ea9eb-abc1-4862-aa2d-8fb808d79490","3b701a88-6074-476f-b87c-9a6d5d22c414","42ecba4b-9624-428f-a8af-dd88139ab13c","4bc8dea8-a6af-4bba-affa-92aca36a8413","50fc5b10-6215-48a9-8993-b61681f61186","5220accc-2095-43d9-9114-7599c1cb8e41","5287cab9-29f3-4516-b1f0-57ff6ebe889a","57c2632e-5181-43e4-8744-baafb8f7d213","5a8b56db-47cb-4c62-9b54-2a48576947d1","5ae3067d-768b-40e7-80d6-08cc42f162b6","5f3fe6b7-3f77-4670-bd26-2914588271c2","61f917dc-2685-4ce9-9be0-1d69e467337d","6431a83f-715f-449d-a985-60b5cea68dac","64b295e4-bc12-4c12-9eaf-4df22b84144d","68357502-cf23-4bf6-ab4e-371428e540d0","68ec2aed-7662-48ae-ab25-04f74ece1e41","6a8ee402-a0f8-4724-8f74-aba5735876d7","6ff9af62-1895-465a-b1f3-61f0d8318958","7cdee412-3519-4626-80ca-e3e431a604f0","7d839f21-68c7-47db-8407-ff3e2c3e13b4","7e7f00d0-4be4-4d4c-8c56-8bde093936d7","802ace56-18ec-47d8-bfeb-5680912b2ec5","809cc7e4-215b-4b39-a5f3-e60240f1723f","80f46b80-0728-49bf-9d54-801eaa10b9b2","81c31217-7919-40fd-97e7-88431b7bd277","87ae26b5-bb60-4138-ab08-740e45455373","89005926-9960-49ed-b0f8-4bb202c7973c","8bd501ae-5814-4336-a45b-2b88cb85d29e","8f6597c9-8271-49c7-b4f6-9265f5d95f99","904956c6-3bd3-4b7b-9c61-d8993ec37e20","9443c31e-9f36-44ef-bc59-6d1d3a5499bb","948cdb9d-adae-4161-a233-7f7d28b3e1a7","96d09581-e8da-4169-82d1-14389b53c375","9869a753-5e41-4098-ab41-e75b4396ec50","99263917-25ca-4d54-b1f9-d6d316747088","99ac832b-34dd-4f59-92cb-9cd1571d6706","9abddd8c-626b-4896-b550-93f2e93d209e","9bbec76c-c1e4-4c6d-ad24-078fe097f195","9f083ec7-e589-4415-8c30-1c60cde2ce04","a004dc79-3857-4663-930c-59b2240e84bc","a61f40cd-7641-4228-9239-8894d1d04851","b16321b6-3e28-424b-ac72-038cc4ed6458","b635680a-12ae-49f8-a3d7-7254cb0962ec","b6bafa7b-62a4-477c-b2f5-6b9d26c6cbf4","be0bda98-e3f7-4a9e-b05d-5f8529e762ab","be2b4177-e47c-4dde-9ead-31b7602065ec","be45567a-ca1d-4e3a-a630-ddf4fbd97bc6","bfd607c0-7ed7-4a4e-abdd-508080f40ef2","c6563536-2751-4b09-8e28-23438eb32533","c80d1df6-247d-4ceb-8493-226a2a4a8f75","c8777821-c142-4793-9942-c3a081316e76","c9c10b68-7ac5-4c0a-8fe5-f76da619a04b","cd33c0f5-5545-477a-9185-53c707983795","d8d4eaeb-6546-44d8-a96f-7270e23014d1","ddeb2ed7-1dc6-443c-85b3-ba8edaa4a60b","e136f064-459a-49b1-a501-9b935db11e35","e58e681e-a069-4414-aafe-634c7987fd0d","ea68cf78-e200-4169-89f4-cdee3aa13592","eadd0f51-703f-4235-af9a-74a1d8aeec50","ed55827d-1d72-4884-8a4f-fe7acbedab2c","ef51caf8-f9d9-48d7-9145-9dfc91054f70","f3a0ae49-8aca-44fe-abea-2cff92a6adbc","f87cf997-14b5-4a2c-a7d1-34b7de6561a2"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"prepare","printings":["PSOS","SOS"],"rarities":["uncommon","rare","mythic"]},"sylvan smite":{"name":"Sylvan Smite","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put a +1/+1 counter on target creature you control if you weren't the starting player. Then that creature deals damage equal to its power to target creature you don't control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put a +1/+1 counter on target creature you control if you weren't the starting player. Then that creature deals damage equal to its power to target creature you don't control.","target_prompt":null,"condition":{"type":"Not","condition":{"type":"WasStartingPlayer","controller":"You"}},"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ebcd03ea-04b2-415f-a2d1-afe442e4d014","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YBRO"]},"syr ginger, the meal ender":{"name":"Syr Ginger, the Meal Ender","mana_cost":{"type":"Cost","shards":[],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact","Creature"],"subtypes":["Food","Knight"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Syr Ginger has trample, hexproof, and haste as long as an opponent controls a planeswalker.\nWhenever another artifact you control is put into a graveyard from the battlefield, put a +1/+1 counter on Syr Ginger and scry 1.\n{2}, {T}, Sacrifice Syr Ginger: You gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{2}, {T}, Sacrifice ~: You gain life equal to its power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"Another"}]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another artifact you control is put into a graveyard from the battlefield, put a +1/+1 counter on ~ and scry 1.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Trample"},{"type":"AddKeyword","keyword":"Hexproof"},{"type":"AddKeyword","keyword":"Haste"}],"condition":{"type":"Unrecognized","text":"an opponent controls a planeswalker"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ has trample, hexproof, and haste as long as an opponent controls a planeswalker."}],"replacements":[],"color_override":null,"scryfall_oracle_id":"2eb16535-718f-4b88-92bc-96429d796327","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["522e43f3-4f9a-4f40-a5f5-d84277172040","7fbdba12-1369-41ae-b0e9-c405c0f0a2e5"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PWOE","WOE"],"rulings":[{"date":"2023-09-01","text":"For Syr Ginger's last ability, use its power from when it was last on the battlefield to determine how much life is gained. If that power was 0 or less, you gain no life."}],"rarities":["rare"]},"tahngarth, talruum hero":{"name":"Tahngarth, Talruum Hero","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Minotaur","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Vigilance\n{1}{R}, {T}: Tahngarth deals damage equal to its power to target creature. That creature deals damage equal to its power to Tahngarth.","non_ability_text":null,"flavor_name":null,"keywords":["Vigilance"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{R}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"c5b4131e-13aa-4a22-b8f5-e5f9d366cb4f","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["6cdab0f9-7208-4555-b509-e61773ebc1f9","c1778f37-af01-4f8c-ab9d-a4c60abf7e78"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLS"],"rarities":["rare"]},"talon gates of madara":{"name":"Talon Gates of Madara","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Gate"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this land enters, up to one target creature phases out.\n{T}: Add {C}.\n{1}, {T}: Add one mana of any color.\n{4}: Put this card from your hand onto the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}, {T}: Add one mana of any color.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}: Put this card from your hand onto the battlefield.","target_prompt":null,"activation_zone":"Hand","condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PhaseOut","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, up to one target creature phases out.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"8c45bf9d-a017-43bf-9e32-67810a8a217b","metadata":{"source_printing_ids":["c565f8fe-acf7-40dd-8100-8f692d1e232c","de92facf-762b-4a23-8d5e-bb673b0500c0"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["M3C"],"rulings":[{"date":"2024-06-07","text":"An attacking or blocking creature that phases out is removed from combat."},{"date":"2024-06-07","text":"Any continuous effects with a \"for as long as\" duration ignore phased-out objects. If ignoring those objects causes the effect's conditions to no longer be met, the duration will expire."},{"date":"2024-06-07","text":"As a permanent is phased out, Auras and Equipment attached to it also phase out at the same time. Those Auras and Equipment will phase in at the same time that permanent does, and they'll phase in still attached to that permanent."},{"date":"2024-06-07","text":"Choices made for permanents as they entered the battlefield are remembered when they phase in."},{"date":"2024-06-07","text":"Permanents phase back in during their controller's untap step, immediately before that player untaps their permanents. Creatures that phase in this way are able to attack during that turn, and their activated abilities with {T} in their costs can be activated. If a permanent had counters on it when it phased out, it will have those counters when it phases back in."},{"date":"2024-06-07","text":"Phased-out permanents are treated as though they don't exist. They can't be the targets of spells or abilities, their static abilities have no effect on the game, their triggered abilities can't trigger, they can't attack or block, and so on."},{"date":"2024-06-07","text":"Phasing out doesn't cause any \"leaves the battlefield\" abilities to trigger. Similarly, phasing in won't cause any \"enters the battlefield\" abilities to trigger."},{"date":"2024-06-07","text":"When you activate Talon Gates of Madara's last ability, you must reveal Talon Gates of Madara from your hand until that ability resolves or otherwise leaves the stack. If Talon Gates of Madara isn't still in your hand as that ability resolves, nothing happens."}],"rarities":["rare"]},"tamiyo, field researcher":{"name":"Tamiyo, Field Researcher","mana_cost":{"type":"Cost","shards":["Green","White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Tamiyo"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Choose up to two target creatures. Until your next turn, whenever either of those creatures deals combat damage, you draw a card.\n[−2]: Tap up to two target nonland permanents. They don't untap during their controller's next untap step.\n[−7]: Draw three cards. You get an emblem with \"You may cast spells from your hand without paying their mana costs.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"whenever","description":"whenever either of those creatures deals combat damage, you draw a card"},"cost":null,"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Choose up to two target creatures. Until your next turn, whenever either of those creatures deals combat damage, you draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},{"kind":"Activated","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":null,"properties":[]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":{"type":"Loyalty","amount":-2},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"CantUntap","affected":{"type":"ParentTarget"},"modifications":[{"type":"AddStaticMode","mode":"CantUntap"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"don't untap during their controller's next untap step"}],"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"target":null},"cost":null,"sub_ability":null,"duration":{"UntilNextStepOf":{"step":"Untap","player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−2]: Tap up to two target nonland permanents. They don't untap during their controller's next untap step.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":2}},"forward_result":false},{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":3},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":-7},"sub_ability":{"kind":"Spell","effect":{"type":"CreateEmblem","statics":[{"mode":{"CastFromHandFree":{"frequency":"Unlimited","origin":"Hand"}},"affected":{"type":"Any"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You may cast spells from your hand without paying their mana costs"}],"triggers":[]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−7]: Draw three cards. You get an emblem with \"You may cast spells from your hand without paying their mana costs.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Blue","White"],"color_identity":["Green","Blue","White"],"scryfall_oracle_id":"9cf99129-f51a-4418-a8cc-8ca2992b17fa","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["25a31242-5e4c-489f-9425-912d6fb7a651","576ba8db-fad9-4c48-96be-a8a7e5f43039","5899d4c5-e6b8-48e9-9044-b5b34a1284f9","9f9aced7-9ae9-432f-b8c0-caac9cad098b","c8320f71-e958-4e40-9304-bd115f29d67c","f691787b-2f97-48d7-bf3a-4852377715ad"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","EMN","INR","PEMN","SIR","SLD"],"rulings":[{"date":"2025-01-24","text":"If Tamiyo’s first ability targets two creatures, and both deal combat damage at the same time, the delayed triggered ability triggers twice."},{"date":"2025-01-24","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2025-01-24","text":"If you cast a spell “without paying its mana cost,” you can’t choose to cast it for any alternative costs. You can, however, pay additional costs. If the spell has any mandatory additional costs, those must be paid to cast the spell."},{"date":"2025-01-24","text":"Tamiyo’s first ability can target creatures you don’t control. You’ll draw a card, not their controller, if they deal combat damage."},{"date":"2025-01-24","text":"Tamiyo’s first ability sets up a delayed triggered ability that triggers even if Tamiyo has left the battlefield before those creatures deal combat damage."}],"rarities":["mythic"]},"tanuki transplanter":{"name":"Tanuki Transplanter","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Equipment","Dog"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or equipped creature attacks, add an amount of {G} equal to its power. Until end of turn, you don't lose this mana as steps and phases end.\nReconfigure {3} ({3}: Attach to target creature you control; or unattach from a creature. Reconfigure only as a sorcery. While attached, this isn't a creature.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Reconfigure":{"type":"Cost","shards":[],"generic":3}}],"abilities":[{"kind":"Activated","effect":{"type":"Attach","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"UnattachAll","attachment":{"type":"SelfRef"},"target":{"type":"Any"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":3}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"RequiresCondition","data":{"condition":{"type":"SourceAttachedTo","required_type":"Creature"}}},{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"color_options":["Green"]},"expiry":"EndOfTurn"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"AttachedTo"}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or equipped creature attacks, add an amount of {G} equal to its power. Until end of turn, you don't lose this mana as steps and phases end.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"RemoveType","core_type":"Creature"}],"condition":{"type":"SourceAttachedToCreature"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"CR 702.151b + CR 613.1d: a reconfigure Equipment stops being a creature while attached to a creature (Layer 4 type removal)."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4d1c7f42-19ef-405e-9edc-50a81b78f97c","metadata":{"source_printing_ids":["45ea5ead-9fd8-4909-96aa-d4e970891c93","bc102a4a-8f37-42ad-98ee-e7035d2ff71f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NEC","PRM"],"rulings":[{"date":"2022-02-18","text":"Although it causes an Equipment to become attached to a creature, reconfigure is not an “equip ability” for the purpose of cards like Fighter Class and Leonin Shikari."},{"date":"2022-02-18","text":"An Equipment creature can never become attached to itself. If an effect tries to do this, nothing happens."},{"date":"2022-02-18","text":"An Equipment creature with reconfigure can be attached to creatures by effects other than its reconfigure ability, such as the activated ability of Brass Squire."},{"date":"2022-02-18","text":"An Equipment doesn't become tapped when the permanent it's attached to becomes tapped. For example, if you attack with a creature that is equipped with Acquisition Octopus, then use reconfigure to unattach Acquisition Octopus after combat, the Octopus will be untapped and could be used to block during your opponent's turn."},{"date":"2022-02-18","text":"As soon as an Equipment creature with reconfigure stops being a creature, any Equipment and Auras with enchant creature abilities become unattached. Auras that can enchant an Equipment that isn't a creature remain attached to it."},{"date":"2022-02-18","text":"Attaching an Equipment with reconfigure to a creature causes that Equipment to stop being a creature until it becomes unattached. It also loses any creature subtypes it had."},{"date":"2022-02-18","text":"If Tanuki Transplanter attacks, use its power to determine how much {G} to add. If equipped creature attacks, use its power. In either case, use the power as the triggered ability resolves. Also in either case, if the creature isn't on the battlefield at that time, use its power as it last existed on the battlefield to determine how much {G} to add."},{"date":"2022-02-18","text":"If a permanent with reconfigure is somehow still a creature after it becomes attached (perhaps due to an effect like that of March of the Machines), it immediately becomes unattached from the equipped creature."},{"date":"2022-02-18","text":"If an Equipment with reconfigure somehow loses its abilities while it is attached, the effect causing it to not be a creature continues to apply until it becomes unattached."},{"date":"2022-02-18","text":"Reconfigure represents two activated abilities. Reconfigure [cost] means “[Cost]: Attach this permanent to another target creature you control. Activate only as a sorcery,” and “[Cost]: Unattach this permanent. Activate only if this permanent is attached to a creature and only as a sorcery.”"},{"date":"2022-02-18","text":"Similarly, if an Equipment is tapped, its reconfigure abilities may still be activated and it may still become attached to creatures. Becoming attached doesn't untap it. In most cases, an attached Equipment being tapped won't affect gameplay, but it will be relevant if it becomes unattached again before it untaps."}],"rarities":["rare"]},"teferi, time raveler":{"name":"Teferi, Time Raveler","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Teferi"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"Each opponent can cast spells only any time they could cast a sorcery.\n[+1]: Until your next turn, you may cast sorcery spells as though they had flash.\n[−3]: Return up to one target artifact, creature, or enchantment to its owner's hand. Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Any"},"modifications":[{"type":"GrantStaticAbility","definition":{"mode":{"CastWithKeyword":{"keyword":"Flash"}},"affected":{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"target":{"type":"Controller"}},"cost":{"type":"Loyalty","amount":1},"sub_ability":null,"duration":{"UntilNextTurnOf":{"player":{"type":"Controller"}}},"description":"[+1]: Until your next turn, you may cast sorcery spells as though they had flash.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"destination":null},"cost":{"type":"Loyalty","amount":-3},"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[−3]: Return up to one target artifact, creature, or enchantment to its owner's hand. Draw a card.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"CantCastDuring":{"who":"Opponents","when":"NotSorcerySpeed"}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each opponent can cast spells only any time they could cast a sorcery."}],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"ae7604bb-4818-45a3-960c-cf3d83f15964","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["066cee3d-1bc9-43bb-a1e5-70256875eb9b","1e155fa4-896a-4ba6-939e-03c7877ac47e","5a47d968-bba0-4277-b5d7-eb9e1acd7953","5cb76266-ae50-4bbc-8f96-d98f309b02d3","662fe50f-d75c-422c-8c6c-1f9b5c4ba21f","6e2b2e55-21a3-4f71-a14b-d3d1b137d18c","f7eb4cc4-b79a-4ac8-ba33-ceeb55012022"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"banned","timeless":"legal","vintage":"legal"},"printings":["BLC","MB2","PRM","PWAR","RVR","SLD","WAR"],"rulings":[{"date":"2024-01-12","text":"If an effect allows opponents to cast a spell as though it had flash (for example, if your opponent also controls a Teferi, Time Raveler and activates his +1 loyalty ability), the restriction of Teferi's first ability takes precedence over that permission."},{"date":"2024-01-12","text":"You may activate Teferi's last ability without choosing any target. You'll just draw a card. However, if you do choose a target and the target permanent is an illegal target by the time Teferi's last ability tries to resolve, the ability doesn't resolve. You don't draw a card."}],"rarities":["rare","mythic"]},"temple of the dead":{"name":"Temple of the Dead","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Transforms from Aclazotz, Deepest Betrayal.)\n{T}: Add {B}.\n{2}{B}, {T}: Transform this land. Activate only if a player has one or fewer cards in hand and only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {B}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Transform","target":{"type":"SelfRef"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}{B}, {T}: Transform ~. Activate only if a player has one or fewer cards in hand and only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"RequiresCondition","data":{"condition":null}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"fcdfe9d5-2743-4d3e-ab57-bf0f96beaa15","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"(Transforms from Aclazotz, Deepest Betrayal.)\n{T}: Add {B}.\n{2}{B}, {T}: Transform this land. Activate only if a player has one or fewer car","line_index":0}],"metadata":{"related_token_ids":["3e43a418-8c17-5ed2-b92b-42dbe4c96b4b"],"source_printing_ids":["627c392c-4d18-4eb2-a4e8-c668f61f5487","95775b13-2761-424e-9828-2275ec987368"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rarities":["mythic"]},"tempt with discovery":{"name":"Tempt with Discovery","mana_cost":{"type":"Cost","shards":["Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search their library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who searched a library this way shuffles.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"SearchedLibrary"}}},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search their library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who searched a library this way shuffles.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"4baa6145-216e-476b-b178-aaaa1e633701","metadata":{"source_printing_ids":["580bbd5b-795e-41fe-b061-579c42218670","6e70c0e8-afe0-4fcb-bda9-2d0d5ec4f2ee","787ac088-2b9a-4449-80b4-7de4a6812250","79248b68-4fab-46da-ab15-5c71c1f68d4b","dab9c403-8738-4593-be07-ea9bcb8faa92"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BLC","C13","C16","C19","LTC","PLST"],"rulings":[{"date":"2013-10-17","text":"After each opponent has decided, the effect happens simultaneously for each one who accepted the offer. Then, the effect happens again for you a number of times equal to the number of opponents who accepted."},{"date":"2013-10-17","text":"Your opponents decide in turn order whether or not they accept the offer, starting with the opponent on your left. Each opponent will know the decisions of previous opponents in turn order when making their decision."}],"rarities":["uncommon","rare"]},"terashi's grasp":{"name":"Terashi's Grasp","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":["Arcane"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target artifact or enchantment. You gain life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target artifact or enchantment. You gain life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"d4738552-3a5e-43c5-a975-8b77618bacaf","metadata":{"source_printing_ids":["44f0d818-b463-4ef7-93b4-1ae341b52e2c","6147b88c-0f15-4432-8765-5699ee7e5707","a63cfebd-8cab-48b4-814a-4d8751dd1b57","ab387bfd-2651-4883-b1a7-7bf197018bbe"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["BOK","MM2","MMA","PLST"],"rarities":["common","uncommon"]},"tergrid's shadow":{"name":"Tergrid's Shadow","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Each player sacrifices two creatures.\nForetell {2}{B}{B} (During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Foretell":{"type":"Cost","shards":["Black","Black"],"generic":2}}],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":"Each player sacrifices two creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"692260bb-e01c-4550-832a-9611856a6ff0","metadata":{"source_printing_ids":["417f71d2-d7da-4279-8847-d27c67e9ea9d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM"],"rulings":[{"date":"2021-02-05","text":"As Tergrid's Shadow resolves, first the player whose turn it is chooses two creatures they control, then each other player in turn order does the same, knowing the choices made before them. Then all the chosen creatures are sacrificed at the same time."},{"date":"2021-02-05","text":"Because exiling a card with foretell from your hand is a special action, you can do so any time you have priority during your turn, including in response to spells and abilities. Once you announce you're taking the action, no other player can respond by trying to remove the card from your hand."},{"date":"2021-02-05","text":"Casting a foretold card from exile follows the timing rules for that card. If you foretell an instant card, you can cast it as soon as the next player's turn. In most cases, if you foretell a card that isn't an instant (or doesn't have flash), you'll have to wait until your next turn to cast it."},{"date":"2021-02-05","text":"If a player controls two or fewer creatures, that player sacrifices each creature they control."},{"date":"2021-02-05","text":"If you're casting a foretold card from exile for its foretell cost, you can't choose to cast it for any other alternative costs. You can, however, pay additional costs, such as kicker costs. If the card has any mandatory additional costs, those must be paid to cast the spell."}],"rarities":["uncommon"]},"terminal velocity":{"name":"Terminal Velocity","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may put an artifact or creature card from your hand onto the battlefield. That permanent gains haste, \"When this permanent leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice this permanent.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Permanent"],"controller":null,"properties":[]},"modifications":[{"type":"GrantTrigger","trigger":{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,","constraint":null,"condition":null,"batched":false}},{"type":"GrantTrigger","trigger":{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, sacrifice ~.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain haste, \"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice ~.\""}],"duration":null,"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You may put an artifact or creature card from your hand onto the battlefield. That permanent gains haste, \"When ~ leaves the battlefield, it deals damage equal to its mana value to each creature,\" and \"At the beginning of your end step, sacrifice ~.\"","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":true}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"cdda2f04-d59e-4ef8-a26d-964d80750940","metadata":{"source_printing_ids":["1d18dc06-16f0-4a3b-8d52-dbf4aa2c393d","d36147a8-dfcd-4d56-a98d-72fee52578d6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["EOE","PEOE"],"rulings":[{"date":"2025-07-25","text":"If a permanent has {X} in its mana cost, X is 0 for the purpose of determining its mana value."},{"date":"2025-07-25","text":"Use the permanent’s mana value as it last existed on the battlefield to determine how much damage the triggered ability deals."}],"rarities":["rare"]},"terra, herald of hope":{"name":"Terra, Herald of Hope","mana_cost":{"type":"Cost","shards":["Red","White","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard","Warrior"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Trance — At the beginning of combat on your turn, mill two cards. Terra gains flying until end of turn.\nWhenever Terra deals combat damage to a player, you may pay {2}. When you do, return target creature card with power 3 or less from your graveyard to the battlefield tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":2},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Flying"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain flying"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, mill two cards. ~ gains flying until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"PtComparison","stat":"Power","scope":"Current","comparator":"LE","value":{"type":"Fixed","value":3}},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, you may pay {2}. When you do, return target creature card with power 3 or less from your graveyard to the battlefield tapped.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Red","White"],"color_identity":["Black","Red","White"],"scryfall_oracle_id":"25d40d28-1b46-4055-959a-45719040ed30","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4f36f28b-b9c9-42a2-a2e5-d1b532e482a3","5aa1a2d7-6133-41a9-9662-9008d1309935","901bd4dc-ebd3-40af-9fb0-57a8719329a4","bb077546-d0f6-4b74-bc59-3c6a50fbc4f2","e0946131-2cda-4850-912e-cb8a8124685b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["FIC"],"rulings":[{"date":"2025-06-06","text":"You don't choose a target for Terra's last ability at the time it triggers. Rather, a second \"reflexive\" ability triggers when you pay {2} this way. You choose a target for that ability as it goes on the stack. Each player may respond to this triggered ability as normal."}],"rarities":["mythic"]},"terra, magical adept":{"name":"Terra, Magical Adept","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Wizard","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Terra enters, mill five cards. Put up to one enchantment card milled this way into your hand.\nTrance — {4}{R}{G}, {T}: Exile Terra, then return it to the battlefield transformed under its owner's control. Activate only as a sorcery.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red","Green"],"generic":4}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Trance — {4}{R}{G}, {T}: Exile ~, then return it to the battlefield transformed under its owner's control. Activate only as a sorcery.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":5},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":["Enchantment"],"controller":null,"properties":[]}},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false,"up_to":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, mill five cards. Put up to one enchantment card milled this way into your hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"54ca5904-9099-497a-9684-101656025487","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["0502c627-9f63-5b1e-b7ba-1809eefc0580"],"source_printing_ids":["0cf789e7-045c-4ad1-abc3-23eabda54f02","fbd447aa-588d-4c4d-925e-a7d3bdf6a65c","fe0aa7d7-73e7-4c8c-92b5-b923817ce461"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"A nonmodal double-faced card enters with its front face up by default, unless a spell or ability instructs you to put it onto the battlefield transformed or allows you to cast it transformed, in which case it enters with its back face up."},{"date":"2025-06-06","text":"A token that is created as a copy of a double-faced permanent or a double-faced card in another zone is a double-faced token. It will have both the front face and back face of whatever object it's copying. If it's copying a double-faced permanent whose back face is up, the token will enter with its back face up. It can transform if instructed to do so."},{"date":"2025-06-06","text":"Each face of a nonmodal double-faced card has its own set of characteristics: name, types, subtypes, abilities, and so on. While a nonmodal double-faced permanent is on the battlefield, consider only the characteristics of the face that's currently up. The other set of characteristics is ignored."},{"date":"2025-06-06","text":"Each nonmodal double-faced card in this release is cast face up. In every zone other than the battlefield, consider only the characteristics of its front face. If it is on the battlefield, consider only the characteristics of the face that's up; the other face's characteristics are ignored."},{"date":"2025-06-06","text":"Esper Terra's fourth chapter ability isn't a mana ability. It uses the stack and can be responded to."},{"date":"2025-06-06","text":"If the copied enchantment has {X} in its mana cost, X is 0."},{"date":"2025-06-06","text":"If the copied enchantment is a token, the new token that's created copies the original characteristics of that token as stated by the effect that created the token."},{"date":"2025-06-06","text":"If the copied enchantment is copying something else, then the token enters as whatever that enchantment copied."},{"date":"2025-06-06","text":"If the enchantment copied by the token had any \"when [this permanent] enters\" abilities, the token also has those abilities, and they'll trigger when it's created. Similarly, any \"as [this permanent] enters\" or \"[this permanent] enters with\" abilities that the token has copied will also work."},{"date":"2025-06-06","text":"If you are instructed to put a card that isn't a double-faced card onto the battlefield transformed, it will not enter at all. In that case, it stays in the zone it was previously in. For example, if a single-faced card is a copy of Crystal Fragments, it will be exiled during the resolution of its second ability and remain in exile."},{"date":"2025-06-06","text":"In the Commander variant, a double-faced card's color identity is determined by the mana costs and mana symbols in the rules text of both faces combined. If either face has a color indicator or basic land type, those are also considered. For example, Cecil, Dark Knight's color identity is black and white, since its front face is black and its back face has a white color indicator."},{"date":"2025-06-06","text":"The back face of a nonmodal double-faced card usually has a color indicator that defines its color."},{"date":"2025-06-06","text":"The mana value of a nonmodal double-faced card is the mana value of its front face, no matter which face is up."},{"date":"2025-06-06","text":"The token copies exactly what was printed on the original enchantment (unless that enchantment is copying something else or is a token; see below). It doesn't copy whether that enchantment is tapped or untapped, whether it has any counters on it or any Auras or Equipment attached to it, or any non-copy effects that have changed its types, color, power and toughness, and so on."}],"rarities":["mythic"]},"terror of the peaks":{"name":"Terror of the Peaks","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dragon"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nSpells your opponents cast that target this creature cost an additional 3 life to cast.\nWhenever another creature you control enters, this creature deals damage equal to that creature's power to any target.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"static_structure","description":"Static pattern matched but line failed static parser: Spells your opponents cast that target ~ cost an additional 3 life to cast."},"cost":null,"sub_ability":null,"duration":null,"description":"Spells your opponents cast that target ~ cost an additional 3 life to cast.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, ~ deals damage equal to that creature's power to any target.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"f8e17f4f-080d-4bba-bd05-ca27e94ccecc","metadata":{"source_printing_ids":["2febfa1b-5a5e-411a-a7aa-f2ca6ee66f51","432ecd5f-966f-4403-a973-51e175a524a0","904ff94a-4db4-44a6-8593-89c32905b3fc","ac35ea21-fef4-4000-9b22-c8d07420827b","cd20aae9-9de0-498b-8325-f8e8290d56e3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["M21","OTJ","PM21","POTJ","PRM","PSPL","SLD"],"rulings":[{"date":"2020-06-23","text":"The amount of damage Terror of the Peaks deals is the entering creature's power as the triggered ability resolves. If that creature leaves the battlefield before the ability resolves, use its power as it last existed on the battlefield."}],"rarities":["mythic"]},"tesak, judith's hellhound":{"name":"Tesak, Judith's Hellhound","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Elemental","Dog"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Unleash (You may have this creature enter with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)\nOther Dogs you control have unleash.\nCreatures you control with counters on them have haste.\nWhenever Tesak attacks, add {R} for each attacking creature.","non_ability_text":null,"flavor_name":null,"keywords":["Unleash"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}},"color_options":["Red"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, add {R} for each attacking creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[{"type":"AddKeyword","keyword":"Unleash"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Dogs you control have unleash."},{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"Any"},"comparator":"GE","count":{"type":"Fixed","value":1}}]},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Creatures you control with counters on them have haste."},{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"HasCounters","counters":{"type":"OfType","data":"P1P1"},"minimum":1},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block as long as it has a +1/+1 counter on it"},{"mode":"CantBlock","affected":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"modifications":[],"condition":{"type":"RecipientHasCounters","counters":{"type":"OfType","data":"P1P1"},"minimum":1},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"can't block as long as it has a +1/+1 counter on it"}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"SelfRef"},"description":"CR 702.98a: Unleash — this permanent may enter with an additional +1/+1 counter on it.","condition":null,"destination_zone":"Battlefield"},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":null},"valid_card":{"type":"Typed","type_filters":["Creature",{"Subtype":"Dog"}],"controller":"You","properties":[{"type":"Another"}]},"description":"CR 702.98a: Unleash — this permanent may enter with an additional +1/+1 counter on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"4117e428-0c78-4dea-9019-dd1836fbb03e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0e563c13-7204-4cda-9b62-d46931fabcef","bf55e49b-4186-4d36-b1f0-4c7715be0f63"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MKC"],"rulings":[{"date":"2024-02-02","text":"A creature with unleash can't block if it has any +1/+1 counter on it, not just one put on it by the unleash ability."},{"date":"2024-02-02","text":"Count the number of attacking creatures when Tesak, Judith's Hellhound's last ability resolves, including Tesak itself if it's still on the battlefield, to determine how much mana to add."},{"date":"2024-02-02","text":"Putting a +1/+1 counter on a creature with unleash that's already blocking won't remove it from combat. It will continue to block."},{"date":"2024-02-02","text":"The unleash ability applies no matter where the creature is entering the battlefield from."},{"date":"2024-02-02","text":"You make the choice to have the creature with unleash enter the battlefield with a +1/+1 counter or not as it's entering the battlefield. At that point, it's too late for a player to respond to the creature spell by trying to counter it, for example."}],"rarities":["rare"]},"teval, arbiter of virtue":{"name":"Teval, Arbiter of Virtue","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Spirit","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying, lifelink\nSpells you cast have delve. (Each card you exile from your graveyard while casting those spells pays for {1}.)\nWhenever you cast a spell, you lose life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":["Flying","Lifelink"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a spell, you lose life equal to its mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":"Delve"}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Spells you cast have delve."}],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"f6cf359a-91cb-4b3c-8837-be53e4ed9c93","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["27a93f5b-7b32-49f0-a179-b897828fe49a","4d3e165a-60e2-4e50-a0de-1cf7c46cb406","a19c38bc-946c-438a-ac8b-f59ff0b4c613"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rulings":[{"date":"2025-04-04","text":"If a spell on the stack has an {X} in its mana cost, use the value of X chosen as it was cast to determine that spell’s mana value."},{"date":"2025-04-04","text":"“Delve” means “For each generic mana in this spell’s total cost, you may exile a card from your graveyard rather than pay that mana.” The delve ability isn’t an additional or alternative cost and applies only after the total cost of the spell with delve is determined."}],"rarities":["mythic"]},"teyo, aegis adept":{"name":"Teyo, Aegis Adept","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Planeswalker"],"subtypes":["Teyo"]},"power":null,"toughness":null,"loyalty":"4","defense":null,"oracle_text":"[+1]: Up to one target creature's base power perpetually becomes equal to its toughness. It perpetually gains \"This creature can attack as though it didn't have defender.\"\n[−2]: Conjure a card named Lumbering Lightshield onto the battlefield.\n[−6]: You get an emblem with \"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness.\"","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetLifeTotal","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Source"}}}},"cost":{"type":"Loyalty","amount":1},"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"Any"},"modifications":[{"type":"AddStaticMode","mode":"CanAttackWithDefender"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"~ can attack as though it didn't have defender.\""}],"duration":"UntilEndOfTurn","target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"[+1]: Up to one target creature's base power perpetually becomes equal to its toughness. It perpetually gains \"~ can attack as though it didn't have defender.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},{"kind":"Activated","effect":{"type":"Conjure","cards":[{"name":"Lumbering Lightshield","count":{"type":"Fixed","value":1}}],"destination":"Battlefield","tapped":false},"cost":{"type":"Loyalty","amount":-2},"sub_ability":null,"duration":null,"description":"[−2]: Conjure a card named Lumbering Lightshield onto the battlefield.","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"CreateEmblem","statics":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasColor","color":"White"},{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Command"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}]},"cost":{"type":"Loyalty","amount":-6},"sub_ability":null,"duration":null,"description":"[−6]: You get an emblem with \"At the beginning of your end step, return target white creature card from your graveyard to the battlefield. You gain life equal to its toughness.\"","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"9febfc66-2c2d-4a53-89eb-9650026abeed","brawl_commander":true,"is_oathbreaker":true,"metadata":{"source_printing_ids":["8f4c701d-8a2c-44bf-9e36-f37936179244"]},"legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["J21"],"rarities":["mythic"]},"thalisse, reverent medium":{"name":"Thalisse, Reverent Medium","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Cleric"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each end step, create X 1/1 white Spirit creature tokens with flying, where X is the number of tokens you created this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Spirit","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Spirit"],"colors":["White"],"keywords":["Flying"],"tapped":false,"count":{"type":"Ref","qty":{"type":"TokensCreatedThisTurn","player":{"type":"Controller"},"filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, create X 1/1 white Spirit creature tokens with flying, where X is the number of tokens you created this turn.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"77cf4fb1-593f-4240-96d9-6ae9084baeac","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["afdf1b42-a3f9-50a2-bdc1-3fdb2f1992ad","bd2ac668-91ce-54b9-bd79-d8446d40d9f1"],"source_printing_ids":["474d6363-ebe1-4a1a-b4e6-7bd53d878527","e4899773-c501-45e5-bf1f-8d818788d61f","f8cd8b55-2927-4e53-be1e-cc33c35f85b7"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","PRM","TDC"],"rulings":[{"date":"2020-11-10","text":"If an effect creates a copy of a permanent spell, that spell becomes a token on the battlefield under your control, but that token has not been \"created.\" It won't count for Thalisse's ability."},{"date":"2020-11-10","text":"Thalisse's ability counts all tokens you created that turn prior to the ability resolving, including both noncreature tokens and creature tokens. It doesn't matter if those tokens are still on the battlefield or still under your control."}],"rarities":["uncommon"]},"the aesir escape valhalla":{"name":"The Aesir Escape Valhalla","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Exile a permanent card from your graveyard. You gain life equal to its mana value.\nII — Put a number of +1/+1 counters on target creature you control equal to the mana value of the exiled card.\nIII — Return this Saga and the exiled card to their owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"Aggregate","function":"Sum","property":"ManaValue","filter":{"type":"And","filters":[{"type":"ExiledBySource"},{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Owned","controller":"You"}]}]}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"SelfRef"},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"the","description":"the exiled card"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6afe197b-0779-4284-a192-357a3c89b7e3","metadata":{"source_printing_ids":["2efbcea0-53ba-444d-b2e0-6d184f945f92"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ACR"],"rulings":[{"date":"2024-07-05","text":"If a card in exile has {X} in its mana cost, X is 0 for the purpose of determining its mana value."}],"rarities":["uncommon"]},"the bears of littjara":{"name":"The Bears of Littjara","mana_cost":{"type":"Cost","shards":["Green","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Create a 2/2 blue Shapeshifter creature token with changeling.\nII — Any number of target Shapeshifter creatures you control have base power and toughness 4/4.\nIII — Choose up to one target creature or planeswalker. Each creature with power 4 or greater you control deals damage equal to its power to that permanent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Token","name":"Shapeshifter","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Shapeshifter"],"colors":["Blue"],"keywords":["Changeling"],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"have base power and toughness 4/4"}],"duration":"UntilHostLeavesPlay","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Shapeshifter"}],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Planeswalker"],"controller":null,"properties":[]}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"697f3fd9-1577-4f69-bdf8-db1f673d3505","metadata":{"related_token_ids":["4619d1ad-f2df-56e6-b96e-c8e204239231","4f68d7e7-f83a-5967-8bb8-4a66c08b986e"],"source_printing_ids":["aec45213-dcec-4c23-8348-265977a3e394","be43a643-6cb7-4bb6-a28d-8ad30b7fbb6d"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["KHM","PKHM","PLST"],"rulings":[{"date":"2021-02-05","text":"A chapter ability doesn’t trigger if a lore counter is put on a Saga that already had a number of lore counters greater than or equal to that chapter’s number. For example, the third lore counter put on a Saga causes the chapter III ability to trigger, but chapters I and II won’t trigger again."},{"date":"2021-02-05","text":"Any effects that modify the Shapeshifter’s power or toughness without setting it to a specific value will apply after its base power and toughness are set, regardless of the order in which those effects were created. The same is true of counters that modify its power and toughness."},{"date":"2021-02-05","text":"As a Saga enters the battlefield, its controller puts a lore counter on it. As your precombat main phase begins (immediately after your draw step), you put another lore counter on each Saga you control. Putting a lore counter on a Saga in either of these ways doesn’t use the stack."},{"date":"2021-02-05","text":"Changeling is a characteristic-defining ability. It functions in all zones, not only while a card that has it is on the battlefield."},{"date":"2021-02-05","text":"Each symbol on the left of a Saga’s text box represents a chapter ability. A chapter ability is a triggered ability that triggers when a lore counter that is put on the Saga causes the number of lore counters on the Saga to become equal to or greater than the ability’s chapter number. Chapter abilities are put onto the stack and may be responded to."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to become a new creature type, it will be only that new creature type. It will still have changeling; the effect making it all creature types will simply be overwritten."},{"date":"2021-02-05","text":"If an effect causes a creature with changeling to lose all abilities, it will remain all creature types, even though it will no longer have changeling. This is because changeling applies before the effect that removes it."},{"date":"2021-02-05","text":"If multiple chapter abilities trigger at the same time, their controller puts them on the stack in any order. If any of them require targets, those targets are chosen as you put the abilities on the stack, before any of those abilities resolve."},{"date":"2021-02-05","text":"Once a chapter ability has triggered, the ability on the stack won’t be affected if the Saga gains or loses counters, or if it leaves the battlefield."},{"date":"2021-02-05","text":"Once the number of lore counters on a Saga is greater than or equal to the greatest number among its chapter abilities, the Saga’s controller sacrifices it as soon as its chapter ability has left the stack, most likely by resolving or being countered. This state-based action doesn’t use the stack."},{"date":"2021-02-05","text":"Removing lore counters won’t cause a previous chapter ability to trigger. If lore counters are removed from a Saga, the appropriate chapter abilities will trigger again when the Saga receives more lore counters."},{"date":"2021-02-05","text":"The chapter II ability overwrites any previous effects that set any of the Shapeshifters’ base power and toughness to specific values. Any effects that set a Shapeshifter’s base power and toughness that start to apply after the chapter II ability will override the effect of that ability."},{"date":"2021-02-05","text":"The effect of the chapter II ability lasts indefinitely. It doesn’t expire at end of turn."},{"date":"2021-02-05","text":"The subtype Shapeshifter that appears on the type line is mostly there to reinforce the flavor. A creature card with changeling is just as much an Elf, a Dwarf, a Sliver, a Goat, a Coward, and a Zombie as it is a Shapeshifter."}],"rarities":["rare"]},"the chain veil":{"name":"The Chain Veil","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.\n{4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"GrantExtraLoyaltyActivations","amount":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":4}},{"type":"Tap"}]},"sub_ability":null,"duration":"UntilEndOfTurn","description":"{4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities have been activated this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"LoyaltyAbilitiesActivatedThisTurn","player":{"type":"Controller"}}},"comparator":"EQ","rhs":{"type":"Fixed","value":0}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"fb88fb3d-6a85-4bb1-b316-7f759b45a0fa","metadata":{"source_printing_ids":["0415cc0e-979e-42cc-a56d-88d13153a7de","0df7a6c7-0c48-42e7-9e2d-7ac21855cdbb","1ca66955-d900-45b6-9a40-38467689a68d","62fbc0cf-6e58-4974-8cf2-3a5d0b6471b3"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","M15","PIO","PLST"],"rulings":[{"date":"2014-07-18","text":"After the last ability resolves, you’ll essentially be able to activate a loyalty ability of each planeswalker you control a total of twice during your turn. The timing rules for when you can activate loyalty abilities apply each time; it must be your main phase and the stack must be empty."},{"date":"2014-07-18","text":"Because the last ability modifies the rules of the game, it affects not only planeswalkers you control when it resolves, but also planeswalkers that come under your control later in the turn."},{"date":"2014-07-18","text":"Each additional time The Chain Veil’s last ability resolves will allow you to activate a loyalty ability of each planeswalker you control an additional time. For example, if you activate The Chain Veil’s last ability, untap it, then activate it again, you can activate a loyalty ability of a planeswalker you control three times that turn."},{"date":"2014-07-18","text":"For the first ability, it doesn’t matter whether the planeswalker is still on the battlefield as your end step begins. If you activated one of its loyalty abilities that turn, The Chain Veil’s triggered ability won’t trigger."},{"date":"2014-07-18","text":"The second loyalty ability you activate doesn’t have to be the same as the first ability. For example, you could activate a planeswalker’s first ability twice, or you could activate a planeswalker’s first ability, then activate its second ability."}],"rarities":["mythic"]},"the council of four":{"name":"The Council of Four","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Noble"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":8},"loyalty":null,"defense":null,"oracle_text":"Whenever a player draws their second card during their turn, you draw a card.\nWhenever a player casts their second spell during their turn, you create a 2/2 white Knight creature token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player draws their second card during their turn, you draw a card.","constraint":{"type":"NthDrawThisTurn","n":2},"condition":{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},"batched":false},{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Token","name":"Knight","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Knight"],"colors":["White"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts their second spell during their turn, you create a 2/2 white Knight creature token.","constraint":{"type":"NthSpellThisTurn","n":2},"condition":{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"3dfb006f-6620-4602-ac3c-d40a5a15a981","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["3f618808-a33a-5ed8-8f01-6d2edd98f875"],"source_printing_ids":["0873cfa8-046c-4b14-ae22-3fd6a691f763","1610d8b1-6b4c-450a-96c2-b56fd08b3f86","eba6df0f-d190-4683-b2fe-567e20c54028"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CLB","PCLB"],"rarities":["rare"]},"the creation of avacyn":{"name":"The Creation of Avacyn","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Search your library for a card, exile it face down, then shuffle.\nII — Turn the exiled card face up. If it's a creature card, you lose life equal to its mana value.\nIII — You may put the exiled card onto the battlefield if it's a creature card. If you don't put it onto the battlefield, put it into its owner's hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Exile","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Unimplemented","name":"turn","description":"Turn the exiled card face up"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Exile","destination":"Battlefield","target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"RevealedHasCardType","card_types":["Creature"]},"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"7f32344f-06d8-4862-bfeb-f90a3e1d7fc2","metadata":{"source_printing_ids":["27d701aa-df93-4f0e-b1e3-d081487eb456"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["MH3"],"rulings":[{"date":"2024-06-07","text":"Each The Creation of Avacyn you control has its own set of face-down exiled cards. (In most cases, this set of cards will contain just one card.) The Creation of Avacyn's second and third chapter abilities refer only to those cards, not those of any other The Creation of Avacyn."},{"date":"2024-06-07","text":"In the unusual case where two or more cards are exiled face down with The Creation of Avacyn's first ability when the third chapter ability resolves, if at least one of the exiled cards is a creature card, you may choose to put all or none of the exiled cards that are permanent cards onto the battlefield. Regardless of what you choose, any remaining exiled cards will be put into their owners' hands."},{"date":"2024-06-07","text":"In the unusual case where two or more cards are exiled face down with The Creation of Avacyn's first chapter ability (likely because the triggered ability was copied or the ability triggered a second time), the second chapter ability will turn all of the exiled cards face up. If at least one of them is a creature card, you'll lose life equal to the combined mana value of all the exiled cards."}],"rarities":["uncommon"]},"the great aerie":{"name":"The Great Aerie","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":["Tarkir"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When you planeswalk to The Great Aerie and at the beginning of your upkeep, bolster 3. (Choose a creature with the least toughness among creatures you control and put three +1/+1 counters on it.)\nWhenever chaos ensues, choose up to one target creature you control and up to one target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":{"Unknown":"When you planeswalk to ~"},"execute":{"kind":"Spell","effect":{"type":"Bolster","count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When you planeswalk to ~, bolster 3.","constraint":null,"condition":null,"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Bolster","count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, bolster 3.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChaosEnsues","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"multi_target":{"min":0,"max":{"type":"Fixed","value":1}},"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever chaos ensues, choose up to one target creature you control and up to one target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"00f00001-bd84-4dbf-a707-f4b1549100d4","metadata":{"source_printing_ids":["4afe8c95-efeb-4f7d-834d-fa5b095c9a06"]},"legalities":{},"printings":["MOC"],"rulings":[{"date":"2023-04-14","text":"Bolster itself doesn’t target any creature, though some spells and abilities that bolster may have other effects that target creatures."},{"date":"2023-04-14","text":"If you choose two target creatures for the chaos ability and either target is an illegal target as the ability tries to resolve, the ability won’t resolve and none of its effects will happen. Neither creature will deal or be dealt damage."},{"date":"2023-04-14","text":"You determine which creature to put counter(s) on as the spell or ability that instructs you to bolster resolves. That could be the creature with the bolster ability, if it’s still under your control and has the least toughness. If there’s a tie, you choose which creature gets the counter(s)."}],"rarities":["common"]},"the legend of roku":{"name":"The Legend of Roku","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter.)\nI — Exile the top three cards of your library. Until the end of your next turn, you may play those cards.\nII — Add one mana of any color.\nIII — Exile this Saga, then return it to the battlefield transformed under your control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":3}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":null,"duration":{"UntilEndOfNextTurnOf":{"player":{"type":"Controller"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"AnyOneColor","count":{"type":"Fixed","value":1},"color_options":["White","Blue","Black","Red","Green"]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TrackedSet","id":0},"owner_library":false,"enter_transformed":true,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2f26f270-26d9-46d3-957f-19f52d51eb03","metadata":{"related_token_ids":["566d2a4c-5be0-573a-964f-89a13982c567"],"source_printing_ids":["4a8bdef0-c50c-4a30-81bc-507a8289a81b","95f2f5af-d405-4534-8683-5a9001f997b4"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["PTLA","TLA"],"rarities":["mythic"]},"the lord of pain":{"name":"The Lord of Pain","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Assassin"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Menace\nYour opponents can't gain life.\nWhenever a player casts their first spell each turn, choose another target player. The Lord of Pain deals damage equal to that spell's mana value to the chosen player.","non_ability_text":null,"flavor_name":null,"keywords":["Menace"],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"TargetOnly","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a player casts their first spell each turn, choose another target player. ~ deals damage equal to that spell's mana value to the chosen player.","constraint":{"type":"NthSpellThisTurn","n":1},"condition":null,"batched":false}],"static_abilities":[{"mode":"CantGainLife","affected":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Your opponents can't gain life."}],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"b194f277-5045-4391-8b48-d555a6d657a7","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["494c244e-dcdc-4169-9743-8a61f58e8763"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DSC"],"rulings":[{"date":"2024-09-20","text":"If a spell has {X} in its mana cost, use the value chosen for X when determining that spell's mana value."},{"date":"2024-09-20","text":"If an effect says to set an opponent's life total to a number that's higher than their current life total, that player's life total won't change."},{"date":"2024-09-20","text":"Spells and abilities that cause opponents to gain life still resolve while The Lord of Pain is on the battlefield. They won't gain life, but any other effects of that spell or ability will still happen."},{"date":"2024-09-20","text":"The Lord of Pain's last ability must target a player other than the one who cast the spell that caused the ability to trigger. That means that if it's just you and one other player in the game, you'll have to target yourself when that player casts their first spell each turn. (What did you expect? You summoned The Lord of Pain!)"}],"rarities":["mythic"]},"the mystery raceway":{"name":"The Mystery Raceway","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Start your engines!\n{T}: Add {C}.\nMax Speed — {W}{U}{B}{R}{G}, {T}: Mill seven cards. Choose a playtest card from among them. You may cast it without paying its mana cost. If Team Cloudspire won the race, copy it and you may choose new targets for the copy. If Team Speed Demons won the race, each opponent loses life equal to its mana value.\nThe Mystery Raceway can be your commander.","non_ability_text":null,"flavor_name":null,"keywords":["StartYourEngines"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mill","count":{"type":"Fixed","value":7},"target":{"type":"Controller"},"destination":"Graveyard"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"choose","description":"Choose a playtest card from among them"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"ParentTarget"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":[],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Max Speed — {W}{U}{B}{R}{G}, {T}: Mill seven cards. Choose a playtest card from among them. You may cast it without paying its mana cost. If Team Cloudspire won the race, copy it and you may choose new targets for the copy. If Team Speed Demons won the race, each opponent loses life equal to its mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"c81a0365-c295-470a-84d0-3faa999ec81e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0217b7da-f348-4fe6-9ab5-9d4f4346d81c"]},"legalities":{},"printings":["UNK"],"rarities":["rare"]},"the ozolith":{"name":"The Ozolith","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever a creature you control leaves the battlefield, if it had counters on it, put those counters on The Ozolith.\nAt the beginning of combat on your turn, if The Ozolith has counters on it, you may move all counters from The Ozolith onto target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"MoveCounters","source":{"type":"TriggeringSource"},"counter_type":null,"count":null,"mode":"Put","selection":"StackTarget","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control leaves the battlefield, if it had counters on it, put those counters on ~.","constraint":null,"condition":{"type":"HadCounters","counter_type":null},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"MoveCounters","source":{"type":"SelfRef"},"counter_type":null,"count":null,"mode":"Move","selection":"StackTarget","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"BeginCombat","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of combat on your turn, if ~ has counters on it, you may move all counters from ~ onto target creature.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"1946ded1-5f53-409f-b0a6-5433bb0357d2","metadata":{"source_printing_ids":["1fac900d-c40d-4f33-9ae5-45e31e5ce66c","7d9df3ce-25f9-426c-a113-6aea53ddf619","83a46e68-7fb5-4c17-b5aa-ed039cea59d6","9341ed06-53db-4604-b60a-3ea9129afbc2","e0aaee13-bfeb-47fd-93cb-2ccdd5d44e75","ed3b5f52-ce33-4e67-aca0-6d417fe7f5fa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["IKO","LTC","PIKO","PRM","SLD"],"rulings":[{"date":"2020-04-17","text":"+1/+1 counters on The Ozolith have no effect unless it becomes a creature. Keyword counters on The Ozolith will grant it keywords that may have no practical effect. For example, flying on a noncreature artifact is just strange, but hexproof on a noncreature artifact is entirely useful."},{"date":"2020-04-17","text":"As The Ozolith's last ability resolves, you choose whether to move the counters."},{"date":"2020-04-17","text":"If The Ozolith leaves the battlefield after the last ability triggers but before it resolves, you can't move any counters from it onto the target creature."},{"date":"2020-04-17","text":"If the target creature is an illegal target by the time The Ozolith's last ability tries to resolve, the ability won't resolve. You won't remove any counters from The Ozolith."},{"date":"2020-04-17","text":"The Ozolith's first ability doesn't move counters off the creature that's left the battlefield. Rather, you put the same number of each kind of counter the creature had onto The Ozoloith. Notably, if you somehow control a second The Ozolith, each one will receive the same number and kinds of counters that were on the creature that left the battlefield. Similarly, if the creature has an ability that triggers when it leaves the battlefield that refers to the number of counters it had, that ability will use the number of counters that were on the permanent, even if The Ozolith's first ability resolves first."},{"date":"2020-04-17","text":"You can't move only some of the counters from The Ozolith onto the target creature."}],"rarities":["rare","mythic"]},"the provider":{"name":"The Provider","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":[],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile The Provider: Put two +1/+1 counters on target creature you control. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Exile","count":1,"zone":null,"filter":{"type":"SelfRef"}},"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile ~: Put two +1/+1 counters on target creature you control. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"a4377dfb-966b-460e-b23a-d4bbb609e0e9","legalities":{},"printings":["THP2"]},"the rack":{"name":"The Rack","mana_cost":{"type":"Cost","shards":[],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this artifact enters, choose an opponent.\nAt the beginning of the chosen player's upkeep, this artifact deals X damage to that player, where X is 3 minus the number of cards in their hand.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"ClampMin","inner":{"type":"Offset","inner":{"type":"Multiply","factor":-1,"inner":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"SourceChosenPlayer"}}}},"offset":3},"minimum":0},"target":{"type":"SourceChosenPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"SourceChosenPlayer"},"valid_source":null,"description":"At the beginning of the chosen player's upkeep, ~ deals X damage to that player, where X is 3 minus the number of cards in their hand.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose an opponent.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"3d873e1d-4fac-42c4-bb31-77e76099e1ef","metadata":{"source_printing_ids":["1e19104f-55d5-40e5-a61d-ddba2cf5a527","20b05627-2486-486d-8e03-2db59f8876c3","2a600805-dd79-419d-9866-f8c29643f0f8","5f4d3e9f-d42a-4f9c-9230-32533d0e3873","696d1e25-5c25-4522-b085-90d49fe23a18","805ca63e-0d86-409d-a1ca-d6b61c3b8895","e2cc6b86-9094-4f82-a5ea-1d8a06a4e013","ec0686ba-1277-4412-a397-7a6227808311","f6b5fd8f-adb0-4cd5-b67a-7999efa25c2d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["3ED","4BB","4ED","ATQ","DPA","FBB","MB2","PRM","PS11","PTC","SUM","TSB"],"rulings":[{"date":"2004-10-04","text":"You choose one opposing player as this card enters, and it only affects that one player. This choice is not changed even if this card changes controllers. It becomes useless but stays on the battlefield if the chosen player leaves the game."}],"rarities":["uncommon","special"]},"the ruinous powers":{"name":"The Ruinous Powers","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, choose an opponent at random. Exile the top card of that player's library. Until end of turn, you may play that card and you may spend mana as though it were mana of any color to cast it. When you cast a spell this way, its owner loses life equal to its mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"ParentTarget"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"UntilEndOfTurn","granted_to":0},"target":{"type":"TrackedSet","id":0}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"SpendManaAsAnyColor","affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"spend mana as though it were mana of any color to cast it"}],"duration":null,"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, choose an opponent at random. Exile the top card of that player's library. Until end of turn, you may play that card and you may spend mana as though it were mana of any color to cast it. When you cast a spell this way, its owner loses life equal to its mana value.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"283054ed-5fbd-4202-bc02-294079aaff03","metadata":{"source_printing_ids":["b30dde6c-9bc6-45bf-97e4-9c08be79d506","b8656aab-e22d-4f97-a8e6-a69f1dbffd09"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["40K"],"rulings":[{"date":"2022-10-07","text":"Use the mana value of the spell as it exists on the stack (or last existed on the stack, if it's been removed) to determine how much life is lost. If there is an {X} in that spell's cost, include the value chosen for X to determine its mana value."},{"date":"2022-10-07","text":"You must follow all normal timing rules when casting a spell or playing a land using the permission granted by Ruinous Powers."}],"rarities":["rare"]},"the scarab god":{"name":"The Scarab God","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["God"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, each opponent loses X life and you scry X, where X is the number of Zombies you control.\n{2}{U}{B}: Exile target creature card from a graveyard. Create a token that's a copy of it, except it's a 4/4 black Zombie.\nWhen The Scarab God dies, return it to its owner's hand at the beginning of the next end step.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":2}},"sub_ability":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"ParentTarget"},"owner":{"type":"Controller"},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1},"additional_modifications":[{"type":"SetPower","value":4},{"type":"SetToughness","value":4},{"type":"SetColor","colors":["Black"]},{"type":"RemoveAllSubtypes","set":"Creature"},{"type":"AddType","core_type":"Creature"},{"type":"AddSubtype","subtype":"Zombie"}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{2}{U}{B}: Exile target creature card from a graveyard. Create a token that's a copy of it, except it's a 4/4 black Zombie.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":"You","properties":[]}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":[{"Subtype":"Zombie"}],"controller":"You","properties":[]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, each opponent loses X life and you scry X, where X is the number of Zombies you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhase","phase":"End"},"effect":{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"ParentTarget"},"destination":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, return it to its owner's hand at the beginning of the next end step.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"c75e55f2-fd6c-4816-9d96-21eeb8369aff","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["5a9097cb-1a78-558b-90d2-217688ef45d1","70911aa0-1297-5263-b92c-2348ab09b87e","ebb9c0a4-c359-58de-b739-03fddd775dfa"],"source_printing_ids":["01ff8244-ec3b-41bd-a007-bbd403a96e96","2025bd7b-ddef-40cf-9ffd-80591a67b508","621cfd79-be4e-41e3-95ce-62b0eeff5baf","70d1af08-f4e6-4030-8ebe-30d9d706b114","7546b37d-c83a-4632-bebf-cc46d114481f","d79ee141-0ea6-45d6-a682-96a37d703394","f4f414ef-84a2-4694-9e98-51bee4576c84"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["2XM","AKR","CMM","DRC","HOU","MP2","PHOU","SLD"],"rulings":[{"date":"2017-07-14","text":"If this creature dies but leaves your graveyard before the next end step, it will remain in its new zone."},{"date":"2017-07-14","text":"The “next end step” refers to the next end step that occurs, not the end step of the next turn. If this creature dies before a turn's end step (for example, during combat), it will be returned to its owner's hand at the beginning of that turn's end step."},{"date":"2020-08-07","text":"In a Two-Headed Giant game, The Scarab God's first ability causes the opposing team to lose life equal to twice the number of Zombies you control, although you scry only equal to the number of Zombies you control."},{"date":"2020-08-07","text":"The number of Zombies you control is counted as The Scarab God's first ability resolves. Players can try to change that number in response to the ability (perhaps by activating its second ability)."}],"rarities":["mythic"]},"the ur-dragon":{"name":"The Ur-Dragon","mana_cost":{"type":"Cost","shards":["White","Blue","Black","Red","Green"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dragon","Avatar"]},"power":{"type":"Fixed","value":10},"toughness":{"type":"Fixed","value":10},"loyalty":null,"defense":null,"oracle_text":"Eminence — As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.\nFlying\nWhenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"YouAttack","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Hand","destination":"Battlefield","target":{"type":"Typed","type_filters":["Permanent"],"controller":"You","properties":[{"type":"InZone","zone":"Hand"}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"target_choice_timing":"Resolution","forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield.","constraint":null,"condition":null,"batched":true}],"static_abilities":[{"mode":{"ModifyCost":{"mode":"Reduce","amount":{"type":"Cost","shards":[],"generic":1},"spell_filter":{"type":"Typed","type_filters":[{"Subtype":"Dragon"}],"controller":null,"properties":[{"type":"Another"}]}}},"affected":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[]},"modifications":[],"condition":{"type":"Or","conditions":[{"type":"SourceInZone","zone":"Command"},{"type":"SourceInZone","zone":"Battlefield"}]},"affected_zone":null,"effect_zone":null,"active_zones":["Command","Battlefield"],"characteristic_defining":false,"description":"Eminence — As long as ~ is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast."}],"replacements":[],"color_override":["Black","Green","Red","Blue","White"],"color_identity":["Black","Green","Red","Blue","White"],"scryfall_oracle_id":"87b22b09-4f6d-4bc5-9cfc-663e4c7c6981","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["10d42b35-844f-4a64-9981-c6118d45e826","6270c798-a3ba-4826-b0a9-82f7e12890f6","7e78b70b-0c67-4f14-8ad7-c9f8e3f59743","d2763752-57af-4d4a-a0e5-5a496985b8bf","ea949741-af94-47ae-a577-2953c69ab71d","fe0192cd-9c14-4f24-bc31-febfb135f707"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C17","CMM","OC17","PF25","PZ2","SLD"],"rulings":[{"date":"2017-08-25","text":"If a Dragon you control enters the battlefield attacking, it won’t cause The Ur-Dragon’s last ability to trigger."},{"date":"2017-08-25","text":"The Ur-Dragon’s triggered ability resolves after all attackers have been chosen. You can’t attack with some Dragons, put a creature card with haste onto the battlefield, and then attack with that creature. Similarly, any “whenever a creature attacks” abilities of the permanent card you put onto the battlefield won’t trigger."},{"date":"2017-08-25","text":"You draw one card for each Dragon you controlled that attacked, even if some of them left the battlefield before The Ur-Dragon’s triggered ability resolves."},{"date":"2017-08-25","text":"You may only put one permanent card from your hand onto the battlefield, no matter how many Dragons you attacked with or how many players they attacked."}],"rarities":["mythic"]},"the wise mothman":{"name":"The Wise Mothman","mana_cost":{"type":"Cost","shards":["Black","Green","Blue"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Insect","Mutant"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever The Wise Mothman enters or attacks, each player gets a rad counter.\nWhenever one or more nonland cards are milled, put a +1/+1 counter on each of up to X target creatures, where X is the number of nonland cards milled this way.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"EntersOrAttacks","execute":{"kind":"Spell","effect":{"type":"GivePlayerCounter","counter_kind":"Rad","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ enters or attacks, each player gets a rad counter.","constraint":null,"condition":null,"batched":false},{"mode":"Milled","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card",{"Non":"Land"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more nonland cards are milled, put a +1/+1 counter on each of up to X target creatures, where X is the number of nonland cards milled this way.","constraint":null,"condition":null,"batched":true}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green","Blue"],"scryfall_oracle_id":"7656f93b-336f-49cb-b8fe-c2b5c014258f","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["16a1d611-6f5f-40af-8ca3-b9dc619111eb","28686dda-64b0-4ffe-b71a-58e7f901c4eb","3d6d6944-a364-41c2-b824-7a1bf6ad0d1e","5a769dd6-3018-412f-b8ea-2434c5074945","a44f6097-a513-44a5-aaa4-92ac2fa800c0","cfb80c75-4b1b-4f25-923a-933855e7345c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["PIP","SLD"],"rulings":[{"date":"2024-03-08","text":"Any effects (such as proliferate) that interact with counters a player gets, has, or loses can interact with rad counters."},{"date":"2024-03-08","text":"If a player has fewer cards remaining in their library than the number of rad counters they have when the triggered ability resolves, they’ll mill as many cards as they can."},{"date":"2024-03-08","text":"If more than one player is instructed to mill at the same time (by the activated ability of Raul, Trouble Shooter, for example), as long as at least one nonland card is milled, The Wise Mothman’s last ability will trigger just once."},{"date":"2024-03-08","text":"In a game using the shared team turns option, such as an Archenemy or Two-Headed Giant game, the inherent triggered ability associated with rad counters triggers once for each player on the active team that has rad counters. Each instance of that ability is controlled by one of those players."},{"date":"2024-03-08","text":"Keep track of how many rad counters each player has. Potential ways to track this include writing them down on paper or using dice, but any method that is clear and mutually agreeable is fine."},{"date":"2024-03-08","text":"Rad counters are a kind of counter that a player may have. They’re not associated with any specific permanents."},{"date":"2024-03-08","text":"Rad counters don’t go away as steps, phases, or turns end. They only go away when an effect instructs a player to remove rad counters from themselves."},{"date":"2024-03-08","text":"The cards are milled all at once, which means abilities that trigger “whenever one or more nonland cards are milled” will trigger exactly once as long as at least one nonland card was milled."},{"date":"2024-03-08","text":"There is an inherent triggered ability associated with having rad counters. This triggered ability has no source and is controlled by the active player. The full text of this ability is “At the beginning of the precombat main phase of a player with rad counters, that player mills cards equal to the number of rad counters they have. For each nonland card milled this way, that player loses 1 life and removes one rad counter from themselves.”"}],"rarities":["mythic"]},"thorin, mountain-king":{"name":"Thorin, Mountain-king","mana_cost":{"type":"Cost","shards":["Red"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dwarf","Noble"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhen Thorin enters, attach any number of target Equipment you control to target creature you control. When one or more Equipment become attached to that creature this way, that creature deals damage equal to its power to up to one target creature.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Attach","attachment":{"type":"Typed","type_filters":[{"Subtype":"Equipment"}],"controller":"You","properties":[]},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":true,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, attach any number of target Equipment you control to target creature you control. When one or more Equipment become attached to that creature this way, that creature deals damage equal to its power to up to one target creature.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"94917b80-ac32-45ab-b4ee-157ade024bcd","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0e29ba51-763c-48ec-95ec-9d6916f4db44","117347af-0dd7-4350-901d-8c8a81387e22","2401d2a5-f65b-4a13-906c-999990589a1e"]},"legalities":{},"printings":["HOB"],"rarities":["mythic"]},"thornbow archer":{"name":"Thornbow Archer","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Archer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature attacks, each opponent who doesn't control an Elf loses 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"ControlsCount","relation":{"type":"Opponent"},"filter":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":null,"properties":[]},"comparator":"EQ","count":{"type":"Fixed","value":0}}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, each opponent who doesn't control an Elf loses 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"a9b35457-0f1c-495c-a508-6f6693835051","metadata":{"source_printing_ids":["3290c60a-f9a0-464d-a15e-8473a6d50d96","d28ca3ab-9e44-489d-9882-3deccd41f390"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI","PLST"],"rarities":["common"]},"thought sponge":{"name":"Thought Sponge","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sponge"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Flash\nThis creature enters with a number of +1/+1 counters on it equal to the greatest number of cards an opponent has drawn this turn.\nWhen this creature dies, draw cards equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Flash"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, draw cards equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with a number of +1/+1 counters on it equal to the greatest number of cards an opponent has drawn this turn.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"256e094a-a9e8-42d9-90e2-7a24ed85e426","metadata":{"source_printing_ids":["70406543-ba78-4dd8-8f16-3c5a9ee458a1"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C19"],"rulings":[{"date":"2019-08-23","text":"Thought Sponge checks how many cards were drawn by opponents this turn, even opponents who have left the game. The greatest number drawn by a single opponent is how many +1/+1 counters it enters with."},{"date":"2019-08-23","text":"Thought Sponge checks the total number of cards drawn by each opponent, not how many were drawn due to a single instruction."},{"date":"2019-08-23","text":"Thought Sponge gets its +1/+1 counters at the moment it enters the battlefield. There's not a time that it's on the battlefield before its replacement effect has applied."},{"date":"2019-08-23","text":"Use Thought Sponge's power as it last existed on the battlefield to determine how many cards to draw for its last ability. If that number is negative, you neither draw nor discard cards."}],"rarities":["rare"]},"thought-string analyst":{"name":"Thought-String Analyst","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"At the beginning of your upkeep, exile the top card of target opponent's library face down. You lose life equal to its mana value. You may look at and play that card for as long as it remains exiled, and mana of any type can be spent to cast that spell.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"count":{"type":"Fixed","value":1},"face_down":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Anaphoric"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GrantCastingPermission","permission":{"type":"PlayFromExile","duration":"Permanent","granted_to":0,"mana_spend_permission":"AnyTypeOrColor"},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, exile the top card of target opponent's library face down. You lose life equal to its mana value. You may look at and play that card for as long as it remains exiled, and mana of any type can be spent to cast that spell.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"d23f3868-657d-4cbc-b7cf-4d77f0f2c642","legalities":{"brawl":"legal","historic":"legal","timeless":"legal"},"printings":["YMKM"]},"thousand-faced shadow":{"name":"Thousand-Faced Shadow","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Ninjutsu {2}{U}{U} ({2}{U}{U}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)\nFlying\nWhen this creature enters from your hand, if it's attacking, create a token that's a copy of another target attacking creature. The token enters tapped and attacking.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"Ninjutsu":{"type":"Cost","shards":["Blue","Blue"],"generic":2}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"Ninjutsu","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"},{"type":"Another"}]},"owner":{"type":"Controller"},"enters_attacking":true,"tapped":true,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Hand","destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters from your hand, if it's attacking, create a token that's a copy of another target attacking creature. The token enters tapped and attacking.","constraint":null,"condition":{"type":"SourceIsAttacking"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"98636623-bbc6-4935-a2bb-2234691eb6d8","metadata":{"related_token_ids":["ebb9c0a4-c359-58de-b739-03fddd775dfa"],"source_printing_ids":["00632c03-be00-4722-85b3-2ce31bba5cc6","89a698a5-f4ac-4b04-96dc-32e1eeef6ac7","a48c2751-fd12-42f2-b8c1-eaf78c5e29eb"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["NEO","PNEO","PRM"],"rulings":[{"date":"2022-02-18","text":"Although the Ninja is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2022-02-18","text":"Although the token is attacking, it was never declared as an attacking creature (for purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2022-02-18","text":"Any enters-the-battlefield abilities of the copied creature will trigger when the token enters the battlefield. Any “As [this creature] enters the battlefield” or “[This creature] enters the battlefield with” abilities of the copied creature will also work."},{"date":"2022-02-18","text":"As you activate a ninjutsu ability, you reveal the Ninja card in your hand and return the attacking creature. The Ninja card stays revealed and isn't put onto the battlefield until the ability resolves. If it leaves your hand before then, it won't enter the battlefield at all."},{"date":"2022-02-18","text":"If a creature in combat has first strike or double strike, you can activate the ninjutsu ability during the first-strike combat damage step. The Ninja will deal combat damage during the regular combat damage step, even if it has first strike."},{"date":"2022-02-18","text":"If the copied creature had {X} in its mana cost, X is 0."},{"date":"2022-02-18","text":"If the copied creature is a token, the token created by Thousand-Faced Shadow copies the original characteristics of that token as stated by the effect that put it onto the battlefield."},{"date":"2022-02-18","text":"If the copied creature was copying something else, the token enters the battlefield as whatever that creature was copying."},{"date":"2022-02-18","text":"Puff of smoke not included."},{"date":"2022-02-18","text":"The creature with ninjutsu enters the battlefield attacking the same player or planeswalker that the returned creature was attacking. This is a rule specific to ninjutsu; in other cases, when a creature is put onto the battlefield attacking, that creature's controller chooses which player or planeswalker it's attacking."},{"date":"2022-02-18","text":"The ninjutsu ability can be activated during the declare blockers step, combat damage step, or end of combat step. In most cases (see below), if you wait until the combatdamage step or end of combat step, it will be after combat damage has been dealt, so the Ninja won't deal combat damage."},{"date":"2022-02-18","text":"The ninjutsu ability can be activated only after blockers have been declared. Before then, attacking creatures are neither blocked nor unblocked."},{"date":"2022-02-18","text":"The token copies exactly what was printed on the original creature and nothing else (unless that permanent is copying something else or is a token; see below). It doesn't copy whether that creature has any counters on it or Auras and/or Equipment attached to it, or any non-copy effects that changed its power, toughness, types, color, and so on. Notably, it doesn't copy any effects that may have turned a noncreature permanent into a creature. If the token isn't a creature as it enters the battlefield, it won't be attacking."},{"date":"2022-02-18","text":"You choose which opponent or opposing planeswalker the token is attacking as you put it onto the battlefield. It doesn't have to be the same player or planeswalker Thousand-Faced Shadow is attacking. (Remember that the rules for ninjutsu specify that a creature that enters the battlefield attacking because of a ninjutsu ability attacks the same player or planeswalker the returned unblocked creature was.)"}],"rarities":["rare"]},"thran portal":{"name":"Thran Portal","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Gate"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This land enters tapped unless you control two or fewer other lands.\nAs this land enters, choose a basic land type.\nThis land is the chosen type in addition to its other types.\nMana abilities of this land cost an additional 1 life to activate.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Unimplemented","name":"unknown","description":"Mana abilities of ~ cost an additional 1 life to activate."},"cost":null,"sub_ability":null,"duration":null,"description":"Mana abilities of ~ cost an additional 1 life to activate.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddChosenSubtype","kind":"BasicLandType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ is the chosen type in addition to its other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless you control two or fewer other lands.","condition":{"type":"UnlessControlsOtherLeq","count":2,"filter":{"type_filters":["Land"],"controller":"You","properties":[{"type":"Another"}]}},"destination_zone":"Battlefield"},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"BasicLandType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a basic land type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"926ce6a2-7bdd-4380-ac65-bc902ba0c284","metadata":{"source_printing_ids":["eba2995e-f255-46da-abcf-9a6f3996edb1","ef074a2e-a387-4af8-a180-74b145d93992"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU","PDMU","PRM"],"rulings":[{"date":"2022-09-09","text":"If Thran Portal somehow gains another mana ability, that ability also costs an additional 1 life to activate."},{"date":"2022-09-09","text":"If a Thran Portal somehow enters the battlefield without a basic land type having been chosen for it, it does not have any mana abilities. The same is true for a land that is already on the battlefield that becomes a copy of it."},{"date":"2022-09-09","text":"If a land enters the battlefield as a copy of Thran Portal (as opposed to a land that is already on the battlefield becoming a copy of it), its controller gets to choose a basic land type for it and it has that type."},{"date":"2022-09-09","text":"If you control more than one Thran Portal, the last ability of each of them applies only to itself. That is, controlling a second Thran Portal does not make mana abilities of all cards named Thran Portal cost an additional 2 life."},{"date":"2022-09-09","text":"Thran Portal will have the appropriate intrinsic mana ability for the basic land type chosen as it enters the battlefield. It is still a Gate and still has its other abilities, including the last ability, which makes the mana ability associated with its basic land type cost 1 life to activate."},{"date":"2022-09-09","text":"You still have to pay that mana ability's other costs. Usually, this is just tapping the land."}],"rarities":["rare"]},"timber paladin":{"name":"Timber Paladin","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact","Creature"],"subtypes":["Knight"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"As long as this creature is enchanted by exactly one Aura, it has base power and toughness 3/3.\nAs long as this creature is enchanted by exactly two Auras, it has base power and toughness 5/5 and vigilance.\nAs long as this creature is enchanted by three or more Auras, it has base power and toughness 10/10, vigilance, and trample.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":3},{"type":"SetToughness","value":3}],"condition":{"type":"Unrecognized","text":"~ is enchanted by exactly one Aura"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by exactly one Aura, it has base power and toughness 3/3."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":5},{"type":"SetToughness","value":5},{"type":"AddKeyword","keyword":"Vigilance"}],"condition":{"type":"Unrecognized","text":"~ is enchanted by exactly two Auras"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by exactly two Auras, it has base power and toughness 5/5 and vigilance."},{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"SetPower","value":10},{"type":"SetToughness","value":10},{"type":"AddKeyword","keyword":"Vigilance"},{"type":"AddKeyword","keyword":"Trample"}],"condition":{"type":"Unrecognized","text":"~ is enchanted by three or more Auras"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is enchanted by three or more Auras, it has base power and toughness 10/10, vigilance, and trample."}],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0be44c76-9e3f-45c2-9b2c-6a5f00678780","metadata":{"source_printing_ids":["1edfd4d2-c492-4bec-9bb0-c5b7cb01818f","3507e128-f8a1-4429-951d-2dc98b225118"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["WOC"],"rulings":[{"date":"2023-09-01","text":"Timber Paladin's abilities each overwrite any previous effects that set creatures' power and/or toughness to specific numbers. Any power- or toughness-setting effects that start to apply after Timber Paladin enters the battlefield will overwrite these effects, regardless of when Timber Paladin became enchanted by one, two, or three or more Auras."}],"rarities":["rare"]},"timely ward":{"name":"Timely Ward","mana_cost":{"type":"Cost","shards":["White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may cast this spell as though it had flash if it targets a commander.\nEnchant creature\nEnchanted creature has indestructible.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"EnchantedBy"}]},"modifications":[{"type":"AddKeyword","keyword":"Indestructible"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Enchanted creature has indestructible."}],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"8e589dca-d31e-4d2f-81b1-18e5f9198795","casting_options":[{"kind":"AsThoughHadFlash","condition":{"type":"SpellTargetsFilter","filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"IsCommander"}]}}}],"metadata":{"source_printing_ids":["5de08a92-9b60-4672-9f3b-3ceb53ca82ca","d61f8db1-0148-47bd-ae97-9aedccb83813","dd0af67e-d31f-431f-b912-ce8382785ded"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CMR","DSC","WOC"],"rarities":["rare"]},"tinybones joins up":{"name":"Tinybones Joins Up","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When Tinybones Joins Up enters, any number of target players each discard a card.\nWhenever a legendary creature you control enters, any number of target players each mill a card and lose 1 life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":1},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"When ~ enters, any number of target players each discard a card.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":1},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"multi_target":{"min":0,"max":null},"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"HasSupertype","value":"Legendary"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Player"},"valid_source":null,"description":"Whenever a legendary creature you control enters, any number of target players each mill a card and lose 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"3d2bd4f6-174d-411a-b930-9161aeefd33a","metadata":{"source_printing_ids":["5724a15f-0ba0-421a-9cd4-a2b701e6141f","a3afc0c2-95e7-4b9f-94c5-144cce17c7ed"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["OTJ","POTJ"],"rulings":[{"date":"2024-04-12","text":"When Tinybones Joins Up’s first ability resolves, the next target player in turn order (or, if it’s a target player’s turn, that player) chooses a card in hand without revealing it, then each other target player in turn order (if any) does the same. All chosen cards are then discarded at the same time."}],"rarities":["rare"]},"tireless provisioner":{"name":"Tireless Provisioner","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Scout"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Landfall — Whenever a land you control enters, create a Food token or a Treasure token. (Food is an artifact with \"{2}, {T}, Sacrifice this token: You gain 3 life.\" Treasure is an artifact with \"{T}, Sacrifice this token: Add one mana of any color.\")","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"Token","name":"Food","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Food"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"create a Food token","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"create a Treasure token","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a land you control enters, create a Food token or a Treasure token.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"ab8d5f5c-1976-4f77-8ed2-8d28ee666741","metadata":{"related_token_ids":["08ce3bb9-14a8-554b-8d2f-328f500a2379","27e5baaa-d09a-5876-be9d-887eb020080b","4811acb4-e116-5e6b-8d42-707057b51299","4873fe20-675e-5db5-b9ba-8d996c2806ba","4f940dc2-7698-5fda-9f9b-62ec43ec2012","742fc83d-e6e3-5467-8fc6-284244ee60a0","74d281e4-6c2a-53c2-b0ea-253ef143d22c","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85","84539a0d-a9c4-532f-83b9-71197f3c5225","8cfc974b-4493-5d52-af68-ace05fa34f90","97324ce8-4b11-5965-8157-3a28ffb9c84c","9b7b8d88-0042-548c-a8dd-18089528b064","af87e130-3b6a-589f-959b-301f7269a7fa","c71c9643-4101-5306-9514-9a7004d811df","e097be71-8e76-516b-9764-7e93746e0d63","e1712205-f6a6-5ffa-befc-9becced0337f","f6e24d97-b7f8-5da8-ab97-978ecbecb85e","fedaa940-0663-5266-8c03-77691c605fe8"],"source_printing_ids":["1163fe84-c5d5-42c8-b7cd-d206a9b0bd3f","3cf04e55-b266-46cd-a79a-d87f5ceba469","5590a3a5-e0bd-451a-b98e-00a492487c46","5c5be54d-660e-42ab-b5ea-5e1cf3bad0bc","5dbc2162-238d-492b-b629-94f771230d92","7a832060-ecc6-406a-ab06-b371aa952e13","995938ee-3ba7-42c9-9e0f-76b4a105f55e","a1e048e0-19d2-4076-892d-f8b3104dee37","ac73d130-ceb6-41ea-af0d-314d5adba9e6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","H2R","J21","J25","LTC","MH2","MOC","PLST","SLD"],"rulings":[{"date":"2024-11-08","text":"Food is an artifact type. Even though it appears on some creatures, it's never a creature type."},{"date":"2024-11-08","text":"Whatever you do, don't eat the delicious cards."},{"date":"2024-11-08","text":"You can't sacrifice a Food to pay multiple costs. For example, you can't sacrifice a Food token to activate its own ability and also to activate Maraleaf Rider's ability."}],"rarities":["uncommon","rare"]},"tithing blade":{"name":"Tithing Blade","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters, each opponent sacrifices a creature of their choice.\nCraft with creature {4}{B} ({4}{B}, Exile this artifact, Exile a creature you control or a creature card from your graveyard: Return this card transformed under its owner's control. Craft only as a sorcery.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Craft":{"cost":{"type":"Cost","shards":["Black"],"generic":4},"materials":{"type":"Or","filters":[{"type":"Typed","type_filters":["Permanent","Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]},{"type":"Typed","type_filters":["Card","Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]}]},"count":{"type":"Exactly","count":1}}}],"abilities":[{"kind":"Activated","effect":{"type":"ChangeZone","origin":"Exile","destination":"Battlefield","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":true,"enter_tapped":false,"enters_attacking":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":4}},{"type":"Exile","count":1,"zone":"Battlefield","filter":{"type":"SelfRef"}},{"type":"ExileMaterials","materials":{"type":"Or","filters":[{"type":"Typed","type_filters":["Permanent","Creature"],"controller":"You","properties":[{"type":"InZone","zone":"Battlefield"}]},{"type":"Typed","type_filters":["Card","Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"},{"type":"Owned","controller":"You"}]}]},"count":{"type":"Exactly","count":1}}]},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent sacrifices a creature of their choice.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"883a4180-9ede-4249-a4b8-3a29c998fb63","metadata":{"source_printing_ids":["dbaa9a2d-e9fd-4746-a26c-f99ae731f024"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"layout":"transform","printings":["LCI"],"rulings":[{"date":"2023-11-10","text":"If a card that isn't a transforming double-faced card becomes a copy of a card with craft, it'll stay in exile if you activate the craft ability. It won't return to the battlefield."},{"date":"2023-11-10","text":"If the materials required include multiple objects, you may exile some of them from among permanents you control and the rest from among cards in your graveyard. You don't have to choose all permanents or all cards from your graveyard."},{"date":"2023-11-10","text":"The back faces of some cards with craft refer to cards \"used to craft\" it. This refers to the cards exiled as part of the cost of the craft ability of the front face. Those cards are considered to be \"used to craft\" that permanent as long as they remain exiled and the permanent remains on the battlefield, even if the permanent's controller changes or some of its characteristics change (because of a copy effect, for example.)"},{"date":"2023-11-10","text":"You may exile tokens you control as part of the materials required. However, because they aren't cards and won't stay in exile, any abilities that refer to what you \"used to craft\" the back faces won't refer to anything."}],"rarities":["common"]},"tombstone stairwell":{"name":"Tombstone Stairwell","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":2},"card_type":{"supertypes":["World"],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cumulative upkeep {1}{B} (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)\nAt the beginning of each upkeep, if this enchantment is on the battlefield, each player creates a 2/2 black Zombie creature token with haste named Tombspawn for each creature card in their graveyard.\nAt the beginning of each end step and when this enchantment leaves the battlefield, destroy all tokens created with this enchantment. They can't be regenerated.","non_ability_text":null,"flavor_name":null,"keywords":[{"CumulativeUpkeep":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Zombie","power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"types":["Creature","Zombie"],"colors":["Black"],"keywords":[],"tapped":false,"count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"ScopedPlayer","properties":[{"type":"Owned","controller":"ScopedPlayer"},{"type":"InZone","zone":"Graveyard"}]}}},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"All"}},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, if ~ is on the battlefield, each player creates a 2/2 black Zombie creature token with haste named Tombspawn for each creature card in their graveyard.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false},{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each end step, destroy all tokens created with ~. They can't be regenerated.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Token"}]},"cant_regenerate":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, destroy all tokens created with ~. They can't be regenerated.","constraint":null,"condition":null,"batched":false},{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Mana","cost":{"type":"Cost","shards":["Black"],"generic":1}}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"9aaf1149-eccb-434a-a1a7-14b93fa50141","metadata":{"source_printing_ids":["f8fe2f99-7ec2-490c-8ec3-aa2fb4680826"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MIR"],"rulings":[{"date":"2004-10-04","text":"All the tokens are put onto the battlefield simultaneously."},{"date":"2004-10-04","text":"Both the cumulative upkeep and the triggered ability trigger at the beginning of upkeep, so you can choose what order they resolve."},{"date":"2004-10-04","text":"Does not put the Zombies onto the battlefield if this card is not still on the battlefield when its ability resolves."},{"date":"2004-10-04","text":"If something changes the names of the tokens, then the \"at end of turn\" ability will still destroy them."},{"date":"2004-10-04","text":"You control the triggered ability, but each player controls the token creature they put onto the battlefield due to the ability's effect."},{"date":"2008-10-01","text":"This has the supertype world. When a world permanent enters, any world permanents that were already on the battlefield are put into their owners' graveyards. This is a state-based action called the \"world rule.\" The new world permanent stays on the battlefield. If two world permanents enter at the same time, they're both put into their owners' graveyards."}],"rarities":["rare"]},"tome scour":{"name":"Tome Scour","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player mills five cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Mill","count":{"type":"Fixed","value":5},"target":{"type":"Player"},"destination":"Graveyard"},"cost":null,"sub_ability":null,"duration":null,"description":"Target player mills five cards.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"446a9d7e-9c1a-4e83-8342-2ed5acae2eed","metadata":{"source_printing_ids":["6445f013-8b50-4ea3-9013-df85289c2605","a67f6ee1-80bd-42cf-bcf6-6f856a6b2398","aed4cfec-5cea-4987-890e-825b2802e9f9","fdbdf96b-e7c5-42e5-9a16-03daafde40af"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M10","M11","M14","PIO","PS11"],"rulings":[{"date":"2009-10-01","text":"If there are fewer than five cards in the targeted player’s library, that player puts all the cards from their library into their graveyard."}],"rarities":["common","uncommon"]},"too greedily, too deep":{"name":"Too Greedily, Too Deep","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put target creature card from a graveyard onto the battlefield under your control. That creature deals damage equal to its power to each other creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Battlefield","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"InZone","zone":"Graveyard"}]},"owner_library":false,"enter_transformed":false,"enters_under":"You","enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put target creature card from a graveyard onto the battlefield under your control. That creature deals damage equal to its power to each other creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"af65bbf9-e328-4b8b-8caa-c6dff743867b","metadata":{"source_printing_ids":["328b93f0-5078-4334-9c95-60ecdd17a388","4a8e2312-1a17-4f7b-bd9a-c510a4cf127b","595c37f7-2f5e-4055-ae85-3ad4e2c8cb5c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LTC"],"rulings":[{"date":"2023-06-16","text":"If the card you return to the battlefield isn't a creature on the battlefield, it has no power and therefore deals no damage."}],"rarities":["rare"]},"torrent sculptor":{"name":"Torrent Sculptor","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Merfolk","Wizard"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Ward {2} (Whenever this creature becomes the target of a spell or ability an opponent controls, counter it unless that player pays {2}.)\nWhen this creature enters, exile an instant or sorcery card from your graveyard. Put a number of +1/+1 counters on this creature equal to half that card's mana value, rounded up.","non_ability_text":null,"flavor_name":null,"keywords":[{"Ward":{"type":"Mana","data":{"type":"Cost","shards":[],"generic":2}}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Graveyard","destination":"Exile","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"DivideRounded","inner":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Target"}}},"divisor":2,"rounding":"Up"},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"target_choice_timing":"Resolution","forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, exile an instant or sorcery card from your graveyard. Put a number of +1/+1 counters on ~ equal to half that card's mana value, rounded up.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red","Blue"],"scryfall_oracle_id":"8a9fe2dd-50a7-4010-96ba-df4dec265e16","metadata":{"source_printing_ids":["77e7417d-36b9-4a47-b6d2-aa589711a5ba","87463b68-3642-41c7-a11c-67d524759b60"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"layout":"modal_dfc","printings":["PRM","PSTX","STX"],"rulings":[{"date":"2021-04-16","text":"Flamethrower Sonata goes on the stack without a target. While it is resolving, you discard a card, then draw a card. When you discard an instant or sorcery card this way, the reflexive triggered ability triggers and you pick a target to be dealt damage. This is different from effects that say “If you do . . .” in that players can respond to the triggered ability knowing how much damage will be dealt."},{"date":"2021-04-16","text":"If a player casts a spell that targets multiple permanents their opponent controls with ward, each of those ward abilities will trigger. If that player doesn’t pay for all of them, the spell will be countered."},{"date":"2021-04-16","text":"If you have no cards in hand as Flamethrower Sonata resolves, you won’t be able to discard a card, but you will draw a card. No damage will be dealt."},{"date":"2021-04-16","text":"You choose which instant or sorcery card to exile as Torrent Sculptor’s enters-the-battlefield ability resolves. You must exile one if able."}],"rarities":["rare"]},"tracker":{"name":"Tracker","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"{G}{G}, {T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green","Green"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{G}{G}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"86260d53-a68e-43cb-88ba-6a97c0b2f4f4","metadata":{"source_printing_ids":["35ffc69e-26f2-434f-8c89-2df108dd984a","74f0400c-35dd-4ba5-97d1-2e57689c9d53"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["DRK","ME3"],"rulings":[{"date":"2004-10-04","text":"Giving either creature first strike does not affect the ability."},{"date":"2004-10-04","text":"If this leaves the battlefield before its activated ability resolves, it will still deal damage to the targeted creature. On the other hand, if the targeted creature leaves the battlefield before the ability resolves, the ability won't resolve and no damage will be dealt."},{"date":"2009-10-01","text":"You may have Tracker target itself with its own ability. If you do, Tracker will deal damage to itself equal to its power, then immediately do it again."}],"rarities":["uncommon","rare"]},"traitor's roar":{"name":"Traitor's Roar","mana_cost":{"type":"Cost","shards":["BlackRed"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Tap target untapped creature. It deals damage equal to its power to its controller.\nConspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":["Conspire"],"abilities":[{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Untapped"}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Tap target untapped creature. It deals damage equal to its power to its controller.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"CopySpell","target":{"type":"SelfRef"},"retarget":{"type":"MayChooseNewTargets"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"AdditionalCostPaid"},"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Stack"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.78a: Conspire — when you cast this spell, if its conspire cost was paid, copy it; you may choose new targets for the copy.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"04e9ac31-3377-4a4c-9337-53ee0ada882a","additional_cost":{"type":"Optional","data":{"cost":{"type":"TapCreatures","count":2,"filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"SharesQuality","quality":"Color","reference":{"type":"SelfRef"}}]}}}},"metadata":{"source_printing_ids":["751e2700-6425-45b8-b026-8c78098f08b2"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["SHM"],"rulings":[{"date":"2008-05-01","text":"If you use conspire to copy Traitor’s Roar, but you don’t change its target, the copy will resolve just fine but the original doesn’t resolve. That’s because the copy will resolve first, and as part of its resolution, it will tap the targeted creature. Then, when the original Traitor’s Roar tries to resolve, it will have an illegal target (since it must target an untapped creature)."}],"rarities":["common"]},"treasured find":{"name":"Treasured Find","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target card from your graveyard to your hand. Exile Treasured Find.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"e99d6c5c-b029-4cd1-bd7a-6f8ea91eb4a7","metadata":{"source_printing_ids":["0dc037e4-bbf3-4cea-b197-befb31d718a6","9317b616-eabe-461a-bd60-6dd8620becb4","a2c0e00b-2290-493f-a3fc-3b9bff2830cc"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["DDM","GK1","RTR"],"rarities":["uncommon"]},"tribute to hunger":{"name":"Tribute to Hunger","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target opponent sacrifices a creature of their choice. You gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target opponent sacrifices a creature of their choice. You gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"dc5a501c-e16c-4d4b-a510-70a14272473e","metadata":{"source_printing_ids":["11f1b897-bb7d-4217-97a7-c89f2453c8fa","f77e0f88-2285-4b59-9165-9948c75d77a3","fcfc9bd3-4378-4305-b427-4e3dd4e1fba1"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DDQ","FDN","ISD"],"rulings":[{"date":"2024-11-08","text":"Use the sacrificed creature's toughness as it last existed on the battlefield to determine how much life to gain."}],"rarities":["uncommon"]},"triskaidekaphile":{"name":"Triskaidekaphile","mana_cost":{"type":"Cost","shards":["Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Wizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"You have no maximum hand size.\nAt the beginning of your upkeep, if you have exactly thirteen cards in your hand, you win the game.\n{3}{U}: Draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":3}},"sub_ability":null,"duration":null,"description":"{3}{U}: Draw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"WinTheGame","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, if you have exactly thirteen cards in your hand, you win the game.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"HandSize","player":{"type":"Controller"}}},"comparator":"EQ","rhs":{"type":"Fixed","value":13}},"batched":false}],"static_abilities":[{"mode":"NoMaximumHandSize","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You have no maximum hand size."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"ef238ba8-acf0-4e62-9abd-5291886a32e8","metadata":{"source_printing_ids":["10c7b3b1-32f4-49b1-aa39-02d3ef29a727","1ed68800-3fc6-4b0e-a624-8be3beeed92f","2ddbaeed-ba00-476d-a68a-d98f179b62a6","6750e203-1215-4203-b5b8-3f1b18940839","779dadab-a4be-481f-a50f-4a80a3bf9ca9","b6db2d37-3533-4830-ab63-6724ece6fbea"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["BLC","DBL","MID","PMID","PRM","SLD"],"rulings":[{"date":"2021-09-24","text":"Triskaidekaphile's triggered ability will trigger only if you have exactly thirteen cards in your hand as your upkeep starts. If you have fewer cards in your hand, you won't be able to draw cards during your upkeep in time to cause the ability to trigger."}],"rarities":["rare"]},"troll ascetic":{"name":"Troll Ascetic","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Troll","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)\n{1}{G}: Regenerate this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Hexproof"],"abilities":[{"kind":"Activated","effect":{"type":"Regenerate","target":{"type":"SelfRef"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":1}},"sub_ability":null,"duration":null,"description":"{1}{G}: Regenerate ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"0585ea6a-ef78-4386-a22c-6b8d8fc6c03c","metadata":{"source_printing_ids":["430fa067-cecd-4958-851b-5908a0765063","5a87f701-ef4c-47dd-beec-8ae871306ffe","cbef1bfa-eb85-4f64-bd11-8af53bf4c3d4","d447186e-62a7-4767-bb85-6439fd795350","f01233c2-6df0-4f0e-8668-3855868731ea"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["10E","CM2","CMD","DDL","DPA","MRD","PS11"],"rarities":["rare"]},"trostani, selesnya's voice":{"name":"Trostani, Selesnya's Voice","mana_cost":{"type":"Cost","shards":["Green","Green","White","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Dryad"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever another creature you control enters, you gain life equal to that creature's toughness.\n{1}{G}{W}, {T}: Populate. (Create a token that's a copy of a creature token you control.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Populate"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green","White"],"generic":1}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{1}{G}{W}, {T}: Populate.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green","White"],"scryfall_oracle_id":"e94ef397-f5c5-4b8d-ae27-528352fa1d1e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0eeccc8d-fe98-4868-939f-29277085aeff","34ea44f2-cb2f-4b86-83fc-fe507f05bb9d","9d1d9d86-5666-4e59-9766-137657b4e040","c2649bc6-2ed9-4d50-ad11-ae05d6df2c3d"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C19","GK1","PLST","RTR"],"rulings":[{"date":"2012-10-01","text":"Trostani's first ability checks the creature's toughness as it resolves. If that creature has left the battlefield, use its toughness from when it was last on the battlefield. You can't lose life this way if that creature's toughness was less than 0."},{"date":"2024-01-12","text":"Any enters-the-battlefield abilities of the copied token will trigger when the new token enters the battlefield. Any \"as [this creature] enters the battlefield\" or \"[this creature] enters the battlefield with\" abilities of the copied token will also work."},{"date":"2024-01-12","text":"If you choose to copy a creature token that's a copy of another creature, the new creature token will copy the characteristics of whatever the original token is copying."},{"date":"2024-01-12","text":"If you control no creature tokens when you populate, nothing will happen."},{"date":"2024-01-12","text":"Populate doesn't target the creature token you're copying. You choose that creature token as you're taking the populate action. You can choose any creature token you control. If a spell or ability causes you to create a creature token and then instructs you to populate, you may choose to copy the token you just created, or you may choose to copy another creature token you control."},{"date":"2024-01-12","text":"The new creature token copies the characteristics of the original token as stated by the effect that created the original token."},{"date":"2024-01-12","text":"The new token doesn't copy whether the original token is tapped or untapped, whether it has any counters on it or Auras and Equipment attached to it, or any noncopy effects that have changed its power, toughness, color, and so on."}],"rarities":["mythic"]},"turbulent fen":{"name":"Turbulent Fen","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Swamp","Forest"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {B} or {G}.)\nThis land enters tapped unless your opponents control eight or more lands.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters tapped unless your opponents control eight or more lands.","condition":{"type":"UnlessControlsCountMatching","minimum":8,"filter":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[]}},"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"114dd40d-5ad8-4913-a08f-572b9521eb5b","metadata":{"source_printing_ids":["9737159b-256c-4004-ba5f-0417c35e1b30","fa1f9d1d-f749-4a33-b6dc-52f97b416b3c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOC"],"rulings":[{"date":"2026-03-20","text":"If this land enters the battlefield at the same time as any number of lands your opponents control, those other lands are not counted when determining if this land enters the battlefield tapped or untapped."},{"date":"2026-03-20","text":"Unlike some other dual lands, Turbulent Fen has two basic land types. It's not basic, so effects that search for basic lands can't find it, but it does have the appropriate land types for effects such as that of Necroblossom Snarl (included in the Secrets of Strixhaven Commander decks)."}],"rarities":["rare"]},"twisted justice":{"name":"Twisted Justice","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player sacrifices a creature of their choice. You draw cards equal to that creature's power.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"TargetPlayer","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Target player sacrifices a creature of their choice. You draw cards equal to that creature's power.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"89c5dec1-cefe-4ce3-a9df-b5cb9fa73b35","metadata":{"source_printing_ids":["d8efa02d-c301-47e1-8cdf-26ff9e97a243"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["RAV"],"rarities":["uncommon"]},"ultima, origin of oblivion":{"name":"Ultima, Origin of Oblivion","mana_cost":{"type":"Cost","shards":[],"generic":5},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["God"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhenever Ultima attacks, put a blight counter on target land. For as long as that land has a blight counter on it, it loses all land types and abilities and has \"{T}: Add {C}.\"\nWhenever you tap a land for {C}, add an additional {C}.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"blight","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"ParentTarget"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"lose all land types and abilities and has \"{T}: Add {C}.\""}],"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"that land has a blight counter on it"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":{"ForAsLongAs":{"condition":{"type":"Unrecognized","text":"that land has a blight counter on it"}}},"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ attacks, put a blight counter on target land. For as long as that land has a blight counter on it, it loses all land types and abilities and has \"{T}: Add {C}.\"","constraint":null,"condition":null,"batched":false},{"mode":"TapsForMana","execute":{"kind":"Spell","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Land"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you tap a land for {C}, add an additional {C}.","constraint":null,"condition":null,"batched":false,"taps_for_mana_produced":["Colorless"]}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"baa337ce-edc6-4ee5-a898-68e9dbb4ab93","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["2ac1b165-27ff-47f3-b598-43f7f021093a","d55a4c02-1aa4-454c-9041-84937377a53b","e6e27054-03e1-424e-92d8-6e77d7683d79"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"The affected land keeps any other card types (such as artifact) and supertypes (such as basic or legendary) when it loses its land types."},{"date":"2025-06-06","text":"Ultima's last ability is a triggered mana ability. It doesn't use the stack and can't be responded to."}],"rarities":["rare"]},"uncivil unrest":{"name":"Uncivil Unrest","mana_cost":{"type":"Cost","shards":["Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Nontoken creatures you control have riot. (They enter with your choice of a +1/+1 counter or haste.)\nIf a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"modifications":[{"type":"AddKeyword","keyword":"Riot"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Nontoken creatures you control have riot."}],"replacements":[{"event":"DamageDone","execute":null,"mode":{"type":"Mandatory"},"valid_card":null,"description":"If a creature you control with a +1/+1 counter on it would deal damage to a permanent or player, it deals double that damage instead.","condition":null,"damage_modification":{"type":"Double"},"damage_source_filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Counters","counters":{"type":"OfType","data":"P1P1"},"comparator":"GE","count":{"type":"Fixed","value":1}}]}},{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"This permanent enters with an additional +1/+1 counter on it","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Optional","decline":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":null}],"duration":"Permanent","target":null},"cost":null,"sub_ability":null,"duration":"Permanent","description":"It gains haste","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"NonToken"}]},"description":"CR 702.136a: Riot — this permanent may enter with an additional +1/+1 counter; otherwise it gains haste.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"bd655e8b-f192-4635-9e23-357b6f89ef8f","metadata":{"source_printing_ids":["0a9e1b5e-233e-4066-9d03-d04a051d8cfb","31afae93-d3c7-49c3-9f00-2cd9621e0ff8","343c3e40-d551-4e2c-bb94-315b58151a33"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["MOC","SLD"],"rulings":[{"date":"2023-04-14","text":"If another effect (or effects) modifies how much damage your creature with a +1/+1 counter on it would deal—by preventing some of it, for example—the player being dealt damage or the controller of the permanent being dealt damage chooses the order in which any such effects (including Uncivil Unrest’s) apply. If all of the damage is prevented, Uncivil Unrest’s effect no longer applies."},{"date":"2023-04-14","text":"If damage dealt by a creature you control with a +1/+1 counter on it is being divided or assigned among multiple permanents and/or players, that damage is divided or assigned before doubling. For example, if you attack with a 5/5 creature with trample and it’s blocked by a 2/2 creature, you can assign 2 damage to the blocker and 3 damage to the defending player. Those amounts are then doubled to 4 and 6, respectively."},{"date":"2023-04-14","text":"If you choose for the creature to gain haste, it gains haste indefinitely. It won’t lose it as the turn ends or as another player gains control of it."},{"date":"2023-04-14","text":"Riot is a replacement effect. Players can’t respond to your choice of +1/+1 counter or haste, and they can’t take actions while the creature is on the battlefield without one or the other."},{"date":"2023-04-14","text":"The damage is dealt by the same source as the original source of damage. The doubled damage isn’t dealt by Uncivil Unrest unless it was somehow the original source of damage."}],"rarities":["rare"]},"undying flames":{"name":"Undying Flames","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile cards from the top of your library until you exile a nonland card. Undying Flames deals damage to any target equal to that card's mana value.\nEpic (For the rest of the game, you can't cast spells. At the beginning of each of your upkeeps, copy this spell except for its epic ability. You may choose a new target for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":["Epic"],"abilities":[{"kind":"Spell","effect":{"type":"ExileFromTopUntil","player":{"type":"Controller"},"until":{"type":"NextMatches","filter":{"type":"Typed","type_filters":[{"Non":"Land"}],"controller":null,"properties":[]}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile cards from the top of your library until you exile a nonland card. ~ deals damage to any target equal to that card's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"5db128ed-69c0-41f3-b8b4-fb7cefdb236c","metadata":{"source_printing_ids":["606206c7-1a8a-46f4-b368-cf18e02f3df8"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SOK"],"rulings":[{"date":"2005-06-01","text":"If you have no cards in your library, Undying Flames does nothing."}],"rarities":["rare"]},"unnatural hunger":{"name":"Unnatural Hunger","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Aura"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Enchant creature\nAt the beginning of the upkeep of enchanted creature's controller, this Aura deals damage equal to that creature's power to that player unless they sacrifice another creature of their choice.","non_ability_text":null,"flavor_name":null,"keywords":[{"Enchant":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}}],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of the upkeep of enchanted creature's controller, ~ deals damage equal to that creature's power to that player unless they sacrifice another creature of their choice.","constraint":null,"condition":null,"unless_pay":{"cost":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"count":1},"payer":{"type":"TriggeringPlayer"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"d37a361e-83e8-4f0a-bd09-3135fb918471","metadata":{"source_printing_ids":["3985f240-4289-4d48-978c-bb2ce2b54c36"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["MMQ"],"rarities":["rare"]},"unstoppable plan":{"name":"Unstoppable Plan","mana_cost":{"type":"Cost","shards":["Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"At the beginning of your end step, untap all nonland permanents you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Permanent",{"Non":"Land"}],"controller":"You","properties":[]},"scope":{"type":"All"},"state":{"type":"Untap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, untap all nonland permanents you control.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"3f6f4c98-ed7e-4fb1-8bfe-4210a39f77f2","metadata":{"source_printing_ids":["62a95aeb-b1b0-42cd-ad67-fd13717d3c6c","aaeb5981-7e6a-4ffd-bb02-4757b2e92f08","ce40ff0e-04ae-4786-ac0c-54a66ffb48a6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DFT","PDFT"],"rarities":["rare"]},"unstoppable slasher":{"name":"Unstoppable Slasher","mana_cost":{"type":"Cost","shards":["Black"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Zombie","Assassin"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever this creature deals combat damage to a player, they lose half their life, rounded up.\nWhen this creature dies, if it had no counters on it, return it to the battlefield tapped under its owner's control with two stun counters on it.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"DivideRounded","inner":{"type":"Ref","qty":{"type":"LifeTotal","player":{"type":"ScopedPlayer"}}},"divisor":2,"rounding":"Up"},"target":{"type":"TriggeringPlayer"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"Whenever ~ deals combat damage to a player, they lose half their life, rounded up.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"TriggeringSource"},"owner_library":false,"enter_transformed":false,"enter_tapped":true,"enters_attacking":false,"enter_with_counters":[["stun",{"type":"Fixed","value":2}]]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, if it had no counters on it, return it to the battlefield tapped under its owner's control with two stun counters on it.","constraint":null,"condition":{"type":"Not","condition":{"type":"HadCounters","counter_type":null}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"6662968e-ca9e-454c-be44-24ad10e43d3e","metadata":{"source_printing_ids":["0a30a301-8e87-46e7-89aa-cd55b1a14420","57d865cf-8c5f-4c27-a731-33564b01bc64","c78da035-6b5b-4136-9ab6-f622b64fdc54"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["DSK","PDSK","PJSC"],"rarities":["rare"]},"urge to feed":{"name":"Urge to Feed","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target creature gets -3/-3 until end of turn. You may tap any number of untapped Vampire creatures you control. If you do, put a +1/+1 counter on each of those Vampires.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Fixed","value":-3},"toughness":{"type":"Fixed","value":-3},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"Typed","type_filters":["Creature",{"Subtype":"Vampire"}],"controller":"You","properties":[{"type":"Untapped"}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"PutCounterAll","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"TrackedSetFiltered","id":0,"filter":{"type":"Typed","type_filters":[{"Subtype":"Vampire"}],"controller":null,"properties":[]}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"multi_target":{"min":0,"max":null},"target_choice_timing":"Resolution","forward_result":false,"sub_link":"SequentialSibling"},"duration":"UntilEndOfTurn","description":"Target creature gets -3/-3 until end of turn. You may tap any number of untapped Vampire creatures you control. If you do, put a +1/+1 counter on each of those Vampires.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"c9f2f0ae-5869-43dc-a225-4dfe3d37c166","metadata":{"source_printing_ids":["041606a6-d20b-4241-ae5a-2dd004c47487","6f56b179-dedf-44fc-952a-dec22f30af49","b388d4d9-62b6-4174-897e-f933a4badcf9","eed371fb-b23b-41b0-9fa2-4cb1be8b77cc","ff8e3bff-1502-4dac-9d2d-784a988e5565"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["DDK","E02","J25","VOC","WWK"],"rulings":[{"date":"2010-03-01","text":"If the targeted creature is an illegal target by the time Urge to Feed resolves, the entire spell doesn't resolve. You can't tap any Vampires."},{"date":"2010-03-01","text":"If you cast Urge to Feed targeting an untapped Vampire creature you control with toughness 3, its toughness will be reduced to 0 by the -3/-3 effect. However, state-based actions aren't checked until the spell has finished resolving. You may then tap that Vampire and put a +1/+1 counter on it, raising its toughness to 1. It will remain on the battlefield."},{"date":"2010-03-01","text":"You don't choose which untapped Vampire creatures you control to tap (if any) until Urge to Feed resolves."}],"rarities":["uncommon"]},"urza's mine":{"name":"Urza's Mine","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Mine"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Power-Plant and an Urza's Tower, add {C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Power-Plant"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Tower"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Power-Plant and an Urza's Tower, add {C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"33e85a8a-86df-4cdc-a9cc-8cbabe92c3c0","metadata":{"source_printing_ids":["08dea8f6-bd32-44a3-bec4-93a5607819df","21079a99-690a-459a-b803-19585d8cf5fb","23c0e596-83c7-4d3f-903b-0c29276700ef","27886da1-9161-4bed-81b5-06da21a25f91","2a503f38-8117-4f17-9cf8-e92149b4ba44","2ee60a99-762b-4f82-9a26-3d3b5682f46b","32dbc719-d8aa-47ff-b7ea-20adadc99ec7","396bbb7d-ae61-4d8d-b931-9ed2f712832e","4e15ad45-dc96-48db-931c-1bbb95dfa580","546e0452-5304-41fa-9e3a-a3fa5a571315","5a295b97-85c5-4673-aea5-81e3d6379345","5c07c384-8ce9-4be0-a739-699a294fcf47","5eedb94c-058e-4c3a-96cf-e6624c03d26e","6c6c9f3e-6df7-459c-a1b0-d628f17bb7a6","703bae20-8833-474b-9356-f45d7b1efa4e","7a235785-b720-483b-bb28-6de440be2129","84a9cb92-438f-46d7-a8bd-a263f540bd88","897a79db-ec7a-450c-98ec-53337c564baa","97def2ea-97b5-4739-81cb-f7b299da76c7","99cf2e06-90cc-4acc-8874-5cd4b2a4abf9","c6bdb7f8-b5d3-491b-b24e-6852f80cd109","cd8617d2-a0e9-4fb4-85da-2c7e385be3f6","d2de2721-7f82-4cef-bca7-ac04dbb3779c","da68a5c0-84fe-4a8f-93b2-790eca3cc95c","ddf85792-470b-4b42-99ac-9cb43a575523","e17d4495-efce-40e3-aa94-27d45b4ce636","e4e89152-99a3-45cf-a61a-5635568a0401","e73bd2a6-676c-47cd-8608-1128cbd0c7cb","ec1c8759-ec90-420b-b9c3-33515e91b705","f0b8934e-9ff0-4c3e-987e-9c4fb1445b77"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2004-10-04","text":"If you have at least one of each of the three Urza's lands on the battlefield, you must take the 2 mana instead of just one."},{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza's power plant":{"name":"Urza's Power Plant","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Power-Plant"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Tower, add {C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Mine"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Tower"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Tower, add {C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"e11966cd-2ee3-4df4-b099-abf42dcdf0db","metadata":{"source_printing_ids":["00d705f6-4b8b-49e7-b420-5277893f14bd","00fe59e8-d1ab-4f74-a7f4-a8feca3705ee","09b23321-861f-4afa-904f-7c63e356f10b","1080d56c-ff6c-4ef6-b3af-707c238d5442","18074937-9ad1-4d96-b4c0-96af06cedac4","222dc48a-335d-48e2-ba3d-048ae4c5c925","300bccb2-aaaf-4cc5-a625-63ec42ae03de","3115c04a-ac26-4361-aecd-c6fb5f03a96f","3c933622-1db9-48ce-9d76-fa1bca42d615","446ced23-1991-4335-9ead-83ae4a6d09cf","4499c80b-72af-485c-9106-22967b5252cd","4a86d6b5-946e-41e4-9c78-edec3f5bb981","54445d1f-5426-47e9-9e02-0274cea7174f","5cc02459-83ae-4b6c-85a1-26eeaf7a2ee7","5deeb24b-4c91-456c-be93-4a5b1935514d","5e5786d5-355d-454c-b09b-e307a7a324d4","60b1bbc3-eab3-4e30-8ebc-f4ef5ef0282b","7aa1e9c9-3522-4944-8e01-6988b33a9bb8","91267f96-cc20-4724-bac6-2c1e6e4001de","936335d7-1c4a-4fcd-80ff-cd4d4fcab8c4","937a24e4-f1f7-48d2-bc31-b219b2f26f04","94896e0b-859c-47e4-bf27-35ed37b841e0","b0449a19-37f7-4169-9e32-928db5ec76fe","b0bbe643-3e07-4541-a2e6-45c63a5133cf","c9a294bd-e6f6-4b88-b34c-135aff907b17","c9fd7ce9-1fe4-4668-b421-ce3f06d637e9","df2a9344-38b5-4def-bb6e-87d837e6da54","e01bf216-3e4c-4373-8021-26a7110b5421","e237d921-6d84-402e-b5e3-6bbdb3028f57","e3d0ec69-69ba-4185-b268-5f6890ada0d6"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2004-10-04","text":"If you have at least one of each of the three Urza's lands on the battlefield, you must take the 2 mana instead of just one."},{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza's saga":{"name":"Urza's Saga","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Enchantment","Land"],"subtypes":["Urza's","Saga"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — This Saga gains \"{T}: Add {C}.\"\nII — This Saga gains \"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with 'This token gets +1/+1 for each artifact you control.'\"\nIII — Search your library for an artifact card with mana cost {0} or {1}, put it onto the battlefield, then shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"{T}: Add {C}.\""}],"duration":"UntilHostLeavesPlay","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 1","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":1},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"GrantAbility","definition":{"kind":"Activated","effect":{"type":"Token","name":"Construct","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Construct"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +1/+1 for each artifact you control."}]},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":2}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with '~ gets +1/+1 for each artifact you control.'","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain \"{2}, {T}: Create a 0/0 colorless Construct artifact creature token with '~ gets +1/+1 for each artifact you control.'\""}],"duration":"UntilHostLeavesPlay","target":null},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 2","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":2},"batched":false},{"mode":"CounterAdded","execute":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[{"type":"ManaCostIn","costs":[{"type":"Cost","shards":[],"generic":0},{"type":"Cost","shards":[],"generic":1}]}]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Chapter 3","constraint":null,"condition":null,"counter_filter":{"counter_type":"lore","threshold":3},"batched":false}],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"lore","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"Saga ETB lore counter","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"scryfall_oracle_id":"4c6a0c30-b547-4eff-8ff4-0ca25803c076","metadata":{"related_token_ids":["3b93e4cb-767f-55f7-b59f-05f4c78db185","c0107955-7c56-5df9-9df1-740a54f52416"],"source_printing_ids":["2138dfbb-a4e3-49db-b908-95d0b2b7e82f","9df37469-6e2d-4783-aad3-c897ecbc967d","c1e0f201-42cb-46a1-901a-65bb4fc18f6c","c7658ec0-3207-4c7e-b31a-30a2a9249595"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"restricted"},"printings":["MB2","MH2","PLST","PMH2","SCH","SLC"],"rulings":[{"date":"2021-06-18","text":"Although Urza's Saga has the Urza's land type, it doesn't interact with Urza's Tower, Urza's Mine, or Urza's Power Plant."},{"date":"2021-06-18","text":"Even though Urza's Saga is a land, it is also still a Saga, and it will be sacrificed after its last chapter ability resolves."},{"date":"2021-06-18","text":"If Urza's Saga loses all of its chapter abilities but is still a Saga, perhaps due to a card like Blood Moon, it will immediately be sacrificed."},{"date":"2021-06-18","text":"Urza's Saga gains an ability from its first and second chapters. It keeps those abilities for as long as it's on the battlefield."},{"date":"2021-06-18","text":"Urza's Saga is a land, so it can only be played as a land. It cannot be cast as a spell."},{"date":"2021-06-18","text":"While resolving the chapter III ability, you can find only a card with actual mana cost {0} or {1}, not mana value 0 or 1. For example, you couldn't find a card with mana cost {U} or one with mana cost {X}."}],"rarities":["rare"]},"urza's tower":{"name":"Urza's Tower","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Urza's","Tower"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":2}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"And","conditions":[{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Mine"}],"controller":"You","properties":[]}},{"type":"ControllerControlsMatching","filter":{"type":"Typed","type_filters":["Land",{"Subtype":"Power-Plant"}],"controller":"You","properties":[]}}]},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"32fbb638-ab14-4e8b-a07a-d4c44e3496f2","metadata":{"source_printing_ids":["035cc927-7b24-4a18-98bd-6fc0a0d65cba","0696cc4b-45c9-424d-b472-8d530062fd52","09dd1ab7-e11d-4206-8aad-c3de4e2da5ec","0fc0146c-3f85-4ed5-b37c-f1eeea04143d","139f0169-80b1-4c9b-9e0f-370cedd0022c","1e9f09b3-dd2d-4ba9-a57e-4f3c1793f752","3ce1817d-1870-4011-809f-aef3841e779a","4a03554a-0ee7-4106-b3e4-4bc51f48032d","513e063c-b328-4e5f-8806-b232c38645f5","52263b78-9829-4778-b7a9-8c4a97d1c6df","530d6fd5-57f2-497d-8144-b3ce64a6c5cb","6aba1f0f-73b0-4898-8d07-43322e43d74e","7693a698-65be-4d85-8b9d-c02c1596b99d","86c6dc88-ef09-4b37-b9e8-c483cccd0e0e","8ed85655-fc59-4a57-bcf9-75e1899dff78","92fae767-8c14-46ef-a548-4f66225defdb","994e98f5-c18a-4ba8-ba15-1578f8c3262c","9bb66579-0840-4ec3-aa6a-731874662dbb","9e369f3f-354b-42bf-9b2f-286912730c6c","a0240c3c-7219-4d5d-ac85-c369e4b180eb","a53fe67f-5041-4ccc-b489-d4df97629b5d","b6a4d336-8138-4119-afdb-7f4be68c3079","c6bc2492-f8b6-446e-b848-0669ca0d88b4","c75672e0-fa2d-43c5-9381-e17f2fd6d3bc","cba9d0e3-9ff3-4aeb-9de6-c7695d88a31d","cc78f2e5-c02b-4f58-8510-660ca27d9a71","dc2c039e-fbf9-4e45-874d-b0ab0d923e52","e2424487-fffb-4af6-8f0f-b99ebf6360d6","e62d0539-242c-48b3-b611-6b0413e93068","f6ecf34e-7642-43d4-855b-36e125e4c69e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["2XM","5ED","8ED","9ED","ATQ","BCHR","CHR","CMM","J22","M3C","ME4","PRM","RIN"],"rulings":[{"date":"2024-06-07","text":"The ability checks for land types, not the names of other permanents you control."}],"rarities":["common","uncommon","rare"]},"urza, lord high artificer":{"name":"Urza, Lord High Artificer","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Artificer"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"When Urza enters, create a 0/0 colorless Construct artifact creature token with \"This token gets +1/+1 for each artifact you control.\"\nTap an untapped artifact you control: Add {U}.\n{5}: Shuffle your library, then exile the top card. Until end of turn, you may play that card without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"TapCreatures","count":1,"filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}},"sub_ability":null,"duration":null,"description":"Tap an untapped artifact you control: Add {U}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":5}},"sub_ability":{"kind":"Spell","effect":{"type":"ExileTop","player":{"type":"Controller"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"TrackedSet","id":0},"without_paying_mana_cost":true,"mode":"Play","duration":"UntilEndOfTurn"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{5}: Shuffle your library, then exile the top card. Until end of turn, you may play that card without paying its mana cost.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Construct","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Creature","Construct"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddDynamicPower","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}},{"type":"AddDynamicToughness","value":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"You","properties":[]}}}}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ gets +1/+1 for each artifact you control."}]},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create a 0/0 colorless Construct artifact creature token with \"~ gets +1/+1 for each artifact you control.\"","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"e87906d2-db1a-4e19-b910-adb4eb339945","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["230b6574-5ce0-5c34-96c1-7efa9a6d3f0e","3b93e4cb-767f-55f7-b59f-05f4c78db185","3df82ae6-2a99-52b1-a4da-a34ae0c882a1","bd5f51ee-08a2-5368-9dd0-cb3052e719ec","c0107955-7c56-5df9-9df1-740a54f52416"],"source_printing_ids":["18b26e53-1fc2-4d07-a56f-9000ed25580d","3e286a7c-9643-492f-8ce9-255499dfd1a7","45ab9672-8d85-41f6-9016-20c2988b037c","7b7a348a-51f7-4dc5-8fe7-1c70fea5e050","81329329-0154-4f89-a476-a54112dfa0b7","86d744cd-225c-4279-898a-858dc316cf7f","9e7fb3c0-5159-4d1f-8490-ce4c9a60f567","a88c6f09-a0b2-46c9-a291-59408dfa52b0","f0e626cc-b01a-4e20-9414-8ba6347041f0","f531402e-681f-4439-837c-4e184efd5a49"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["CMM","DMR","FCA","H1R","MB2","MH1","PRM"],"rulings":[{"date":"2022-12-08","text":"If a spell has {X} in its mana cost, you must choose 0 as the value of X when casting it without paying its mana cost."},{"date":"2022-12-08","text":"If you cast a card \"without paying its mana cost,\" you can't choose to cast it for any alternative costs. You can, however, pay additional costs. If the card has any mandatory additional costs, you must pay those to cast the card."},{"date":"2022-12-08","text":"If you don't play the card exiled with Urza's last ability, it remains in exile."},{"date":"2022-12-08","text":"The token created by Urza's first ability will count itself, so it'll be at least 1/1."},{"date":"2022-12-08","text":"Urza's last ability doesn't change when you can play the exiled card. For example, if you exile a sorcery card, you can cast it only during your main phase when the stack is empty. If you exile a land card, you can play it only during your main phase and only if you have an available land play remaining."},{"date":"2022-12-08","text":"You can tap any untapped artifact you control to pay the cost of the mana ability, including an artifact creature you haven't controlled continuously since the beginning of your most recent turn. Tapping an Equipment this way won't affect its abilities or the equipped creature."}],"rarities":["mythic"]},"valeron wardens":{"name":"Valeron Wardens","mana_cost":{"type":"Cost","shards":["Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Monk"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Renown 2 (When this creature deals combat damage to a player, if it isn't renowned, put two +1/+1 counters on it and it becomes renowned.)\nWhenever a creature you control becomes renowned, draw a card.","non_ability_text":null,"flavor_name":null,"keywords":[{"Renown":2}],"abilities":[],"triggers":[{"mode":"BecomeRenowned","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature you control becomes renowned, draw a card.","constraint":null,"condition":null,"batched":false},{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"Renown","count":{"type":"Fixed","value":2}},"cost":null,"sub_ability":null,"duration":null,"description":"Renown 2","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"SelfRef"},"description":"CR 702.112a: Renown 2 — when this creature deals combat damage to a player, if it isn't renowned, put 2 +1/+1 counters on it and it becomes renowned.","constraint":null,"condition":{"type":"Not","condition":{"type":"IsRenowned","subject":"Source"}},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"d1202573-2105-4d4d-ae7d-7164974b6d89","metadata":{"source_printing_ids":["e693a7e7-d95e-4cd8-9524-ca5fc517189a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["ORI"],"rulings":[{"date":"2015-06-22","text":"If a creature with renown deals combat damage to its controller because that damage was redirected, renown will trigger."},{"date":"2015-06-22","text":"If a renown ability triggers, but the creature leaves the battlefield before that ability resolves, the creature doesn’t become renowned. Any ability that triggers “whenever a creature becomes renowned” won’t trigger."},{"date":"2015-06-22","text":"Renown won’t trigger when a creature deals combat damage to a planeswalker or another creature. It also won’t trigger when a creature deals noncombat damage to a player."}],"rarities":["uncommon"]},"vanish into memory":{"name":"Vanish into Memory","mana_cost":{"type":"Cost","shards":["White","Blue"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Exile target creature. You draw cards equal to that creature's power. At the beginning of your next upkeep, return that card to the battlefield under its owner's control. If you do, discard cards equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"CreateDelayedTrigger","condition":{"type":"AtNextPhaseForPlayer","phase":"Upkeep","player":0},"effect":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Battlefield","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"uses_tracked_set":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"CostPaidObject"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Exile target creature. You draw cards equal to that creature's power. At the beginning of your next upkeep, return that card to the battlefield under its owner's control. If you do, discard cards equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Blue","White"],"color_identity":["Blue","White"],"scryfall_oracle_id":"d3beb624-f589-4ed5-97a0-11ad61481250","metadata":{"source_printing_ids":["3cdd22d7-b3b0-4cb5-846d-aa3d96a29c97","60dd9f6e-c848-4670-8de1-06f328ea7f71","6da89cfe-274f-452d-a5ca-b034534898c7","a6b697b5-cfa2-4f3f-a36f-a3f8b79c2060"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["AFC","CSP","DDI","MM3"],"rulings":[{"date":"2017-03-14","text":"If the creature exiled with Vanish into Memory isn't a creature card (for example, a crewed Vehicle), that card will still be returned to the battlefield, but not as a creature. Since the card returned to the battlefield has no toughness, you discard no cards."},{"date":"2017-03-14","text":"If the creature exiled with Vanish into Memory never returns to the battlefield (because it was a token creature, for example), you don't discard any cards."},{"date":"2017-03-14","text":"Vanish into Memory cares about the creature's power just before it left the battlefield and its toughness just after it returns to the battlefield. For example, if you target a 2/2 creature with two +1/+1 counters on it, you'll draw four cards, then when it returns to the battlefield without any counters on it, you'll discard two cards."}],"rarities":["uncommon"]},"vein drinker":{"name":"Vein Drinker","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Vampire"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\n{R}, {T}: This creature deals damage equal to its power to target creature. That creature deals damage equal to its power to this creature.\nWhenever a creature dealt damage by this creature this turn dies, put a +1/+1 counter on this creature.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[{"kind":"Activated","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":0}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"ParentTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{R}, {T}: ~ deals damage equal to its power to target creature. That creature deals damage equal to its power to ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever a creature dealt damage by ~ this turn dies, put a +1/+1 counter on ~.","constraint":null,"condition":{"type":"DealtDamageBySourceThisTurn"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"705d89f6-13a8-4f40-a01a-3d5d0ce4f34e","metadata":{"source_printing_ids":["25ad3372-51cb-4b82-a23c-81938b7c01b6","b6402470-d829-4b9a-840c-1f97d6fd786f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ALA","C17"],"rulings":[{"date":"2008-10-01","text":"Each time a creature is put into a graveyard from the battlefield, check whether Vein Drinker had dealt damage to it at any time during that turn. If so, Vein Drinker's third ability will trigger. It doesn't matter whether the damage was combat damage or not. It also doesn't matter who controlled the creature or whose graveyard it was put into."},{"date":"2008-10-01","text":"If Vein Drinker's first ability causes Vein Drinker and the targeted creature to deal lethal damage to each other, they'll be destroyed at the same time. Vein Drinker's triggered ability will trigger, but it will have been put into a graveyard before it would receive any counters. The ability will do nothing when it resolves."},{"date":"2008-10-01","text":"When the first ability resolves, if the targeted creature is no longer on the battlefield, the ability doesn't resolve for having no legal targets. No damage is dealt."},{"date":"2008-10-01","text":"When the first ability resolves, if the targeted creature is still on the battlefield but Vein Drinker is not, Vein Drinker will still deal damage equal to its power as it last existed on the battlefield to the targeted creature."}],"rarities":["rare"]},"vendetta":{"name":"Vendetta","mana_cost":{"type":"Cost","shards":["Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"NotColor","color":"Black"}]},"cant_regenerate":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target nonblack creature. It can't be regenerated. You lose life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"50a16634-ebf7-477f-ad6f-23332599f838","metadata":{"source_printing_ids":["039fc76d-3b7e-4329-a997-07c25509e421","2593e33c-9f54-4929-b256-41ce954e9612","67ced38e-0f33-4bda-8e18-09f6ac03a3d7","699e574f-2207-4798-a662-871634b8e36c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["MMQ","PLST","ROE","WC01"],"rulings":[{"date":"2010-06-15","text":"If the targeted creature is an illegal target by the time Vendetta resolves, the spell doesn't resolve. You won't lose life."},{"date":"2010-06-15","text":"If the targeted creature isn't destroyed due to umbra armor's effect, Vendetta continues to resolve. You lose life equal to the creature's current toughness (after the Aura with umbra armor has been destroyed)."},{"date":"2010-06-15","text":"The destroyed creature's last existence on the battlefield is checked to determine its toughness."}],"rarities":["common"]},"vengeful rebirth":{"name":"Vengeful Rebirth","mana_cost":{"type":"Cost","shards":["Red","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's mana value to any target.\nExile Vengeful Rebirth.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Typed","type_filters":["Card"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, ~ deals damage equal to that card's mana value to any target.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":"Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"522297b1-493a-4c62-a82a-3017c44183e8","parse_warnings":[{"type":"SwallowedClause","detector":"Condition_If","description":"Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal","line_index":0}],"metadata":{"source_printing_ids":["270a2f52-56b9-4eb5-b2ae-8dbee42a490c","80a504fb-b3ce-40f9-8fcb-86d5ad038e5d","a8bda13a-d58a-4a82-9798-30e3d6f1cfcf","b03bb160-8113-409a-a130-2b3fdc476e6a"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["ARB","CMD","MM2","PLST","UMA"],"rulings":[{"date":"2018-12-07","text":"If both targets are illegal, Vengeful Rebirth doesn’t resolve. It will be put into your graveyard."},{"date":"2018-12-07","text":"If the target card in your graveyard becomes an illegal target but the target permanent or player doesn’t, Vengeful Rebirth won’t return that card to your hand and it won’t deal any damage (because you didn’t return a nonland card to your hand this way). Vengeful Rebirth will still be exiled."},{"date":"2018-12-07","text":"If the target permanent or player becomes an illegal target but the target card in your graveyard doesn’t, Vengeful Rebirth will still return that card from your graveyard to your hand, but it won’t deal any damage. Vengeful Rebirth will then be exiled."},{"date":"2018-12-07","text":"You can return a land card to your hand with Vengeful Rebirth. It just won’t deal any damage to the target permanent or player if you do."}],"rarities":["uncommon"]},"venom blast":{"name":"Venom Blast","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Put two +1/+1 counters on target creature you control. It deals damage equal to its power to up to one other target creature.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":2},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Put two +1/+1 counters on target creature you control. It deals damage equal to its power to up to one other target creature.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"c4b3dc5e-651f-4307-9d76-d728e5054a36","legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SPE"]},"verdant sun's avatar":{"name":"Verdant Sun's Avatar","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Dinosaur","Avatar"]},"power":{"type":"Fixed","value":5},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Whenever this creature or another creature you control enters, you gain life equal to that creature's toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"SelfRef"},{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever ~ or another creature you control enters, you gain life equal to that creature's toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"6ee71432-a44d-495e-86ea-d495d891c331","metadata":{"source_printing_ids":["9dbb5b6a-dc74-4e3e-9de1-5b379abdf2b4","cc2d03a9-815d-4662-a3ee-d6b24047128c","e8fce06a-56f7-4d0c-b094-ff147fec8256","f8fd0e28-2bb4-4529-bbfb-1d70a419a91b"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["C21","CMR","LCC","PXLN","XLN"],"rulings":[{"date":"2017-09-29","text":"The entering creature's toughness is determined as the ability of Verdant Sun's Avatar resolves. If that creature has left the battlefield, use its toughness as it last existed on the battlefield. If the creature's toughness was less than 0, your life total won't change."}],"rarities":["rare"]},"vexing sphinx":{"name":"Vexing Sphinx","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Sphinx"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Flying\nCumulative upkeep—Discard a card. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)\nWhen this creature dies, draw a card for each age counter on it.","non_ability_text":null,"flavor_name":null,"keywords":["Flying",{"CumulativeUpkeep":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"CountersOn","scope":{"type":"Source"},"counter_type":"age"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, draw a card for each age counter on it.","constraint":null,"condition":null,"batched":false},{"mode":"PayCumulativeUpkeep","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"age","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"SelfRef"},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"PerCounter","counter":"age","target":{"type":"SelfRef"},"base":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":null,"random":false,"self_ref":false}},"payer":{"type":"Controller"}},"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":[],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"CR 702.24a: At the beginning of your upkeep, if this permanent is on the battlefield, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.","constraint":null,"condition":{"type":"SourceInZone","zone":"Battlefield"},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"c2affd47-2404-44b0-a571-e64e948130eb","metadata":{"source_printing_ids":["2c75f806-b900-403c-8de1-cc3173afc8f0","67a53a7e-f54c-410c-8cd2-7d3e0347bc6b","81cc1248-85c8-428f-ba08-96d188167eaa"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["CSP","DMR"],"rulings":[{"date":"2008-10-01","text":"Paying cumulative upkeep is always optional. If it's not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can't be made. For example, if a permanent with “cumulative upkeep {1}” has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either pay {4} or sacrifice the permanent."},{"date":"2022-12-08","text":"Paying cumulative upkeep is always optional. If it’s not paid, the permanent with cumulative upkeep is sacrificed. Partial payments of the total cumulative upkeep cost can’t be made. For example, if Vexing Sphinx has three age counters on it when its cumulative upkeep ability triggers, it gets another age counter and then its controller chooses to either discard four cards or sacrifice it."}],"rarities":["rare"]},"vial smasher the fierce":{"name":"Vial Smasher the Fierce","mana_cost":{"type":"Cost","shards":["Black","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Berserker"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Whenever you cast your first spell each turn, choose an opponent at random. Vial Smasher deals damage equal to that spell's mana value to that player or a planeswalker that player controls.\nPartner (You can have two commanders if both have partner.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"Generic"}}],"abilities":[],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Or","filters":[{"type":"TriggeringPlayer"},{"type":"Typed","type_filters":["Planeswalker"],"controller":"You","properties":[]}]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"valid_source":null,"description":"Whenever you cast your first spell each turn, choose an opponent at random. ~ deals damage equal to that spell's mana value to that player or a planeswalker that player controls.","constraint":{"type":"NthSpellThisTurn","n":1},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Red"],"scryfall_oracle_id":"1b355139-4891-436c-9079-0ce17ecc2d65","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["4e439cd0-5ba1-45af-a868-f408e0a50465","722b1e02-2268-4e02-8d09-9b337da2a844","a4dc32ca-89c9-4d3a-8809-846c34ef3592","cc7be939-2202-40fe-8899-a05682d76190"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C16","CMR","DSC","FCA","PRM","PZ2","SLD"],"rulings":[{"date":"2017-04-17","text":"Vial Smasher the Fierce is banned as a commander in Duel Commander format, but it may be part of your deck."},{"date":"2020-11-10","text":"An effect that checks whether you control your commander is satisfied if you control one or both of your two commanders."},{"date":"2020-11-10","text":"Both commanders start in the command zone, and the remaining 98 cards (or 58 cards in a Commander Draft game) of your deck are shuffled to become your library."},{"date":"2020-11-10","text":"For spells with {X} in their mana costs, use the value chosen for X to determine the spell's mana value."},{"date":"2020-11-10","text":"If something refers to your commander while you have two commanders, it refers to one of them of your choice. If you are instructed to perform an action on your commander (e.g. put it from the command zone into your hand due to Command Beacon), you choose one of your commanders at the time the effect happens."},{"date":"2020-11-10","text":"If your Commander deck has two commanders, you can only include cards whose own color identities are also found in your commanders' combined color identities. If Falthis and Kediss are your commanders, your deck may contain cards with black and/or red in their color identity, but not cards with green, white, or blue."},{"date":"2020-11-10","text":"Once the game begins, your two commanders are tracked separately. If you cast one, you won't have to pay an additional {2} the first time you cast the other. A player loses the game after having been dealt 21 damage from any one of them, not from both of them combined."},{"date":"2020-11-10","text":"The opponent to be dealt damage is chosen at random while the triggered ability is resolving. After that opponent is chosen, you choose whether damage will be dealt to that player or to a planeswalker they control, and if so, which planeswalker. No player may take any actions between the damage recipient being chosen and the damage being dealt."},{"date":"2020-11-10","text":"To have two commanders, both must have the partner ability as the game begins. Losing the ability during the game doesn't cause either to cease to be your commander."},{"date":"2020-11-10","text":"Vial Smasher has to be on the battlefield at the moment you cast your first spell. If that spell causes Vial Smasher to leave the battlefield as an additional cost to cast it, Vial Smasher's ability can't trigger. If that spell is Vial Smasher itself, Vial Smasher's ability can't trigger."},{"date":"2020-11-10","text":"Vial Smasher's triggered ability resolves before the spell that caused it to trigger. If Vial Smasher's ability resolves and the spell that caused it to trigger has been countered, use that spell's mana value as it last existed on the stack to determine how much damage is dealt."},{"date":"2020-11-10","text":"Vial Smasher's triggered ability triggers when you cast your first spell each turn, regardless of whose turn it is."},{"date":"2020-11-10","text":"You can choose two commanders with partner that are the same color or colors. In Commander Draft, you can even choose two of the same commander with partner if you drafted them. If you do this, make sure you keep the number of times you've cast each from the command zone clear for \"commander tax\" purposes."}],"rarities":["mythic"]},"viashino heretic":{"name":"Viashino Heretic","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Lizard"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{1}{R}, {T}: Destroy target artifact. This creature deals damage to that artifact's controller equal to the artifact's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Red"],"generic":1}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}{R}, {T}: Destroy target artifact. ~ deals damage to that artifact's controller equal to the artifact's mana value.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"36896550-151d-472c-bfc1-1d9bbf7cc04d","metadata":{"source_printing_ids":["143e435e-e3a1-45b0-81c3-bd47916df8ac","a9219bf5-96c5-4b7c-9eb9-53aa1fba28f5"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["PLST","ULG"],"rarities":["uncommon"]},"vigor":{"name":"Vigor","mana_cost":{"type":"Cost","shards":["Green","Green","Green"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elemental","Incarnation"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Trample\nIf damage would be dealt to another creature you control, prevent that damage. Put a +1/+1 counter on that creature for each 1 damage prevented this way.\nWhen Vigor is put into a graveyard from anywhere, shuffle it into its owner's library.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Library","target":{"type":"SelfRef"},"owner_library":true,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetOwner"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ is put into a graveyard from anywhere, shuffle it into its owner's library.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[{"event":"DamageDone","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"PostReplacementDamageTarget"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"description":"If damage would be dealt to another creature you control, prevent that damage. Put a +1/+1 counter on that creature for each 1 damage prevented this way.","condition":null,"shield_kind":{"Prevention":{"amount":"All"}}}],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"70787d8b-0a40-43ea-837a-9617dc13e7e5","metadata":{"source_printing_ids":["30d1b41d-f0bf-403c-a12d-1a1f5fc6bfb9","525b23c4-9a8e-4fbe-b4f9-584cc25ba758","5cede0be-1bdd-4392-beaf-b83d0b780eb7","6952b1c3-2a18-4ad5-8130-861fce1cb422","ea7047d8-8d32-48a3-829b-7eb5427ed53a","f2d78449-9e80-42e5-b525-068a3985e069"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["BBD","DPA","LRW","PIP","PLST","PS11","TMC"],"rulings":[{"date":"2007-10-01","text":"Although this ability triggers when the Incarnation is put into a graveyard from the battlefield, it doesn't *specifically* trigger on leaving the battlefield, so it doesn't behave like other leaves-the-battlefield abilities. The ability will trigger from the graveyard."},{"date":"2007-10-01","text":"If the Incarnation had lost this ability while on the battlefield (due to Lignify, for example) and then was destroyed, the ability would still trigger and it would get shuffled into its owner's library. However, if the Incarnation lost this ability when it was put into the graveyard (due to Yixlid Jailer, for example), the ability wouldn't trigger and the Incarnation would remain in the graveyard."},{"date":"2007-10-01","text":"If the Incarnation is removed from the graveyard after the ability triggers but before it resolves, it will remain in its new zone when its owner shuffles their library. Similarly, if a replacement effect has the Incarnation move to a different zone instead of being put into the graveyard, the ability won't trigger at all."},{"date":"2007-10-01","text":"The last ability triggers when the Incarnation is put into its owner's graveyard from any zone, not just from on the battlefield."}],"rarities":["rare"]},"virulent emissary":{"name":"Virulent Emissary","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Assassin"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Deathtouch\nWhenever another creature you control enters, you gain 1 life.","non_ability_text":null,"flavor_name":null,"keywords":["Deathtouch"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another creature you control enters, you gain 1 life.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3d4bec90-7bbc-4385-a2b8-303c7a8d0a0f","metadata":{"source_printing_ids":["0702efed-915e-466a-96bb-ac09af06b21e","6044d540-70ff-4ce3-9a26-4164e7543baa"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ECL"],"rarities":["uncommon"]},"vivi ornitier":{"name":"Vivi Ornitier","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Wizard"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"{0}: Add X mana in any combination of {U} and/or {R}, where X is Vivi Ornitier's power. Activate only during your turn and only once each turn.\nWhenever you cast a noncreature spell, put a +1/+1 counter on Vivi Ornitier and it deals 1 damage to each opponent.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"AnyCombination","count":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Source"}}},"color_options":["Blue","Red"]}},"cost":{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":0}},"sub_ability":null,"duration":null,"description":"{0}: Add X mana in any combination of {U} and/or {R}, where X is ~'s power. Activate only during your turn and only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"},{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"SpellCast","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageEachPlayer","amount":{"type":"Fixed","value":1},"player_filter":{"type":"Opponent"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Non":"Creature"}],"controller":null,"properties":[]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast a noncreature spell, put a +1/+1 counter on ~ and it deals 1 damage to each opponent.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"0452be2a-e97a-4269-a9e3-b616265ecb2e","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["0cfc4614-f6c1-4247-ab96-5bd41006ad85","25ef2d44-c261-4511-b96f-85e7a291e318","ada6aeb6-8c9f-4498-9326-b4da0fcb19a3","ecc1027a-8c07-44a0-bdde-fa2844cff694"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"banned","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["FIN","PFIN"],"rulings":[{"date":"2025-06-06","text":"Vivi Ornitier's first ability is a mana ability. It doesn't use the stack and it can't be responded to."},{"date":"2025-06-06","text":"Vivi Ornitier's last ability resolves before the spell that caused it to trigger. It resolves even if that spell is countered or otherwise leaves the stack."}],"rarities":["mythic"]},"vivien's invocation":{"name":"Vivien's Invocation","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in a random order. When a creature is put onto the battlefield this way, it deals damage equal to its power to target creature an opponent controls.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Dig","player":{"type":"Controller"},"count":{"type":"Fixed","value":7},"destination":"Battlefield","keep_count":1,"up_to":true,"filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"rest_destination":"Library","reveal":false,"enter_tapped":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in a random order. When a creature is put onto the battlefield this way, it deals damage equal to its power to target creature an opponent controls.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"5e2b30d2-81e9-40cd-86dd-3ec5dd06ced0","metadata":{"source_printing_ids":["784c4711-223d-4b95-a163-87e57f87b8db"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M19","PM19"],"rulings":[{"date":"2018-07-13","text":"If the creature you put onto the battlefield leaves the battlefield before damage is dealt, its last known existence on the battlefield is used to determine how much damage it deals to the target creature."},{"date":"2018-07-13","text":"You don’t choose any targets as you cast Vivien’s Invocation. While that spell is resolving, you may put a creature card from among the cards you look at onto the battlefield. If you do, a separate ability triggers and you pick a target creature an opponent controls to be dealt damage."}],"rarities":["rare"]},"volatile fault":{"name":"Volatile Fault","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Cave"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"{T}: Add {C}.\n{1}, {T}, Sacrifice this land: Destroy target nonbasic land an opponent controls. That player may search their library for a basic land card, put it onto the battlefield, then shuffle. You create a Treasure token.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Colorless","count":{"type":"Fixed","value":1}}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":"{T}: Add {C}.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Land"],"controller":"Opponent","properties":[{"type":"NotSupertype","value":"Basic"}]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[{"type":"HasSupertype","value":"Basic"}]},"count":{"type":"Fixed","value":1},"reveal":false,"target_player":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Battlefield","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"ParentTargetController"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{1}, {T}, Sacrifice ~: Destroy target nonbasic land an opponent controls. That player may search their library for a basic land card, put it onto the battlefield, then shuffle. You create a Treasure token.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"95c44f28-f7fa-4785-83b9-0d81be0db0c8","metadata":{"related_token_ids":["7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85","f7e12dcc-910d-5b82-b637-0b972542ead5"],"source_printing_ids":["9385abf3-b067-4586-bf3d-175526cf8f0a","d9a42082-615c-4387-a77c-97ee94153c57"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["LCI","M3C"],"rulings":[{"date":"2023-11-10","text":"If Volatile Fault's ability resolves, the target nonbasic land's controller gets to search for a basic land card even if the land wasn't destroyed by Volatile Fault's ability. This may happen because the land has indestructible. In this case, you'll still create a Treasure token."},{"date":"2023-11-10","text":"If the target of Volatile Fault's last ability is illegal as the ability tries to resolve, it won't resolve and none of its effects will happen. You won't create a Treasure token."}],"rarities":["uncommon"]},"volcanic vision":{"name":"Volcanic Vision","mana_cost":{"type":"Cost","shards":["Red","Red"],"generic":5},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Return target instant or sorcery card from your graveyard to your hand. Volcanic Vision deals damage equal to that card's mana value to each creature your opponents control. Exile Volcanic Vision.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Bounce","target":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"InZone","zone":"Graveyard"}]}]},"destination":null},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DamageAll","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}},"target":{"type":"Typed","type_filters":["Creature"],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Exile","target":{"type":"SelfRef"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Return target instant or sorcery card from your graveyard to your hand. ~ deals damage equal to that card's mana value to each creature your opponents control. Exile ~.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"fe3b4c74-2bf8-464a-8f55-9de401a8c4b9","metadata":{"source_printing_ids":["37aacf2b-b08f-4804-88ff-7b61620801e9","979da13b-9be6-49cc-a62c-67eeea289612","bfc546d2-458c-4571-be42-aba7cb25793b","f973e1a6-c6f9-47f5-9bf0-b7fa06959bd4"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","vintage":"legal"},"printings":["C16","C21","DDS","DTK","PDTK"],"rulings":[{"date":"2015-02-25","text":"If the target has {X} in its mana cost, X is 0."},{"date":"2015-02-25","text":"If the target instant or sorcery card becomes an illegal target before Volcanic Vision resolves, the spell won’t resolve and none of its effects will happen. No damage will be dealt and Volcanic Vision won’t be exiled."}],"rarities":["rare"]},"vraska's stoneglare":{"name":"Vraska's Stoneglare","mana_cost":{"type":"Cost","shards":["Black","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. You gain life equal to its toughness. You may search your library and/or graveyard for a card named Vraska, Regal Gorgon, reveal it, and put it into your hand. If you search your library this way, shuffle.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"SearchLibrary","source_zones":["Graveyard","Library"],"filter":{"type":"Typed","type_filters":[],"controller":null,"properties":[{"type":"Named","name":"vraska, regal gorgon"}]},"count":{"type":"Fixed","value":1},"reveal":true},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. You gain life equal to its toughness. You may search your library and/or graveyard for a card named Vraska, Regal Gorgon, reveal it, and put it into your hand. If you search your library this way, shuffle.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black","Green"],"scryfall_oracle_id":"c39e2046-173a-44b6-8e93-b22ede35485d","metadata":{"source_printing_ids":["27fc4db6-a5f5-4254-ae64-c8eaf2c98030"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["GRN"],"rulings":[{"date":"2018-10-05","text":"If the target creature becomes an illegal target for Vraska’s Stoneglare, the spell doesn’t resolve. You don’t gain life or search for Vraska, Regal Gorgon."},{"date":"2018-10-05","text":"The amount of life gained is equal to the destroyed creature’s toughness as it last existed on the battlefield. If it wasn’t destroyed (most likely because it has indestructible), you gain life equal to its toughness as it currently exists on the battlefield."}],"rarities":["rare"]},"wall of roots":{"name":"Wall of Roots","mana_cost":{"type":"Cost","shards":["Green"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Plant","Wall"]},"power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Defender\nPut a -0/-1 counter on this creature: Add {G}. Activate only once each turn.","non_ability_text":null,"flavor_name":null,"keywords":["Defender"],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Green"]}},"cost":{"type":"EffectCost","effect":{"type":"PutCounter","counter_type":"-0/-1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}}},"sub_ability":null,"duration":null,"description":"Put a -0/-1 counter on ~: Add {G}. Activate only once each turn.","target_prompt":null,"activation_restrictions":[{"type":"OnlyOnceEachTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"3a21a6ae-b2f2-4f0c-acfd-5f3e8d63fd2f","metadata":{"source_printing_ids":["04326924-55c4-4315-893a-6a05e0b7eb7f","999f9e72-97ed-430a-8c1c-26a54f8b7a08","aeb151d2-c313-44d2-972e-33487f070c23","b65cb901-bfb0-454a-97ef-138021e524ff","d80940ad-8e36-4226-ad5f-b54487c75c76","da80cb2d-2385-4a1a-9c93-c623102e9c50","e4e7d3b7-9b0c-463d-975c-ef81d7fd8dad"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["ARC","F08","IMA","MIR","NCC","P30A","PLST","PRM","TDC","TSB","WC98"],"rulings":[{"date":"2017-11-17","text":"If you must sacrifice a creature to pay a casting or activation cost that also includes mana, such as that of Bubbling Cauldron's abilities, you may put a -0/-1 counter on Wall of Roots to make its toughness 0 and then sacrifice it to pay that cost."}],"rarities":["common","special"]},"watery grave":{"name":"Watery Grave","mana_cost":{"type":"NoCost"},"card_type":{"supertypes":[],"core_types":["Land"],"subtypes":["Island","Swamp"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"({T}: Add {U} or {B}.)\nAs this land enters, you may pay 2 life. If you don't, it enters tapped.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Blue"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"Mana","produced":{"type":"Fixed","colors":["Black"]}},"cost":{"type":"Tap"},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":null,"mode":{"type":"MayCost","cost":{"type":"PayLife","amount":{"type":"Fixed","value":2}},"decline":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"SelfRef"},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, you may pay 2 life. If you don't, it enters tapped.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black","Blue"],"scryfall_oracle_id":"fc9ec820-4245-4a96-b009-5308a818ca58","metadata":{"source_printing_ids":["057dd01a-65f5-4cb1-995c-27d70b9ec8cf","139b90cd-8272-457a-be32-1298145345be","47fde349-010e-4a2e-838e-e924dbeec355","5b8170dc-6a90-46fc-9989-7575f3d402b5","67ef01b3-93f7-41e8-834d-9f6768e3b16c","6e86eb36-f4cc-4a75-b43a-4dee463a3b33","7d4595f2-9297-40dc-b2dd-7144bbb401f7","81706879-ec5d-4b17-b4bc-5f7cb37557a5","8dcc3080-966d-497e-82c9-a7311630abd2","b248ff3a-e10d-4797-8c04-7f4094608d32","bef5692f-d3a9-4687-9cd8-1177acfad1f8","d854480d-a163-422b-a3dc-54dffd7b3eab","ef7f4762-4283-4368-948b-e60a29e78a0c","f3721bac-4e1c-438e-b0a2-a557dd530077"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["CLU","EOE","EXP","GRN","GTC","PEOE","PGRN","PRM","RAV","RVR","SLD","UNF"],"rulings":[{"date":"2018-10-05","text":"If an effect puts this land onto the battlefield tapped, you may pay 2 life, but it still enters tapped."},{"date":"2018-10-05","text":"Unlike most dual lands, this land has two basic land types. It's not basic, so cards such as District Guide can't find it, but it does have the appropriate land types for effects such as that of Drowned Catacomb (from the Ixalan set)."}],"rarities":["rare"]},"wayta, trainer prodigy":{"name":"Wayta, Trainer Prodigy","mana_cost":{"type":"Cost","shards":["Red","Green","White"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Warrior"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":5},"loyalty":null,"defense":null,"oracle_text":"Haste\n{2}{G}, {T}: Target creature you control fights another target creature. This ability costs {2} less to activate if it targets two creatures you control.\nIf a creature you control being dealt damage causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.","non_ability_text":null,"flavor_name":null,"keywords":["Haste"],"abilities":[{"kind":"Activated","effect":{"type":"Fight","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"subject":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Green"],"generic":2}},{"type":"Tap"}]},"sub_ability":{"kind":"Spell","effect":{"type":"Unimplemented","name":"this","description":"This ability costs {2} less to activate if it targets two creatures you control"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{2}{G}, {T}: Target creature you control fights another target creature. This ability costs {2} less to activate if it targets two creatures you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":{"DoubleTriggers":{"cause":"ControlledCreatureDealtDamage"}},"affected":null,"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a creature you control being dealt damage causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[],"color_override":["Green","Red","White"],"color_identity":["Green","Red","White"],"scryfall_oracle_id":"e507df33-d150-4b21-8ddb-90799f412dd8","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["04f2d7ee-43a4-48e8-af64-d9fad4b9c5f1","103bbad8-afaf-4e34-b6d2-9cb9b312d39f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["LCC"],"rulings":[{"date":"2023-11-10","text":"If you somehow control two copies of Wayta, Trainer Prodigy, a creature you control being dealt damage causes abilities to trigger three times, not four. A third Wayta, Trainer Prodigy causes abilities to trigger four times, a fourth causes abilities to trigger five times, and so on."},{"date":"2023-11-10","text":"Wayta, Trainer Prodigy's last ability affects only triggered abilities whose trigger conditions refer specifically to damage being dealt, such as the ability granted by Mephidross Vampire or the last ability of Wrathful Raptors. It does not affect triggered abilities that would trigger because of the results of that damage. For example, if you control an Ajani's Pridemate (\"Whenever you gain life, put a +1/+1 counter on Ajani's Pridemate\") and you activate Wayta, Trainer Prodigy's second ability targeting a creature you control with lifelink and another creature you control, the triggered ability of Ajani's Pridemate will still trigger only once."},{"date":"2023-11-10","text":"Wayta, Trainer Prodigy's last ability doesn't copy the triggered ability; it just causes the ability to trigger twice. Any choices made as you put the ability onto the stack, such as modes and targets, are made separately for each instance of the ability. Any choices made on resolution, such as whether to put counters on a permanent, are also made individually."}],"rarities":["mythic"]},"wedding ring":{"name":"Wedding Ring","mana_cost":{"type":"Cost","shards":["White","White"],"generic":2},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"When this artifact enters, if it was cast, target opponent creates a token that's a copy of it.\nWhenever an opponent who controls an artifact named Wedding Ring draws a card during their turn, you draw a card.\nWhenever an opponent who controls an artifact named Wedding Ring gains life during their turn, you gain that much life.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"CopyTokenOf","target":{"type":"ParentTarget"},"owner":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"enters_attacking":false,"tapped":false,"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, if it was cast, target opponent creates a token that's a copy of it.","constraint":null,"condition":{"type":"WasCast"},"batched":false},{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent who controls an artifact named Wedding Ring draws a card during their turn, you draw a card.","constraint":null,"condition":{"type":"And","conditions":[{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"TriggeringPlayer","properties":[{"type":"Named","name":"wedding ring"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false},{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"EventContextAmount"}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]},"valid_source":null,"description":"Whenever an opponent who controls an artifact named Wedding Ring gains life during their turn, you gain that much life.","constraint":null,"condition":{"type":"And","conditions":[{"type":"DuringPlayersTurn","player":{"type":"TriggeringPlayer"}},{"type":"QuantityComparison","lhs":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Artifact"],"controller":"TriggeringPlayer","properties":[{"type":"Named","name":"wedding ring"}]}}},"comparator":"GE","rhs":{"type":"Fixed","value":1}}]},"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"0c34e962-99d9-4163-b852-4f61886546aa","metadata":{"related_token_ids":["2a0c52f6-dc87-5d78-bccc-2682d94072e7","553b5e02-de02-59fb-9901-28d367ab1c19","f7f1c18a-ecbe-5b99-ad80-2fcce898fc9c"],"source_printing_ids":["6d8fd9a7-d1bd-43bd-a136-49dc26621e4d","7f0b1400-0608-47fd-9c73-b7730bcf6b7f","831e9ee9-0b0b-4f73-9d01-bf94d90c5036","a79d396b-cd84-4088-8996-d33b19841286","b3df33ee-0db7-4240-a6fe-9a9e130353ce","bcac03a0-c4e3-4761-93f1-d4a64c0d46f8","f99645e5-4125-4f23-8911-0a027a0ac9fe"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["LCC","MAR","OMB","VOC","WHO"],"rulings":[{"date":"2021-11-19","text":"The trigger conditions of Wedding Ring's second and third abilities care about opponents who control any artifact named Wedding Ring, not just the token copy created by its first ability."}],"rarities":["mythic"]},"weed strangle":{"name":"Weed Strangle","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":3},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness. (Each clashing player reveals the top card of their library, then puts that card on their choice of the top or bottom. A player wins if their card had a greater mana value.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Clash"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EventOutcomeWon"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"Destroy target creature. Clash with an opponent. If you win, you gain life equal to that creature's toughness.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"af64ce09-b7d9-4db9-905e-c4356f242ced","metadata":{"source_printing_ids":["c1f7fb79-19a8-483a-bf91-e687f7da4e9c"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["LRW"],"rarities":["common"]},"well of lost dreams":{"name":"Well of Lost Dreams","mana_cost":{"type":"Cost","shards":[],"generic":4},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Whenever you gain life, you may pay {X}, where X is less than or equal to the amount of life you gained. If you do, draw X cards.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"LifeGained","execute":{"kind":"Spell","effect":{"type":"PayCost","cost":{"type":"Mana","cost":{"type":"Cost","shards":["X"],"generic":0}},"payer":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":true,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you gain life, you may pay {X}, where X is less than or equal to the amount of life you gained. If you do, draw X cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"scryfall_oracle_id":"b0394cf2-12a0-4d4f-87e0-fe8937e6faff","metadata":{"source_printing_ids":["26bbf680-cfdc-4d8f-93fc-5ffa15042191","4ee7d9a4-c36e-4989-b448-fa56705a4aa6","6bf1b915-7790-43f4-b308-a80a1be6ec29","a8c10535-c77e-4a40-b19f-23f7cb691230","aa00103a-6b87-416a-869a-557702844200","da828d8e-69a2-4900-a87a-111445220e1c","fe839cbc-7eae-4f86-be35-96542223347c"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["BRR","C13","C17","C21","DST","LTC","PLST","SLD"],"rarities":["rare"]},"wernog, rider's chaplain":{"name":"Wernog, Rider's Chaplain","mana_cost":{"type":"Cost","shards":["White","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"When Wernog, Rider's Chaplain enters or leaves the battlefield, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.\nPartner—Friends forever (You can have two commanders if both have this ability.)","non_ability_text":null,"flavor_name":null,"keywords":[{"Partner":{"type":"FriendsForever"}}],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"Investigate"}}},"offset":1},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.","constraint":null,"condition":null,"batched":false},{"mode":"LeavesBattlefield","execute":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Fixed","value":1},"target":{"type":"ScopedPlayer"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Investigate"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"repeat_for":{"type":"Offset","inner":{"type":"Ref","qty":{"type":"PlayerCount","filter":{"type":"PerformedActionThisWay","relation":{"type":"Opponent"},"action":"Investigate"}}},"offset":1},"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"Not","condition":{"type":"EffectOutcome","signal":"OptionalEffectPerformed"}},"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false,"player_scope":{"type":"Opponent"}},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ leaves the battlefield, each opponent may investigate. Each opponent who doesn't loses 1 life. You investigate X times, where X is one plus the number of opponents who investigated this way.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","White"],"color_identity":["Black","White"],"scryfall_oracle_id":"6cd03270-54cc-43e1-9b86-70c76960c841","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["d76af2c5-2e22-582a-bd84-97dc25d3601b"],"source_printing_ids":["25a4af68-6e5e-4b44-9c1c-25ecdbd555b5","39491011-bdf6-4e61-8534-fe26c1571f8f"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["SLD","SLX"],"rarities":["rare"]},"whirlpool drake":{"name":"Whirlpool Drake","mana_cost":{"type":"Cost","shards":["Blue"],"generic":3},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Drake"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Flying\nWhen this creature enters, shuffle the cards from your hand into your library, then draw that many cards.\nWhen this creature dies, shuffle the cards from your hand into your library, then draw that many cards.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, shuffle the cards from your hand into your library, then draw that many cards.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"ChangeZoneAll","origin":"Hand","destination":"Library","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"EventContextAmount"}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, shuffle the cards from your hand into your library, then draw that many cards.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"aef9fcf0-b755-40f6-821d-836ae1b5497a","metadata":{"source_printing_ids":["251074d4-c4d1-426e-b364-0f306cfd07a1","6e866093-89a3-458d-8ebc-de805ef7885e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["APC","PLST"],"rarities":["uncommon"]},"white knight":{"name":"White Knight","mana_cost":{"type":"Cost","shards":["White","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Human","Knight"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"First strike (This creature deals combat damage before creatures without first strike.)\nProtection from black (This creature can't be blocked, targeted, dealt damage, or enchanted by anything black.)","non_ability_text":null,"flavor_name":null,"keywords":["FirstStrike",{"Protection":{"Color":"Black"}}],"abilities":[],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"ddb021df-ae4a-4ac1-8353-d0b375761714","metadata":{"source_printing_ids":["0cb4cef5-99e4-4855-a782-801b2cb974ec","2e8f8a10-6984-46a7-a641-5f712dab5c57","32683d26-4b59-4460-b507-f3ab21daf151","3d8c11bc-9385-468a-8be8-52bc1b685782","3f4e1d67-dd73-43ee-aa85-b42c2a6fe243","401c4880-5598-44e6-a54b-6ea18e542a72","4be95f54-eb12-45ae-8ac8-c5b0ab7b6f1e","50abfba8-c9f9-4ebf-965a-4b425fe83129","50c3877e-9a84-4220-93a9-e7bfc67ce528","660f69ef-c04f-4f53-80e6-8190549ab12a","6eba1659-3ee7-4e5a-a6bd-8d6b1dc1c8cc","8e4c578c-1c36-4c29-86a5-7a664ffe34d0","a07a02b6-2c33-40d8-ad97-39b192d7e82d","a231e0b8-b3e3-4f4a-8baa-c56626b01685","aa901f02-16da-4ca3-af67-ef5e55572c3c","cb9cb8ed-7abb-4e71-b42f-5041dd0c0394","ce573cee-40e0-4740-8b86-538ad8a16bce","ef8529a0-0259-4ccd-a481-8ad1b5feadf9"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","premodern":"legal","vintage":"legal"},"printings":["2ED","30A","3ED","4BB","4ED","5ED","ATH","CED","CEI","DDG","F02","FBB","LEA","LEB","LGN","M10","M11","ME4","PLST","PRM","SUM","WC98"],"rarities":["uncommon"]},"white sun's twilight":{"name":"White Sun's Twilight","mana_cost":{"type":"Cost","shards":["X","White","White"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You gain X life. Create X 1/1 colorless Phyrexian Mite artifact creature tokens with toxic 1 and \"This token can't block.\" If X is 5 or more, destroy all other creatures. (Players dealt combat damage by a creature with toxic 1 also get a poison counter.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Variable","name":"X"}}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Phyrexian Mite","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Artifact","Creature","Phyrexian","Mite"],"colors":[],"keywords":[{"Toxic":1}],"tapped":false,"count":{"type":"Ref","qty":{"type":"Variable","name":"X"}},"owner":{"type":"Controller"},"enters_attacking":false,"static_abilities":[{"mode":"CantBlock","affected":{"type":"SelfRef"},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"~ can't block."}]},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DestroyAll","target":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Another"}]},"cant_regenerate":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"CostXPaid"}},"comparator":"GE","rhs":{"type":"Fixed","value":5}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"You gain X life. Create X 1/1 colorless Phyrexian Mite artifact creature tokens with toxic 1 and \"~ can't block.\" If X is 5 or more, destroy all other creatures.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["White"],"scryfall_oracle_id":"a38828be-781e-4340-9c6f-f40b1d34773f","metadata":{"related_token_ids":["3ebcf5ed-caad-558d-8ab0-90afa791c054"],"source_printing_ids":["920c8d13-45e5-4ead-8617-0b3939bb9123","fff13d77-8133-4328-b91e-efce229bc331"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["ONE","PONE"],"rulings":[{"date":"2023-02-04","text":"A player with ten or more poison counters loses the game. This is a state-based action and doesn't use the stack. In other words, it happens immediately and players can't respond to it, just like a player losing the game due to having 0 or less life."},{"date":"2023-02-04","text":"Any other effects of that damage, such as life gain from lifelink, still apply."},{"date":"2023-02-04","text":"Conversely, replacement effects that apply to the number of counters put on a player can modify the counters placed this way. For example, Vorinclex, Monstrous Raider's last two abilities can apply to counters placed this way."},{"date":"2023-02-04","text":"Damage dealt by a creature with toxic grants the same number of counters regardless of how much damage is dealt. Notably, if a replacement effect modifies the damage in some way (such as that of Gratuitous Violence), the number of counters given remains unchanged."},{"date":"2023-02-04","text":"If a creature with toxic deals combat damage to a creature or planeswalker, or if it deals noncombat damage, toxic has no effect and no player gets poison counters."},{"date":"2023-02-04","text":"Multiple instances of toxic are cumulative. For example, if a creature has toxic 2 and gains toxic 1 due to another effect, combat damage that creature deals to a player will cause that player to get 3 poison counters."},{"date":"2023-02-04","text":"Toxic doesn't change the amount of combat damage a creature deals. For example, if a 2/2 creature with toxic 1 deals combat damage to a player, that creature will deal 2 damage. The results of that damage are the player loses 2 life and gets a poison counter."}],"rarities":["rare"]},"willow geist":{"name":"Willow Geist","mana_cost":{"type":"Cost","shards":["Green"],"generic":0},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Treefolk","Spirit"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"loyalty":null,"defense":null,"oracle_text":"Trample\nWhenever one or more cards leave your graveyard, put a +1/+1 counter on this creature.\nWhen this creature dies, you gain life equal to its power.","non_ability_text":null,"flavor_name":null,"keywords":["Trample"],"abilities":[],"triggers":[{"mode":"ChangesZoneAll","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"Owned","controller":"You"}]},"origin":"Graveyard","destination":null,"trigger_zones":["Battlefield","Graveyard","Exile"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever one or more cards leave your graveyard, put a +1/+1 counter on ~.","constraint":null,"condition":null,"batched":true},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":"Battlefield","destination":"Graveyard","trigger_zones":["Graveyard"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ dies, you gain life equal to its power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"7a7096a7-ef1b-4015-b1eb-5c2174d7ec9a","metadata":{"source_printing_ids":["1c40c71c-4cdc-4a28-8ea3-4636c936f8aa","d99947ee-3a73-47aa-bd71-d29a0066314e","fcdcbffe-d1dc-4a95-b40a-636ca550dd7a"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","MID","PMID","PRM"],"rulings":[{"date":"2021-09-24","text":"Use Willow Geist's power as it last existed on the battlefield to determine how much life you will gain as its last ability resolves."}],"rarities":["rare"]},"windcrag siege":{"name":"Windcrag Siege","mana_cost":{"type":"Cost","shards":["Red","White"],"generic":1},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose Mardu or Jeskai.\n• Mardu — If a creature attacking causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.\n• Jeskai — At the beginning of your upkeep, create a 1/1 red Goblin creature token. It gains lifelink and haste until end of turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin"],"colors":["Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GenericEffect","static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[{"type":"AddKeyword","keyword":"Lifelink"},{"type":"AddKeyword","keyword":"Haste"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"gain lifelink and haste"}],"duration":"UntilEndOfTurn","target":null},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your upkeep, create a 1/1 red Goblin creature token. It gains lifelink and haste until end of turn.","constraint":{"type":"OnlyDuringYourTurn"},"condition":{"type":"ChosenLabelIs","label":"Jeskai"},"batched":false}],"static_abilities":[{"mode":{"DoubleTriggers":{"cause":"CreatureAttacking"}},"affected":null,"modifications":[],"condition":{"type":"ChosenLabelIs","label":"Mardu"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"If a creature attacking causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":{"Labeled":{"options":["Mardu","Jeskai"]}},"persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose Mardu or Jeskai.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Red","White"],"scryfall_oracle_id":"64df560a-905f-45d1-bc70-14d99e3112d3","metadata":{"related_token_ids":["624155e0-9fb2-5dc4-ab66-fb7cd6196d53"],"source_printing_ids":["31a8329b-23a1-4c49-a579-a5da8d01435a","b32111e6-c389-4dcd-9dcd-29ee7ee238e6"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["PTDM","TDM"],"rarities":["rare"]},"winged portent":{"name":"Winged Portent","mana_cost":{"type":"Cost","shards":["Blue","Blue"],"generic":1},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Cleave {4}{G}{U} (You may cast this spell for its cleave cost. If you do, remove the words in square brackets.)\nDraw a card for each creature you control [with flying].","non_ability_text":null,"flavor_name":null,"keywords":[{"Cleave":{"type":"Cost","shards":["Green","Blue"],"generic":4}}],"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"WithKeyword","value":"Flying"}]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw a card for each creature you control with flying.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"cleave_variant":{"abilities":[{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Ref","qty":{"type":"ObjectCount","filter":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}}},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":"Draw a card for each creature you control.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[]},"color_override":null,"color_identity":["Green","Blue"],"scryfall_oracle_id":"378567f8-7aef-42b6-853e-8591641052e8","metadata":{"source_printing_ids":["3494a4fc-37e5-4095-a3bb-5cd9280f4c77","b8b369e3-5057-49ff-b87e-1126571334f5","bb0e4c76-4f2e-4d23-a5f7-faa63b2d2376"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DBL","PRM","PVOW","VOW"],"rulings":[{"date":"2021-11-19","text":"A cleave cost is an alternative cost that's paid instead of the spell's mana cost. Casting a spell for its cleave cost doesn't change the spell's mana value."},{"date":"2021-11-19","text":"If an effect allows you to “cast a spell without paying its mana cost,” you can't cast that spell for its cleave cost."},{"date":"2021-11-19","text":"If you cast a spell for its cleave cost, that spell doesn't have any of the text in square brackets while it's on the stack."},{"date":"2021-11-19","text":"You can't cast a spell for both its cleave cost and another alternative cost. For example, if an effect gives an Alchemist's Retrieval in your graveyard a flashback cost of {U}, you can't cast it from your graveyard for its cleave cost."}],"rarities":["rare"]},"wish":{"name":"Wish","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"You may play a card you own from outside the game this turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"SearchOutsideGame","filter":{"type":"Any"},"count":{"type":"UpTo","max":{"type":"Fixed","value":1}},"reveal":false,"destination":"Hand"},"cost":null,"sub_ability":null,"duration":"UntilEndOfTurn","description":"You may play a card you own from outside the game this turn.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"2ccbf0ee-c856-4f67-8579-811fe8571a2e","metadata":{"source_printing_ids":["29c2d90f-bd33-402d-b5fd-ee1ae62b59cf","345d6907-aebf-43f9-b70e-098b364b2ec5","3ed021d2-e2bc-44b3-8934-4bd02e0a42ec"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","MB2","PAFR","PRM"],"rulings":[{"date":"2021-07-23","text":"In a casual game, a card you choose from outside the game comes from your personal collection. In a tournament event, a card you choose from outside the game must come from your sideboard. In Limited events, your sideboard includes an arbitrary number of basic lands. You may look at your sideboard at any time."},{"date":"2021-07-23","text":"You choose the card to play from outside the game at the time you are playing it, not at the time Wish resolves."},{"date":"2021-07-23","text":"You still need to pay all costs to play a card this way, and you must follow all normal timing rules."}],"rarities":["rare"]},"wishclaw talisman":{"name":"Wishclaw Talisman","mana_cost":{"type":"Cost","shards":["Black"],"generic":1},"card_type":{"supertypes":[],"core_types":["Artifact"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"This artifact enters with three wish counters on it.\n{1}, {T}, Remove a wish counter from this artifact: Search your library for a card, put it into your hand, then shuffle. An opponent gains control of this artifact. Activate only during your turn.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SearchLibrary","filter":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[]},"count":{"type":"Fixed","value":1},"reveal":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Tap"},{"type":"RemoveCounter","count":1,"counter_type":{"type":"OfType","data":"wish"},"target":null,"selection":"SingleObject"}]},"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":"Library","destination":"Hand","target":{"type":"Any"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Shuffle","target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Choose","choice_type":"Opponent","persist":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"GainControl","target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"{1}, {T}, Remove a wish counter from ~: Search your library for a card, put it into your hand, then shuffle. An opponent gains control of ~. Activate only during your turn.","target_prompt":null,"activation_restrictions":[{"type":"DuringYourTurn"}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"wish","count":{"type":"Fixed","value":3},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"~ enters with three wish counters on it.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"81c70ae7-3c18-4c9b-8505-e4db9e0e6518","metadata":{"source_printing_ids":["07c17b01-ee5d-491a-8403-b3f819b778c4","69d0f5bd-ccea-49b2-bd79-ad5e4d850cf5","9da15685-69c4-4517-b5a7-cf929e2788ba","9ebcb070-953c-4b47-ad8a-ef207c65053f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","standard":"legal","standardbrawl":"legal","timeless":"legal","vintage":"legal"},"printings":["ELD","FDN","MB2","PELD"],"rulings":[{"date":"2019-10-04","text":"Once Wishclaw Talisman runs out of wish counters, it remains on the battlefield. You can't activate its last ability at all."},{"date":"2019-10-04","text":"You choose which opponent gains control of Wishclaw Talisman while its ability is resolving. If that player later leaves the game, you regain control of Wishclaw Talisman."}],"rarities":["rare"],"bracket_signals":{"game_changer":false,"mass_land_denial":false,"extra_turn":false,"efficient_tutor":true}},"wizard class":{"name":"Wizard Class","mana_cost":{"type":"Cost","shards":["Blue"],"generic":0},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":["Class"]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"(Gain the next level as a sorcery to add its ability.)\nYou have no maximum hand size.\n{2}{U}: Level 2\nWhen this Class becomes level 2, draw two cards.\n{4}{U}: Level 3\nWhenever you draw a card, put a +1/+1 counter on target creature you control.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"SetClassLevel","level":2},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":2}},"sub_ability":null,"duration":null,"description":"{2}{U}: Level 2","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":1}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"SetClassLevel","level":3},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue"],"generic":4}},"sub_ability":null,"duration":null,"description":"{4}{U}: Level 3","target_prompt":null,"activation_restrictions":[{"type":"AsSorcery"},{"type":"ClassLevelIs","data":{"level":2}}],"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"ClassLevelGained","execute":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":2},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ becomes level 2","constraint":{"type":"AtClassLevel","level":2},"condition":null,"batched":false},{"mode":"Drawn","execute":{"kind":"Spell","effect":{"type":"PutCounter","counter_type":"P1P1","count":{"type":"Fixed","value":1},"target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you draw a card, put a +1/+1 counter on target creature you control.","constraint":null,"condition":{"type":"ClassLevelGE","level":3},"batched":false}],"static_abilities":[{"mode":"NoMaximumHandSize","affected":{"type":"Typed","type_filters":[],"controller":"You","properties":[]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"You have no maximum hand size."}],"replacements":[],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"36f68aa3-9955-46f1-bc87-497f16ef5222","metadata":{"source_printing_ids":["6b429f7a-da0c-4570-87ed-9945a657fe11","715cf105-edf8-4d75-9279-c83431c087c6","d1f629fb-b097-4240-8560-ef47f5678f48"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["AFR","BLC","PLST"],"rulings":[{"date":"2021-07-23","text":"Each Class has five abilities. The three in the major sections of its text box are class abilities. Class abilities can be static, activated, or triggered abilities. The other two are level abilities, one activated ability to advance the Class to level 2 and another to advance the Class to level 3."},{"date":"2021-07-23","text":"Each Class starts with only the first of three class abilities. As the first level ability resolves, the Class becomes level 2 and gains the second class ability. As the second level ability resolves, the Class becomes level 3 and gains the third class ability."},{"date":"2021-07-23","text":"Gaining a level is a normal activated ability. It uses the stack and can be responded to."},{"date":"2021-07-23","text":"Gaining a level won't remove abilities that a Class had at a previous level."},{"date":"2021-07-23","text":"Some Class cards have an effect that increases when more are under your control. For example, if you have multiple Barbarian Class cards, you roll that many additional dice and ignore that many of the lowest rolls."},{"date":"2021-07-23","text":"You can multiclass or even control multiple Class enchantments of the same class. Each Class permanent tracks its own level separately."},{"date":"2021-07-23","text":"You can't activate the first level ability of a Class unless that Class is level 1. Similarly, you can't activate the second level ability of a Class unless that Class is level 2."}],"rarities":["uncommon"]},"wolverine riders":{"name":"Wolverine Riders","mana_cost":{"type":"Cost","shards":["Green","Green"],"generic":4},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Elf","Warrior"]},"power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"At the beginning of each upkeep, create a 1/1 green Elf Warrior creature token.\nWhenever another Elf you control enters, you gain life equal to its toughness.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Token","name":"Elf Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Elf","Warrior"],"colors":["Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"Upkeep","optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of each upkeep, create a 1/1 green Elf Warrior creature token.","constraint":null,"condition":null,"batched":false},{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"GainLife","amount":{"type":"Ref","qty":{"type":"Toughness","scope":{"type":"Anaphoric"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Typed","type_filters":[{"Subtype":"Elf"}],"controller":"You","properties":[{"type":"Another"}]},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"Whenever another Elf you control enters, you gain life equal to its toughness.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Green"],"scryfall_oracle_id":"09070db6-01f6-4a8a-b167-a7825e6959f4","metadata":{"related_token_ids":["0999559d-8026-5957-b8d4-25f3a486d4cd","ba573e3a-81c4-55a0-97c6-2aa6f0c7269e"],"source_printing_ids":["575d407c-c37e-4664-b2e3-217dfd5a78a2","70fd0439-294b-454c-b2af-e814b85f4590"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["J22","KHC"],"rulings":[{"date":"2021-02-05","text":"Use the toughness of the creature as the last ability resolves to determine how much life you gain. If the Elf is no longer on the battlefield at that time, use its toughness from when it was last on the battlefield."}],"rarities":["rare"]},"wort, the raidmother":{"name":"Wort, the Raidmother","mana_cost":{"type":"Cost","shards":["RedGreen","RedGreen"],"generic":4},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Goblin","Shaman"]},"power":{"type":"Fixed","value":3},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"When Wort enters, create two 1/1 red and green Goblin Warrior creature tokens.\nEach red or green instant or sorcery spell you cast has conspire. (As you cast the spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose new targets for the copy.)","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"ChangesZone","execute":{"kind":"Spell","effect":{"type":"Token","name":"Goblin Warrior","power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":1},"types":["Creature","Goblin","Warrior"],"colors":["Red","Green"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":2},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":"Battlefield","trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"When ~ enters, create two 1/1 red and green Goblin Warrior creature tokens.","constraint":null,"condition":null,"batched":false}],"static_abilities":[{"mode":{"CastWithKeyword":{"keyword":"Conspire"}},"affected":{"type":"Or","filters":[{"type":"Typed","type_filters":["Any"],"controller":"You","properties":[{"type":"HasColor","color":"Red"}]},{"type":"Typed","type_filters":["Instant"],"controller":"You","properties":[{"type":"HasColor","color":"Green"}]},{"type":"Typed","type_filters":["Sorcery"],"controller":"You","properties":[{"type":"HasColor","color":"Green"}]}]},"modifications":[],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":["Battlefield"],"characteristic_defining":false,"description":"Each red or green instant or sorcery spell you cast has conspire."}],"replacements":[],"color_override":["Green","Red"],"color_identity":["Green","Red"],"scryfall_oracle_id":"d6b67c7e-3b24-4f60-8e3a-c6ca45229d7f","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["7d6177c0-df09-58f5-a5b6-8b83d2c0e91e","a8ca3d69-47b9-5c17-92bd-52dd3199cb3b","afe81bef-8851-5a9e-882c-66c59e09994e"],"source_printing_ids":["535189ec-572f-44ed-9741-09b9f575fc40","9103a97c-ffb6-4584-b7fc-58835ba942c2","9b46b4ee-263a-4a4b-8fbc-3ea6fa9ba56b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C20","MM3","SHM"],"rulings":[{"date":"2017-03-14","text":"If a spell gains a second instance of conspire from Wort's ability, you may choose to pay for one, both, or none of those abilities. Each conspire ability triggers only if you tap two creatures specifically for that ability."},{"date":"2017-03-14","text":"If the spell has damage divided as it was cast (like Fiery Justice does), the division can't be changed (although the targets receiving that damage still can)."},{"date":"2017-03-14","text":"If the spell that's copied has an X whose value was determined as it was cast (like Bonfire of the Damned does), the copy will have the same value of X."},{"date":"2017-03-14","text":"If the spell that's copied is modal (that is, it says \"Choose one —\" or the like), the copy will have the same mode. A different mode can't be chosen."},{"date":"2017-03-14","text":"If you're casting a spell for its flashback cost, you can't pay another alternative cost (such as an overload cost or a Trap's alternative cost) instead. You may pay additional costs, such as conspire."},{"date":"2017-03-14","text":"Some spells instruct you to sacrifice a creature as an additional cost to cast that spell. If you sacrifice Wort to pay that cost, that spell won't have conspire at the moment it becomes cast, so conspire won't trigger, even if you tapped two creatures."}],"rarities":["rare"]},"wrench mind":{"name":"Wrench Mind","mana_cost":{"type":"Cost","shards":["Black","Black"],"generic":0},"card_type":{"supertypes":[],"core_types":["Sorcery"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Target player discards two cards unless they discard an artifact card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"Discard","count":{"type":"Fixed","value":2},"target":{"type":"Player"}},"cost":null,"sub_ability":null,"duration":null,"description":"Target player discards two cards unless they discard an artifact card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"unless_pay":{"cost":{"type":"Discard","count":{"type":"Fixed","value":1},"filter":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"random":false,"self_ref":false},"payer":{"type":"Player"}},"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Black"],"scryfall_oracle_id":"484eeb13-fe74-45fe-b089-7beec87cfcdb","metadata":{"source_printing_ids":["173d2ac4-9850-47de-8ee5-f4aaeb018faf","360a6ada-b257-44b8-b830-aaa122474bce","36ce975b-c3df-4472-a6c1-2546df11b74e"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","vintage":"legal"},"printings":["IMA","MRD","PLST"],"rulings":[{"date":"2004-12-01","text":"You can discard either one artifact card or two cards which may or may not be artifacts. If you really want to, you can discard two artifact cards."}],"rarities":["common"]},"x":{"name":"X","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Spy"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"As long as X is in X's owner's opponent's hand, X's owner may cast X and activate X's abilities. That opponent can't cast X and plays with their hand revealed.\n{U}{B}, {T}: Put X into target opponent's hand.\n{3}{U}{B}: You may play a land or cast a spell from the hand X is in. If you cast a spell this way, you cast it without paying its mana cost.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Activated","effect":{"type":"Unimplemented","name":"put","description":"Put ~ into target opponent's hand"},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":0}},{"type":"Tap"}]},"sub_ability":null,"duration":null,"description":"{U}{B}, {T}: Put ~ into target opponent's hand.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Activated","effect":{"type":"ChooseOneOf","chooser":{"type":"Controller"},"branches":[{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Typed","type_filters":["Land"],"controller":null,"properties":[]},"without_paying_mana_cost":false,"mode":"Play"},"cost":null,"sub_ability":null,"duration":null,"description":"play a land","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"Typed","type_filters":["Card"],"controller":null,"properties":[{"type":"InZone","zone":"Hand"}]},"without_paying_mana_cost":false,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":"cast a spell from the hand ~ is in","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}]},"cost":{"type":"Mana","cost":{"type":"Cost","shards":["Blue","Black"],"generic":3}},"sub_ability":{"kind":"Spell","effect":{"type":"CastFromZone","target":{"type":"ParentTarget"},"without_paying_mana_cost":true,"mode":"Cast"},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"{3}{U}{B}: You may play a land or cast a spell from the hand ~ is in. If you cast a spell this way, you cast it without paying its mana cost.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false}],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"SelfRef"},"modifications":[],"condition":{"type":"Unrecognized","text":"~ is in ~'s owner's opponent's hand"},"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"As long as ~ is in ~'s owner's opponent's hand, ~'s owner may cast ~ and activate ~'s abilities. That opponent can't cast ~ and plays with their hand revealed."}],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"ef10c6c6-8e84-46f6-8e11-cd35a2b8fbf1","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["055ddc8b-d230-4675-9741-138429e48a8f","f77f6e64-2470-4c6a-a92b-328e4edc3ea9"]},"legalities":{},"printings":["ULST","UST"],"rulings":[{"date":"2018-01-19","text":"You activate X’s first activated ability while X is on the battlefield under your control. This puts X into an opponent’s hand. That opponent plays with their hand revealed, and they’re not allowed to cast X or activate any of X’s abilities—but you are. You can activate X’s second ability to play one of the cards in that hand."},{"date":"2018-01-19","text":"You choose which card to play as X’s last ability resolves. Your opponent can respond to you activating the ability to get other cards out of their hand. Whatever’s left when the ability resolves is fair game."},{"date":"2018-01-19","text":"You don’t own the cards you play this way. An instant or sorcery cast this way will go to its owner’s graveyard. A creature card you cast this way will enter the battlefield under your control, but it will be put into its owner’s graveyard if it dies. The same is true for other permanent cards you cast or lands you play."},{"date":"2018-01-19","text":"You play the card as X’s last ability resolves, with one exception: You can’t play a land this way unless it’s your turn and you have an available land play. If you’re casting a spell this way, you do so as the ability resolves. Ignore any timing restrictions based on the card’s type. You can cast their sorceries or creatures during their turn, for example."}],"rarities":["rare"]},"xenograft":{"name":"Xenograft","mana_cost":{"type":"Cost","shards":["Blue"],"generic":4},"card_type":{"supertypes":[],"core_types":["Enchantment"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"As this enchantment enters, choose a creature type.\nEach creature you control is the chosen type in addition to its other types.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[],"static_abilities":[{"mode":"Continuous","affected":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"modifications":[{"type":"AddChosenSubtype","kind":"CreatureType"}],"condition":null,"affected_zone":null,"effect_zone":null,"active_zones":[],"characteristic_defining":false,"description":"Each creature you control is the chosen type in addition to its other types."}],"replacements":[{"event":"Moved","execute":{"kind":"Spell","effect":{"type":"Choose","choice_type":"CreatureType","persist":true},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"mode":{"type":"Mandatory"},"valid_card":{"type":"SelfRef"},"description":"As ~ enters, choose a creature type.","condition":null,"destination_zone":"Battlefield"}],"color_override":null,"color_identity":["Blue"],"scryfall_oracle_id":"76642e7a-3c8f-45b8-9cd7-dac8086bea87","metadata":{"source_printing_ids":["f52f08e1-b234-42e4-8f1f-485a4f6edb3b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["NPH"],"rulings":[{"date":"2011-06-01","text":"Creature cards not on the battlefield and creature spells are not affected."},{"date":"2011-06-01","text":"You must choose an existing _Magic_ creature type."},{"date":"2017-09-29","text":"Replacement effects that modify creatures of a certain type as they enter the battlefield will apply (or not apply) after you apply this effect. For example, if Warrior is the chosen creature type and you control Bramblewood Paragon, a Runeclaw Bear would enter the battlefield with an additional +1/+1 counter."}],"rarities":["rare"]},"yavimaya steelcrusher":{"name":"Yavimaya Steelcrusher","mana_cost":{"type":"Cost","shards":["Red"],"generic":1},"card_type":{"supertypes":[],"core_types":["Creature"],"subtypes":["Ape","Warrior"]},"power":{"type":"Fixed","value":2},"toughness":{"type":"Fixed","value":2},"loyalty":null,"defense":null,"oracle_text":"Enlist (As this creature attacks, you may tap a nonattacking creature you control without summoning sickness. When you do, add its power to this creature's until end of turn.)\n{1}, Sacrifice this creature: Destroy target artifact.","non_ability_text":null,"flavor_name":null,"keywords":["Enlist"],"abilities":[{"kind":"Activated","effect":{"type":"Destroy","target":{"type":"Typed","type_filters":["Artifact"],"controller":null,"properties":[]},"cant_regenerate":false},"cost":{"type":"Composite","costs":[{"type":"Mana","cost":{"type":"Cost","shards":[],"generic":1}},{"type":"Sacrifice","target":{"type":"SelfRef"},"count":1}]},"sub_ability":null,"duration":null,"description":"{1}, Sacrifice ~: Destroy target artifact.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"Attacks","execute":{"kind":"Spell","effect":{"type":"SetTapState","target":{"type":"And","filters":[{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[{"type":"Another"},{"type":"Untapped"},{"type":"HasHasteOrControlledSinceTurnBegan"}]},{"type":"Not","filter":{"type":"Typed","type_filters":["Creature"],"controller":null,"properties":[{"type":"Attacking"}]}}]},"scope":{"type":"Single"},"state":{"type":"Tap"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Pump","power":{"type":"Quantity","value":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Anaphoric"}}}},"toughness":{"type":"Fixed","value":0},"target":{"type":"SelfRef"}},"cost":null,"sub_ability":null,"duration":null,"description":"CR 702.154a: Enlist — this creature gets +X/+0 until end of turn, where X is the tapped creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":"Enlist — you may tap an untapped creature you control; if you do, this creature gets +X/+0 where X is that creature's power","target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":{"type":"SelfRef"},"origin":null,"destination":null,"trigger_zones":[],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"CR 702.154a: Enlist — as this creature attacks, you may tap an untapped creature you control; this creature gets +X/+0 until end of turn, where X is the tapped creature's power.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"ad181ee7-756f-4002-9009-023ea6172991","metadata":{"source_printing_ids":["25175622-7b68-4916-adf2-3bf2d82e8356"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["DMU"],"rulings":[{"date":"2022-09-09","text":"The attacking player chooses whether to tap a creature for an enlist ability immediately after they tap the creatures that they have chosen to attack with. You can’t choose to enlist a creature later."},{"date":"2022-09-09","text":"To enlist a creature, that creature must be untapped, it must not be attacking (even if it has vigilance), and it must have haste or have been under that attacking player’s control since the beginning of their current turn."},{"date":"2022-09-09","text":"When a player taps a creature for an attacking creature’s enlist ability, that attacking creature gets +X/+0 until end of turn, where X is the tapped creature’s power. This is a triggered ability that goes on the stack immediately after attackers have been declared in the declare attackers step."},{"date":"2022-09-09","text":"You may tap only one creature for an enlist ability of an attacking creature, and a single creature can’t be tapped for more than one enlist ability."}],"rarities":["common"]},"yuriko, the tiger's shadow":{"name":"Yuriko, the Tiger's Shadow","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":1},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Ninja"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":3},"loyalty":null,"defense":null,"oracle_text":"Commander ninjutsu {U}{B} ({U}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand or the command zone tapped and attacking.)\nWhenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's mana value.","non_ability_text":null,"flavor_name":null,"keywords":[{"CommanderNinjutsu":{"type":"Cost","shards":["Blue","Black"],"generic":0}}],"abilities":[{"kind":"Activated","effect":{"type":"RuntimeHandled","handler":"NinjutsuFamily"},"cost":{"type":"NinjutsuFamily","variant":"CommanderNinjutsu","mana_cost":{"type":"Cost","shards":["Blue","Black"],"generic":0}},"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[{"mode":"DamageDone","execute":{"kind":"Spell","effect":{"type":"RevealTop","player":{"type":"Controller"},"count":1},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"ChangeZone","origin":null,"destination":"Hand","target":{"type":"ParentTarget"},"owner_library":false,"enter_transformed":false,"enter_tapped":false,"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"LoseLife","amount":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"Demonstrative"}}}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"player_scope":{"type":"Opponent"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"CombatOnly","secondary":false,"valid_target":{"type":"Player"},"valid_source":{"type":"Typed","type_filters":[{"Subtype":"Ninja"}],"controller":"You","properties":[]},"description":"Whenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's mana value.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Blue"],"color_identity":["Black","Blue"],"scryfall_oracle_id":"a7043fbd-1dfd-42cf-be4b-cc343d0949e5","brawl_commander":true,"is_commander":true,"metadata":{"source_printing_ids":["3bd81ae6-e628-447a-a36b-597e63ede295","6e4ef5bf-f055-4f0a-b1f4-263081f39104","7af7847e-82e6-45ed-834d-6f3bcba44017","f058f8e8-aa01-4dc0-a6a5-0490521b83d4","f43fe61f-513e-4308-8194-99f73c6fa972","fe9be3e0-076c-4703-9750-2a6b0a178bc9"]},"legalities":{"brawl":"legal","commander":"legal","duel":"restricted","historic":"legal","legacy":"legal","oathbreaker":"legal","timeless":"legal","vintage":"legal"},"printings":["C18","CMM","CMR","FCA","J19","PL22","PLG21","PLST","PRM","PZ2"],"rulings":[{"date":"2020-11-10","text":"Activating Yuriko's commander ninjutsu ability isn't the same as casting Yuriko as a spell. You won't have to pay the commander tax to activate that ability, and activating that ability won't increase the commander tax to pay later."},{"date":"2020-11-10","text":"Although the ninjutsu ability has the creature enter the battlefield attacking, it was never declared as an attacking creature (for the purposes of abilities that trigger whenever a creature attacks, for example)."},{"date":"2020-11-10","text":"Commander ninjutsu is a variant of ninjutsu that can be activated from the command zone as well as from your hand. Just as with regular ninjutsu, the Ninja enters attacking the player or planeswalker that the returned creature was attacking."},{"date":"2020-11-10","text":"If a card in a player's library has {X} in its mana cost, X is considered to be 0."}],"rarities":["rare","mythic"]},"zaffai, thunder conductor":{"name":"Zaffai, Thunder Conductor","mana_cost":{"type":"Cost","shards":["Blue","Red"],"generic":2},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Human","Shaman"]},"power":{"type":"Fixed","value":1},"toughness":{"type":"Fixed","value":4},"loyalty":null,"defense":null,"oracle_text":"Magecraft — Whenever you cast or copy an instant or sorcery spell, scry 1. If that spell's mana value is 5 or greater, create a 4/4 blue and red Elemental creature token. If that spell's mana value is 10 or greater, Zaffai deals 10 damage to an opponent chosen at random.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[],"triggers":[{"mode":"SpellCastOrCopy","execute":{"kind":"Spell","effect":{"type":"Scry","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Elemental","power":{"type":"Fixed","value":4},"toughness":{"type":"Fixed","value":4},"types":["Creature","Elemental"],"colors":["Blue","Red"],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":1},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":10},"target":{"type":"Typed","type_filters":[],"controller":"Opponent","properties":[]}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"EventSource"}}},"comparator":"GE","rhs":{"type":"Fixed","value":10}},"optional_targeting":false,"optional":false,"forward_result":false,"target_selection_mode":{"type":"Random"},"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"QuantityCheck","lhs":{"type":"Ref","qty":{"type":"ObjectManaValue","scope":{"type":"EventSource"}}},"comparator":"GE","rhs":{"type":"Fixed","value":5}},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"valid_card":{"type":"Or","filters":[{"type":"Typed","type_filters":["Instant"],"controller":null,"properties":[]},{"type":"Typed","type_filters":["Sorcery"],"controller":null,"properties":[]}]},"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":null,"optional":false,"damage_kind":"Any","secondary":false,"valid_target":{"type":"Controller"},"valid_source":null,"description":"Whenever you cast or copy an instant or sorcery spell, scry 1. If that spell's mana value is 5 or greater, create a 4/4 blue and red Elemental creature token. If that spell's mana value is 10 or greater, ~ deals 10 damage to an opponent chosen at random.","constraint":null,"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Red","Blue"],"color_identity":["Red","Blue"],"scryfall_oracle_id":"02d529df-6299-4e8f-9794-70c8061efdc4","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["e1298968-b8ac-529f-b963-afef12011187"],"source_printing_ids":["21420f60-6443-4dec-ae35-331706592e7a","ea1ab937-8647-4c83-99d5-6a40dffa4c9b"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","vintage":"legal"},"printings":["C21","OC21","PRM"],"rulings":[{"date":"2021-04-16","text":"\"That spell's mana value\" refers to the spell that caused the ability to trigger, not the card you look at when you scry."},{"date":"2021-04-16","text":"Each magecraft ability has a different effect, although they all have the same trigger condition, whenever you cast or copy an instant or sorcery spell."},{"date":"2021-04-16","text":"For example, if you control Archmage Emeritus and cast an instant or sorcery spell, Archmage Emeritus's magecraft ability will trigger and you will draw a card."},{"date":"2021-04-16","text":"If an effect creates a copy of an instant or sorcery spell, this will also cause the magecraft ability to trigger."},{"date":"2021-04-16","text":"If an effect creates multiple copies of an instant or sorcery spell, magecraft abilities trigger once for each copy created by the effect."},{"date":"2021-04-16","text":"If the instant or sorcery spell has {X} in its mana cost, X is the value chosen for X as the spell was cast."},{"date":"2021-04-16","text":"Some effects instruct you to copy an instant or sorcery card in a zone other than the stack. These copies do not cause magecraft abilities to trigger. However, most effects that do this also allow you to cast the copy, and casting the copy will cause magecraft abilities to trigger."},{"date":"2021-04-16","text":"The wrong card name was inadvertently included in Zaffai's printed rules text. The text above is correct and the full name of the card is Zaffai, Thunder Conductor."}],"rarities":["mythic"]},"zap":{"name":"Zap","mana_cost":{"type":"Cost","shards":["Red"],"generic":2},"card_type":{"supertypes":[],"core_types":["Instant"],"subtypes":[]},"power":null,"toughness":null,"loyalty":null,"defense":null,"oracle_text":"Zap deals 1 damage to any target.\nDraw a card.","non_ability_text":null,"flavor_name":null,"keywords":[],"abilities":[{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Fixed","value":1},"target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Draw","count":{"type":"Fixed","value":1},"target":{"type":"Controller"}},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":"~ deals 1 damage to any target.\nDraw a card.","target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false}],"triggers":[],"static_abilities":[],"replacements":[],"color_override":null,"color_identity":["Red"],"scryfall_oracle_id":"56115482-3fd4-45fb-b800-be68c5509cf2","metadata":{"source_printing_ids":["7502ce01-b762-40fe-a064-c7b20b08a722"]},"legalities":{"commander":"legal","duel":"legal","legacy":"legal","oathbreaker":"legal","pauper":"legal","paupercommander":"legal","premodern":"legal","vintage":"legal"},"printings":["INV"],"rarities":["common"]},"ziatora, the incinerator":{"name":"Ziatora, the Incinerator","mana_cost":{"type":"Cost","shards":["Black","Red","Green"],"generic":3},"card_type":{"supertypes":["Legendary"],"core_types":["Creature"],"subtypes":["Demon","Dragon"]},"power":{"type":"Fixed","value":6},"toughness":{"type":"Fixed","value":6},"loyalty":null,"defense":null,"oracle_text":"Flying\nAt the beginning of your end step, you may sacrifice another creature. When you do, Ziatora deals damage equal to that creature's power to any target and you create three Treasure tokens.","non_ability_text":null,"flavor_name":null,"keywords":["Flying"],"abilities":[],"triggers":[{"mode":"Phase","execute":{"kind":"Spell","effect":{"type":"Sacrifice","target":{"type":"Typed","type_filters":["Creature"],"controller":"You","properties":[]},"count":{"type":"Fixed","value":1}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"DealDamage","amount":{"type":"Ref","qty":{"type":"Power","scope":{"type":"Demonstrative"}}},"target":{"type":"Any"}},"cost":null,"sub_ability":{"kind":"Spell","effect":{"type":"Token","name":"Treasure","power":{"type":"Fixed","value":0},"toughness":{"type":"Fixed","value":0},"types":["Artifact","Treasure"],"colors":[],"keywords":[],"tapped":false,"count":{"type":"Fixed","value":3},"owner":{"type":"Controller"},"enters_attacking":false},"cost":null,"sub_ability":null,"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":false,"forward_result":false},"duration":null,"description":null,"target_prompt":null,"condition":{"type":"WhenYouDo"},"optional_targeting":false,"optional":false,"forward_result":false,"sub_link":"SequentialSibling"},"duration":null,"description":null,"target_prompt":null,"condition":null,"optional_targeting":false,"optional":true,"forward_result":false},"valid_card":null,"origin":null,"destination":null,"trigger_zones":["Battlefield"],"phase":"End","optional":true,"damage_kind":"Any","secondary":false,"valid_target":null,"valid_source":null,"description":"At the beginning of your end step, you may sacrifice another creature. When you do, ~ deals damage equal to that creature's power to any target and you create three Treasure tokens.","constraint":{"type":"OnlyDuringYourTurn"},"condition":null,"batched":false}],"static_abilities":[],"replacements":[],"color_override":["Black","Green","Red"],"color_identity":["Black","Green","Red"],"scryfall_oracle_id":"d46c3fb6-f1c7-4a96-ae42-5bce17fc7c1d","brawl_commander":true,"is_commander":true,"metadata":{"related_token_ids":["02eda719-658b-52e3-8f94-b66dda715865","4f940dc2-7698-5fda-9f9b-62ec43ec2012","7c5cdbc2-a953-53bd-81dd-9a5c8fbedb85"],"source_printing_ids":["1cc4c087-2996-4436-b2b4-21acd25375db","68cce7e2-8c4b-4c76-a38b-0fee85da3151","ba4fa4c8-f09f-4d97-a7d1-1b93caf7d4f9","be56f915-0c52-4824-b684-b0612ea76643","dbd6b307-c3a5-4dfd-b137-e1077700c51f"]},"legalities":{"brawl":"legal","commander":"legal","duel":"legal","historic":"legal","legacy":"legal","modern":"legal","oathbreaker":"legal","pioneer":"legal","timeless":"legal","vintage":"legal"},"printings":["M3C","PSNC","SLD","SNC"],"rulings":[{"date":"2022-04-29","text":"Use the creature's power as it last existed on the battlefield to determine how much damage Ziatora deals."}],"rarities":["mythic"]}} diff --git a/crates/engine/tests/integration/floodpits_drowner.rs b/crates/engine/tests/integration/floodpits_drowner.rs index 5d177c2b2e..a87b3e528f 100644 --- a/crates/engine/tests/integration/floodpits_drowner.rs +++ b/crates/engine/tests/integration/floodpits_drowner.rs @@ -12,8 +12,8 @@ use engine::game::effects; use engine::game::zones::create_object; use engine::types::ability::{ - ControllerRef, Effect, FilterProp, QuantityExpr, ResolvedAbility, TargetFilter, TargetRef, - TypeFilter, TypedFilter, + ControllerRef, Effect, EffectScope, FilterProp, QuantityExpr, ResolvedAbility, TapStateChange, + TargetFilter, TargetRef, TypeFilter, TypedFilter, }; use engine::types::card_type::CoreType; use engine::types::counter::CounterType; @@ -62,10 +62,12 @@ fn etb_tap_and_stun_counter() { ); let mut primary = ResolvedAbility::new( - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed( TypedFilter::creature().controller(ControllerRef::Opponent), ), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, vec![TargetRef::Object(target_id)], source_id, @@ -265,8 +267,10 @@ fn parser_produces_compound_tap_stun() { // Primary effect should be Tap with opponent creature target match &effect { - Effect::Tap { + Effect::SetTapState { target: TargetFilter::Typed(tf), + scope: EffectScope::Single, + state: TapStateChange::Tap, } => { assert!(tf.type_filters.contains(&TypeFilter::Creature)); assert_eq!(tf.controller, Some(ControllerRef::Opponent)); diff --git a/crates/engine/tests/integration/integration_bending.rs b/crates/engine/tests/integration/integration_bending.rs index 4d5273bcaf..8ed1d16795 100644 --- a/crates/engine/tests/integration/integration_bending.rs +++ b/crates/engine/tests/integration/integration_bending.rs @@ -4,7 +4,9 @@ use engine::ai_support::candidate_actions; use engine::game::scenario::{GameScenario, P0}; use engine::game::zones::create_object; -use engine::types::ability::{AbilityCost, Effect, QuantityExpr, ResolvedAbility, TargetFilter}; +use engine::types::ability::{ + AbilityCost, Effect, EffectScope, QuantityExpr, ResolvedAbility, TapStateChange, TargetFilter, +}; use engine::types::actions::GameAction; use engine::types::card_type::CoreType; use engine::types::counter::CounterType; @@ -1790,8 +1792,10 @@ fn shock_land_replacement() -> engine::types::ability::ReplacementDefinition { ); let tap_self = AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ); ReplacementDefinition::new(ReplacementEvent::Moved) diff --git a/crates/engine/tests/integration/issue_1308_unstoppable_plan.rs b/crates/engine/tests/integration/issue_1308_unstoppable_plan.rs index 7c59cca6f4..4e49c7e937 100644 --- a/crates/engine/tests/integration/issue_1308_unstoppable_plan.rs +++ b/crates/engine/tests/integration/issue_1308_unstoppable_plan.rs @@ -6,7 +6,7 @@ use super::rules::{GameRunner, GameScenario, Phase, WaitingFor, P0}; use engine::parser::oracle::parse_oracle_text; -use engine::types::ability::{Effect, StaticDefinition, TargetFilter}; +use engine::types::ability::{Effect, EffectScope, StaticDefinition, TapStateChange, TargetFilter}; use engine::types::actions::GameAction; use engine::types::game_state::CastPaymentMode; use engine::types::game_state::WaitingFor as EngineWaitingFor; @@ -84,7 +84,14 @@ fn unstoppable_plan_parses_end_step_untap_all() { assert_eq!(trigger.phase, Some(EnginePhase::End)); let execute = trigger.execute.as_ref().expect("trigger must execute"); assert!( - matches!(*execute.effect, Effect::UntapAll { .. }), + matches!( + *execute.effect, + Effect::SetTapState { + scope: EffectScope::All, + state: TapStateChange::Untap, + .. + } + ), "expected UntapAll effect, got {:?}", execute.effect ); diff --git a/crates/engine/tests/integration/rules/replacement.rs b/crates/engine/tests/integration/rules/replacement.rs index 02df9dc5f1..61ea61d8cb 100644 --- a/crates/engine/tests/integration/rules/replacement.rs +++ b/crates/engine/tests/integration/rules/replacement.rs @@ -2,8 +2,8 @@ use super::*; use engine::types::ability::{ - AbilityDefinition, AbilityKind, ControllerRef, Effect, FilterProp, ReplacementCondition, - ReplacementDefinition, TargetFilter, TypedFilter, + AbilityDefinition, AbilityKind, ControllerRef, Effect, EffectScope, FilterProp, + ReplacementCondition, ReplacementDefinition, TapStateChange, TargetFilter, TypedFilter, }; use engine::types::card_type::CoreType; use engine::types::identifiers::CardId; @@ -15,8 +15,10 @@ fn fast_land_replacement(description: &str) -> ReplacementDefinition { ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) @@ -475,8 +477,10 @@ fn turbulent_land_replacement(description: &str) -> ReplacementDefinition { ReplacementDefinition::new(ReplacementEvent::Moved) .execute(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, )) .valid_card(TargetFilter::SelfRef) diff --git a/crates/engine/tests/integration/urge_to_feed_regression.rs b/crates/engine/tests/integration/urge_to_feed_regression.rs index 92123e1abd..7ad7371399 100644 --- a/crates/engine/tests/integration/urge_to_feed_regression.rs +++ b/crates/engine/tests/integration/urge_to_feed_regression.rs @@ -3,7 +3,8 @@ use engine::parser::parse_oracle_text; use engine::types::ability::{ - AbilityCondition, Effect, EffectOutcomeSignal, TargetFilter, TypeFilter, + AbilityCondition, Effect, EffectOutcomeSignal, EffectScope, TapStateChange, TargetFilter, + TypeFilter, }; use engine::types::counter::CounterType; use engine::types::identifiers::TrackedSetId; @@ -35,7 +36,14 @@ fn urge_to_feed_each_of_those_vampires_is_tracked_set_filtered() { .as_ref() .expect("tap clause should be sub_ability after -3/-3"); assert!( - matches!(tap.effect.as_ref(), Effect::Tap { .. }), + matches!( + tap.effect.as_ref(), + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + ), "expected Tap after PT layer, got {:?}", tap.effect ); diff --git a/crates/mtgish-import/src/convert/action.rs b/crates/mtgish-import/src/convert/action.rs index e65b8f4756..a780930548 100644 --- a/crates/mtgish-import/src/convert/action.rs +++ b/crates/mtgish-import/src/convert/action.rs @@ -9,10 +9,10 @@ use engine::types::ability::{ AbilityCondition, AbilityCost, AbilityDefinition, AbilityKind, BounceSelection, ChoiceType, ContinuousModification, ControllerRef, DamageSource, DelayedTriggerCondition, Duration, Effect, - FilterProp, LibraryPosition, ManaProduction, ManaSpendRestriction, ModalSelectionConstraint, - MultiTargetSpec, PaymentCost, PlayerFilter, PlayerScope, PtValue, QuantityExpr, QuantityRef, - SearchSelectionConstraint, SharedQuality, StaticDefinition, TargetFilter, TriggerDefinition, - TypedFilter, + EffectScope, FilterProp, LibraryPosition, ManaProduction, ManaSpendRestriction, + ModalSelectionConstraint, MultiTargetSpec, PaymentCost, PlayerFilter, PlayerScope, PtValue, + QuantityExpr, QuantityRef, SearchSelectionConstraint, SharedQuality, StaticDefinition, + TapStateChange, TargetFilter, TriggerDefinition, TypedFilter, }; use engine::types::counter::{parse_counter_type, CounterType as EngineCounterType}; use engine::types::game_state::DistributionUnit; @@ -669,13 +669,10 @@ fn rewrite_any_target_filter_in_effect(effect: &mut Effect, typed: &TargetFilter | Effect::Surveil { ref mut target, .. } | Effect::Suspect { ref mut target, .. } | Effect::SwitchPT { ref mut target, .. } - | Effect::Tap { ref mut target, .. } - | Effect::TapAll { ref mut target, .. } + | Effect::SetTapState { ref mut target, .. } | Effect::TargetOnly { ref mut target, .. } | Effect::Transform { ref mut target, .. } | Effect::UnattachAll { ref mut target, .. } - | Effect::Untap { ref mut target, .. } - | Effect::UntapAll { ref mut target, .. } if *target == TargetFilter::Any => { *target = typed.clone(); @@ -2701,21 +2698,29 @@ pub fn convert(a: &Action) -> ConvResult { target: convert_permanents(filter)?, cant_regenerate: true, }, - Action::TapPermanent(p) => Effect::Tap { + Action::TapPermanent(p) => Effect::SetTapState { target: convert_permanent(p)?, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, - Action::UntapPermanent(p) => Effect::Untap { + Action::UntapPermanent(p) => Effect::SetTapState { target: convert_permanent(p)?, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, - // CR 701.26: Mass tap — "Tap each " (Sleep, Cryptic Command-class). - // Mirrors `TapPermanent`; multi-match `TargetFilter` selects the set. - Action::TapEachPermanent(filter) => Effect::Tap { + // CR 701.26a: Mass tap — "Tap each " (Sleep, Cryptic Command-class). + // Preserves the legacy single-scope `Effect::Tap` with a multi-match filter. + Action::TapEachPermanent(filter) => Effect::SetTapState { target: convert_permanents(filter)?, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, - // CR 701.26: Mass untap — "Untap each " (Wake the Dead, Awakening-class). - Action::UntapEachPermanent(filter) => Effect::Untap { + // CR 701.26b: Mass untap — "Untap each " (Wake the Dead, Awakening-class). + Action::UntapEachPermanent(filter) => Effect::SetTapState { target: convert_permanents(filter)?, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, Action::DiscardACard => Effect::DiscardCard { count: 1, diff --git a/crates/mtgish-import/src/convert/replacement.rs b/crates/mtgish-import/src/convert/replacement.rs index 7cc88cf403..04bc3baca7 100644 --- a/crates/mtgish-import/src/convert/replacement.rs +++ b/crates/mtgish-import/src/convert/replacement.rs @@ -7,9 +7,10 @@ use engine::types::ability::{ AbilityCost, AbilityDefinition, AbilityKind, ChoiceType, ContinuousModification, ControllerRef, - DamageModification, DamageTargetFilter, DamageTargetPlayerScope, Effect, FilterProp, - ManaReplacementScope, QuantityExpr, QuantityModification, QuantityRef, ReplacementCondition, - ReplacementDefinition, ReplacementMode, RestrictionExpiry, TargetFilter, TypedFilter, + DamageModification, DamageTargetFilter, DamageTargetPlayerScope, Effect, EffectScope, + FilterProp, ManaReplacementScope, QuantityExpr, QuantityModification, QuantityRef, + ReplacementCondition, ReplacementDefinition, ReplacementMode, RestrictionExpiry, + TapStateChange, TargetFilter, TypedFilter, }; use engine::types::card_type::Supertype; use engine::types::counter::{parse_counter_type, CounterType as EngineCounterType}; @@ -1559,9 +1560,11 @@ fn build_replacement_exec( return Ok((None, ReplacementMode::Optional { decline: None }, exec)); } let effect = match act { - // CR 614.12 + CR 121.6: Enters tapped — direct Effect::Tap. - A::EntersTapped => Effect::Tap { + // CR 614.12 + CR 121.6: Enters tapped — single-target tap of the source. + A::EntersTapped => Effect::SetTapState { target: target.clone(), + scope: EffectScope::Single, + state: TapStateChange::Tap, }, // CR 614.12 + CR 122.1: Enters with a counter (default 1) / // enters with N counters of a typed kind. @@ -3128,7 +3131,14 @@ mod tests { amount: QuantityExpr::Fixed { value: 2 } }, decline: Some(decline), - } if matches!(&*decline.effect, Effect::Tap { target } if *target == TargetFilter::SelfRef) + } if matches!( + &*decline.effect, + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } if *target == TargetFilter::SelfRef + ) )); } diff --git a/crates/mtgish-import/tests/golden/structural/etb_replacement_plus_trigger/expected.json b/crates/mtgish-import/tests/golden/structural/etb_replacement_plus_trigger/expected.json index 4ec708ef90..e75ceb8d14 100644 --- a/crates/mtgish-import/tests/golden/structural/etb_replacement_plus_trigger/expected.json +++ b/crates/mtgish-import/tests/golden/structural/etb_replacement_plus_trigger/expected.json @@ -55,7 +55,7 @@ "execute": { "kind": "Spell", "effect": { - "type": "Tap", + "type": "SetTapState", "target": { "type": "Typed", "type_filters": [ @@ -63,6 +63,12 @@ ], "controller": "Opponent", "properties": [] + }, + "scope": { + "type": "Single" + }, + "state": { + "type": "Tap" } }, "cost": null, diff --git a/crates/mtgish-import/tests/golden/structural/etb_tapped/expected.json b/crates/mtgish-import/tests/golden/structural/etb_tapped/expected.json index a47a9edc9d..befd644010 100644 --- a/crates/mtgish-import/tests/golden/structural/etb_tapped/expected.json +++ b/crates/mtgish-import/tests/golden/structural/etb_tapped/expected.json @@ -10,9 +10,15 @@ "execute": { "kind": "Spell", "effect": { - "type": "Tap", + "type": "SetTapState", "target": { "type": "SelfRef" + }, + "scope": { + "type": "Single" + }, + "state": { + "type": "Tap" } }, "cost": null, diff --git a/crates/phase-ai/src/cast_facts.rs b/crates/phase-ai/src/cast_facts.rs index 26b4c590a5..ef54b3cc9d 100644 --- a/crates/phase-ai/src/cast_facts.rs +++ b/crates/phase-ai/src/cast_facts.rs @@ -1,7 +1,9 @@ use engine::game::game_object::GameObject; +#[cfg(test)] +use engine::types::ability::TapStateChange; use engine::types::ability::{ - AbilityDefinition, AbilityKind, BounceSelection, Effect, ReplacementDefinition, TargetFilter, - TriggerDefinition, + AbilityDefinition, AbilityKind, BounceSelection, Effect, EffectScope, ReplacementDefinition, + TargetFilter, TriggerDefinition, }; use engine::types::actions::GameAction; use engine::types::card::CardFace; @@ -353,8 +355,6 @@ fn effect_requires_targets(effect: &Effect) -> bool { | Effect::DealDamage { target, .. } | Effect::Pump { target, .. } | Effect::Counter { target, .. } - | Effect::Tap { target } - | Effect::Untap { target } | Effect::GainControl { target, .. } | Effect::PhaseOut { target } | Effect::Fight { target, .. } @@ -375,6 +375,14 @@ fn effect_requires_targets(effect: &Effect) -> bool { | Effect::Animate { target, .. } | Effect::PutCounter { target, .. } => !matches!(target, TargetFilter::None), Effect::RevealHand { target, .. } => !matches!(target, TargetFilter::None), + // CR 701.26a/b: only single-permanent tap/untap declares a target. The + // mass (`All`) scope falls through to `false`, matching the legacy + // `TapAll`/`UntapAll`. + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } => !matches!(target, TargetFilter::None), _ => false, } } @@ -478,8 +486,10 @@ mod tests { event: ReplacementEvent::ChangeZone, execute: Some(Box::new(AbilityDefinition::new( AbilityKind::Spell, - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ))), runtime_execute: None, diff --git a/crates/phase-ai/src/policies/anti_self_harm.rs b/crates/phase-ai/src/policies/anti_self_harm.rs index ac628734f5..8a7c28f531 100644 --- a/crates/phase-ai/src/policies/anti_self_harm.rs +++ b/crates/phase-ai/src/policies/anti_self_harm.rs @@ -5,7 +5,8 @@ use engine::game::quantity::resolve_quantity; use engine::game::targeting::find_legal_targets; use engine::game::turn_control; use engine::types::ability::{ - AbilityCost, Effect, QuantityExpr, ReplacementMode, TargetFilter, TargetRef, + AbilityCost, Effect, EffectScope, QuantityExpr, ReplacementMode, TapStateChange, TargetFilter, + TargetRef, }; use engine::types::actions::GameAction; use engine::types::card_type::{CoreType, Supertype}; @@ -474,7 +475,16 @@ fn score_target_object(ctx: &PolicyContext<'_>, object_id: ObjectId, beneficial: if beneficial && effects.iter().any(|effect| { - matches!(effect, Effect::Untap { .. }) && effect_targets_object(ctx, effect, object_id) + // CR 701.26b: only single-target untap (legacy `Effect::Untap`) + // factors here; the mass scope was never matched. + matches!( + effect, + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } + ) && effect_targets_object(ctx, effect, object_id) }) { if object.tapped { @@ -2254,8 +2264,10 @@ mod tests { PlayerId(0), ); rewind.sub_ability = Some(Box::new(ResolvedAbility::new( - Effect::Untap { + Effect::SetTapState { target: TargetFilter::Typed(TypedFilter::new(TypeFilter::Land)), + scope: EffectScope::Single, + state: TapStateChange::Untap, }, Vec::new(), rewind_id, diff --git a/crates/phase-ai/src/policies/effect_classify.rs b/crates/phase-ai/src/policies/effect_classify.rs index 735690acbb..3d4e16c0db 100644 --- a/crates/phase-ai/src/policies/effect_classify.rs +++ b/crates/phase-ai/src/policies/effect_classify.rs @@ -1,7 +1,8 @@ use engine::game::filter::{matches_target_filter, FilterContext}; use engine::game::game_object::GameObject; use engine::types::ability::{ - ContinuousModification, Effect, PtValue, QuantityExpr, TargetFilter, TypeFilter, + ContinuousModification, Effect, EffectScope, PtValue, QuantityExpr, TapStateChange, + TargetFilter, TypeFilter, }; use engine::types::counter::CounterType; use engine::types::identifiers::ObjectId; @@ -112,7 +113,14 @@ pub(crate) fn effect_polarity(effect: &Effect) -> EffectPolarity { | Effect::PreventDamage { .. } | Effect::Animate { .. } | Effect::DoublePT { .. } => EffectPolarity::Beneficial, - Effect::Untap { .. } => EffectPolarity::Beneficial, + // CR 701.26b: untapping a single permanent is beneficial. The mass + // (`All`) scope is left Contextual via the catch-all, matching the + // legacy `UntapAll`. + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Untap, + .. + } => EffectPolarity::Beneficial, // Beneficial: resource generation and card advantage Effect::GainLife { .. } | Effect::Draw { .. } @@ -126,6 +134,14 @@ pub(crate) fn effect_polarity(effect: &Effect) -> EffectPolarity { | Effect::Connive { .. } | Effect::BecomeMonarch | Effect::ExtraTurn { .. } => EffectPolarity::Beneficial, + // CR 701.26a: tapping a single permanent is harmful (denies its use). + // The mass (`All`) scope is left Contextual via the catch-all, matching + // the legacy `TapAll`. + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } => EffectPolarity::Harmful, // Harmful: removal, disruption, and forced actions Effect::Destroy { .. } | Effect::DealDamage { .. } @@ -133,7 +149,6 @@ pub(crate) fn effect_polarity(effect: &Effect) -> EffectPolarity { | Effect::DiscardCard { .. } | Effect::Mill { .. } | Effect::LoseLife { .. } - | Effect::Tap { .. } | Effect::Bounce { .. } | Effect::Counter { .. } | Effect::PhaseOut { .. } @@ -193,12 +208,10 @@ pub(crate) fn extract_target_filter(effect: &Effect) -> Option<&TargetFilter> { | Effect::DoublePT { target, .. } | Effect::DoublePTAll { target, .. } | Effect::Regenerate { target, .. } - | Effect::Untap { target } | Effect::PreventDamage { target, .. } // Harmful effects | Effect::Destroy { target, .. } | Effect::DealDamage { target, .. } - | Effect::Tap { target } | Effect::RemoveCounter { target, .. } // Removal / disruption | Effect::Bounce { target, .. } @@ -218,6 +231,15 @@ pub(crate) fn extract_target_filter(effect: &Effect) -> Option<&TargetFilter> { | Effect::ExtraTurn { target, .. } | Effect::SkipNextStep { target, .. } | Effect::MoveCounters { target, .. } => Some(target), + // CR 701.26a/b: only single-permanent tap/untap exposes a selectable + // target. The mass (`All`) scope's filter is a population filter and is + // not surfaced as a target (matching the legacy `TapAll`/`UntapAll`, + // which fell through to `None`). + Effect::SetTapState { + scope: EffectScope::Single, + target, + .. + } => Some(target), // GenericEffect and LoseLife have Option Effect::GenericEffect { target, .. } | Effect::LoseLife { target, .. } => { target.as_ref() diff --git a/crates/phase-ai/src/policies/etb_value.rs b/crates/phase-ai/src/policies/etb_value.rs index 9923f5352c..923c8b98d8 100644 --- a/crates/phase-ai/src/policies/etb_value.rs +++ b/crates/phase-ai/src/policies/etb_value.rs @@ -1,6 +1,6 @@ use crate::cast_facts::collect_definition_effects; use crate::features::DeckFeatures; -use engine::types::ability::{Effect, PtValue}; +use engine::types::ability::{Effect, EffectScope, PtValue, TapStateChange}; use engine::types::actions::GameAction; use engine::types::game_state::GameState; use engine::types::player::PlayerId; @@ -127,7 +127,16 @@ fn score_effect(effect: &Effect, opponent_creature_value: f64) -> f64 { Effect::Draw { .. } => 0.18, Effect::Token { .. } => 0.16, Effect::SearchLibrary { .. } => 0.12, - Effect::Tap { .. } | Effect::Goad { .. } | Effect::Suspect { .. } => { + // CR 701.26a: tapping a single permanent (legacy `Effect::Tap`) is the + // only tap-family ETB worth a value here — untap and the mass scopes + // fall through to `0.0`, matching their legacy absence from this match. + Effect::SetTapState { + scope: EffectScope::Single, + state: TapStateChange::Tap, + .. + } + | Effect::Goad { .. } + | Effect::Suspect { .. } => { if opponent_creature_value > 0.0 { 0.12 } else { diff --git a/crates/phase-ai/src/policies/redundancy_avoidance.rs b/crates/phase-ai/src/policies/redundancy_avoidance.rs index 3a0be04390..aca83383dd 100644 --- a/crates/phase-ai/src/policies/redundancy_avoidance.rs +++ b/crates/phase-ai/src/policies/redundancy_avoidance.rs @@ -60,7 +60,8 @@ use engine::game::filter::{matches_target_filter, FilterContext}; use engine::game::keywords::{has_flash, has_keyword}; use engine::game::quantity::resolve_quantity; use engine::types::ability::{ - ContinuousModification, Duration, Effect, QuantityExpr, StaticDefinition, TargetFilter, + ContinuousModification, Duration, Effect, EffectScope, QuantityExpr, StaticDefinition, + TapStateChange, TargetFilter, }; use engine::types::actions::GameAction; use engine::types::card_type::CoreType; @@ -271,8 +272,19 @@ fn redundancy_delta( origin: EffectOrigin, ) -> Option<(f64, i64, i64)> { match effect { - Effect::Tap { target } => tap_redundancy(state, source_id, target), - Effect::Untap { target } => untap_redundancy(state, source_id, target), + // CR 701.26a/b: single-target tap/untap have redundancy checks; the + // mass (`All`) scope has none (see the no-op list below), matching the + // legacy `Tap`/`Untap` vs `TapAll`/`UntapAll` split. + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Tap, + } => tap_redundancy(state, source_id, target), + Effect::SetTapState { + target, + scope: EffectScope::Single, + state: TapStateChange::Untap, + } => untap_redundancy(state, source_id, target), Effect::Pump { power, toughness, @@ -352,8 +364,12 @@ fn redundancy_delta( | Effect::Counter { .. } | Effect::Token { .. } | Effect::LoseLife { .. } - | Effect::TapAll { .. } - | Effect::UntapAll { .. } + // CR 701.26a/b: mass tap/untap (legacy `TapAll`/`UntapAll`) has no + // shipped redundancy check. + | Effect::SetTapState { + scope: EffectScope::All, + .. + } | Effect::RemoveCounter { .. } | Effect::Sacrifice { .. } | Effect::DiscardCard { .. } @@ -1100,8 +1116,10 @@ mod tests { let obj_id = make_creature_with_ability( &mut state, "Tapper", - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ); state.objects.get_mut(&obj_id).unwrap().tapped = true; @@ -1124,8 +1142,10 @@ mod tests { let obj_id = make_creature_with_ability( &mut state, "Tapper", - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, ); // default tapped = false @@ -1148,8 +1168,10 @@ mod tests { let obj_id = make_creature_with_ability( &mut state, "Untapper", - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ); // default tapped = false -- so untap is a no-op on this target set @@ -1172,8 +1194,10 @@ mod tests { let obj_id = make_creature_with_ability( &mut state, "Untapper", - Effect::Untap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Untap, }, ); state.objects.get_mut(&obj_id).unwrap().tapped = true; @@ -1884,8 +1908,10 @@ mod tests { let _other = make_creature_with_ability( &mut state, "Other Creature", - Effect::Tap { + Effect::SetTapState { target: TargetFilter::SelfRef, + scope: EffectScope::Single, + state: TapStateChange::Tap, }, );