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

86 lines
1.5 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 '../Power Keepers'
const card: Card = {
name: {
en: "Mightyena",
fr: "Grahyena",
de: "Magnayen"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
262,
],
hp: 70,
types: [
"Darkness",
],
evolveFrom: {
en: "Poochyena",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Plunder",
fr: "Pillage",
de: "Plündern"
},
effect: {
en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.",
fr: "Avant d'infliger des dégâts, défaussez toutes les cartes Dresseur attachées au Pokémon Défenseur.",
de: "Bevor der Schaden zugefügt wird, lege alle an dem Verteidigenden Pokémon angelegten Trainerkarten auf den Ablagestapel."
},
damage: 30,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Dark Burst",
fr: "Explosion obscure",
de: "Dunkler Ausbruch"
},
effect: {
en: "If Sidney's Stadium is in play, this attack does 50 damage plus 20 more damage.",
fr: "Si Stade de Damien est en jeu, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
de: "Wenn Ulrichs Stadion im Spiel ist, fügt dieser Angriff 50 Schadenspunkte plus 20 weitere Schadenspunkte zu."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card