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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/30/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "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