1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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/sm3/151.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: "sm3-151",
localId: 151,
// Card informations
name: {
en: "Salazzle-GX",
fr: "Malamandre-GX",
},
hp: 200,
type: [
Type.FIRE,
],
dexId: 758,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/151/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/151/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/151/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/151/high.png",
},
},
evolveFrom: {
en: "Salandit",
fr: "Tritox",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Diabolical Claws",
fr: "Griffes Diaboliques",
},
text: {
en: "This attack does 50 damage for each Prize card you have taken.",
fr: "Cette attaque inflige 50 dégâts pour chaque carte Récompense que vous avez récupérée.",
},
damage: 50
},{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
},
damage: 110
},{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Queen's Haze-GX",
fr: "Brume de Reine-GX",
},
text: {
en: "Discard all Energy from your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez toute lÉnergie du Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card