1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

96 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Triumphant'
const card: Card = {
name: {
en: "Palkia & Dialga LEGEND",
fr: "Palkia & Dialga LÉGENDE",
},
illustrator: "Shinji Higuchi + Sachiko Eba/樋口真嗣+江場左知子",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
483,
],
types: [
"Water",
"Metal",
],
suffix: "Legend",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Sudden Delete",
fr: "Disparition soudaine",
},
effect: {
en: "Choose 1 of your opponents Benched Pokémon. Put that Pokémon and all cards attached to it back into your opponents hand.",
fr: "Choisissez lun des Pokémon de Banc de votre adversaire. Remettez ce Pokémon et toutes les cartes qui lui sont attachées dans la main de votre adversaire.",
},
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Time Control",
fr: "Contrôle temporel",
},
effect: {
en: "Discard all Metal Energy attached to Palkia & Dialga LEGEND. Add the top 2 cards of your opponents deck to his or her Prize cards.",
fr: "Défaussez toutes les cartes Énergie Metal attachées à Palkia & Dialga LÉGENDE. Ajoutez les 2 cartes du dessus du deck de votre adversaire à ses cartes Récompense.",
},
},
{
name: {
fr: "",
},
effect: {
fr: "Vous ne pouvez placer cette carte sur votre Banc que si vous placez en même temps lautre moitié de Palkia & Dialga LÉGENDE.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
stage: "Basic",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
hp: 160
}
export default card