1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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,39 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Meltan",
fr: "Meltan",
es: "Meltan",
it: "Meltan",
pt: "Meltan"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Metal", "Metal"],
name: {
en: "Headbutt",
fr: "Coup d'Boule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada"
},
damage: 50
}],
retreat: 3,
regulationMark: "H"
}
export default card