1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Make Each Promos Series Names unique to be clearly identifiable (#15)

* Changed folder and the automatics imports changes

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed SM promos missing the correct set

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-04-29 12:04:12 +02:00
committed by GitHub
parent f73c11d5ef
commit f4af0d04be
571 changed files with 580 additions and 580 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Charizard",
fr: "Dracaufeu",
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 150,
types: [
"Fire",
],
evolveFrom: {
en: "Charmeleon",
fr: "Reptincel",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Roaring Resolve",
fr: "Détermination Rugissante",
},
effect: {
en: "Once during your turn (before your attack), you may put 2 damage counters on this Pokémon. If you do, search your deck for up to 2 Fire Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez placer 2 marqueurs de dégâts sur ce Pokémon. Dans ce cas, cherchez jusquà 2 cartes Énergie Fire dans votre deck et attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Continuous Blaze Ball",
fr: "Balle Incendiaire Continue",
},
effect: {
en: "Discard all Fire Energy from this Pokémon. This attack does 50 more damage for each card you discarded in this way.",
fr: "Défaussez toute lÉnergie Fire de ce Pokémon. Cette attaque inflige 50 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card