1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

92 lines
2.1 KiB
TypeScript
Raw Permalink 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Infernape",
fr: "Simiabraz",
es: "Infernape",
it: "Infernape",
pt: "Infernape",
de: "Panferno"
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
392,
],
hp: 130,
types: [
"Fighting",
],
evolveFrom: {
en: "Monferno",
fr: "Chimpenfeu",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Flaming Fighter",
fr: "Combattant Incandescent",
es: "Luchador Fogoso",
it: "Lottatore Fiammeggiante",
pt: "Lutador Flamejante",
de: "Flammenkämpfer"
},
effect: {
en: "Put 6 damage counters instead of 2 on your opponents Burned Pokémon between turns.",
fr: "Placez 6 marqueurs de dégâts au lieu de 2 sur le Pokémon Brûlé de votre adversaire entre chaque tour.",
es: "Pon 6 contadores de daño en vez de 2 en el Pokémon Quemado de tu rival entre turnos.",
it: "Tra un turno e laltro, metti sei segnalini danno invece di due sul Pokémon bruciato del tuo avversario.",
pt: "Coloque 6 contadores de dano ao invés de 2 no Pokémon Queimado do seu oponente entre as vezes de jogar.",
de: "Lege zwischen den Zügen 6 Schadensmarken anstelle von 2 Schadensmarken auf das verbrannte Pokémon deines Gegners."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Burst Punch",
fr: "Poing dEnfer",
es: "Puño Explosivo",
it: "Fiammatapugno",
pt: "Soco Rajada",
de: "Explosionshieb"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
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: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card