1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

69 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Call of Legends'
const card: Card = {
name: {
en: "Mr. Mime",
fr: "M. Mime",
},
illustrator: "Noriko Hotta",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
122,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Trick Reveal",
fr: "Ruse dévoilée",
},
effect: {
en: "Once during your turn (before your attack), you may have both you and your opponent reveal your hands. This power can't be used if Mr. Mime is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez choisir de révéler votre main à votre adversaire et de voir la sienne. Ce pouvoir ne peut pas être utilisé si M. Mime est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Juggling",
fr: "Jonglerie",
},
effect: {
en: "Flip 4 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card