div.questRewards
h3.text-center(v-once) {{ $t('rewards') }}
div.reward-item
span.svg-icon.inline.icon(v-html="icons.experience")
span.reward-text {{ $t('amountExperience', { amount: item.drop.exp }) }}
div.reward-item(v-if="item.drop.gp != 0")
span.svg-icon.inline.icon(v-html="icons.gold")
span.reward-text {{ $t('amountGold', { amount: item.drop.gp }) }}
div.reward-item(v-for='drop in getDropsList(item.drop.items, false)')
span.icon
div(:class="getDropIcon(drop)")
span.reward-text {{ getDropName(drop) }}
h3.text-center(v-if='getDropsList(item.drop.items, true).length > 0') {{$t('questOwnerRewards')}}
div.reward-item(v-for='drop in getDropsList(item.drop.items, true)')
span.icon
div(:class="getDropIcon(drop)")
span.reward-text {{ getDropName(drop) }}