1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00

92 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../SWSH Black Star Promos'
const card: Card = {
name: {
fr: "Miaouss V",
en: "Meowth V",
es: "Meowth V",
it: "Meowth V",
pt: "Meowth V",
de: "Mauzi V"
},
illustrator: "aky CG Works",
rarity: "None",
category: "Pokemon",
set: Set,
hp: 180,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
fr: "Jackpot",
en: "Pay Day",
es: "Día de Pago",
it: "Giornopaga",
pt: "Dia de Pagamento",
de: "Zahltag"
},
effect: {
fr: "Piochez une carte.",
en: "Draw a card.",
es: "Roba una carta.",
it: "Pesca una carta.",
pt: "Compre um card.",
de: "Ziehe 1 Karte."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
fr: "Griffe Taillante",
en: "Slashing Claw",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 130,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
dexId: [52],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D",
suffix: "V"
}
export default card