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: "ecard2-47", localId: 47, // Card informations name: { en: "Flaaffy", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 180, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard2/47/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/47/high", }, }, evolveFrom: { en: "Mareep", }, tags: [ Tag.STAGE1, ], illustrator: "Shin-ichi Yoshida", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Thundershock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Spark", }, text: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card