mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Origin Forme Palkia V",
|
|
fr: "Palkia Originel V",
|
|
es: "Palkia Origen V",
|
|
it: "Palkia Originale V",
|
|
pt: "Palkia Forma Origem V",
|
|
de: "Ur-Palkia V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 220,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Rule the Region",
|
|
fr: "Autorité Régionale",
|
|
es: "Dominio de la Región",
|
|
it: "Governa la Regione",
|
|
pt: "Dominar a Região",
|
|
de: "Herrscher der Region"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for a Stadium card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck une carte Stade, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja 1 carta de Estadio, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo una carta Stadio, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por 1 carta de Estádio no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach 1 Stadionkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Hydro Break",
|
|
fr: "Hydro-Brèche",
|
|
es: "Hidrodescanso",
|
|
it: "Idropausa",
|
|
pt: "Pausa Aquática",
|
|
de: "Hydrobrecher"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 200
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |