mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
690 B
TypeScript
48 lines
690 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [636],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Larvesta",
|
|
fr: "Pyronille",
|
|
es: "Larvesta",
|
|
it: "Larvesta",
|
|
pt: "Larvesta",
|
|
de: "Ignivor"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Live Coal",
|
|
fr: "Charbon Mutant",
|
|
es: "Carbón Activado",
|
|
it: "Carboni Ardenti",
|
|
pt: "Carvão Vivo",
|
|
de: "Glühende Kohlen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |