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

79 lines
1.1 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 '../Double Crisis'
const card: Card = {
name: {
en: "Team Magma's Mightyena",
fr: "Grahyèna de la Team Magma",
},
illustrator: "Hitoshi Ariga",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
262,
],
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Team Magma's Poochyena",
fr: "Medhyèna de la Team Magma",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Hostile Fang",
fr: "Croc Hostile",
},
effect: {
en: "If your opponent's Active Pokémon is a Team Aqua Pokémon, this attack does 40 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de la Team Aqua, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: "80",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card