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