mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
118 lines
1.9 KiB
TypeScript
118 lines
1.9 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: "xy6-57",
|
||
localId: 57,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Salamence",
|
||
fr: "Drattak",
|
||
},
|
||
|
||
hp: 160,
|
||
|
||
type: [
|
||
Type.DRAGON,
|
||
],
|
||
|
||
dexId: 373,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy6/57/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy6/57/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy6/57/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy6/57/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Shelgon",
|
||
fr: "Drackhaus",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "TOKIYA",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE
|
||
],
|
||
name: {
|
||
en: "Shatter",
|
||
fr: "Fracas",
|
||
},
|
||
text: {
|
||
en: "Discard any Stadium card in play.",
|
||
fr: "Défaussez toute carte Stade en jeu.",
|
||
},
|
||
damage: 60
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Power Howl",
|
||
fr: "Hurlement Puissant",
|
||
},
|
||
text: {
|
||
en: "This attack does 20 damage times the number of cards in your opponent's hand.",
|
||
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de cartes dans la main de votre adversaire.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.WATER,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Steam Blast",
|
||
fr: "Geyser de Vapeur",
|
||
},
|
||
text: {
|
||
en: "Discard 3 Energy attached to this Pokémon.",
|
||
fr: "Défaussez 3 Énergies attachées à ce Pokémon.",
|
||
},
|
||
damage: 170
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FAIRY,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Roaring Skies",
|
||
code: "xy6"
|
||
}
|
||
}
|
||
|
||
export default card
|