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' const card: Card = { // ids id: "bw7-38", localId: 38, // Card informations name: { en: "Delibird", fr: "Cadoizo", }, hp: 80, type: [ Type.WATER, ], dexId: 225, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/38/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/38/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/38/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/38/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sumiyoshi Kizuki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Present", fr: "Cadeau", }, text: { en: "Flip a coin. If heads, search your deck for a card and put it into your hand. Shuffle your deck afterward.", fr: "Lancez une pièce. Si c'est face, cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Icy Wind", fr: "Vent Glace", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card