mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 14:49:49 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
44
data/Pokémon TCG Pocket/Eevee Grove/018.ts
Normal file
44
data/Pokémon TCG Pocket/Eevee Grove/018.ts
Normal file
@ -0,0 +1,44 @@
|
||||
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
|
Reference in New Issue
Block a user