1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

104 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",
fr: "https://assets.tcgdex.net/fr/dp/dp1/5/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/5/high",
fr: "https://assets.tcgdex.net/fr/dp/dp1/5/high",
},
},
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