mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
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 |