2025-06-26 01:18:01 +03:00
|
|
|
package hdvtdev.blockAndSeek;
|
|
|
|
|
|
2025-06-28 00:36:06 +03:00
|
|
|
|
2025-06-26 01:18:01 +03:00
|
|
|
import org.bukkit.inventory.ItemStack;
|
2025-06-28 00:36:06 +03:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
2025-06-26 01:18:01 +03:00
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2025-06-28 00:36:06 +03:00
|
|
|
public record BlockAndSeekMap(List<Integer> spawn, List<Integer> lobby, int duration, int minPlayers, int maxPlayers,
|
|
|
|
|
List<Block> blocks) {
|
2025-06-26 01:18:01 +03:00
|
|
|
|
2025-06-28 00:36:06 +03:00
|
|
|
|
|
|
|
|
public record Block(@NotNull ItemStack block, int chance) {
|
2025-06-26 01:18:01 +03:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|