mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
89 lines
1.6 KiB
TypeScript
89 lines
1.6 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "dpp-DP10",
|
|
localId: "DP10",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Infernape",
|
|
},
|
|
|
|
hp: 120,
|
|
|
|
type: [
|
|
Type.FIRE,
|
|
],
|
|
|
|
dexId: 392,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP10/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP10/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.LEVELUP,
|
|
],
|
|
|
|
illustrator: "Shizurow",
|
|
|
|
abilities: [{
|
|
id: 757,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Burning Head",
|
|
},
|
|
text: {
|
|
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: [
|
|
Type.FIRE,
|
|
Type.FIRE
|
|
],
|
|
name: {
|
|
en: "Flare Up",
|
|
},
|
|
text: {
|
|
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: Type.WATER,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "DP Black Star Promos",
|
|
code: "dpp"
|
|
}
|
|
}
|
|
|
|
export default card
|