add charm buff icons

This commit is contained in:
Maxicarlos08 2024-01-21 15:05:31 +01:00
parent 83a24acc1e
commit 0b1f8dc29a
No known key found for this signature in database
5 changed files with 15 additions and 3 deletions

BIN
assets/voxygen/element/de_buffs/buff_flame.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/de_buffs/buff_frigid.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/de_buffs/buff_lifesteal.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -785,6 +785,9 @@ image_ids! {
buff_fury: "voxygen.element.de_buffs.buff_fury",
buff_sunderer: "voxygen.element.de_buffs.buff_sunderer",
buff_defiance: "voxygen.element.de_buffs.buff_defiance",
buff_lifesteal: "voxygen.element.de_buffs.buff_lifesteal",
buff_flame: "voxygen.element.de_buffs.buff_flame",
buff_frigid: "voxygen.element.de_buffs.buff_frigid",
// Debuffs
debuff_skull_0: "voxygen.element.de_buffs.debuff_skull_0",

View File

@ -5194,9 +5194,9 @@ pub fn get_buff_image(buff: BuffKind, imgs: &Imgs) -> conrod_core::image::Id {
BuffKind::Hastened => imgs.buff_haste_0,
BuffKind::Fortitude => imgs.buff_fortitude_0,
BuffKind::Reckless => imgs.buff_reckless,
BuffKind::Flame => imgs.debuff_burning_0,
BuffKind::Frigid => imgs.debuff_frozen_0,
BuffKind::Lifesteal => imgs.buff_plus_0,
BuffKind::Flame => imgs.buff_flame,
BuffKind::Frigid => imgs.buff_frigid,
BuffKind::Lifesteal => imgs.buff_lifesteal,
// TODO: Get image
// BuffKind::SalamanderAspect => imgs.debuff_burning_0,
BuffKind::ImminentCritical => imgs.buff_imminentcritical,