1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/025.ts

40 lines
571 B
TypeScript

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