1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

feat: Add Prismatic Evolutions (#637)

This commit is contained in:
2025-01-18 01:56:17 +01:00
committed by GitHub
parent 33232f1b65
commit a33629e883
184 changed files with 10120 additions and 9 deletions

View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Prismatic Evolutions"
const card: Card = {
set: Set,
name: {
en: "Dreepy",
fr: "Fantyrm",
es: "Dreepy",
pt: "Dreepy",
it: "Dreepy",
de: "Grolldra"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Dragon"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Petty Grudge",
fr: "Rancune Mesquine",
es: "Rencor Ruin",
pt: "Rancinho",
it: "Rancormeschino",
de: "Mini-Groll"
},
damage: 10
}, {
cost: ["Fire", "Psychic"],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
pt: "Mordida",
it: "Morso",
de: "Biss"
},
damage: 40
}],
retreat: 1,
regulationMark: "H"
}
export default card