import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Vulpix" }, illustrator: "Shibuzoh.", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Fire"], description: { en: "While young, it has six gorgeous tails. When it\ngrows, several new tails are sprouted." }, stage: "Basic", attacks: [{ name: { en: "Live Coal" }, damage: 30, cost: ["Fire", "Colorless"] }], weaknesses: [{ type: "Water", value: "+20" }], retreat: 1 } export default card