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: "ex6-36", localId: 36, // Card informations name: { en: "Kakuna", }, hp: 70, type: [ Type.GRASS, ], dexId: 14, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/36/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/36/high.png", }, }, evolveFrom: { en: "Weedle", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, abilities: [{ id: 585, type: AbilityType.POKEBODY, name: { en: "Poison Payback", }, text: { en: "If Kakuna is your Active Pokémon and is damaged by an opponent's attack (even if Kakuna is Knocked Out), the Attacking Pokémon is now Poisoned.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Headbutt", }, damage: 10 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card