1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add Paradox Rift (#464)

This commit is contained in:
2024-01-03 03:34:52 +01:00
committed by GitHub
parent 7fe2f0283c
commit b333423c5d
267 changed files with 15494 additions and 5 deletions

View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Mienfoo",
fr: "Kungfouine",
es: "Mienfoo",
it: "Mienfoo",
pt: "Mienfoo",
de: "Lin-Fu"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Low Kick",
fr: "Balayage",
es: "Patada Baja",
it: "Colpo Basso",
pt: "Rasteira",
de: "Fußkick"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Beatdown",
fr: "Dérouillée",
es: "Derrumbar",
it: "Batosta",
pt: "Abater",
de: "Niederprügler"
},
damage: 20
}],
retreat: 1,
regulationMark: "G"
}
export default card