Advertisement
splinterverse

Untitled

Sep 18th, 2016
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.56 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <CARD_V2 ExportVersion="1">
  3.     <!-- Activated ability works but only impacts owner, not all players; ability on entry doesn't work at all -->
  4.     <FILENAME text="WHIRLPOOL_WARRIOR_CW_271165" />
  5.     <CARDNAME text="WHIRLPOOL_WARRIOR" />
  6.     <TITLE>
  7.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  8.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Guerrière des tourbillons]]></LOCALISED_TEXT>
  9.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Guerrera Remolino]]></LOCALISED_TEXT>
  10.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Wasserwirbelkrieger]]></LOCALISED_TEXT>
  11.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Guerriero dei Vortici]]></LOCALISED_TEXT>
  12.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[渦巻き戦士]]></LOCALISED_TEXT>
  13.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  14.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  15.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  16.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  17.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Whirlpool Warrior]]></LOCALISED_TEXT>
  18.     </TITLE>
  19.     <MULTIVERSEID value="271165" />
  20.     <ARTID value="WHIRLPOOL_WARRIOR" />
  21.     <ARTIST name="Kev Walker" />
  22.     <CASTING_COST cost="{2}{U}" />
  23.     <TYPE metaname="Creature" />
  24.     <SUB_TYPE metaname="Merfolk" />
  25.     <SUB_TYPE metaname="Warrior" />
  26.     <EXPANSION value="PC2" />
  27.     <RARITY metaname="R" />
  28.     <POWER value="2" />
  29.     <TOUGHNESS value="2" />
  30.     <TRIGGERED_ABILITY active_zone="ZONE_BATTLEFIELD">
  31.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  32.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Quand la Guerrière des tourbillons arrive sur le champ de bataille, mélangez les cartes de votre main dans votre bibliothèque, puis piochez autant de cartes.]]></LOCALISED_TEXT>
  33.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Cuando la Guerrera Remolino entre al campo de batalla, baraja las cartas de tu mano en tu biblioteca, luego roba ese mismo número de cartas.]]></LOCALISED_TEXT>
  34.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Wenn der Wasserwirbelkrieger ins Spiel kommt, mische die Karten aus deiner Hand in deine Bibliothek und ziehe dann entsprechend viele Karten.]]></LOCALISED_TEXT>
  35.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Quando il Guerriero dei Vortici entra nel campo di battaglia, rimescola nel tuo grimorio le carte della tua mano, poi pesca altrettante carte.]]></LOCALISED_TEXT>
  36.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[渦巻き戦士が戦場に出たとき、あなたの手札のカードをあなたのライブラリーに加えて切り直し、その後、その枚数のカードを引く。]]></LOCALISED_TEXT>
  37.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  38.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  39.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  40.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  41.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[When Whirlpool Warrior enters the battlefield, shuffle the cards from your hand into your library, then draw that many cards.]]></LOCALISED_TEXT>
  42.         <TRIGGER value="ZONECHANGE_END" simple_qualifier="self" to_zone="ZONE_BATTLEFIELD" />
  43.         <RESOLUTION_TIME_ACTION>
  44.             local number = MTG():GetNumberOfPlayers()
  45.             if number ~= nil then
  46.                 for i=0,(number-1) do
  47.                     local player = MTG():GetNthPlayer(i)
  48.                     local hand_count = player:Hand_Count()
  49.                     if player ~= nil then
  50.                         player:MoveLocalZone( ZONE_HAND, ZONE_LIBRARY )
  51.                         player:ShuffleLibrary()
  52.                         player:DrawCards(hand_count)
  53.                     end
  54.                 end
  55.             end
  56.         </RESOLUTION_TIME_ACTION>
  57.     </TRIGGERED_ABILITY>
  58.     <ACTIVATED_ABILITY>
  59.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  60.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[{R}, sacrifiez la Guerrière des tourbillons : Chaque joueur mélange les cartes de sa main dans sa bibliothèque, puis pioche autant de cartes.]]></LOCALISED_TEXT>
  61.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[{R}, sacrificar la Guerrera Remolino: Cada jugador baraja las cartas de su mano en su biblioteca, luego roba ese mismo número de cartas.]]></LOCALISED_TEXT>
  62.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[{R}, opfere den Wasserwirbelkrieger: Jeder Spieler mischt die Karten aus seiner Hand in seine Bibliothek und zieht dann entsprechend viele Karten.]]></LOCALISED_TEXT>
  63.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[{R}, Sacrifica il Guerriero dei Vortici: Ogni giocatore rimescola le carte della propria mano nel proprio grimorio, poi pesca altrettante carte.]]></LOCALISED_TEXT>
  64.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[{R}, 渦巻き戦士を生け贄に捧げる:各プレイヤーは、自分の手札のカードを自分のライブラリーに加えて切り直し、その後、その枚数のカードを引く。]]></LOCALISED_TEXT>
  65.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  66.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  67.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  68.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  69.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[{R}, Sacrifice Whirlpool Warrior: Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.]]></LOCALISED_TEXT>
  70.         <COST mana_cost="{R}" type="Mana" />
  71.         <RESOLUTION_TIME_ACTION>
  72.             local number = MTG():GetNumberOfPlayers()
  73.             if number ~= nil then
  74.                 for i=0,(number-1) do
  75.                     local player = MTG():GetNthPlayer(i)
  76.                     local hand_count = player:Hand_Count()
  77.                     if player ~= nil then
  78.                         player:MoveLocalZone( ZONE_HAND, ZONE_LIBRARY )
  79.                         player:ShuffleLibrary()
  80.                         player:DrawCards(hand_count)
  81.                     end
  82.                 end
  83.             end
  84.         </RESOLUTION_TIME_ACTION>
  85.         <RESOLUTION_TIME_ACTION>
  86.             EffectSource():Destroy()
  87.         </RESOLUTION_TIME_ACTION>
  88.     </ACTIVATED_ABILITY>
  89.     <SFX text="COMBAT_BLUNT_LARGE_ATTACK" power_boundary_min="4" power_boundary_max="-1" />
  90.     <SFX text="COMBAT_BLUNT_SMALL_ATTACK" power_boundary_min="1" power_boundary_max="3" />
  91.     <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
  92.     <EDITORS><![CDATA[Splinterverse]]></EDITORS>
  93.     <DATE><![CDATA[2016-09-18]]></DATE>
  94. </CARD_V2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement