1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-22 03:49:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/bw/bw8/17.ts Normal file
View 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: "bw8-17",
localId: 17,
// Card informations
name: {
en: "Infernape",
fr: "Simiabraz",
},
hp: 130,
type: [
Type.FIRE,
],
dexId: 392,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/17/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/17/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/17/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/17/high.png",
},
},
evolveFrom: {
en: "Monferno",
fr: "Chimpenfeu",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Torment",
fr: "Tourmente",
},
text: {
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Le Pokémon ciblé ne peut pas utiliser l'attaque choisie pendant le prochain tour de votre adversaire.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Malevolent Fire",
fr: "Feu Malveillant",
},
text: {
en: "Discard all Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 120
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card