mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
41 lines
588 B
TypeScript
41 lines
588 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
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"
|
|
}
|
|
|
|
export default card |