1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

108 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "ex11-108",
localId: 108,
// Card informations
name: {
en: "Flareon ex",
},
hp: 110,
type: [
Type.FIRE,
],
dexId: 136,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex11/108/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex11/108/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 884,
type: AbilityType.POKEPOWER,
name: {
en: "Evolutionary Flame",
},
text: {
en: "Once during your turn, when you play Flareon ex from your hand to evolve 1 of your Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Burned and Confused.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flame Screen",
},
text: {
en: "During your opponent's next turn, any damage done to Flareon ex by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Heat Tackle",
},
text: {
en: "Flareon ex does 10 damage to itself.",
},
damage: 70
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Delta Species",
code: "ex11"
}
}
export default card