mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
99 lines
1.7 KiB
TypeScript
99 lines
1.7 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: "swsh1-34",
|
||
localId: 34,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Cinderace",
|
||
fr: "Pyrobut",
|
||
},
|
||
|
||
hp: 170,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/34/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/34/low.png",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Raboot",
|
||
fr: "Lapyro",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
abilities: [{
|
||
id: -1,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Libero",
|
||
fr: "Libéro",
|
||
},
|
||
text: {
|
||
en: "Once during your turn, when this Pokémon moves from your Bench to the Active Spot, you may attach up to 2 Fire Energy cards from your discard pile to it.",
|
||
fr: "Une fois pendant votre tour, lorsque ce Pokémon se déplace de votre Banc vers le Poste Actif, vous pouvez lui attacher jusqu’à 2 cartes Énergie Fire de votre pile de défausse.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flare Striker",
|
||
fr: "But Enflammé",
|
||
},
|
||
text: {
|
||
en: "Discard 2 Energy from this Pokémon.",
|
||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||
},
|
||
damage: 190
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|