import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' import set from '../../../sets/swsh/swsh4' const card: Card = { // Card Global Informations id: "swsh4-144", localId: 144, name: { en: "Trumbeak", }, illustrator: "tetsuya koizumi", rarity: Rarity.UNCOMMON, category: Category.POKEMON, set, // Card Pokémon Informations evolveFrom: { en: "Pikipek", }, hp: 80, type: [ Type.COLORLESS, ], abilities: [ { type: AbilityType.TALENT, name: { en: "Charging Trumpet", }, text: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may look at the top 3 cards of your deck and attach any number of basic Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards back into your deck.", }, } , ], attacks: [ { cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Drill Peck", }, damage: 50, }, ], weaknesses: [ { type: Type.LIGHTNING, value: "×2", }, ], resistances: [ { type: Type.FIGHTING, value: "-30", }, ], retreat: 1, // Card Trainer/Energy informations } export default card