1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00

59 lines
914 B
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",
},
illustrator: "Daisuke Iwamoto",
rarity: "Rare",
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",
},
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.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 3,
}
export default card