1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Khaleeq Ahmad dc51d5e8a8
Fix: A2b Shining Revelry attack amendments (#698)
* Fix: Shining Revelry - Add missing attack damage symbols

* Fix: Shining Revelry - Add missing energy symbols to attack effects

* Fix: Shining Revelry set setails- add foreign language names and update card counts

---------

Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-04-30 09:54:55 +02:00

44 lines
710 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shining Revelry"
const card: Card = {
set: Set,
name: {
en: "Mr. Mime"
},
illustrator: "Atsuko Nishida",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming."
},
stage: "Basic",
attacks: [{
name: {
en: "Juggling"
},
damage: "20x",
cost: ["Psychic", "Colorless"],
effect: {
en: "Flip 4 coins. This attack does 20 damage for each heads."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card