mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +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-102",
|
|
localId: 102,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Robo Substitute Team Flare Gear",
|
|
fr: "Leurre Matos Team Flare",
|
|
},
|
|
|
|
hp: 30,
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy4/102/low",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy4/102/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy4/102/high",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy4/102/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.ITEM,
|
|
],
|
|
|
|
illustrator: "Toyste Beach",
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {},
|
|
text: {
|
|
fr: "Jouez cette carte comme si c'était un Pokémon Colorless de base avec 30 PV. N'importe quand pendant votre tour (avant votre attaque), vous pouvez défausser cette carte du jeu. Cette carte ne peut pas battre en retraite. Si cette carte est mise K.O., votre adversaire ne peut pas récupérer de carte Récompense pour cette carte.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Phantom Forces",
|
|
code: "xy4"
|
|
}
|
|
}
|
|
|
|
export default card
|