1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ad3ea21e38 latest Promo Added :D
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-02-12 22:41:39 +01:00

75 lines
1.1 KiB
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 '@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'
import set from '../../../sets/mc/2021swsh'
const card: Card = {
// ids
id: "2021-11",
localId: 11,
// Card informations
name: {
en: "Torchic",
fr: "Poussifeu",
},
hp: 60,
type: [
Type.FIRE,
],
dexId: 255,
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "sui",
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Ember",
fr: "Flammèche",
},
text: {
en: "Flip a coin. If tails, discard a Fire Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie Fire attachée à ce Pokémon.",
},
damage: 20
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "XY Black Star Promos",
code: "xyp"
}
}
export default card