import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Vanillish", fr: "Sorboul", es: "Vanillish", it: "Vanillish", pt: "Vanillish", de: "Gelatroppo" }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 583, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Vanillite", fr: "Sorbébé", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Ice Beam", fr: "Laser Glace", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20, }, { cost: [ "Water", "Water", ], name: { en: "Frost Breath", fr: "Souffle Glacé", }, damage: 40, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card