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

53 lines
757 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 '../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,
],
hp: 160,
types: [
"Water",
"Metal",
],
suffix: "Legend",
attacks: [
{
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.",
},
},
],
stage: "Basic",
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card