mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
66
data/Sword & Shield/Rebel Clash/36.ts
Normal file
66
data/Sword & Shield/Rebel Clash/36.ts
Normal file
@ -0,0 +1,66 @@
|
||||
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
|
Reference in New Issue
Block a user