1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00

101 lines
2.2 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 '../Furious Fists'
const card: Card = {
name: {
en: "Breloom",
fr: "Chapignon",
es: "Breloom",
it: "Breloom",
pt: "Breloom",
de: "Kapilz"
},
illustrator: "Hitoshi Ariga",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
286,
],
hp: 100,
types: [
"Fighting",
],
evolveFrom: {
en: "Shroomish",
fr: "Balignon",
es: "Shroomish",
it: "Shroomish",
pt: "Shroomish",
de: "Knilz"
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Giga Drain",
fr: "Giga-Sangsue",
es: "Gigadrenado",
it: "Gigassorbimento",
pt: "Gigadreno",
de: "Gigasauger"
},
effect: {
en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.",
fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.",
es: "Cura a este Pokémon el mismo número de puntos de daño que hayas hecho al Pokémon Activo de tu rival.",
it: "Cura questo Pokémon da una quantità di danni pari a quelli inflitti al Pokémon attivo del tuo avversario.",
pt: "Cure neste Pokémon a mesma quantidade de danos que você causou ao Pokémon Ativo do seu oponente.",
de: "Heile bei diesem Pokémon genauso viel Schaden, wie du dem Aktiven Pokémon deines Gegners zugefügt hast."
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Sky Uppercut",
fr: "Stratopercut",
es: "Gancho Alto",
it: "Stramontante",
pt: "Upper-cut Celeste",
de: "Himmelhieb"
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
es: "El daño de este ataque no se ve afectado por Resistencia.",
it: "Il danno di questo attacco non è influenzato dalla resistenza.",
pt: "Os danos deste ataque não são afetados por Resistência.",
de: "Der Schaden dieses Angriffs wird durch Resistenz nicht verändert."
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card