mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-29 15:29:18 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
105
cards/xy/xy8/20.ts
Normal file
105
cards/xy/xy8/20.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: "xy8-20",
|
||||
localId: 20,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Typhlosion",
|
||||
fr: "Typhlosion",
|
||||
},
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 157,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/20/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/20/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/20/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/20/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Quilava",
|
||||
fr: "Feurisson",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 64,
|
||||
name: "Megumi Mizutani"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Massive Eruption",
|
||||
fr: "Éruption Massive",
|
||||
},
|
||||
text: {
|
||||
en: "Discard the top 5 cards of your deck. This attack does 80 damage times the number of Energy cards you discarded.",
|
||||
fr: "Défaussez les 5 cartes du dessus de votre deck. Cette attaque inflige 80 dégâts multipliés par le nombre de cartes Énergie que vous avez défaussées.",
|
||||
},
|
||||
damage: 80
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flare Destroy",
|
||||
fr: "Éclatodestruction",
|
||||
},
|
||||
text: {
|
||||
en: "Discard an Energy attached to this Pokémon. Then, discard an Energy attached to your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie attachée à ce Pokémon. Ensuite, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "BREAKthrough",
|
||||
code: "xy8"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user