import { Card } from '../../../interfaces' import Set from '../Guardians Rising' const card: Card = { name: { en: "Castform", fr: "Morphéo", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 351, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Weather Teller", fr: "Cartomancien", }, effect: { en: "Search your deck for up to 2 Stadium cards, reveal them, and put them into your hand. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 cartes Stade dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Water Pulse", fr: "Vibraqua", }, effect: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card