1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

70 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unseen Forces'
const card: Card = {
name: {
en: "Lugia ex",
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
249,
],
hp: 100,
types: [
"Colorless",
],
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Silver Sparkle",
},
effect: {
en: "If Lugia ex is your Active Pokémon and is damaged by an opponent's attack (even if Lugia ex is Knocked Out), flip a coin. If heads, choose an Energy card attached to the Attacking Pokémon and return it to your opponent's hand.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Water",
"Fire",
],
name: {
en: "Elemental Blast",
},
effect: {
en: "Discard a Fire Energy, Water Energy, and Lightning Energy attached to Lugia ex.",
},
damage: 200,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card