1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

115 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm7-153",
localId: 153,
// Card informations
name: {
en: "Blaziken-GX",
fr: "Braségali-GX",
},
hp: 240,
type: [
Type.FIRE,
],
dexId: 257,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/153/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/153/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/153/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/153/high.png",
},
},
evolveFrom: {
en: "Combusken",
fr: "Galifeu",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 60
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Explosive Kick",
fr: "Coup de Pied Explosif",
},
text: {
en: "Discard 2 Fire Energy from this Pokémon.",
fr: "Défaussez 2 Énergies Fire de ce Pokémon.",
},
damage: 210
},{
cost: [
Type.FIRE
],
name: {
en: "Blaze Out-GX",
fr: "Embrasement-GX",
},
text: {
en: "Discard 2 Energy from your opponent's Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez 2 Énergies des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card