mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
65
data/Scarlet & Violet/Paldean Fates/216.ts
Normal file
65
data/Scarlet & Violet/Paldean Fates/216.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew ex",
|
||||
fr: "Mew-ex",
|
||||
es: "Mew ex",
|
||||
it: "Mew-ex",
|
||||
pt: "Mew ex"
|
||||
},
|
||||
|
||||
rarity: "Shiny Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Restart",
|
||||
fr: "Nouveau Départ",
|
||||
es: "Reinicio",
|
||||
it: "Riavvio",
|
||||
pt: "Recomeçar"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may draw cards until you have 3 cards in your hand.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir 3 en main.",
|
||||
es: "Una vez durante tu turno, puedes robar cartas hasta que tengas 3 cartas en tu mano.",
|
||||
it: "Una sola volta durante il tuo turno, puoi pescare fino ad avere tre carte in mano.",
|
||||
pt: "Uma vez durante o seu turno, você poderá comprar cartas até ter 3 cartas na sua mão."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Genome Hacking",
|
||||
fr: "Piratage de Génome",
|
||||
es: "Hackeo Genoma",
|
||||
it: "Hacking del Genoma",
|
||||
pt: "Hackear Genoma"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.",
|
||||
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
|
||||
es: "Elige uno de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.",
|
||||
it: "Scegli un attacco del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
|
||||
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user