1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,79 @@
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: "Fightning",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card