ImmuState 2a76e904ad Energy: Particle/Orb Drops from Monsters (#1054)
* Generate energy drops for monsters + make sure picking up particles honors their count.

* Use drop info from excels instead.

* Remove double newline.

* Remove commented code.
2022-05-24 21:43:04 -07:00

17 lines
327 B
Java

package emu.grasscutter.game.managers.EnergyManager;
import java.util.List;
public class EnergyDropEntry {
private int dropId;
private List<EnergyDropInfo> dropList;
public int getDropId() {
return this.dropId;
}
public List<EnergyDropInfo> getDropList() {
return this.dropList;
}
}