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

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Mightyena",
fr: "Grahyèna",
es: "Mightyena",
it: "Mightyena",
pt: "Mightyena"
},
rarity: "Common",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
stage: "Stage1",
attacks: [{
cost: ["Darkness", "Colorless"],
name: {
en: "Kick Away",
fr: "Coud'Pied Éjecteur",
es: "Patadón",
it: "Calciavia",
pt: "Chutar para Longe"
},
effect: {
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)",
fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)",
es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)"
},
damage: 50
}, {
cost: ["Darkness", "Darkness", "Colorless"],
name: {
en: "Sharp Fang",
fr: "Croc Aiguisé",
es: "Colmillo Afilado",
it: "Zannaffilata",
pt: "Presa Afiada"
},
damage: 130
}],
retreat: 2,
regulationMark: "H"
}
export default card