mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
61
data/Sword & Shield/Silver Tempest/054.ts
Normal file
61
data/Sword & Shield/Silver Tempest/054.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Emolga",
|
||||
fr: "Emolga",
|
||||
es: "Emolga",
|
||||
it: "Emolga",
|
||||
pt: "Emolga",
|
||||
de: "Emolga"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Lucky Find",
|
||||
fr: "Trouvaille Inespérée",
|
||||
es: "Hallazgo Afortunado",
|
||||
it: "Ritrovamento Fortunato",
|
||||
pt: "Descoberta Sortuda",
|
||||
de: "Glücksfund"
|
||||
},
|
||||
|
||||
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 a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por 1 carta de Item no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach 1 Itemkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Static Shock",
|
||||
fr: "Choc Statique",
|
||||
es: "Impacto Estático",
|
||||
it: "Shock Statico",
|
||||
pt: "Choque de Estática",
|
||||
de: "Statischer Schock"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user