1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00

62 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 '../Call of Legends'
const card: Card = {
name: {
en: "Palkia",
fr: "Palkia",
de: "Palkia"
},
illustrator: "Ayaka Yoshida",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
484,
],
hp: 100,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Water",
"Water",
"Water",
],
name: {
en: "Wormhole",
fr: "Trou de ver",
de: "Wurmloch"
},
effect: {
en: "Switch Palkia with 1 of your Benched Pokémon. Then, your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Échangez Palkia avec lun des Pokémon de votre Banc. Ensuite, votre adversaire échange le Pokémon Défenseur avec lun de ses Pokémon de Banc.",
de: "Tausche Palkia gegen 1 Pokémon auf deiner Bank aus. Danach tauscht dein Gegner das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 3,
}
export default card