mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-15 22:29:51 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
48
data/Pokémon TCG Pocket/Eevee Grove/032.ts
Normal file
48
data/Pokémon TCG Pocket/Eevee Grove/032.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Eevee Grove"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Slurpuff"
|
||||
},
|
||||
|
||||
illustrator: "Kyoko Umemoto",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Swirlix"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "By taking in a person's scent, it can sniff out their\nmental and physical condition. It's hoped that\nthis skill will have many medical applications."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Sweets Relay"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user