1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

70 lines
1.3 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 '../Rising Rivals'
const card: Card = {
name: {
en: "Infernape 4",
fr: "Simiabraz Niv. X",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
392,
],
hp: 110,
types: [
"Fire",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Intimidating Roar",
fr: "Rugissement intimidant",
},
effect: {
en: "Once during your turn (before your attack), you may have your opponent switch his or her Active Pokémon with 1 of his or her Benched Pokémon. This power can't be used if Infernape is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec 1 des Pokémon de son Banc. Ce pouvoir ne peut pas être utilisé si Simiabraz est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Fire Spin",
fr: "Danseflamme",
},
effect: {
en: "Discard 2 Energy attached to Infernape .",
fr: "Défaussez 2 Énergies attachées à Simiabraz .",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card