mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
106 lines
2.0 KiB
TypeScript
106 lines
2.0 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "pl1-122",
|
||
localId: 122,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Dialga G",
|
||
fr: "Dialga ",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 483,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl1/122/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl1/122/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl1/122/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl1/122/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.LEVELUP,
|
||
Tag.SP,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 9,
|
||
name: "Mitsuhiro Arita"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 338,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Time Crystal",
|
||
fr: "Crystal temporel",
|
||
},
|
||
text: {
|
||
en: "Each Pokémon (both yours and your opponent's) (excluding Pokémon SP) can't use any Poké-Bodies.",
|
||
fr: "Chaque Pokémon (les vôtres et ceux de votre adversaire) (Pokémon SP exclus) ne peut pas utiliser de Poké-Bodies.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.METAL,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Remove Lost",
|
||
fr: "Retire-perte",
|
||
},
|
||
text: {
|
||
en: "Flip a coin until you get tails. For each heads, remove an Energy card attached to the Defending Pokémon and put it in the Lost Zone.",
|
||
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Pour chaque face, retirez au Pokémon Défenseur une carte Énergie et placez-la dans la Zone Perdue.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RareHoloLvX,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Platinum",
|
||
code: "pl1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|