1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

79 lines
1.2 KiB
TypeScript
Raw Permalink 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 '../Sandstorm'
const card: Card = {
name: {
en: "Breloom",
fr: "Chapignon",
de: "Kapilz"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
286,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Shroomish",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Super Poison Breath",
fr: "Super haleine empoisonnée",
de: "Super Poison Breath"
},
effect: {
en: "Each Defending Pokémon is now Poisoned.",
fr: "Chaque Pokémon Défenseur est maintenant Empoisonné.",
de: "Each Defending Pokémon is now Poisoned."
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Sky Uppercut",
fr: "Stratopercut",
de: "Sky Uppercut"
},
effect: {
en: "This attack's damage is not affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
de: "This attack's damage is not affected by Resistance."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card