mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
105 lines
1.7 KiB
TypeScript
105 lines
1.7 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: "dp1-5",
|
|
localId: 5,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Infernape",
|
|
fr: "Simiabraz",
|
|
},
|
|
|
|
hp: 100,
|
|
|
|
type: [
|
|
Type.FIRE,
|
|
],
|
|
|
|
dexId: 392,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/5/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/5/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/5/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/5/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Monferno",
|
|
fr: "Chimpenfeu",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 16,
|
|
name: "Nakaoka"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Meteor Punch",
|
|
fr: "Poing-météore",
|
|
},
|
|
text: {
|
|
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
|
|
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
|
|
},
|
|
damage: 30
|
|
},{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.FIRE
|
|
],
|
|
name: {
|
|
en: "Flare Blitz",
|
|
fr: "Boutefeu",
|
|
},
|
|
text: {
|
|
en: "Discard all Fire Energy attached to Infernape.",
|
|
fr: "Défaussez toutes les Énergies Fire attachées à Simiabraz.",
|
|
},
|
|
damage: 90
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.WATER,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Diamond & Pearl",
|
|
code: "dp1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|