mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [52],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Miaouss",
|
|
en: "Meowth",
|
|
es: "Meowth",
|
|
it: "Meowth",
|
|
pt: "Meowth",
|
|
de: "Mauzi"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Miaou Vas-Tu ?",
|
|
en: "Come Here Right Meow",
|
|
es: "Ven Aquí Ya",
|
|
it: "Gatto nel Sacco",
|
|
pt: "Miaujude Aqui",
|
|
de: "Miau, komm her"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Lancez une pièce. Si c'est face, envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif.",
|
|
en: "Flip a coin. If heads, switch in 1 of your opponent's Benched Pokémon to the Active Spot.",
|
|
es: "Lanza 1 moneda. Si sale cara, cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.",
|
|
it: "Lancia una moneta. Se esce testa, sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva.",
|
|
pt: "Jogue uma moeda. Se sair cara, mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.",
|
|
de: "Wirf 1 Münze. Wechsle bei Kopf 1 Pokémon von der Bank deines Gegners in die Aktive Position ein."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Creusogriffes",
|
|
en: "Dig Claws",
|
|
es: "Hundir Garras",
|
|
it: "Scavazanne",
|
|
pt: "Fincar Garras",
|
|
de: "Schaufelkrallen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |