1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

93 lines
1.6 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../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.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP10/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 17,
name: "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