mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
92 lines
1.2 KiB
TypeScript
92 lines
1.2 KiB
TypeScript
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: "Pay Day",
|
||
de: "Zahltag"
|
||
},
|
||
effect: {
|
||
fr: "Piochez une carte.",
|
||
en: "Draw a card.",
|
||
es: "Roba 1 carta.",
|
||
it: "Pesca una carta.",
|
||
pt: "Draw a 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: "Slashing Claw",
|
||
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
|