1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/211.ts

40 lines
580 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Lugia ex"
},
illustrator: "SIE NANAHARA",
rarity: "Three Star",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Elemental Blast"
},
damage: 180,
cost: ["Fire", "Water", "Lightning"],
effect: {
en: "Discard a {R}, {W}, and {L} Energy from this Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card