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

83 lines
1.7 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 '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Team Magma's Mightyena",
fr: "Grahyena de Team Magma",
de: "Team Magmas Magnayen"
},
illustrator: "Shin-ichi Yoshikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
262,
],
hp: 70,
types: [
"Darkness",
],
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Overrun",
fr: "Dépassement",
de: "Overrun"
},
effect: {
en: "Choose 1 of your opponent's Benched Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon du Banc de votre adversaire. Cette attaque lui inflige 10 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Choose 1 of your opponent's Benched Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
damage: 10,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Bite Off",
fr: "Arracher d'un coup de dent",
de: "Bite Off"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 40 damage plus 40 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires.",
de: "If the Defending Pokémon is Pokémon-ex, this attack does 40 damage plus 40 more damage."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card