1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

99 lines
1.4 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: "xy11-21",
localId: 21,
// Card informations
name: {
en: "Talonflame BREAK",
fr: "Flambusard TURBO",
},
hp: 170,
type: [
Type.FIRE,
],
dexId: 663,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/21/low",
fr: "https://assets.tcgdex.net/fr/xy/xy11/21/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/21/high",
fr: "https://assets.tcgdex.net/fr/xy/xy11/21/high",
},
},
evolveFrom: {
en: "Talonflame",
fr: "Flambusard",
},
tags: [
Tag.BREAK,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Flare Blitz",
fr: "Règle des Évolutions TURBO",
},
text: {
en: "Discard all Fire Energy attached to this Pokémon.",
},
damage: 150
},{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
fr: "Boutefeu",
},
text: {
fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.",
},
damage: 150
}],
rarity: Rarity.RareBREAK,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card