mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
47
data/Pokémon TCG Pocket/Space-Time Smackdown/205.ts
Normal file
47
data/Pokémon TCG Pocket/Space-Time Smackdown/205.ts
Normal file
@ -0,0 +1,47 @@
|
||||
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 <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
|
Reference in New Issue
Block a user