mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
79 lines
1.2 KiB
TypeScript
79 lines
1.2 KiB
TypeScript
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
|