mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 10:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
47
data/Pokémon TCG Pocket/Space-Time Smackdown/204.ts
Normal file
47
data/Pokémon TCG Pocket/Space-Time Smackdown/204.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Palkia ex"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
rarity: "Three Star",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Slash"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Dimensional Storm"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Water", "Water", "Water", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard 3 <span class=\"energy-text energy-text--type-water\"></span> Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user