mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
108
cards/xy/xy4/10.ts
Normal file
108
cards/xy/xy4/10.ts
Normal file
@ -0,0 +1,108 @@
|
||||
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: "xy4-10",
|
||||
localId: 10,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Talonflame",
|
||||
fr: "Flambusard",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 663,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy4/10/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy4/10/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy4/10/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy4/10/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Fletchinder",
|
||||
fr: "Braisillon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Acrobatics",
|
||||
fr: "Acrobatie",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 30 more damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Jet Shoot",
|
||||
fr: "Coup Éclair",
|
||||
},
|
||||
text: {
|
||||
en: "During your opponent's next turn, any damage done to this Pokémon by attacks is increased by 40 (after applying Weakness and Resistance).",
|
||||
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont augmentés de 40 (après application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Phantom Forces",
|
||||
code: "xy4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user