1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00

69 lines
809 B
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 '../Dark Explorers'
const card: Card = {
name: {
en: "Entei-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 180,
types: [
"Fire",
],
suffix: "EX",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Fire Fang",
},
effect: {
en: "The Defending Pokémon is now Burned.",
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Grand Flame",
},
effect: {
en: "Attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card