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

79 lines
1.2 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: "Mudsdale",
fr: "Bourrinos",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
750,
],
hp: 140,
types: [
"Fightning",
],
evolveFrom: {
en: "Mudbray",
fr: "Tiboudet",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Enhanced Stomp",
fr: "Piétinement Amélioré",
},
effect: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 60 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "High Horsepower",
fr: "Cavalerie Lourde",
},
effect: {
en: "This Pokémon does 40 damage to itself.",
fr: "Ce Pokémon sinflige 40 dégâts.",
},
damage: 180,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card