1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

66 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Galarian Mr. Rime",
fr: "M. Glaquette de Galar"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Galarian Mr. Mime",
fr: "M. Mime de Galar"
},
abilities: [
{
type: "Ability",
name: {
en: "Screen Cleaner",
fr: "Brise-Barrière"
},
effect: {
en: "Prevent all effects of your opponent's attacks, except damage, done to all of your Pokémon that have Energy attached. (Existing effects are not removed.)",
fr: "Évitez tous les effets des attaques de votre adversaire, excepté les dégâts, infligés à tous vos Pokémon auxquels de lÉnergie est attachée. (Les effets déjà en action ne sont pas retirés.)"
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Triple Spin",
fr: "Triple Tour"
},
effect: {
en: "Flip 3 coins. This attack does 50 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 50 dégâts pour chaque côté face."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
hp: 110,
types: ["Water"]
}
export default card