1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

44 lines
640 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: "Ultra Rare",
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