mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* 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>
53 lines
757 B
TypeScript
53 lines
757 B
TypeScript
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 l’autre moitié de Palkia & Dialga LÉGENDE.",
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
stage: "Basic",
|
||
retreat: 0,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|