mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
79 lines
1.4 KiB
TypeScript
79 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Platinum'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Palkia G",
|
||
fr: "Palkia ",
|
||
de: "Palkia G"
|
||
},
|
||
illustrator: "Yusuke Ishikawa",
|
||
rarity: "Rare Holo",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
484,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
suffix: "SP",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Splashing Turn",
|
||
fr: "Tour éclaboussant",
|
||
de: "Splashing Turn"
|
||
},
|
||
effect: {
|
||
en: "You may switch Palkia with 1 of your Benched Pokémon.",
|
||
fr: "Vous pouvez échanger Palkia avec 1 de vos Pokémon de Banc.",
|
||
de: "You may switch Palkia G with 1 of your Benched Pokémon."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pearl Breath",
|
||
fr: "Haleine de perle",
|
||
de: "Pearl Breath"
|
||
},
|
||
effect: {
|
||
en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).",
|
||
de: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|