1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 399f9960ee
Updated Sword Shield Date (35/202 done)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-08 02:02:16 +01:00

99 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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