4,581
edits
m (Cleaned up script a bit, removed Menu template) |
(Added Alt Magic spells to script) |
||
Line 8: | Line 8: | ||
<syntaxhighlight lang="javascript" line> | <syntaxhighlight lang="javascript" line> | ||
// Settings // | // Settings // | ||
let searchTerm = ' | let searchTerm = 'Siren'; // The proper capitalization of the search term | ||
let returnEquipmentTemplate = false; // returns a template for {{EquipmentTableFromList}} instead | let returnEquipmentTemplate = false; // returns a template for {{EquipmentTableFromList}} instead | ||
// End of Settings // | // End of Settings // | ||
Line 37: | Line 37: | ||
pushResults(game.monsters.filter(x => search(x)), '===Combat===', 'MonsterIcon'); | pushResults(game.monsters.filter(x => search(x)), '===Combat===', 'MonsterIcon'); | ||
pushResults([...game.combatAreas.allObjects, ...game.slayerAreas.allObjects, ...game.dungeons.allObjects].filter(x => search(x)), '===Combat===', 'ZoneIcon'); | pushResults([...game.combatAreas.allObjects, ...game.slayerAreas.allObjects, ...game.dungeons.allObjects].filter(x => search(x)), '===Combat===', 'ZoneIcon'); | ||
pushResults([...game.standardSpells.allObjects, ...game.ancientSpells.allObjects, ...game.archaicSpells.allObjects, ...game.curseSpells.allObjects, ...game.auroraSpells.allObjects].filter(x => search(x)), '===Spells===', 'SpellIcon'); | pushResults([...game.standardSpells.allObjects, ...game.ancientSpells.allObjects, ...game.archaicSpells.allObjects, ...game.curseSpells.allObjects, ...game.auroraSpells.allObjects, ...game.altMagic.actions.allObjects].filter(x => search(x)), '===Spells===', 'SpellIcon'); | ||
pushResults(game.shop.purchases.filter(x => search(x)), '===Purchases===', 'UpgradeIcon'); | pushResults(game.shop.purchases.filter(x => search(x)), '===Purchases===', 'UpgradeIcon'); | ||
pushResults(game.prayers.filter(x => search(x)), '===Prayers===', 'PrayerIcon'); | pushResults(game.prayers.filter(x => search(x)), '===Prayers===', 'PrayerIcon'); |