1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 lines
1.1 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Infernape",
fr: "Simiabraz",
},
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",
},
effect: {
en: "Put 6 damage counters instead of 2 on your opponent's 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.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Burst Punch",
fr: "Poing dEnfer",
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card