Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <CARD_V2 ExportVersion="1">
- <FILENAME text="ALLIANCE_OF_ARMS_CW_228218" />
- <CARDNAME text="ALLIANCE_OF_ARMS" />
- <TITLE>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Alliance des armes]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Alianza de armas]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Waffenbrüderschaft]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Alleanza delle Armi]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[戦いの同盟]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Alliance of Arms]]></LOCALISED_TEXT>
- </TITLE>
- <MULTIVERSEID value="228218" />
- <ARTID value="ALLIANCE_OF_ARMS" />
- <ARTIST name="Johann Bodin" />
- <CASTING_COST cost="{W}" />
- <TYPE metaname="Sorcery" />
- <EXPANSION value="CMD" />
- <RARITY metaname="R" />
- <SPELL_ABILITY>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Union des forces — En commençant par vous, chaque joueur peut payer n’importe quelle quantité de mana. Chaque joueur met X jetons de créature 1/1 blanche Soldat sur le champ de bataille, X étant la quantité totale de mana payée de cette manière.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Unir fuerzas — Comenzando contigo, cada jugador puede pagar cualquier cantidad de maná. Cada jugador pone en el campo de batalla X fichas de criatura Soldado blancas 1/1, donde X es el la cantidad total de maná pagado de esta manera.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Zusammenarbeiten — Beginnend mit dir kann jeder Spieler eine beliebige Menge Mana bezahlen. Jeder Spieler bringt X 1/1 weiße Soldat-Kreaturenspielsteine ins Spiel, wobei X gleich der Gesamtmenge des auf diese Weise bezahlten Manas ist.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Unire le forze — A partire da te, ogni giocatore può pagare un qualsiasi ammontare di mana. Ogni giocatore mette sul campo di battaglia X pedine creatura Soldato 1/1 bianche, dove X è l’ammontare totale di mana pagato in questo modo.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[同調 ― あなたから始めて、各プレイヤーは好きな点数のマナを支払ってもよい。 各プレイヤーは白の1/1の兵士・クリーチャー・トークンをX体戦場に出す。Xはこれにより支払われたマナの点数の合計に等しい。]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Join forces — Starting with you, each player may pay any amount of mana. Each player puts X 1/1 white Soldier creature tokens onto the battlefield, where X is the total amount of mana paid this way.]]></LOCALISED_TEXT>
- <RESOLUTION_TIME_ACTION>
- local player = EffectController()
- local mana = player:GetTotalMana()
- if mana > 0 then
- player:BeginNewNumericalChoice()
- player:AddNumericalChoiceAnswer(mana)
- player:AskNumericalChoiceQuestion("CARD_QUERY_MCR_CHOOSE_AMOUNT_0")
- end
- </RESOLUTION_TIME_ACTION>
- <RESOLUTION_TIME_ACTION>
- local player = EffectController()
- local result = player:GetNumericalChoiceResult()
- local mana_string = "{0}"
- for i=1,result do
- mana_string = "{1}"..mana_string
- end
- if player:CanPayManaCost(mana_string) then
- player:PayManaCost(mana_string)
- EffectDC():Set_Int( 10, result )
- end
- </RESOLUTION_TIME_ACTION>
- <RESOLUTION_TIME_ACTION repeating="1">
- local n = MTG():GetActionRepCount()
- local parity = n%2
- local index = n/2
- local currentTotal = EffectDC():Get_Int(10)
- if index < MTG():GetNumberOfStartingPlayers() then
- local player = MTG():GetNthStartingPlayer(index)
- if player ~= nil and player ~= EffectController() then
- if parity == 0 then
- local mana = player:GetTotalMana()
- if mana > 0 then
- player:BeginNewNumericalChoice()
- player:AddNumericalChoiceAnswer(mana)
- player:AskNumericalChoiceQuestion("CARD_QUERY_MCR_CHOOSE_AMOUNT_"..currentTotal)
- end
- else
- local result = player:GetNumericalChoiceResult()
- if result ~= nil then
- local mana_string = "{0}"
- for i=1,result do
- mana_string = "{1}"..mana_string
- end
- if player:CanPayManaCost(mana_string) then
- player:PayManaCost(mana_string)
- EffectDC():Set_Int( 10, result + currentTotal )
- end
- end
- end
- end
- return true
- end
- return false
- </RESOLUTION_TIME_ACTION>
- <RESOLUTION_TIME_ACTION>
- local total = EffectDC():Get_Int(10)
- if total ~= nil and total ~= 0 then
- for i=0,MTG():GetNumberOfPlayers()-1 do
- local player = MTG():GetNthPlayer(i)
- for n = 0, total - 1 do
- MTG():PutTokensOntoBattlefield( "TOKEN_SOLDIER_C_1_1_W_CW_1", total, player)
- end
- end
- end
- </RESOLUTION_TIME_ACTION>
- <TOKEN_REGISTRATION reservation="1" type="TOKEN_SOLDIER_C_1_1_W_CW_1" />
- </SPELL_ABILITY>
- <AI_BASE_SCORE score="300" zone="ZONE_HAND" />
- <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
- <EDITORS><![CDATA[Splinterverse]]></EDITORS>
- <DATE><![CDATA[16-09-16]]></DATE>
- </CARD_V2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement