import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/38/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/38/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "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