1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39: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

101
cards/ex/ex9/1.ts Normal file
View File

@ -0,0 +1,101 @@
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: "ex9-1",
localId: 1,
// Card informations
name: {
en: "Blaziken",
},
hp: 110,
type: [
Type.FIRE,
],
dexId: 257,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex9/1/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex9/1/high.png",
},
},
evolveFrom: {
en: "Combusken",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
abilities: [{
id: 81,
type: AbilityType.POKEBODY,
name: {
en: "Blaze",
},
text: {
en: "As long as Blaziken's remaining HP is 40 or less, Blaziken does 40 more damage to the Defending Pokémon (before applying Weakness and Resistance).",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Searing Flame",
},
text: {
en: "The Defending Pokémon is now Burned.",
},
damage: 10
},{
name: {
en: "Damage Burn",
},
text: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 50 damage plus 20 more damage.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Emerald",
code: "ex9"
}
}
export default card