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-114", localId: 114, // Card informations name: { en: "Stonjourner", fr: "Dolman", }, hp: 120, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/114/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/114/low.png", } }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 14, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Wild Tackle", fr: "Tacle Brutal", }, text: { en: "This Pokémon also does 10 damage to itself.", fr: "Ce Pokémon s’inflige aussi 10 dégâts.", }, damage: 70 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card