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/065.ts

48 lines
780 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Greedent"
},
illustrator: "kirisAki",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
evolveFrom: {
en: "Skwovet"
},
description: {
en: "This Pokémon makes off with heaps of fallen berries by wrapping\nthem in its tail, which is roughly twice the length of its body."
},
stage: "Stage1",
attacks: [{
name: {
en: "Enhanced Fang"
},
damage: 50,
cost: ["Colorless", "Colorless", "Colorless"],
effect: {
en: "If this Pokémon has a Pokémon Tool attached, this attack does 50 more damage."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card