Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <CARD_V2 ExportVersion="1">
- <FILENAME text="CULLING_SCALES_CW_47445" />
- <CARDNAME text="CULLING_SCALES" />
- <TITLE>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Culling Scales]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Balance du sacrifice]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Balanza selectiva]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Waage des Aussortierens]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Bilancia della Selezione]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[選別の秤]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Culling Scales]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Culling Scales]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Balanças Seletoras]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Culling Scales]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Culling Scales]]></LOCALISED_TEXT>
- </TITLE>
- <MULTIVERSEID value="47445" />
- <ARTID value="CULLING_SCALES" />
- <ARTIST name="Daren Bader" />
- <CASTING_COST cost="{3}" />
- <TYPE metaname="Artifact" />
- <EXPANSION value="MRD" />
- <RARITY metaname="R" />
- <TRIGGERED_ABILITY>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[At the beginning of your upkeep, destroy target nonland permanent with the lowest converted mana cost.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Au début de votre entretien, détruisez le permanent non-terrain ciblé ayant le coût converti de mana le plus faible parmi les permanents non-terrain en jeu.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Al comienzo de tu mantenimiento, destruye el permanente objetivo que no sea tierra con el menor coste de maná convertido entre los permanentes en juego que no sean tierra.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Zerstöre zu Beginn deines Versorgungssegments eine bleibende Karte deiner Wahl, die kein Land ist und unter den bleibenden Karten im Spiel, die keine Länder sind, die niedrigsten umgewandelten Manakosten hat.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[All’inizio del tuo mantenimento, distruggi un permanente non terra bersaglio con il più basso costo di mana convertito tra i permanenti non terra in gioco.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[あなたのアップキープの開始時に、場に出ているすべての土地でないパーマネントの中で、点数でみたマナ・コストが最も小さい土地でないパーマネント1つを対象とし、それを破壊する。]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[At the beginning of your upkeep, destroy target nonland permanent with the lowest converted mana cost.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[At the beginning of your upkeep, destroy target nonland permanent with the lowest converted mana cost.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[No início de sua manutenção, destrói a permanente alvo que não seja um terreno com o menor custo de mana convertido dentre as permanentes em jogo que não forem terrenos.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[At the beginning of your upkeep, destroy target nonland permanent with the lowest converted mana cost.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[At the beginning of your upkeep, destroy target nonland permanent with the lowest converted mana cost.]]></LOCALISED_TEXT>
- <TRIGGER value="BEGINNING_OF_PLAYERS_STEP" simple_qualifier="controller">
- return MTG():GetStep() == STEP_UPKEEP
- </TRIGGER>
- <TARGET tag="SPL_CARD_QUERY_CHOOSE_PERMANENT_WITH_LOWEST_CMC" definition="0" compartment="0" count="1" />
- <TARGET_DEFINITION id="0">
- local filter = ClearFilter()
- local subfilter = filter:AddSubFilter_Or()
- subfilter:Add( FE_TYPE, OP_IS, CARD_TYPE_CREATURE )
- subfilter:Add( FE_TYPE, OP_IS, CARD_TYPE_ARTIFACT )
- CW_Filter_AddEnchantments(subfilter)
- CW_Filter_AddPlaneswalkers(subfilter)
- filter:Add( FE_LUA_CONDITION, 1, EffectController(), EffectDC() )
- </TARGET_DEFINITION>
- <FILTER_CONDITION id="1">
- local permanent = FilteredCard()
- local lowest = 9999
- local nufilter = ClearFilter()
- nufilter:SetZone( ZONE_BATTLEFIELD )
- local subfilter = nufilter:AddSubFilter_Or()
- subfilter:Add( FE_TYPE, OP_IS, CARD_TYPE_CREATURE )
- subfilter:Add( FE_TYPE, OP_IS, CARD_TYPE_ARTIFACT )
- CW_Filter_AddEnchantments(subfilter)
- CW_Filter_AddPlaneswalkers(subfilter)
- local numPermanents = nufilter:EvaluateObjects()
- for i=0,(numPermanents-1) do
- local cmc = nufilter:GetNthEvaluatedObject(i):GetConvertedManaCost()
- if cmc < lowest then
- lowest = cmc
- end
- end
- if permanent ~= nil then
- if permanent:GetConvertedManaCost() <= lowest then
- return true
- else
- return false
- end
- else
- return false
- end
- </FILTER_CONDITION>
- <RESOLUTION_TIME_ACTION>
- local target = EffectDC():Get_Targets(0) and EffectDC():Get_Targets(0):Get_CardPtr(0)
- if target ~= nil then
- local lowest = 0
- local filter = ClearFilter()
- filter:SetZone( ZONE_BATTLEFIELD )
- CW_Filter_AddPermanents(filter)
- local numPermanents = filter:EvaluateObjects()
- for i=0,(numPermanents-1) do
- local cmc = filter:GetNthEvaluatedObject(i):GetConvertedManaCost()
- if cmc < lowest then
- lowest = cmc
- end
- end
- if target:GetConvertedManaCost() <= lowest then
- target:Destroy()
- end
- end
- </RESOLUTION_TIME_ACTION>
- <AI_SIMPLIFIED_TARGETING compartment="0" hint="HINT_ENEMY" />
- </TRIGGERED_ABILITY>
- <!--RULINGS
- 12/1/2004 You choose the target. If there’s more than one nonland permanent tied for lowest converted mana cost, you choose which one to target.
- 12/1/2004 If the targeted permanent doesn’t have the lowest converted mana cost when the ability resolves, the ability is countered and the permanent isn’t destroyed.
- 12/1/2004 Most tokens have a converted mana cost of 0. A token that’s a copy of another permanent or card has a converted mana cost equal to that permanent or card’s converted mana cost.
- 12/1/2004 If the lowest converted mana cost is 3, Culling Scales can destroy itself.-->
- <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
- <EDITORS><![CDATA[Splinterverse]]></EDITORS>
- <DATE><![CDATA[19-11-16]]></DATE>
- </CARD_V2>
Add Comment
Please, Sign In to add comment