1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

84 lines
1.7 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: "pl2-95",
localId: 95,
// Card informations
name: {
en: "Team Galactic's Invention G-107 Technical Machine",
fr: "Machine Technique Invention G-107 de Team Galaxie",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/95/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/95/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/95/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/95/high",
},
},
evolveFrom: {},
tags: [
Tag.TECHNICALMACHINE,
Tag.SP,
],
illustrator: "Makoto Imai",
attacks: [{
name: {},
text: {
fr: "Attachez cette carte à 1 de vos Pokémon SP en jeu. Celui-ci peut utiliser l'attaque de cette carte à la place de la sienne. Lorsque le Pokémon auquel cette carte est attachée n'est plus un Pokémon SP, défaussez cette carte.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Porteur de dégâts",
},
text: {
fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur le Pokémon auquel cette carte est attachée. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).",
},
}],
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card