mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* feat: TCG Pocket A2b Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
44 lines
707 B
TypeScript
44 lines
707 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: 20,
|
|
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 |