mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
51
data/Scarlet & Violet/Temporal Forces/117.ts
Normal file
51
data/Scarlet & Violet/Temporal Forces/117.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Melmetal",
|
||||
fr: "Melmetal",
|
||||
es: "Melmetal",
|
||||
it: "Melmetal",
|
||||
pt: "Melmetal"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
fr: "Enfoncement",
|
||||
es: "Martillear",
|
||||
it: "Martello",
|
||||
pt: "Martelada"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}, {
|
||||
cost: ["Metal", "Metal", "Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Iron Bash",
|
||||
fr: "Coup de Fer",
|
||||
es: "Ferropuño",
|
||||
it: "Pugni Ferrei",
|
||||
pt: "Pancada de Ferro"
|
||||
},
|
||||
|
||||
damage: 230
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user