mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
68 lines
866 B
TypeScript
68 lines
866 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Steam Siege'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Talonflame BREAK",
|
|
fr: "Flambusard TURBO",
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
663,
|
|
],
|
|
|
|
hp: 170,
|
|
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Talonflame",
|
|
fr: "Flambusard",
|
|
},
|
|
|
|
stage: "BREAK",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Flare Blitz",
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
effect: {
|
|
en: "Discard all Fire Energy attached to this Pokémon.",
|
|
},
|
|
damage: 150,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
],
|
|
name: {
|
|
fr: "Boutefeu",
|
|
},
|
|
effect: {
|
|
fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.",
|
|
},
|
|
damage: 150,
|
|
|
|
},
|
|
],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|