mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
103 lines
1.7 KiB
TypeScript
103 lines
1.7 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: "sm6-13",
|
||
localId: 13,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Heatran",
|
||
fr: "Heatran",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 485,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm6/13/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm6/13/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm6/13/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm6/13/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 61,
|
||
name: "tetsuya koizumi"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Guard Press",
|
||
fr: "Pression de Garde",
|
||
},
|
||
text: {
|
||
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Boiling Impact",
|
||
fr: "Impact Bouillonnant",
|
||
},
|
||
text: {
|
||
en: "Discard 2 Energy from this Pokémon.",
|
||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||
},
|
||
damage: 130
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Forbidden Light",
|
||
code: "sm6"
|
||
}
|
||
}
|
||
|
||
export default card
|