mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
105
cards/xy/g1/RC5.ts
Normal file
105
cards/xy/g1/RC5.ts
Normal file
@ -0,0 +1,105 @@
|
||||
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: "g1-RC5",
|
||||
localId: "RC5",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Charizard",
|
||||
fr: "Dracaufeu",
|
||||
},
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 6,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/g1/RC5/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/g1/RC5/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/g1/RC5/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/g1/RC5/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charmeleon",
|
||||
fr: "Reptincel",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 48,
|
||||
name: "Akira Komayama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Recall",
|
||||
fr: "Récupération",
|
||||
},
|
||||
text: {
|
||||
en: "Choose 1 of this Pokémon's attacks from its previous Evolutions and use it as this attack.",
|
||||
fr: "Choisissez l'une des attaques de pré-évolutions de ce Pokémon et utilisez-la en tant que cette attaque.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Combustion Blast",
|
||||
fr: "Explo-Combustion",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon can't use Combustion Blast during your next turn.",
|
||||
fr: "Ce Pokémon ne peut pas utiliser Explo-Combustion pendant votre prochain tour.",
|
||||
},
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Generations",
|
||||
code: "g1"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user