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: "pop9-5", localId: 5, // Card informations name: { en: "Rotom", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 479, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/5/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/5/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 8, name: "Masakazu Fukuda" }, abilities: [{ id: 94, type: AbilityType.POKEPOWER, name: { en: "Type Shift", }, text: { en: "Once during your turn (before your attack), you may use this power. Rotom's type is Psychic until the end of your turn", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Poltergeist", }, text: { en: "Look at your opponent's hand. This attack does 30 damage plus 10 more damage for each Trainer, Supporter, and Stadium card in your opponent's hand.", }, damage: 30 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card