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

105 lines
1.5 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: "ex2-99",
localId: 99,
// Card informations
name: {
en: "Typhlosion ex",
},
hp: 160,
type: [
Type.FIRE,
],
dexId: 157,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex2/99/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex2/99/high.png",
},
},
evolveFrom: {
en: "Quilava",
},
tags: [
Tag.EX,
],
illustrator: {
id: 74,
name: "Hikaru Koike"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ring of Fire",
},
text: {
en: "The Defending Pokémon is now Burned, and can't retreat until the end of your opponent's next turn.",
},
damage: 40
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Split Blast",
},
text: {
en: "Discard 1 Energy card attached to Typhlosion ex. If your opponent has more than 1 Defending Pokémon, you may do 50 damage to each of them instead.",
},
damage: 100
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
},{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Sandstorm",
code: "ex2"
}
}
export default card