1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

76 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 '../../../interfaces'
import Set from '../Sun & Moon'
const card: Card = {
name: {
en: "Butterfree",
fr: "Papilusion",
},
illustrator: "chibi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
12,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Metapod",
fr: "Chrysacier",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Psy Bolt",
fr: "Choc Mental",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Whirlwind",
fr: "Cyclone",
},
effect: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card