mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
66 lines
1.1 KiB
TypeScript
66 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [258],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mudkip",
|
|
fr: "Gobou",
|
|
es: "Mudkip",
|
|
it: "Mudkip",
|
|
pt: "Mudkip",
|
|
de: "Hydropi"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "KIYOTAKA OSHIYAMA",
|
|
|
|
description: {
|
|
en: "To alert it, the fin on its head senses the flow of water. It has the strength to heft boulders."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Mud-Slap",
|
|
fr: "Coud'Boue",
|
|
de: "Lehmschelle",
|
|
es: "Bofetón Lodo",
|
|
pt: "Tapa de Lama",
|
|
it: "Fangosberla"
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Playful Kick",
|
|
fr: "Coup de Pied de Garnement",
|
|
de: "Verspielter Kick",
|
|
es: "Patada Juguetona",
|
|
pt: "Chute Brincalhão",
|
|
it: "Calcio Briccone"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |