mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
75 lines
1.2 KiB
TypeScript
75 lines
1.2 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: "dp4-102",
|
|
localId: 102,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Rare Candy",
|
|
fr: "Super bonbon",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/102/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/102/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/102/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/102/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.ITEM,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 1,
|
|
name: "Ryo Ueda"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {},
|
|
text: {
|
|
fr: "Choisissez 1 de vos Pokémon de base en jeu. Si vous possédez dans votre main une carte Niveau 1 ou Niveau 2 qui évolue de ce Pokémon, placez-la sur le Pokémon de base. (Vous le faites ainsi évoluer.)",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Great Encounters",
|
|
code: "dp4"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|