1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.3 KiB
TypeScript

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,
}
export default card