1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-25 05:19:19 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

105
cards/xy/xy11/20.ts Normal file
View File

@ -0,0 +1,105 @@
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: "xy11-20",
localId: 20,
// Card informations
name: {
en: "Infernape",
fr: "Simiabraz",
},
hp: 130,
type: [
Type.FIRE,
],
dexId: 392,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/20/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/20/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/20/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/20/high.png",
},
},
evolveFrom: {
en: "Monferno",
fr: "Chimpenfeu",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Flare Blitz",
fr: "Boutefeu",
},
text: {
en: "Discard all Fire Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.",
},
damage: 120
},{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Flare Up",
fr: "Prise de Bec",
},
text: {
en: "If you have fewer than 10 Fire Energy cards in your discard pile, this attack does nothing. Shuffle 10 Fire Energy cards from your discard pile into your deck.",
fr: "Si vous avez moins de 10 cartes Énergie Fire dans votre pile de défausse, cette attaque ne fait rien. Mélangez 10 cartes Énergie Fire de votre pile de défausse avec votre deck.",
},
damage: 200
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card