1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
2024-12-19 11:52:36 +01:00

77 lines
2.1 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Typhlosion δ",
fr: "Typhlosion δ",
de: "Tornupto"
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
157,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Quilava",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Shady Move",
fr: "Déplacement louche",
de: "Zwielichtige Aktion"
},
effect: {
en: "Once during your turn (before your attack), if Typhlosion is your Active Pokémon, you may move 1 damage counter from either player's Pokémon to another Pokémon (yours or your opponent's). 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), si Typhlosion est votre Pokémon Actif, vous pouvez déplacer 1 marqueur de dégât d'1 Pokémon de n'importe quel joueur sur un autre Pokémon (les vôtres et ceux de votre adversaire). 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), wenn Tornupto dein Aktives Pokémon ist, kannst du I Schadensmarke von I Pokémon (deins oder deines Gegners) auf ein anderes Pokémon (deins oder deines Gegners) verschieben. Diese Poké-Power kann nicht benutzt werden, wenn Tornupto von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Burning Ball",
fr: "Boule brûlante",
de: "Brennender Ball"
},
effect: {
en: "If Typhlosion has at least 2 Fire Energy attached to it, the Defending Pokémon is now Burned.",
fr: "Si Typhlosion possède au moins 2 Énergies , le Pokémon Défenseur est maintenant Brûlé.",
de: "Falls mindestens 2 -Energien an Tornupto angelegt sind, ist das Verteidigende Pokémon jetzt verbrannt."
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card