1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

64 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Infernape",
},
illustrator: "Shizurow",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
392,
],
hp: 120,
types: [
"Fire",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Burning Head",
},
effect: {
en: "Once during your turn (before your attack), you may look at the top 3 cards of your deck, choose 1 of them, and put it into your hand. Discard the other 2 cards. This power can't be used if Infernape is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Flare Up",
},
effect: {
en: "Search your discard pile for 8 Fire Energy cards, show them to your opponent, and shuffle them into your deck. (This attack does nothing if you don't have 8 Fire Energy cards in your discard pile.)",
},
damage: 150,
},
],
weaknesses: [
{
type: "Water",
value: "+30"
},
],
}
export default card