import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Drizzile", fr: "Arrozard" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", hp: 90, types: ["Water"], evolveFrom: { en: "Sobble", fr: "Larméléon" }, attacks: [{ name: { en: "Bounce", fr: "Rebond" }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon contre l’un de vos Pokémon de Banc." }, damage: 40, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "E" } export default card