mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
* fix: Add the two first sets Signed-off-by: Avior <github@avior.me> * fix: Add DP, DP Black Star and Mysterious Treasures Signed-off-by: Avior <github@avior.me>
84 lines
1.4 KiB
TypeScript
84 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Diamond & Pearl'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dialga",
|
|
fr: "Dialga",
|
|
},
|
|
|
|
illustrator: "Nakaoka",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
483,
|
|
],
|
|
|
|
hp: 90,
|
|
|
|
types: [
|
|
"Metal",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
],
|
|
name: {
|
|
en: "Time Bellow",
|
|
fr: "Appel temporel",
|
|
},
|
|
effect: {
|
|
en: "Draw a card.",
|
|
fr: "Piochez une carte.",
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Metal",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Flash Cannon",
|
|
fr: "Luminocanon",
|
|
},
|
|
effect: {
|
|
en: "You may return all Energy cards attached to Dialga to your hand. If you do, remove the highest Stage Evolution card from the Defending Pokémon and shuffle that card into your opponent's deck.",
|
|
fr: "Vous pouvez reprendre dans votre main toutes les cartes Énergie attachées à Dialga. Retirez alors au Pokémon Défenseur la carte Évolution au niveau le plus élevé et mélangez-la au deck de votre adversaire.",
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
description: {
|
|
fr: "Il peut contrôler le temps. Les mythes de Sinnoh en parlent comme d'une divinité ancienne."
|
|
}
|
|
}
|
|
|
|
export default card
|