mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 07:12:08 +00:00
105 lines
1.5 KiB
TypeScript
105 lines
1.5 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: "bw1-19",
|
||
localId: 19,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Emboar",
|
||
fr: "Roitiflam",
|
||
},
|
||
|
||
hp: 150,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 500,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/19/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/19/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/19/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/19/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Pignite",
|
||
fr: "Grotichon",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Heat Crash",
|
||
fr: "Tacle Feu",
|
||
},
|
||
damage: 50
|
||
},{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flare Blitz",
|
||
fr: "Boutefeu",
|
||
},
|
||
text: {
|
||
en: "Discard all Fire Energy attached to this Pokémon.",
|
||
fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.",
|
||
},
|
||
damage: 150
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Black & White",
|
||
code: "bw1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|