mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
609 B
TypeScript
57 lines
609 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Fates'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Butterfree",
|
||
fr: "Papilusion",
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
12,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Metapod",
|
||
fr: "Chrysacier",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gust",
|
||
fr: "Tornade",
|
||
},
|
||
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|