2022-09-09 14:50:17 +00:00
|
|
|
<div
|
|
|
|
class="flex-1 flex items-center bg-black bg-opacity-20 rounded-lg bg-contain bg-no-repeat"
|
|
|
|
style="background-image: url('{{ weapon.detail.icon.url }}')"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="flex-1 p-4 flex flex-col items-end justify-center h-full space-y-1"
|
|
|
|
>
|
2023-02-11 08:33:42 +00:00
|
|
|
<div class="text-2xl">{{ weapon.detail.name }}</div>
|
2022-09-09 14:50:17 +00:00
|
|
|
<div class="star star-{{ weapon.detail.rarity }}"></div>
|
|
|
|
<div class="flex space-x-3 items-center">
|
2023-02-11 08:33:42 +00:00
|
|
|
<div class="italic">Lv.{{ weapon.level }}</div>
|
|
|
|
<div
|
|
|
|
class="rounded px-2 text-base {% if weapon.refinement == 5 %} bg-red-600 {% else %} bg-gray-600 {% endif %}"
|
|
|
|
>
|
2022-09-09 14:50:17 +00:00
|
|
|
精{{ weapon.refinement }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|