1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +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

108
cards/bw/bw8/136.ts Normal file
View File

@ -0,0 +1,108 @@
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-136",
localId: 136,
// Card informations
name: {
en: "Charizard",
fr: "Dracaufeu",
},
hp: 160,
type: [
Type.FIRE,
],
dexId: 6,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/136/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/136/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/136/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/136/high.png",
},
},
evolveFrom: {
en: "Charmeleon",
fr: "Reptincel",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 6,
name: "Ayaka Yoshida"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Split Bomb",
fr: "Bombe Fendante",
},
text: {
en: "This attack does 40 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 40 dégâts à 2 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Scorching Fire",
fr: "Feu Infernal",
},
text: {
en: "Discard a Fire Energy attached to this Pokémon.",
fr: "Défaussez une Énergie Fire attachée à ce Pokémon.",
},
damage: 150
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card