Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0"?>
- <CARD_V2 ExportVersion="1">
- <FILENAME text="LURKING_EVIL_CW_383003" />
- <CARDNAME text="LURKING_EVIL" />
- <TITLE>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Lurking Evil]]></LOCALISED_TEXT>
- </TITLE>
- <MULTIVERSEID value="383003" />
- <ARTID value="LURKING_EVIL" />
- <ARTIST name="Scott Kirschner" />
- <CASTING_COST cost="{B}{B}{B}" />
- <FLAVOURTEXT>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[“Ash is our air, darkness our flesh.”
- —Phyrexian Scriptures]]></LOCALISED_TEXT>
- </FLAVOURTEXT>
- <TYPE metaname="Enchantment" />
- <EXPANSION value="VMA" />
- <RARITY metaname="U" />
- <ACTIVATED_ABILITY>
- <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-CN"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <LOCALISED_TEXT LanguageCode="zh-HK"><![CDATA[Pay half your life, rounded up: Lurking Evil becomes a 4/4 Horror creature with flying.]]></LOCALISED_TEXT>
- <COST type="generic">
- <PREREQUISITE>
- return EffectController():GetLifeTotal() > 1
- </PREREQUISITE>
- <RESOLUTION_TIME_ACTION>
- local life = EffectController():GetLifeTotal()
- if life > 0 then
- local value = math.ceil( life / 2 )
- EffectController():LoseLife(value)
- end
- </RESOLUTION_TIME_ACTION>
- </COST>
- <CONTINUOUS_ACTION layer="4">
- if EffectSource() ~= nil then
- local characteristics = EffectSource():GetCurrentCharacteristics()
- characteristics:CardType_GetWritable():Clear()
- characteristics:CardType_GetWritable():Add(CARD_TYPE_CREATURE)
- characteristics:SubType_GetWritable():Add(CREATURE_TYPE_HORROR)
- end
- </CONTINUOUS_ACTION>
- <CONTINUOUS_ACTION layer="6">
- if EffectSource() ~= nil then
- EffectSource():GetCurrentCharacteristics():Bool_Set( CHARACTERISTIC_FLYING, 1 )
- end
- </CONTINUOUS_ACTION>
- <DURATION>
- return false
- </DURATION>
- </ACTIVATED_ABILITY>
- <AUTHOR><![CDATA[Splinterverse]]></AUTHOR>
- <EDITORS><![CDATA[Splinterverse]]></EDITORS>
- <DATE><![CDATA[04-11-16]]></DATE>
- </CARD_V2>
RAW Paste Data