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

39 lines
557 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Butterfree"
},
illustrator: "miki kudo",
rarity: "Three Diamond",
category: "Pokemon",
types: ["Grass"],
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Powder Heal"
},
effect: {
en: "Once during your turn, you may heal 20 damage from each of your Pokémon."
}
}],
attacks: [{
name: {
en: "Gust"
},
cost: ["Grass", "Colorless", "Colorless"],
damage: 60
}]
}
export default card