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: "ecard3-70", localId: 70, // Card informations name: { en: "Kakuna", }, hp: 70, type: [ Type.GRASS, ], dexId: 14, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/70/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/70/high.png", }, }, evolveFrom: { en: "Weedle", }, tags: [ Tag.STAGE1, ], illustrator: { id: 55, name: "Hisao Nakamura" }, abilities: [{ id: 276, type: AbilityType.POKEBODY, name: { en: "Exoskeleton", }, text: { en: "All damage done to Kakuna is reduced by 10 (after applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.GRASS ], name: { en: "Poisonpowder", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card