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: "ex8-43", localId: 43, // Card informations name: { en: "Nuzleaf", }, hp: 70, type: [ Type.GRASS, ], dexId: 274, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/43/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/43/high", }, }, evolveFrom: { en: "Seedot", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Eerie Light", }, text: { en: "The Defending Pokémon is now Confused.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "One-Two Strike", }, text: { en: "Flip 2 coins. This attack does 30 damage plus 20 more damage for each heads.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card