1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

64 lines
760 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 '../Call of Legends'
const card: Card = {
name: {
en: "Dialga",
fr: "Dialga",
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
483,
],
hp: 100,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
"Metal",
"Metal",
"Metal",
],
name: {
en: "Time Rewind",
fr: "Retour temporel",
},
effect: {
en: "Shuffle your hand into your deck.",
fr: "Mélangez votre main avec votre deck.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card