import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Delcatty", fr: "Delcatty", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 301, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Skitty", fr: "Skitty", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Replace", fr: "Repositionnement", }, effect: { en: "Move as many Energy attached to your Pokémon to your other Pokémon in any way you like.", fr: "Déplacez autant d'Énergies attachées à vos Pokémon que vous voulez vers vos autres Pokémon, de la manière que vous voulez.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Play Rough", fr: "Câlinerie", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: "30+", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card