1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

73 lines
1012 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Cinderace",
fr: "Pyrobut",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 170,
types: [
"Fire",
],
evolveFrom: {
en: "Raboot",
fr: "Lapyro",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Pyro Ball",
fr: "Ballon Brûlant",
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
damage: 50,
},
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Burning Kick",
fr: "Coup de Pied Brûlant",
},
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
},
damage: 160,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
regulationMark: "D"
}
export default card