1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Talonflame",
fr: "Flambusard",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
663,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Fletchinder",
fr: "Braisillon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flame Charge",
fr: "Nitrocharge",
},
effect: {
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez une carte Énergie Fire dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Loop-the-Loop",
fr: "Looping",
},
effect: {
en: "Put all Energy attached to this Pokémon into your hand.",
fr: "Placez toutes les Énergies attachées à ce Pokémon dans votre main.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card