1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/104.ts

47 lines
665 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Articuno ex"
},
illustrator: "PLANETA Saito",
rarity: "Two Shiny",
category: "Pokemon",
hp: 140,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Ice Wing"
},
damage: 40,
cost: ["Water", "Colorless"]
}, {
name: {
en: "Blizzard"
},
damage: 80,
cost: ["Water", "Water", "Water"],
effect: {
en: "This attack also does 10 damage to each of your opponent's Benched Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card