1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

67 lines
972 B
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",
},
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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Spiral Drain",
},
effect: {
en: "Flip a coin. If heads, remove 2 damage counters from Butterfree.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card