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

56 lines
820 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Cinderace V",
fr: "Pyrobut V",
es: "Cinderace V",
it: "Cinderace V",
pt: "Cinderace V",
de: "Liberlo V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Fire"],
stage: "Basic",
suffix: "V",
retreat: 2,
regulationMark: "E",
illustrator: "aky CG Works",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Flare"
},
damage: 50
}, {
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
name: {
en: "All-Out Shot"
},
damage: 210,
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card