Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <CARD_V2 ExportVersion="1">
- <FILENAME text="CONFUSION_IN_THE_RANKS_CW_49528" />
- <CARDNAME text="CONFUSION_IN_THE_RANKS" />
- <TITLE>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Confusion in the Ranks]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Confusion dans les rangs]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Confusión en las filas]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Verwirrung in den Rängen]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Confusione nei Ranghi]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[階級の混乱]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Confusion in the Ranks]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Confusion in the Ranks]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Confusão nas Fileiras]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Confusion in the Ranks]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Confusion in the Ranks]]></LOCALISED_TEXT>
- </TITLE>
- <MULTIVERSEID value="49528" />
- <ARTID value="CONFUSION_IN_THE_RANKS" />
- <ARTIST name="Ron Spencer" />
- <CASTING_COST cost="{3}{R}{R}" />
- <TYPE metaname="Enchantment" />
- <EXPANSION value="MRD" />
- <RARITY metaname="R" />
- <TRIGGERED_ABILITY>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[À chaque fois qu’un artefact, qu’une créature ou qu’un enchantement arrive en jeu, son contrôleur choisit un permanent ciblé contrôlé par un autre joueur qui partage un type avec lui. Échangez alors le contrôle de ces permanents.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Siempre que un artefacto, criatura o encantamiento entre en juego, su controlador elige el permanente objetivo que controle otro jugador y que comparta un tipo con él. Intercambia el control de esos permanentes.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Immer wenn ein Artefakt, eine Kreatur oder eine Verzauberung ins Spiel kommt, bestimmt ihr Beherrscher eine bleibende Karte, die ein anderer Spieler kontrolliert und die mit der ins Spiel kommenden Karte einen Typ gemeinsam hat. Tausche die Kontrolle über diese bleibenden Karten aus.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Ogniqualvolta un artefatto, una creatura o un incantesimo entra in gioco, il suo controllore sceglie un permanente bersaglio controllato da un altro giocatore che abbia almeno un tipo in comune con esso. Scambia il controllo di quei permanenti.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[アーティファクトかクリーチャーかエンチャントが場に出るたび、それのコントローラーは、他のプレイヤーがコントロールするそれと共通のタイプを持つパーマネント1つを対象とし、 それらのパーマネントのコントロールを交換する。]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Toda vez que um artefato, criatura ou encantamento entrar em jogo, seu controlador escolhe uma permanente alvo que outro jogador controla que compartilhe um tipo com ela. Permute o controle dessas permanentes.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.]]></LOCALISED_TEXT>
- <TRIGGER value="ZONECHANGE_END" simple_qualifier="self" to_zone="ZONE_BATTLEFIELD" from_zone="ZONE_ANY" />
- <TRIGGER value="ZONECHANGE_END" to_zone="ZONE_BATTLEFIELD" from_zone="ZONE_ANY" >
- return TriggerObject():GetCardType():Test( CARD_TYPE_CREATURE ) or TriggerObject():GetCardType():Test( CARD_TYPE_ENCHANTMENT ) or TriggerObject():GetCardType():Test( CARD_TYPE_ARTIFACT )
- </TRIGGER>
- <TARGET tag="SPL_CARD_QUERY_CHOOSE_PERMANENT" definition="0" compartment="0" count="1">
- MTG():SetTargetAnswerer(TriggerObject():GetPlayer())
- </TARGET>
- <TARGET_DEFINITION id="0">
- local filter = ClearFilter()
- filter:Add( FE_CONTROLLER, OP_NOT, TriggerObject():GetPlayer() )
- filter:Add( FE_TYPE, OP_INTERSECTS, TriggerObject() )
- </TARGET_DEFINITION>
- <RESOLUTION_TIME_ACTION>
- local target = EffectDC():Get_Targets(0):Get_CardPtr(0)
- local trigger = TriggerObject()
- if target ~= nil and TriggerObject() ~= nil then
- local target_player = target:GetController()
- local trigger_player = TriggerObject():GetController()
- if target_controller ~= nil and trigger_controller ~= nil then
- target:SetBaseController(EffectDC():Get_PlayerPtr(1))
- trigger:SetBaseController(EffectDC():Get_PlayerPtr(0))
- end
- end
- </RESOLUTION_TIME_ACTION>
- </TRIGGERED_ABILITY>
- <!--RULINGS
- 10/4/2004 The exchange isn’t optional. If there is a legal choice, you must make one.
- 12/1/2004 The permanents have to share a permanent type both when the target is chosen and when the ability resolves.
- 12/1/2004 Even though Confusion in the Ranks triggers only when an artifact, creature, or enchantment enters the battlefield, the ability can target a land if the permanent entering the battlefield is an artifact land.
- 12/1/2004 The permanents are exchanged only if they’re both on the battlefield when the ability resolves.
- 12/1/2004 Confusion in the Ranks triggers on itself entering the battlefield. If an opponent controls an enchantment, exchange Confusion in the Ranks for that enchantment.-->
- <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
- <EDITORS><![CDATA[Splinterverse]]></EDITORS>
- <DATE><![CDATA[19-11-16]]></DATE>
- </CARD_V2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement