1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Blaziken FB",
fr: "Brasegali ",
},
illustrator: "Motofumi Fujiwara",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
257,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Luring Flame",
fr: "Flamme attrayante",
},
effect: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon. The new Defending Pokémon is now Burned.",
fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire. Le nouveau Pokémon Défenseur est maintenant Brûlé.",
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Vapor Kick",
fr: "Coup de buée",
},
effect: {
en: "If your opponent has any Water Pokémon in play, this attack does 30 damage plus 30 more damage.",
fr: "Si votre adversaire possède des Pokémon Water en jeu, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card