mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
49 lines
708 B
TypeScript
49 lines
708 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Mandibuzz BREAK",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
630,
|
|
],
|
|
hp: 140,
|
|
types: [
|
|
"Darkness",
|
|
],
|
|
evolveFrom: {
|
|
en: "Mandibuzz",
|
|
},
|
|
stage: "BREAK",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Wings of Disaster",
|
|
},
|
|
effect: {
|
|
en: "This attack does 20 damage to each of your opponent's Pokémon. This attack's damage isn't affected by Weakness and Resistance. Then, discard all Pokémon Tool cards attached to each of your opponent's Pokémon.",
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|