mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
45 lines
642 B
TypeScript
45 lines
642 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lucario V",
|
|
fr: "Lucario V",
|
|
es: "Lucario V",
|
|
it: "Lucario V",
|
|
pt: "Lucario V",
|
|
de: "Lucario V"
|
|
},
|
|
|
|
rarity: "Holo Rare V",
|
|
category: "Pokemon",
|
|
hp: 210,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
retreat: 2,
|
|
regulationMark: "E",
|
|
illustrator: "aky CG Works",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aura Sphere"
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|