import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Vanillish", fr: "Sorboul", es: "Vanillish", it: "Vanillish", pt: "Vanillish", de: "Gelatroppo" }, illustrator: "Shin Nagasawa", 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: "Icy Snow", fr: "Verglas", }, damage: 30, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, } export default card