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:
79
data/Diamond & Pearl/Legends Awakened/66.ts
Normal file
79
data/Diamond & Pearl/Legends Awakened/66.ts
Normal 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
|
Reference in New Issue
Block a user