mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
107 lines
1.7 KiB
TypeScript
107 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: "sm1-26",
|
||
localId: 26,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Incineroar",
|
||
fr: "Félinferno",
|
||
},
|
||
|
||
hp: 160,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 727,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm1/26/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm1/26/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm1/26/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm1/26/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Torracat",
|
||
fr: "Matoufeu",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 67,
|
||
name: "Hitoshi Ariga"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Fire Fang",
|
||
fr: "Crocs Feu",
|
||
},
|
||
text: {
|
||
en: "Your opponent's Active Pokémon is now Burned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Darkest Lariat",
|
||
fr: "Dark Lariat",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. This attack does 100 damage for each heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 100 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 100
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sun & Moon",
|
||
code: "sm1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|