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: "neo1-30", localId: 30, // Card informations name: { en: "Clefairy", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 35, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/30/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/30/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sumiyoshi Kizuki", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Doubleslap", }, text: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Squaredance", }, text: { en: "Flip a number of coins equal to the total number of Pokémon in play. For each heads, you may search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card