mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
81 lines
1.4 KiB
TypeScript
81 lines
1.4 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: "dc1-24",
|
|
localId: 24,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Magma Pointer",
|
|
fr: "Pointeur Magma",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/dc1/24/low",
|
|
fr: "https://assets.tcgdex.net/fr/xy/dc1/24/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/dc1/24/high",
|
|
fr: "https://assets.tcgdex.net/fr/xy/dc1/24/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.TOOL,
|
|
],
|
|
|
|
illustrator: "Toyste Beach",
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {},
|
|
text: {
|
|
fr: "Le Pokémon de la Team Magma auquel cette carte est attachée peut aussi utiliser l'attaque sur cette carte. (Vous avez toujours besoin de l'Énergie nécessaire pour utiliser cette attaque.)",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING
|
|
],
|
|
name: {
|
|
fr: "Pointeur Magma",
|
|
},
|
|
text: {
|
|
fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Double Crisis",
|
|
code: "dc1"
|
|
}
|
|
}
|
|
|
|
export default card
|