mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-29 11:40:21 +08:00
* Arresting small creature support * add InsectCaptureManager * use EnvAnimalGatherExcelConfigData.json * Update InsectCaptureManager.java
41 lines
1.1 KiB
Java
41 lines
1.1 KiB
Java
package emu.grasscutter.data.excels;
|
|
|
|
import java.util.List;
|
|
|
|
import emu.grasscutter.data.GameResource;
|
|
import emu.grasscutter.data.ResourceType;
|
|
|
|
@ResourceType(name = "EnvAnimalGatherExcelConfigData.json", loadPriority = ResourceType.LoadPriority.LOW)
|
|
public class EnvAnimalGatherConfigData extends GameResource {
|
|
private int animalId;
|
|
private String entityType;
|
|
private List<GatherItem> gatherItemId;
|
|
private String excludeWeathers;
|
|
private int aliveTime;
|
|
private int escapeTime;
|
|
private int escapeRadius;
|
|
@Override
|
|
public int getId() {
|
|
return animalId;
|
|
}
|
|
public int getAnimalId(){
|
|
return animalId;
|
|
}
|
|
public String getEntityType(){
|
|
return entityType;
|
|
}
|
|
public GatherItem gatherItem(){
|
|
return gatherItemId.get(0);
|
|
}
|
|
public static class GatherItem{
|
|
private int id;
|
|
private int count;
|
|
public int getId(){
|
|
return id;
|
|
}
|
|
public int getCount(){
|
|
return count;
|
|
}
|
|
}
|
|
}
|