1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
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