1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

76 lines
946 B
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 '../Emerald'
const card: Card = {
name: {
en: "Marshtomp",
fr: "Flobio",
de: "Moorabbel"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
259,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Mudkip",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Super Hypno Wave",
fr: "Super hypnovague",
de: "Super Hypno Wave"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "The Defending Pokémon is now Asleep."
},
damage: 10,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
de: "Surf"
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card