mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
96 lines
2.1 KiB
TypeScript
96 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galarian Mr. Mime",
|
||
fr: "M. Mime de Galar",
|
||
es: "Mr. Mime de Galar",
|
||
it: "Mr. Mime di Galar",
|
||
pt: "Mr. Mime de Galar",
|
||
de: "Galar-Pantimos"
|
||
},
|
||
|
||
illustrator: "kirisAki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Icy Wind",
|
||
fr: "Vent Glace",
|
||
es: "Viento Hielo",
|
||
it: "Ventogelato",
|
||
pt: "Vento Congelante",
|
||
de: "Eissturm"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Triple Spin",
|
||
fr: "Triple Tour",
|
||
es: "Triple Giro",
|
||
it: "Triploturbo",
|
||
pt: "Giro Triplo",
|
||
de: "Dreifachdreher"
|
||
},
|
||
effect: {
|
||
en: "Flip 3 coins. This attack does 20 damage for each heads.",
|
||
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.",
|
||
es: "Lanza 3 monedas. Este ataque hace 20 puntos de daño por cada cara.",
|
||
it: "Lancia tre volte una moneta. Questo attacco infligge 20 danni ogni volta che esce testa.",
|
||
pt: "Jogue 3 moedas. Este ataque causa 20 pontos de dano para cada cara.",
|
||
de: "Wirf 3 Münzen. Diese Attacke fügt 20 Schadenspunkte pro Kopf zu."
|
||
},
|
||
damage: "20×",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 80,
|
||
types: ["Water"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Its talent is tap-dancing. It can also manipulate temperatures to create a floor of ice, which this Pokémon can kick up to use as a barrier."
|
||
}
|
||
}
|
||
|
||
export default card
|