mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Breloom",
|
|
fr: "Chapignon",
|
|
de: "Kapilz"
|
|
},
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
286,
|
|
],
|
|
hp: 100,
|
|
types: [
|
|
"Grass",
|
|
],
|
|
evolveFrom: {
|
|
en: "Shroomish",
|
|
fr: "Balignon",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Drain Punch",
|
|
fr: "Vampipoing",
|
|
de: "Ableithieb"
|
|
},
|
|
effect: {
|
|
en: "Remove from Breloom a number of damage counters equal to the amount of Energy attached to the Defending Pokémon.",
|
|
fr: "Retirez à Chapignon autant de marqueurs de dégât qu'il y a d'Énergie attachée au Pokémon Défenseur.",
|
|
de: "Entferne eine Anzahl Schadensmarken von Kapilz, die der Anzahl der am Verteidigenden Pokémon angelegten Energien entspricht."
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Homing Uppercut",
|
|
fr: "Uppercut à tête chercheuse",
|
|
de: "Gezielter Aufwärtshaken"
|
|
},
|
|
effect: {
|
|
en: "If the Defending Pokémon's Retreat Cost is 0, this attack does 60 damage plus 60 more damage.",
|
|
fr: "Si le Coût de retraite du Pokémon Défenseur est de 0, cette attaque inflige 60 dégâts plus 60 dégâts supplémentaires.",
|
|
de: "Wenn das Verteidigende Pokémon Rückzugskosten 0 hat, fügt dieser Angriff 60 Schadenspunkte plus 60 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "60+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+30"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|