mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Typhlosion",
|
|
fr: "Typhlosion",
|
|
de: "Tornupto"
|
|
},
|
|
|
|
illustrator: "Kazuyuki Kano",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
157,
|
|
],
|
|
|
|
hp: 110,
|
|
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Quilava",
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-POWER",
|
|
name: {
|
|
en: "Firestarter",
|
|
fr: "Pyroteknik",
|
|
de: "Brandstiftung"
|
|
},
|
|
effect: {
|
|
en: "Once during your turn (before your attack), you may attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon. This power can't be used if Typhlosion is affected by a Special Condition.",
|
|
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez attacher une carte Énergie Fire de votre pile de défausse à 1 des Pokémon de votre Banc. Ce pouvoir ne peut pas être utilisé si Typhlosion est affecté par un État Spécial.",
|
|
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du eine -Energiekarte von deinem Ablagestapel nehmen und an 1 Pokémon auf deiner Bank anlegen. Diese Poké-Power kann nicht benutzt werden, wenn Tornupto von einem Speziellen Zustand betroffen ist."
|
|
},
|
|
},
|
|
],
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Evaporating Heat",
|
|
fr: "Chaleur évaporante",
|
|
de: "Verdampfungshitze"
|
|
},
|
|
effect: {
|
|
en: "Discard a Water Energy attached to the Defending Pokémon.",
|
|
fr: "Défaussez une Énergie Water attachée au Pokémon Défenseur.",
|
|
de: "Lege 1 -Energie, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+30"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Il attaque en projetant des flammes. Il se dissimule derrière les vagues de chaleur qu'il produit."
|
|
}
|
|
}
|
|
|
|
export default card
|