minecraft-src/net/minecraft/util/datafix/schemas/V3689.java
2025-07-04 03:45:38 +03:00

39 lines
1.2 KiB
Java

package net.minecraft.util.datafix.schemas;
import com.mojang.datafixers.DSL;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.types.templates.TypeTemplate;
import java.util.Map;
import java.util.function.Supplier;
import net.minecraft.util.datafix.fixes.References;
public class V3689 extends NamespacedSchema {
public V3689(int i, Schema schema) {
super(i, schema);
}
@Override
public Map<String, Supplier<TypeTemplate>> registerEntities(Schema schema) {
Map<String, Supplier<TypeTemplate>> map = super.registerEntities(schema);
schema.registerSimple(map, "minecraft:breeze");
schema.registerSimple(map, "minecraft:wind_charge");
schema.registerSimple(map, "minecraft:breeze_wind_charge");
return map;
}
@Override
public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema schema) {
Map<String, Supplier<TypeTemplate>> map = super.registerBlockEntities(schema);
schema.register(
map,
"minecraft:trial_spawner",
(Supplier<TypeTemplate>)(() -> DSL.optionalFields(
"spawn_potentials",
DSL.list(DSL.fields("data", DSL.fields("entity", References.ENTITY_TREE.in(schema)))),
"spawn_data",
DSL.fields("entity", References.ENTITY_TREE.in(schema))
))
);
return map;
}
}