1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

88 lines
1.5 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 '../Legends Awakened'
const card: Card = {
name: {
en: "Mightyena",
fr: "Grahyena",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
262,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Poochyena",
fr: "Fiffyen",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Bite On",
fr: "Morsure à répétition",
},
effect: {
en: "If the Defending Pokémon isn't an Evolved Pokémon, that Pokémon can't attack, retreat, or use any Poké-Powers during your opponent's next turn.",
fr: "Si le Pokémon Défenseur n'est pas un Pokémon Évolué, il ne peut pas attaquer, battre en retraite ou utiliser de Poké-Powers lors du prochain tour de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Harass",
fr: "Harcèlement",
},
effect: {
en: "Does 10 damage times the number of Pokémon you have in play.",
fr: "Inflige 10 dégâts multipliés par le nombre de Pokémon que vous avez en jeu.",
},
damage: "10×",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Il traque ses proies en groupe. Il ne désobéira jamais aux ordres d'un bon Dresseur."
}
}
export default card