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: "bw11-85", localId: 85, // Card informations name: { en: "Landorus", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 645, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/85/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/85/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Abundant Harvest", }, text: { en: "Attach a basic Energy card from your discard pile to this Pokémon.", }, },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Gaia Hammer", }, text: { en: "Does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card