mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
75 lines
1.3 KiB
TypeScript
75 lines
1.3 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: "dv1-19",
|
|
localId: 19,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "First Ticket",
|
|
fr: "Ticket Prioritaire",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/bw/dv1/19/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/bw/dv1/19/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/bw/dv1/19/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/bw/dv1/19/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.ITEM,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 4,
|
|
name: "5ban Graphics"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {},
|
|
text: {
|
|
fr: "Avant de lancer une pièce pour décider qui joue en premier, vous pouvez jouer cette carte. Le lancer de pièce n'a pas lieu, et vous jouez en premier. Si les 2 joueurs jouent Ticket Prioritaire, procédez au lancer de pièce. (Vous ne pouvez jouer qu'un seul Ticket Prioritaire avant le lancer de pièce.)",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Dragon Vault",
|
|
code: "dv1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|