import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Dialga ex" }, illustrator: "N-DESIGN Inc.", rarity: "Three Star", category: "Pokemon", hp: 150, types: ["Metal"], stage: "Basic", suffix: "EX", attacks: [{ name: { en: "Metallic Turbo" }, damage: 30, cost: ["Metal", "Metal"], effect: { en: "Take 2 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