1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

76 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Promos'
const card: Card = {
name: {
en: "Marshadow",
fr: "Marshadow",
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
802,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Shadowy Echoes",
fr: "Échos Obscurs",
},
effect: {
en: "Put a Basic Pokémon from each player's discard pile onto its owner's Bench.",
fr: "Prenez un Pokémon de base dans la pile de défausse de chaque joueur et placez-le sur son Banc.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Surprise Attack",
fr: "Attaque Surprise",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card