1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

74 lines
1.5 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Marshadow",
fr: "Marshadow",
es: "Marshadow",
it: "Marshadow",
pt: "Marshadow",
de: "Marshadow"
},
illustrator: "0313",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
802,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Shadow Imitation",
fr: "Ombre Imitante",
es: "Imitación Sombría",
it: "Imitazione dOmbra",
pt: "Imitação das Sombras",
de: "Schattenimitation"
},
effect: {
en: "Choose 1 of your opponents Active Pokémons non-GX attacks and use it as this attack.",
fr: "Choisissez lune des attaques non GX du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
es: "Elige 1 de los ataques no GX del Pokémon Activo de tu rival y úsalo para este ataque.",
it: "Scegli un attacco non GX del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente que não seja um ataque GX e use-o como este ataque.",
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners, die keine GX-Attacke ist, und setze sie als diese Attacke ein."
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card