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: "sm6-94", localId: 94, // Card informations name: { en: "Goodra", fr: "Muplodocus", }, hp: 160, type: [ Type.DRAGON, ], dexId: 706, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/94/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/94/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/94/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/94/high.png", }, }, evolveFrom: { en: "Sliggoo", fr: "Colimucus", }, tags: [ Tag.STAGE2, ], illustrator: { id: 138, name: "hatachu" }, abilities: [{ id: 1148, type: AbilityType.TALENT, name: { en: "Hydration", fr: "Hydratation", }, text: { en: "Whenever you attach a Water Energy card from your hand to this Pokémon, heal 20 damage from it.", fr: "Chaque fois que vous attachez une carte Énergie Water de votre main à ce Pokémon, soignez 20 dégâts à ce Pokémon.", } }], attacks: [{ cost: [ Type.WATER, Type.FAIRY, Type.COLORLESS ], name: { en: "Soaking Horn", fr: "Corne Trempage", }, text: { en: "If this Pokémon was healed during this turn, this attack does 80 more damage.", fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 80 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 3, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card