mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-22 08:09:54 +00:00
67 lines
851 B
TypeScript
67 lines
851 B
TypeScript
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 opponent’s Active Pokémon is now Burned.",
|
||
},
|
||
damage: 170,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|