import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Vanillish", fr: "Sorboul" }, illustrator: "Shibuzoh.", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 80, types: [ "Water", ], evolveFrom: { en: "Vanillite", fr: "Sorbébé" }, attacks: [ { cost: [ "Water", ], name: { en: "Freezing Headbutt", fr: "Coup d’Boule Gelant" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé." }, damage: 30, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card