1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +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,67 @@
import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Gengar",
fr: "Ectoplasma",
es: "Gengar",
it: "Gengar",
pt: "Gengar"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Night Gate",
fr: "Portail Nocturne",
es: "Portal Nocturno",
it: "Portale Notturno",
pt: "Portão Noturno"
},
effect: {
en: "Once during your turn, you may switch your Active Pokémon with 1 of your Benched Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez échanger votre Pokémon Actif contre l'un de vos Pokémon de Banc.",
es: "Una vez durante tu turno, puedes cambiar tu Pokémon Activo por uno de tus Pokémon en Banca.",
it: "Una sola volta durante il tuo turno, puoi scambiare il tuo Pokémon attivo con uno della tua panchina.",
pt: "Uma vez durante o seu turno, você poderá trocar o seu Pokémon Ativo por 1 dos seus Pokémon no Banco."
}
}],
attacks: [{
cost: ["Darkness", "Colorless"],
name: {
en: "Nightmare",
fr: "Cauchemar",
es: "Pesadilla",
it: "Incubo",
pt: "Pesadelo"
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido."
},
damage: 100
}],
retreat: 1,
regulationMark: "G"
}
export default card