import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ecard1-57", localId: 57, // Card informations name: { en: "Ninetales", }, hp: 80, type: [ Type.FIRE, ], dexId: 38, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/57/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/57/high", }, }, evolveFrom: { en: "Vulpix", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Mislead", }, text: { en: "Flip 2 coins. If either of them is heads, the Defending Pokémon is now Confused.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Ethereal Flame", }, text: { en: "Discard all R Energy cards attached to Ninetales. This attack does 30 damage plus 10 more damage for each cards discarded this way.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card