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:
59
data/Scarlet & Violet/Temporal Forces/129.ts
Normal file
59
data/Scarlet & Violet/Temporal Forces/129.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dudunsparce",
|
||||
fr: "Deusolourdo",
|
||||
es: "Dudunsparce",
|
||||
it: "Dudunsparce",
|
||||
pt: "Dudunsparce"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Colorless"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Run Away Draw",
|
||||
fr: "Pioche Fuyante",
|
||||
es: "Robo a la Fuga",
|
||||
it: "Pesca Fugafacile",
|
||||
pt: "Comprar e Dar no Pé"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may draw 3 cards. If you drew any cards in this way, shuffle this Pokémon and all attached cards into your deck.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez piocher 3 cartes. Si vous piochez au moins une carte de cette façon, mélangez avec votre deck ce Pokémon et toutes les cartes qui lui sont attachées.",
|
||||
es: "Una vez durante tu turno, puedes robar 3 cartas. Si has robado alguna carta de esta manera, pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.",
|
||||
it: "Una sola volta durante il tuo turno, puoi pescare tre carte. Se hai pescato delle carte in questo modo, rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
|
||||
pt: "Uma vez durante o seu turno, você poderá comprar 3 cartas. Se você comprou qualquer carta desta forma, embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Land Crush",
|
||||
fr: "Écras'Terre",
|
||||
es: "Aterrizaje",
|
||||
it: "Schiacciaterra",
|
||||
pt: "Aperto de Terra"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user