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

34 lines
478 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Mr. Mime"
},
category: "Pokemon",
hp: 80,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
en: "Barrier Attack"
},
effect: {
en: "During your opponent's next turn, this Pokémon takes -20 damage from attacks."
},
damage: "30"
}],
retreat: 1,
rarity: "None"
}
export default card