32 lines
1.4 KiB
Java
32 lines
1.4 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.Function;
|
|
import java.util.function.Supplier;
|
|
import net.minecraft.util.datafix.fixes.References;
|
|
|
|
public class V4300 extends NamespacedSchema {
|
|
public V4300(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.register(map, "minecraft:llama", (Function<String, TypeTemplate>)(string -> entityWithInventory(schema)));
|
|
schema.register(map, "minecraft:trader_llama", (Function<String, TypeTemplate>)(string -> entityWithInventory(schema)));
|
|
schema.register(map, "minecraft:donkey", (Function<String, TypeTemplate>)(string -> entityWithInventory(schema)));
|
|
schema.register(map, "minecraft:mule", (Function<String, TypeTemplate>)(string -> entityWithInventory(schema)));
|
|
schema.registerSimple(map, "minecraft:horse");
|
|
schema.registerSimple(map, "minecraft:skeleton_horse");
|
|
schema.registerSimple(map, "minecraft:zombie_horse");
|
|
return map;
|
|
}
|
|
|
|
private static TypeTemplate entityWithInventory(Schema schema) {
|
|
return DSL.optionalFields("Items", DSL.list(References.ITEM_STACK.in(schema)));
|
|
}
|
|
}
|