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: "swsh1-148", localId: 148, // Card informations name: { en: "Oranguru", }, hp: 120, type: [ Type.COLORLESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/148/low.png", }, high: { en: "https://assets.tcgdex.net/en/swsh/swsh1/148/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], abilities: [{ id: -1, type: AbilityType.TALENT, name: { en: "Primate Wisdom", }, text: { en: "Once during your turn, you may switch a card from your hand with the top card of your deck.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Whap Down", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card