import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Vanillite", fr: "Sorbébé", es: "Vanillite", it: "Vanillite", pt: "Vanillite", de: "Gelatini" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 582, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Spin", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1 } export default card