1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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,65 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Wiglett",
fr: "Taupikeau",
es: "Wiglett",
it: "Wiglett",
pt: "Wiglett"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Lucky Find",
fr: "Trouvaille Inespérée",
es: "Hallazgo Afortunado",
it: "Ritrovamento Fortunato",
pt: "Descoberta Sortuda"
},
effect: {
en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck une carte Objet, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Objeto, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo una carta Strumento, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por uma carta de Item no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho."
}
}, {
cost: ["Water", "Water"],
name: {
en: "Aqua Bomb",
fr: "Aqua Bombe",
es: "Bomba de Agua",
it: "Acquabomba",
pt: "Bomba Aquática"
},
effect: {
en: "This Pokémon also does 20 damage to itself.",
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo."
},
damage: 40
}],
retreat: 1,
regulationMark: "H"
}
export default card