import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Delcatty", fr: "Delcatty", }, illustrator: "Sekio", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 301, ], hp: 90, types: [ "Colorless", ], evolveFrom: { en: "Skitty", fr: "Skitty", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Search for Friends", fr: "En Quête d’Amis", }, effect: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put 2 Supporter cards from your discard pile into your hand.", fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l’un de vos Pokémon pendant votre tour, vous pouvez ajouter 2 cartes Supporter de votre pile de défausse à votre main.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Cat Kick", fr: "Coup d’Patte", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card