import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Trumbeak" }, illustrator: "Kouki Saitou", rarity: "One Diamond", category: "Pokemon", hp: 80, types: ["Colorless"], evolveFrom: { en: "Pikipek" }, description: { en: "It can bend the tip of its beak to produce over a hundred different cries at will." }, stage: "Stage1", attacks: [{ name: { en: "Glide" }, damage: 30, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card