1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

65 lines
950 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 '../Aquapolis'
const card: Card = {
name: {
en: "Entei",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Pure Body",
},
effect: {
en: "To attach a Fire Energy card from your hand to Entei, you must discard an Energy card attached to Entei. (Attach the Fire Energy, and then discard an Energy from Entei.)",
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Burning Fang",
},
effect: {
en: "You may flip a coin. If heads, discard a Fire Energy card attached to Entei and the Defending Pokémon is now Burned.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card