import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw5-12", localId: 12, // Card informations name: { en: "Flareon", }, hp: 90, type: [ Type.FIRE, ], dexId: 136, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/12/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/12/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 29, name: "Suwama Chiaki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sand-Attack", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fire Slash", }, text: { en: "You may discard a Fire Energy attached to this Pokémon. If you do, this attack does 30 more damage.", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card