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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/43/high.png", }, }, evolveFrom: { en: "Seedot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "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