1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Palkia",
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
484,
],
hp: 120,
types: [
"Water",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Restructure",
},
effect: {
en: "Once during your turn (before your attack), you may have your opponent switch 1 of your Active Pokémon with 1 of your Benched Pokémon. Then, you switch 1 of the Defending Pokémon with 1 of your opponent's Benched Pokémon. This power can't be used if Palkia is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Hydro Reflect",
},
effect: {
en: "You may move all Energy cards attached to Palkia to your Benched Pokémon in any way you like. (Ignore this effect if you don't have any Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card