1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

114
cards/sm/sm7/153.ts Normal file
View File

@ -0,0 +1,114 @@
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