1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

73 lines
1.6 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 '../../../interfaces'
import Set from '../Expedition Base Set'
const card: Card = {
name: {
en: "Charizard",
fr: "Dracaufeu"
},
illustrator: "Hiromichi Sugiyama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 120,
types: [
"Fire",
],
evolveFrom: {
en: "Charmeleon",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Burning Energy",
fr: "Énergie brûlante"
},
effect: {
en: "Once during your turn (before you attack), you may turn all basic Energy attached to all of your Pokémon into Fire Energy for the rest of the turn. This power can't be used if Charizard is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez changer toutes les Énergies de base attachées à tous vos Pokémon en Énergie pour le reste du tour. Ce pouvoir ne peut pas être utilisé si Dracaufeu est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
"Fire",
],
name: {
en: "Scorching Whirlwind",
fr: "Tourbillon brûlant"
},
effect: {
en: "Flip 2 coins. If 1 of them is tails, discards 3 Energy cards attached to Charizard. If both of them are tails, discard all Energy cards attached to Charizard.",
fr: "Lancez 2 pièces. Si vous obtenez 1 pile, défaussez-vous de 2 cartes Énergie attachées à Dracaufeu. Si vous obtenez 2 piles, défaussez-vous de toutes les cartes Énergie attachées à Dracaufeu."
},
damage: 120,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card