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: "dp4-73", localId: 73, // Card informations name: { en: "Kakuna", fr: "Coconfort", }, hp: 80, type: [ Type.GRASS, ], dexId: 14, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/73/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/73/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/73/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/73/high", }, }, evolveFrom: { en: "Weedle", fr: "Aspicot", }, tags: [ Tag.STAGE1, ], illustrator: "Ken Sugimori", attacks: [{ name: { en: "Stiffen", fr: "Raidir", }, text: { en: "During your opponent's next turn, any damage done to Kakuna by attacks is reduced by 30 (after applying Weakness and Resistance).", fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés à Coconfort par des attaques sont réduits de 30 (après application de la Faiblesse et de la Résistance).", }, },{ cost: [ Type.GRASS ], name: { en: "Spit Poison", fr: "Crache-venin", }, text: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 10 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card