You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the battle system in our project lacks the necessary weapon assets for all weapons, resulting in a disparity in the user experience. Furthermore, the equipped weapon icons are not displayed on the battle embed, making it difficult for users to keep track of their current weapons during battles.
To address this problem, we must create the missing weapon assets and ensure their proper integration into the system. We also need to add the ability to display equipped weapon icons on the battle embed so that users can easily see which weapons they have equipped.
This issue is critical for the battle system's proper operation and will significantly improve the user experience.
The implementation should start at \jasmine\src\utils\rpg\battle\Battle.js 466:5
The implementation code has initialized in the file
// Get all equipments from player and opponentconstplayerEquipments=JSON.parse(this.character.equipments);constopponentEquipments=JSON.parse(this.opponent.equipments);letplayerEquipped=[];letopponentEquipped=[];// Push all equipped equipments from player and opponent equipments to playerEquipped and opponentEquipped respectively["weapon","shields","helmet","armor","gloves"].forEach((e)=>{playerEquipped.push(playerEquipments[e].equipped);opponentEquipped.push(opponentEquipments[e].equipped);});// TODO: Get icons for every equipped equipments from player and oppponent// TODO: Display icons on the battle embed
The text was updated successfully, but these errors were encountered:
The current implementation of the battle system in our project lacks the necessary weapon assets for all weapons, resulting in a disparity in the user experience. Furthermore, the equipped weapon icons are not displayed on the battle embed, making it difficult for users to keep track of their current weapons during battles.
To address this problem, we must create the missing weapon assets and ensure their proper integration into the system. We also need to add the ability to display equipped weapon icons on the battle embed so that users can easily see which weapons they have equipped.
This issue is critical for the battle system's proper operation and will significantly improve the user experience.
The implementation should start at
\jasmine\src\utils\rpg\battle\Battle.js 466:5
The implementation code has initialized in the file
The text was updated successfully, but these errors were encountered: