1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

112 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sma-SV73",
localId: "SV73",
// Card informations
name: {
en: "Kartana-GX",
fr: "Katagami-GX",
},
hp: 170,
type: [
Type.METAL,
],
dexId: 798,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sma/SV73/low",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV73/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sma/SV73/high",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV73/high",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: "5ban Graphics",
abilities: [{
id: 1200,
type: AbilityType.TALENT,
name: {
en: "Slice Off",
fr: "Trancher",
},
text: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard a Special Energy from 1 of your opponent's Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser une Énergie spéciale attachée à lun des Pokémon de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Gale Blade",
fr: "Lame Bourrasque",
},
text: {
en: "You may shuffle this Pokémon and all cards attached to it into your deck.",
fr: "Vous pouvez mélanger ce Pokémon et toutes les cartes qui lui sont attachées avec votre deck.",
},
damage: 70
},{
cost: [
Type.METAL
],
name: {
en: "Blade-GX",
fr: "Lame-GX",
},
text: {
en: "Take a Prize card. (You can't use more than 1 GX attack in a game.)",
fr: "Récupérez une carte Récompense. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Shiny Vault",
code: "sma"
}
}
export default card