1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

35 lines
418 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Mew"
},
category: "Pokemon",
hp: 60,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Psy Report"
},
effect: {
en: "Your opponent reveals their hand."
},
damage: "20"
}],
retreat: 1,
rarity: "Three Star"
}
export default card