1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00

68 lines
761 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Vanillish",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
583,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Vanillite",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Triple Spin",
},
effect: {
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Frost Breath",
},
damage: 50,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
}
export default card