1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

105
cards/pl/pl1/122.ts Normal file
View File

@ -0,0 +1,105 @@
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