1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

108 lines
1.8 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-23",
localId: 23,
// Card informations
name: {
en: "Dialga",
fr: "Dialga",
},
hp: 100,
type: [
Type.METAL,
],
dexId: 483,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/23/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/23/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/23/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/23/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 44,
name: "Kent Kanetsuna"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Energy Stream",
fr: "Courant d'énergie",
},
text: {
en: "Flip a coin. If heads, search your discard pile for a basic Energy card and attach it to Dialga.",
fr: "Lancez une pièce. Si c'est face, choisissez dans votre pile de défausse une carte Énergie de base et attachez-la à Dialga.",
},
damage: 20
},{
cost: [
Type.METAL,
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Diamond Blow",
fr: "Coup diamant",
},
text: {
en: "Dialga can't attack during your next turn.",
fr: "Dialga ne peut pas attaquer lors de votre prochain tour.",
},
damage: 100
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card