Skip to content

Commit

Permalink
getAwakenMaterial Add
Browse files Browse the repository at this point in the history
  • Loading branch information
Yazawazi committed Apr 19, 2022
1 parent 971c547 commit 56ca323
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/emu/grasscutter/data/def/ItemData.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -160,6 +161,10 @@ public int getWeaponBaseExp() {
return WeaponBaseExp;
}

public int getAwakenMaterial() {
return AwakenMaterial;
}

public int[] getAwakenCosts() {
return AwakenCosts;
}
Expand Down Expand Up @@ -250,4 +255,4 @@ public void onLoad() {
}

}
}
}

0 comments on commit 56ca323

Please sign in to comment.