4,581
edits
(Updated to omit headers with no results. Now also supports the template: {{EquipmentTableFromList}}) |
mNo edit summary |
||
Line 3: | Line 3: | ||
An example of this would be [[Siren]] | An example of this would be [[Siren]] | ||
The below script will search all current [[Template:Icon|Icon Templates]] in v1.2.2 (except for Synergies, Spellbooks and Currencies) for the given <code>searchTerm</code> then output an array of the results in valid Icon Template format with expansion icons. | The below script will search all current [[Template:Icon|Icon Templates]] in v1.2.2 (except for Synergies, Spellbooks (not Spells) and Currencies) for the given <code>searchTerm</code> then output an array of the results in valid Icon Template format with expansion icons. | ||
This may result in some duplicates between | This may result in some duplicates between ItemIcons and UpdateIcons, such as Iron Sieve which is both an Item and Purchase. | ||
<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 // |