1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00

69 lines
829 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Incineroar V",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 220,
types: [
"Fire",
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Grand Flame",
},
effect: {
en: "Attach up to 2 Fire Energy cards from your discard pile to 1 of your Benched Pokémon.",
},
damage: 90,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flare Blitzer",
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
},
damage: 220,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card