1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
TCGdex [Bot] e36865e971
editor: fix temporal forces variants (#515)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:57 +02:00

59 lines
855 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
dexId: [749],
set: Set,
name: {
en: "Mudbray",
fr: "Tiboudet",
es: "Mudbray",
it: "Mudbray",
pt: "Mudbray",
de: "Pampuli"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Smash Kick",
fr: "Coud'Pattes",
es: "Patada Destrucción",
it: "Calcio Esplosivo",
pt: "Chute Poderoso",
de: "Schmetterkick"
},
damage: 10
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Mud-Slap",
fr: "Coud'Boue",
es: "Bofetón Lodo",
it: "Fangosberla",
pt: "Tapa de Lama",
de: "Lehmschelle"
},
damage: 50
}],
retreat: 2,
regulationMark: "H",
variants: {
holo: false
}
}
export default card