1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 lines
1.3 KiB
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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Blaziken ex",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
257,
],
hp: 150,
types: [
"Fighting",
],
evolveFrom: {
en: "Combusken",
},
suffix: "EX",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Drag Off",
},
effect: {
en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pok<6F><6B>mon to switch.",
},
damage: 30,
},
{
cost: [
"Fire",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Burn Away",
},
effect: {
en: "Before doing damage, count the remaining HP of the Defending Pokémon. If that Pokémon is Knocked Out by this attack, Blaziken ex does damage to itself equal to this attack's damage minus the remaining HP of the Defending Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card