mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 02:07:50 +00:00
94 lines
1.8 KiB
TypeScript
94 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Majestic Dawn'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dialga",
|
|
fr: "Dialga",
|
|
de: "Dialga"
|
|
},
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
483,
|
|
],
|
|
hp: 100,
|
|
types: [
|
|
"Metal",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
item: {
|
|
name: {
|
|
fr: "Orbe Adamant",
|
|
de: 'Adamant-Orb'
|
|
},
|
|
effect: {
|
|
fr: "Si un Pokémon Actif possède une Faiblesse au type Metal, les attaques de Dialga infligent 20 dégâts supplémentaires à ce Pokémon (avant application de la Faiblesse et de la Résistance).",
|
|
de: 'Wenn ein Aktives Pokémon eine Schwäche gegen -Pokémon hat, fügen Dialgas Angriffe diesem Pokémon 20 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden).'
|
|
}
|
|
},
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
],
|
|
name: {
|
|
en: "Time Shift",
|
|
fr: "Modification temporelle",
|
|
de: 'Zeitverschiebung'
|
|
},
|
|
effect: {
|
|
en: "Draw cards until you have 6 cards in your hand.",
|
|
fr: "Piochez des cartes jusqu'à ce que vous ayez 6 cartes en main.",
|
|
de: 'Ziehe so viele Karten, bis du 6 Karten auf der Hand hast. '
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Metal",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Diamond Blast",
|
|
fr: "Explosion diamant",
|
|
de: 'Diamantschuss'
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 60 damage plus 20 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires.",
|
|
de: 'Wirf 1 Münze. Bei „Kopf“ fügt dieser Angriff 60 Schadenspunkte plus 20 weitere Schadenspunkte zu. '
|
|
},
|
|
damage: "60+",
|
|
|
|
}
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 3,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|