mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
100 lines
1.8 KiB
TypeScript
100 lines
1.8 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xy2-20",
|
||
localId: 20,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Pyroar",
|
||
fr: "Némélios",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 668,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy2/20/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy2/20/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy2/20/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy2/20/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Litleo",
|
||
fr: "Hélionceau",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
abilities: [{
|
||
id: 174,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Intimidating Mane",
|
||
fr: "Crinière Intimidante",
|
||
},
|
||
text: {
|
||
en: "Prevent all damage done to this Pokémon by attacks from your opponent's Basic Pokémon.",
|
||
fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques des Pokémon de base de votre adversaire.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Scorching Fang",
|
||
fr: "Croc Ardent",
|
||
},
|
||
text: {
|
||
en: "You may discard a Fire Energy attached to this Pokémon. If you do, this attack does 30 more damage.",
|
||
fr: "Vous pouvez défausser une Énergie Fire attachée à ce Pokémon. Dans ce cas, cette attaque inflige 30 dégâts supplémentaires.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Flashfire",
|
||
code: "xy2"
|
||
}
|
||
}
|
||
|
||
export default card
|