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: "xy6-28", localId: 28, // Card informations name: { en: "Natu", fr: "Natu", }, hp: 40, type: [ Type.PSYCHIC, ], dexId: 177, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/28/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/28/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/28/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/28/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: -1, type: AbilityType.ANCIENTTRAIT, name: { fr: "Plus Δ", }, text: { fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts d'une attaque de ce Pokémon, récupérez une carte Récompense supplémentaire.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psywave", fr: "Vague Psy", }, text: { en: "This attack does 10 damage times the amount of Energy attached to your opponent's Active Pokémon.", fr: "Cette attaque inflige 10 dégâts multipliés par le nombre d'Énergies attachées au Pokémon Actif de votre adversaire.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card