mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-14 19:53:21 +08:00
f71b29c00a
* 1 * Delete .gitattributes * implement * Update PacketDropHintNotify.java * Update PacketWorldChestOpenNotify.java * Update FileUtils.java * Update PacketDropHintNotify.java * Update WorldDataSystem.java --------- Co-authored-by: Magix <27646710+KingRainbow44@users.noreply.github.com>
53 lines
935 B
Java
53 lines
935 B
Java
package emu.grasscutter.game.drop;
|
|
|
|
@Deprecated
|
|
public class DropData {
|
|
private int minWeight;
|
|
private int maxWeight;
|
|
private int itemId;
|
|
private int minCount;
|
|
private int maxCount;
|
|
private boolean share = false;
|
|
private boolean give = false;
|
|
|
|
public boolean isGive() {
|
|
return give;
|
|
}
|
|
|
|
public void setGive(boolean give) {
|
|
this.give = give;
|
|
}
|
|
|
|
public int getItemId() {
|
|
return itemId;
|
|
}
|
|
|
|
public void setItemId(int itemId) {
|
|
this.itemId = itemId;
|
|
}
|
|
|
|
public int getMinCount() {
|
|
return minCount;
|
|
}
|
|
|
|
public int getMaxCount() {
|
|
return maxCount;
|
|
}
|
|
|
|
public int getMinWeight() {
|
|
return minWeight;
|
|
}
|
|
|
|
public int getMaxWeight() {
|
|
return maxWeight;
|
|
}
|
|
|
|
public boolean isShare() {
|
|
return share;
|
|
}
|
|
|
|
public void setIsShare(boolean share) {
|
|
this.share = share;
|
|
}
|
|
}
|