---
title: New Spells & New Icons
permalink: /spells/new-icons
layout: default
---
Name |
Icons (C, B, A) |
File Name |
Type |
Level |
{% assign new_spells = site.data.new-icons %}
{% for new_spell in new_spells %}
{% assign matching_spell = site.spells | where: 'identifier',new_spell.id %}
{% for spell in matching_spell %}
{% capture folder_name %}
{% if spell.type == 'Arcane' %}
{{ spell.level | prepend: 'spwi' | append: '##' | url_encode | append: '/' }}
{% elsif spell.type == 'Divine' %}
{{ spell.level | prepend: 'sppr' | append: '##' | url_encode | append: '/' }}
{% endif %}
{% endcapture %}
{% assign link_prefix = folder_name | strip | prepend: 'https://github.com/Gibberlings3/SpellRevisions/raw/master/spell_rev/' %}
{{ spell.name }} |
{% include spell-icons.html icon=spell.icon name=spell.name link_prefix=link_prefix class='is-medium' show_placeholder=true %}
|
{{ spell.icon }} |
{{ spell.type }} |
{{ spell.level }} |
{% else %}
{{ new_spell.id }} |
{% endfor %}
{% endfor %}