1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

40 lines
599 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Pikipek"
},
illustrator: "Shin Nagasawa",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
en: "It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking."
},
stage: "Basic",
attacks: [{
name: {
en: "Peck"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card