1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

74 lines
1.1 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 '../Primal Clash'
const card: Card = {
name: {
en: "Blaziken",
fr: "Braségali",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
257,
],
hp: 140,
types: [
"Fire",
],
evolveFrom: {
en: "Combusken",
fr: "Galifeu",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Spreading Flames",
fr: "Flammes Rampantes",
},
effect: {
en: "Attach 3 Fire Energy cards from your discard pile to your Pokémon in any way you like.",
fr: "Attachez 3 cartes Énergie Fire de votre pile de défausse à vos Pokémon, de la manière que vous voulez.",
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Heat Blow",
fr: "Coup Explosif",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card