1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/sm/sm8/42.ts Normal file
View File

@ -0,0 +1,104 @@
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: "sm8-42",
localId: 42,
// Card informations
name: {
en: "Typhlosion",
fr: "Typhlosion",
},
hp: 160,
type: [
Type.FIRE,
],
dexId: 157,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/42/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/42/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/42/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/42/high.png",
},
},
evolveFrom: {
en: "Quilava",
fr: "Feurisson",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 1246,
type: AbilityType.TALENT,
name: {
en: "Blazing Energy",
fr: "Énergie Ardente",
},
text: {
en: "Once during your turn (before your attack), you may use this Ability. All Energy attached to your Pokémon are Fire Energy instead of their usual type until the end of your turn. (This includes cards that come into play on this turn.)",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez utiliser ce talent. Jusquà la fin de votre tour, toutes les Énergies attachées à vos Pokémon sont des Énergies Fire au lieu de leur type habituel. (Cela comprend les cartes qui sont mises en jeu pendant ce tour.)",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE,
Type.FIRE
],
name: {
en: "Lost Flame",
fr: "Flamme Perdue",
},
text: {
en: "Put 2 Energy attached to your opponent's Active Pokémon in the Lost Zone.",
fr: "Placez 2 Énergies attachées au Pokémon Actif de votre adversaire dans la Zone Perdue.",
},
damage: 120
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Lost Thunder",
code: "sm8"
}
}
export default card