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

74 lines
1.2 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 '../Promos'
const card: Card = {
name: {
en: "Marshadow",
fr: "Marshadow",
},
illustrator: "Emi Ando",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
802,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Let Loose",
fr: "Libérer",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may have each player shuffle their hand into their deck and draw 4 cards.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez demander à tous les joueurs de mélanger leur main avec leur deck et de piocher 4 cartes.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Shadow Punch",
fr: "Poing Ombre",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card