1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-13 21:35:10 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/053.ts
2025-07-08 11:31:53 +02:00

40 lines
556 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Dragonite ex"
},
illustrator: "PLANETA Igarashi",
rarity: "Four Diamond",
category: "Pokemon",
hp: 180,
types: ["Dragon"],
evolveFrom: {
en: "Dragonair"
},
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
en: "Giga Impact"
},
damage: 180,
cost: ["Water", "Lightning", "Colorless"],
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
retreat: 2
}
export default card