mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
816 B
TypeScript
54 lines
816 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lucario ex",
|
|
fr: "Lucario-ex",
|
|
es: "Lucario ex",
|
|
it: "Lucario-ex",
|
|
pt: "Lucario ex",
|
|
de: "Lucario-ex"
|
|
},
|
|
|
|
rarity: "Double rare",
|
|
category: "Pokemon",
|
|
hp: 250,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Low Kick",
|
|
fr: "Balayage",
|
|
es: "Patada Baja",
|
|
it: "Colpo Basso",
|
|
pt: "Rasteira",
|
|
de: "Fußkick"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aura Knuckle",
|
|
fr: "Poing Aura",
|
|
es: "Nudillo Aural",
|
|
it: "Aurapugno",
|
|
pt: "Punho de Aura",
|
|
de: "Aurafaust"
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |