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:
67
data/Scarlet & Violet/Temporal Forces/061.ts
Normal file
67
data/Scarlet & Violet/Temporal Forces/061.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Iron Hands",
|
||||
fr: "Paume-de-Fer",
|
||||
es: "Ferropalmas",
|
||||
it: "Manoferrea",
|
||||
pt: "Mãos Férreas"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Volt Wave",
|
||||
fr: "Vague Survoltée",
|
||||
es: "Onda Electrificante",
|
||||
it: "Onda Volt",
|
||||
pt: "Onda de Volts"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Superalloy Hands",
|
||||
fr: "Mains Superalliage",
|
||||
es: "Palmas de Superaleación",
|
||||
it: "Mani Supermetalliche",
|
||||
pt: "Mãos Supermetálicas"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 80 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 80 dégâts supplémentaires.",
|
||||
es: "Si el Pokémon Activo de tu rival es un Pokémon ex o un Pokémon V, este ataque hace 80 puntos de daño más.",
|
||||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 80 danni in più.",
|
||||
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 80 pontos de dano a mais."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user