mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
49 lines
677 B
TypeScript
49 lines
677 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [77],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Ponyta",
|
|
fr: "Ponyta",
|
|
es: "Ponyta",
|
|
it: "Ponyta",
|
|
pt: "Ponyta",
|
|
de: "Ponita"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Flame Tail",
|
|
fr: "Queue de Flammes",
|
|
es: "Cola de Fuego",
|
|
it: "Codafiamma",
|
|
pt: "Cauda de Chamas",
|
|
de: "Flammenschweif"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |