1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/018.ts

44 lines
732 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Vanillite"
},
illustrator: "MAHOU",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "Unable to survive in hot areas, it makes itself\ncomfortable by breathing out air cold enough to\ncause snow. It burrows into the snow to sleep."
},
stage: "Basic",
attacks: [{
name: {
en: "Sweets Relay"
},
damage: 10,
cost: ["Water"],
effect: {
en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card