1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Mudbray",
fr: "Tiboudet",
es: "Mudbray",
it: "Mudbray",
pt: "Mudbray"
},
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"
},
damage: 10
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Mud-Slap",
fr: "Coud'Boue",
es: "Bofetón Lodo",
it: "Fangosberla",
pt: "Tapa de Lama"
},
damage: 50
}],
retreat: 2,
regulationMark: "H"
}
export default card