1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.2 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 '../Generations'
const card: Card = {
name: {
en: "Butterfree",
fr: "Papilusion",
},
illustrator: "miki kudo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
12,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Metapod",
fr: "Chrysacier",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Quiver Dance",
fr: "Papillodanse",
},
effect: {
en: "Search your deck for a basic Energy card and attach it to this Pokémon. Shuffle your deck afterward. If you attached Energy in this way, heal 40 damage from this Pokémon.",
fr: "Cherchez une carte Énergie de base dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck. Si vous avez attaché de l'Énergie de cette façon, soignez 40 dégâts à ce Pokémon.",
},
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Gust",
fr: "Tornade",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card