mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
99 lines
1.5 KiB
TypeScript
99 lines
1.5 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: "dpp-DP45",
|
||
localId: "DP45",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Charizard G",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 6,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/dp/dpp/DP45/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/dp/dpp/DP45/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.LEVELUP,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 41,
|
||
name: "Wataru Kawahara"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 863,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Call for Power",
|
||
},
|
||
text: {
|
||
en: "As often as you like during your turn (before your attack), you may move an Energy attached to 1 of your Pokémon to Charizard . This power can't be used if Charizard is affected by a Special Condition.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Malevolent Fire",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, discard all Energy attached to Charizard .",
|
||
},
|
||
damage: 150
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "DP Black Star Promos",
|
||
code: "dpp"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|