mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
71 lines
1.3 KiB
TypeScript
71 lines
1.3 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "xy4-108",
|
|
localId: 108,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Trick Coin",
|
|
fr: "Pièce Faussée",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy4/108/low",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy4/108/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy4/108/high",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy4/108/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.TOOL,
|
|
],
|
|
|
|
illustrator: "Toyste Beach",
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {},
|
|
text: {
|
|
fr: "Une seule fois pendant votre tour, après avoir lancé des pièces pour une attaque du Pokémon auquel cette carte est attachée, vous pouvez ignorer les effets de ces lancers de pièce et lancer ces pièces à nouveau. (Vous ne pouvez utiliser des effets qui vous laissent lancer des pièces à nouveau, y compris les effets d'autres cartes, qu'une seule fois pendant votre tour.)",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Phantom Forces",
|
|
code: "xy4"
|
|
}
|
|
}
|
|
|
|
export default card
|