1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

114 lines
2.0 KiB
TypeScript

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: "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",
fr: "https://assets.tcgdex.net/fr/dp/dp7/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/24/high",
fr: "https://assets.tcgdex.net/fr/dp/dp7/24/high",
},
},
evolveFrom: {
en: "Shelgon",
fr: "Drackhaus",
},
tags: [
Tag.STAGE2,
],
illustrator: "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