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: "ex10-50", localId: 50, // Card informations name: { en: "Yanma", }, hp: 60, type: [ Type.GRASS, ], dexId: 193, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/50/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/50/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Grand Loop", }, text: { en: "Draw 2 cards. You may switch Yanma with 1 of your Benched Pokémon.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Spinning Tail", }, text: { en: "Flip a coin. If heads, this attack does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card