1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00

feat: Add Pocket promo cards 74 to 92 (#829)

This commit is contained in:
adresa97
2025-07-31 10:23:41 +02:00
committed by GitHub
parent 7c2a69711e
commit dba61e87e7
19 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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