mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
402 B
TypeScript
32 lines
402 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Metapod"
|
|
},
|
|
|
|
illustrator: "Yuka Morii",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Bug Bite"
|
|
},
|
|
|
|
damage: "30"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card
|