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: "ecard3-116", localId: 116, // Card informations name: { en: "Yanma", }, hp: 60, type: [ Type.GRASS, ], dexId: 193, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/116/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/116/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Agility", }, text: { en: "Flip a coin. If heads, during your opponent's next turn prevent all effects of attacks, including damage, done to Yanma.", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Triple Smash", }, text: { en: "Flip 3 coins. This attack does 20 damage plus 10 more damage for each heads.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card