mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
104
cards/dp/dp1/5.ts
Normal file
104
cards/dp/dp1/5.ts
Normal file
@ -0,0 +1,104 @@
|
||||
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
|
||||
|
Reference in New Issue
Block a user