1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

45 lines
790 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Marshadow"
},
illustrator: "kantaro",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
en: "It slips into the shadows of others and mimics their powers and movements. As it improves, it becomes stronger than those it's imitating."
},
stage: "Basic",
attacks: [{
name: {
en: "Revenge"
},
damage: "40+",
cost: ["Fighting", "Colorless"],
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage."
}
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1,
rarity: "Three Diamond"
}
export default card