1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +00:00
2025-05-04 00:37:30 +02:00

55 lines
616 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Plusle)'
const card: Card = {
dexId: [52],
set: Set,
name: {
en: "Meowth"
},
illustrator: "Masakazu Fukuda",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Colorless",
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Collect"
},
effect: {
en: "Draw a card."
}
}, {
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Cat Kick"
},
damage: 20
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
retreat: 1,
}
export default card