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: "ex11-46", localId: 46, // Card informations name: { en: "Kakuna", }, hp: 60, type: [ Type.GRASS, ], dexId: 14, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/46/high.png", }, }, evolveFrom: { en: "Weedle", }, tags: [ Tag.STAGE1, ], illustrator: { id: 12, name: "Sachiko Adachi" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Fast Evolution", }, text: { en: "Search your deck for an Evolution card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rollout", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card