Guest User

Untitled

a guest
Nov 5th, 2016
110
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?xml version="1.0"?>
  2. <CARD_V2 ExportVersion="1">
  3.     <FILENAME text="KROVIKAN_VAMPIRE_CW_184647" />
  4.     <CARDNAME text="KROVIKAN_VAMPIRE" />
  5.     <TITLE>
  6.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  7.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  8.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  9.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  10.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  11.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  12.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  13.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  14.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  15.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  16.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Krovikan Vampire]]></LOCALISED_TEXT>
  17.     </TITLE>
  18.     <MULTIVERSEID value="184647" />
  19.     <ARTID value="KROVIKAN_VAMPIRE" />
  20.     <ARTIST name="Quinton Hoover" />
  21.     <CASTING_COST cost="{3}{B}{B}" />
  22.     <TYPE metaname="Creature" />
  23.     <SUB_TYPE metaname="Vampire" />
  24.     <EXPANSION value="ME2" />
  25.     <RARITY metaname="U" />
  26.     <POWER value="3" />
  27.     <TOUGHNESS value="3" />
  28.     <TRIGGERED_ABILITY>
  29.         <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  30.         <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  31.         <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  32.         <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  33.         <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  34.         <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  35.         <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  36.         <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  37.         <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  38.         <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  39.         <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.]]></LOCALISED_TEXT>
  40.         <TRIGGER value="ZONECHANGE_BEGIN" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_BATTLEFIELD">
  41.             if TriggerObject():GetCardType():Test( CARD_TYPE_CREATURE ) then
  42.                 local interrogation = MTG():ClearInterrogationQuery()
  43.                 interrogation:SetObject( EffectSource() )
  44.                 interrogation:SetSecondaryObject( TriggerObject() )
  45.                 if interrogation:Test( INTERROGATE_DAMAGE_DEALT, INTERROGATE_THIS_TURN ) then
  46.                     return true
  47.                 else
  48.                     return false
  49.                 end
  50.             end
  51.             return false
  52.         </TRIGGER>
  53.         <RESOLUTION_TIME_ACTION>
  54.             local creature = TriggerObject()
  55.             if creature ~= nil then
  56.                 local delayDC = EffectDC():Make_Chest(1)
  57.                 delayDC:Set_CardPtr(0, creature)
  58.                 delayDC:Set_CardPtr(1, EffectSource())
  59.                 MTG():CreateDelayedTrigger(2, delayDC)
  60.                 MTG():CreateDelayedTrigger(3, delayDC)
  61.             end
  62.         </RESOLUTION_TIME_ACTION>
  63.     </TRIGGERED_ABILITY>
  64.     <TRIGGERED_ABILITY resource_id="2">
  65.         <TRIGGER value="BEGINNING_OF_STEP">
  66.             return MTG():GetStep() == STEP_END_OF_TURN
  67.         </TRIGGER>
  68.         <CLEANUP fire_once="1" />
  69.         <RESOLUTION_TIME_ACTION>
  70.             local creature = EffectDC():Get_CardPtr(0)
  71.             if creature ~= nil then
  72.                 EffectDC():Protect_CardPtr(0)
  73.                 creature:PutOntoBattlefield( EffectController() )
  74.             end
  75.         </RESOLUTION_TIME_ACTION>
  76.         <DURATION>
  77.             return (EffectDC():Get_CardPtr(1) == nil)
  78.         </DURATION>
  79.     </TRIGGERED_ABILITY>
  80.     <TRIGGERED_ABILITY resource_id="3">
  81.         <TRIGGER value="ZONECHANGE_BEGIN" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_BATTLEFIELD">
  82.             return TriggerObject() == EffectDC():Get_CardPtr(1)
  83.         </TRIGGER>
  84.         <CLEANUP simple_cleanup="EndOfTurn" fire_once="1" />
  85.         <RESOLUTION_TIME_ACTION>
  86.             local player = EffectController()
  87.             local card = EffectDC():Get_CardPtr(0)
  88.             if player ~= nil and card ~= nil then
  89.                 player:Sacrifice(card)
  90.             end
  91.         </RESOLUTION_TIME_ACTION>
  92.     </TRIGGERED_ABILITY>
  93.     <SFX text="COMBAT_BLUNT_LARGE_ATTACK" power_boundary_min="4" power_boundary_max="-1" />
  94.     <SFX text="COMBAT_BLUNT_SMALL_ATTACK" power_boundary_min="1" power_boundary_max="3" />
  95.     <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
  96.     <EDITORS><![CDATA[Splinterverse]]></EDITORS>
  97.     <DATE><![CDATA[05-11-16]]></DATE>
  98. </CARD_V2>
RAW Paste Data