mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
51
data/Scarlet & Violet/Temporal Forces/083.ts
Normal file
51
data/Scarlet & Violet/Temporal Forces/083.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Medicham",
|
||||
fr: "Charmina",
|
||||
es: "Medicham",
|
||||
it: "Medicham",
|
||||
pt: "Medicham"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Low Sweep",
|
||||
fr: "Balayette",
|
||||
es: "Puntapié",
|
||||
it: "Calciobasso",
|
||||
pt: "Movimento Baixo"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "High Jump Kick",
|
||||
fr: "Pied Voltige",
|
||||
es: "Patada Salto Alta",
|
||||
it: "Calcinvolo",
|
||||
pt: "Chute de Pulo Alto"
|
||||
},
|
||||
|
||||
damage: 110
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user