mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-16 13:39:54 +00:00
44 lines
593 B
TypeScript
44 lines
593 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Butterfree"
|
|
},
|
|
|
|
illustrator: "Shin Nagasawa",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
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: [{
|
|
cost: ["Grass", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Gust"
|
|
},
|
|
|
|
damage: "60"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "Three Diamond"
|
|
}
|
|
|
|
export default card
|