mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add TCG Pocket promos A (#587)
This commit is contained in:
39
data/Pokémon TCG Pocket/Promos-A/013.ts
Normal file
39
data/Pokémon TCG Pocket/Promos-A/013.ts
Normal file
@ -0,0 +1,39 @@
|
||||
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
|
Reference in New Issue
Block a user