mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
118 lines
2.1 KiB
TypeScript
118 lines
2.1 KiB
TypeScript
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: "dp7-24",
|
|
localId: 24,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Salamence",
|
|
fr: "Salamence",
|
|
},
|
|
|
|
hp: 140,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 373,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/24/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/24/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/24/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/24/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Shelgon",
|
|
fr: "Drackhaus",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 0,
|
|
name: "Kagemaru Himeno"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 1069,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Battle Rush",
|
|
fr: "Bataille précipitée",
|
|
},
|
|
text: {
|
|
en: "If your opponent has any Pokémon in play that has maximum HP of 120 or more, ignore all Colorless Energy necessary to use Salamence's attacks.",
|
|
fr: "Si votre adversaire possède des Pokémon en jeu avec un maximum de 120 PV ou plus, ignorez toutes les Énergies Colorless nécessaires pour utiliser les attaques de Drattak.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Combustion",
|
|
fr: "Fournaise",
|
|
},
|
|
damage: 50
|
|
},{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.WATER,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Steam Twister",
|
|
fr: "Tornade vapeur",
|
|
},
|
|
text: {
|
|
en: "Discard a Fire Energy and a Water Energy attached to Salamence.",
|
|
fr: "Défaussez une Énergie Fire et une Énergie Water attachée à Drattak.",
|
|
},
|
|
damage: 120
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.COLORLESS,
|
|
value: "+30"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.FIGHTING,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 3,
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Stormfront",
|
|
code: "dp7"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|