1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

95 lines
1.4 KiB
TypeScript

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: "dp2-16",
localId: 16,
// Card informations
name: {
en: "Typhlosion",
},
hp: 110,
type: [
Type.FIRE,
],
dexId: 157,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/16/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/16/high",
},
},
evolveFrom: {
en: "Quilava",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
abilities: [{
id: 221,
type: AbilityType.POKEPOWER,
name: {
en: "Firestarter",
},
text: {
en: "Once during your turn (before your attack), you may attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon. This power can't be used if Typhlosion is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Evaporating Heat",
},
text: {
en: "Discard a Water Energy attached to the Defending Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "+30"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card