1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

40 lines
587 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Meowth"
},
illustrator: "sui",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
en: "It's accustomed to luxury because it used to live with Alolan royalty. As a result, it's very picky about food."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 20,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card