mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 20:32:03 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
61
data/Sword & Shield/Crown Zenith/030.ts
Normal file
61
data/Sword & Shield/Crown Zenith/030.ts
Normal file
@@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Galarian Mr. Mime",
|
||||
fr: "M. Mime de Galar",
|
||||
es: "Mr. Mime de Galar",
|
||||
it: "Mr. Mime di Galar",
|
||||
pt: "Mr. Mime de Galar",
|
||||
de: "Galar-Pantimos"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Pound",
|
||||
fr: "Écras'Face",
|
||||
es: "Destructor",
|
||||
it: "Botta",
|
||||
pt: "Pancada",
|
||||
de: "Klaps"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Find It",
|
||||
fr: "Trifouiller",
|
||||
es: "Busca",
|
||||
it: "Cercatrova",
|
||||
pt: "Encontrar",
|
||||
de: "Aufspüren"
|
||||
},
|
||||
|
||||
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."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user