1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Promos-A/092.ts
2025-07-31 08:23:41 +00:00

43 lines
701 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Eevee",
es: "Eevee"
},
illustrator: "nisimono",
rarity: "Three Diamond",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
en: "Its ability to evolve into many forms allows it to\nadapt smoothly and perfectly to any environment.",
es: "Es capaz de evolucionar de muchas maneras\npara adaptarse sin problemas a cualquier medio."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle",
es: "Placaje"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card