1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,78 @@
import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Dialga G",
fr: "Dialga ",
},
illustrator: "Yusuke Ishikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
483,
],
hp: 100,
types: [
"Metal",
],
stage: "Basic",
suffix: "SP",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Deafen",
fr: "Rendre sourd",
},
effect: {
en: "Your opponent can't play any Trainer cards or Stadium cards from his or her hand during your opponent's next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Dresseur ou Stade de sa main lors de son prochain tour.",
},
damage: 10,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Second Strike",
fr: "Deuxième coup",
},
effect: {
en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 50 damage plus 20 more damage.",
fr: "Si le Pokémon Défenseur possède déjà au moins 2 marqueurs de dégât, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card