1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

72 lines
1.3 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: "Butterfree",
fr: "Papilusion"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
12,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Metapod",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Miraculous Powder",
fr: "Poudre miraculeuse"
},
effect: {
en: "Once during your turn (before you attack), you may remove all Special Conditions from your Active Pokémon. This power can't be used if Butterfree is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez annuler tous les États spéciaux sur votre Pokémon Actif. Ce pouvoir ne peut pas être utilisé si Papilusion est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Spiral Drain",
fr: "Sangsue spirale"
},
effect: {
en: "Flip a coin. If heads, remove 2 damage counters from Butterfree.",
fr: "Lancez une pièce. Si c'est face, retirez 2 marqueurs de dégâts sur Papilusion."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card