1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00

67 lines
851 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Cinderace VMAX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 320,
evolveFrom: {
en: "Cinderace V",
},
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Counter",
},
effect: {
en: "If this Pokémon was damaged by an attack during your opponent's last turn, this attack does that much more damage.",
},
damage: "30+",
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Max Pyro Ball",
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
},
damage: 170,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card