Add property calculations #5

Merged
xeon merged 6 commits from :master into master 2025-03-18 20:44:23 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 0f14b2fe74 - Show all commits

View file

@ -626,6 +626,10 @@ fn remove_custom_properties(properties: &mut HashMap<u32, i32>) {
}
fn set_battle_properties(properties: &mut HashMap<u32, i32>) {
properties.insert(
EPropertyType::Hp.into(),
*properties.get(&EPropertyType::HpMax.into()).unwrap_or(&0),
);
properties.insert(
EPropertyType::HpMaxBattle.into(),
*properties.get(&EPropertyType::HpMax.into()).unwrap_or(&0),

View file

@ -3,6 +3,7 @@ use num_enum::{IntoPrimitive, TryFromPrimitive};
#[repr(u32)]
#[derive(IntoPrimitive, TryFromPrimitive)]
pub enum EPropertyType {
Hp = 1,
HpMax = 111,
Atk = 121,
BreakStun = 122,