Merge pull request #24 from Yazawazi/main

Fix weapon refine
This commit is contained in:
Melledy
2022-04-19 04:14:17 -07:00
committed by GitHub
2 changed files with 14 additions and 3 deletions

View File

@@ -48,6 +48,7 @@ public class ItemData extends GenshinResource {
private int WeaponBaseExp;
private int StoryId;
private int AvatarPromoteId;
private int AwakenMaterial;
private int[] AwakenCosts;
private int[] SkillAffix;
private WeaponProperty[] WeaponProp;
@@ -160,6 +161,10 @@ public class ItemData extends GenshinResource {
return WeaponBaseExp;
}
public int getAwakenMaterial() {
return AwakenMaterial;
}
public int[] getAwakenCosts() {
return AwakenCosts;
}
@@ -250,4 +255,4 @@ public class ItemData extends GenshinResource {
}
}
}
}