1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 17:09:55 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

93 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../SM Black Star Promos'
const card: Card = {
dexId: [157],
name: {
fr: "Typhlosion",
en: "Typhlosion",
es: "Typhlosion",
it: "Typhlosion",
pt: "Typhlosion",
de: "Tornupto"
},
illustrator: "Hideki Ishikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Fire",
],
evolveFrom: {
fr: "Feurisson",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
],
name: {
fr: "Explosible",
en: "Exploder",
es: "Explosionar",
it: "Deflagratore",
pt: "Explosivo",
de: "Zündstoff"
},
effect: {
fr: "Cherchez jusquà 3 cartes Énergie Fire dans votre deck et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite votre deck.",
en: "Search your deck for up to 3 Fire Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
es: "Busca en tu baraja hasta 3 cartas de Energía Fire y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a tre carte Energia Fire e assegnale a piacimento ai tuoi Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 3 cartas de Energia Fire no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 3 Fire-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck."
},
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
fr: "Enfer Explosif",
en: "Bursting Inferno",
es: "Infierno Explosivo",
it: "Inferno in Fiamme",
pt: "Inferno em Chamas",
de: "Flammendes Inferno"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
en: "Your opponents Active Pokémon is now Burned.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card