1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

47 lines
754 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Dialga ex"
},
illustrator: "PLANETA CG Works",
rarity: "Crown",
category: "Pokemon",
hp: 150,
types: ["Metal"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Metallic Turbo"
},
damage: 30,
cost: ["Metal", "Metal"],
effect: {
en: "Take 2 <span class=\"energy-text energy-text--type-metal\"></span> Energy from your Energy Zone and attach it to 1 of your Benched Pokémon."
}
}, {
name: {
en: "Heavy Impact"
},
damage: 100,
cost: ["Metal", "Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card