mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 14:49:49 +00:00
44 lines
732 B
TypeScript
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 |