mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 19:19:18 +00:00
103
cards/xy/xyp/XY17.ts
Normal file
103
cards/xy/xyp/XY17.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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: "xyp-XY17",
|
||||
localId: "XY17",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Charizard-EX",
|
||||
fr: "Dracaufeu-EX",
|
||||
},
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 6,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xyp/XY17/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY17/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xyp/XY17/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY17/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.EX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Mega Ascension",
|
||||
fr: "Megascension",
|
||||
},
|
||||
text: {
|
||||
en: "Search your deck for M Charizard-EX, reveal it, and put it into your hand. Shuffle your deck afterward.",
|
||||
fr: "Cherchez un M-Dracaufeu-EX dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Brave Fire",
|
||||
fr: "Flammes de Bravoure",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige 30 dégâts.",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "XY Black Star Promos",
|
||||
code: "xyp"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user