1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 21:09:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Mythical Island/031.ts
2025-02-19 21:52:42 +01:00

45 lines
637 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Mew"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
en: "Because it can use all kinds of moves, many scientists believe Mew to be the ancestor of Pokémon."
},
stage: "Basic",
attacks: [{
name: {
en: "Psy Report"
},
damage: 20,
cost: ["Psychic"],
effect: {
en: "Your opponent reveals their hand."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1,
rarity: "Three Diamond"
}
export default card