Guest User

Untitled

a guest
Nov 17th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.60 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <CARD_V2 ExportVersion="1">
  3.     <FILENAME text="TELEKINESIS_CW_159774" />
  4.     <CARDNAME text="TELEKINESIS" />
  5.     <TITLE>
  6.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  7.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  8.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  9.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  10.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  11.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  12.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  13.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  14.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  15.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  16.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Telekinesis]]></LOCALISED_TEXT>
  17.     </TITLE>
  18.     <MULTIVERSEID value="159774" />
  19.     <ARTID value="TELEKINESIS" />
  20.     <ARTIST name="Daniel Gelon" />
  21.     <CASTING_COST cost="{U}{U}" />
  22.     <TYPE metaname="Instant" />
  23.     <EXPANSION value="MED" />
  24.     <RARITY metaname="C" />
  25.     <SPELL_ABILITY>
  26.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  27.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  28.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  29.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  30.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  31.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  32.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  33.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  34.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  35.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  36.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Tap target creature. Prevent all combat damage that would be dealt by that creature this turn. It doesn’t untap during its controller’s next two untap steps.]]></LOCALISED_TEXT>
  37.         <SFX text="TARGET_BLUE_MAGIC_PLAY" />
  38.         <TARGET tag="SPL_CARD_QUERY_CHOOSE_CREATURE" definition="0" compartment="0" count="1" />
  39.         <TARGET_DEFINITION id="0">
  40.             local filter = ClearFilter()
  41.             filter:Add( FE_TYPE, OP_IS, CARD_TYPE_CREATURE )
  42.         </TARGET_DEFINITION>
  43.         <RESOLUTION_TIME_ACTION>
  44.             local target_creature = EffectDC():Get_Targets(0):Get_CardPtr(0)
  45.             if target_creature ~= nil then
  46.                 target_creature:TapAndHold()
  47.             end
  48.         </RESOLUTION_TIME_ACTION>
  49.         <RESOLUTION_TIME_ACTION>
  50.             local target_creature = EffectDC():Get_Targets(0):Get_CardPtr(0)
  51.             local delayDC = EffectDC():Make_Chest(1)
  52.             delayDC:Set_CardPtr(0, target_creature)
  53.             MTG():CreateDelayedTrigger(1, delayDC)
  54.         </RESOLUTION_TIME_ACTION>
  55.         <CONTINUOUS_ACTION layer="8">
  56.             local target_creature = EffectDC():Get_Targets(0):Get_CardPtr(0)
  57.             if target_creature ~= nil then
  58.                 local characteristics = target_creature:GetCurrentCharacteristics()
  59.                 characteristics:Bool_Set( CHARACTERISTIC_DOESNT_DEAL_COMBAT_DAMAGE, 1 )
  60.             end
  61.         </CONTINUOUS_ACTION>
  62.         <DURATION simple_duration="UntilEOT" />
  63.         <AI_SIMPLIFIED_TARGETING compartment="0" hint="HINT_ENEMY_ONLY" />
  64.     </SPELL_ABILITY>
  65.     <TRIGGERED_ABILITY resource_id="1" replacement_effect="1">
  66.         <TRIGGER value="BEGINNING_OF_PLAYERS_STEP">
  67.             local target_creature = EffectDC():Get_CardPtr(0)
  68.             return MTG():GetStep() == STEP_UNTAP and target_creature ~= nil and TriggerPlayer() == target_creature:GetController()
  69.         </TRIGGER>
  70.         <CLEANUP fire_once="1">
  71.             return EffectDC():Get_CardPtr(0) == nil
  72.         </CLEANUP>
  73.         <RESOLUTION_TIME_ACTION>
  74.             local target_creature = EffectDC():Get_CardPtr(0)
  75.             if target_creature ~= nil then
  76.                 target_creature:Hold()
  77.             end
  78.         </RESOLUTION_TIME_ACTION>
  79.     </TRIGGERED_ABILITY>
  80.     <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
  81.     <EDITORS><![CDATA[Splinterverse]]></EDITORS>
  82.     <DATE><![CDATA[13-11-16]]></DATE>
  83. </CARD_V2>
Advertisement
Add Comment
Please, Sign In to add comment