import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Delibird", fr: "Cadoizo", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 225, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Snowy Present", fr: "Cadeau enneigé", }, effect: { en: "Draw a card for each Water Energy attached to all of your Pokémon.", fr: "Piochez une carte pour chaque carte Énergie Water attachée à l’ensemble de vos Pokémon.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Hail", fr: "Grêle", }, effect: { en: "This attack does 10 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)", }, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, description: { en: "It nests at the edge of sharp cliffs. It spends all day carrying food to its awaiting chicks." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card