All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.magistuarmory.item.ItemRegistryHelper Maven / Gradle / Ivy
package com.magistuarmory.item;
import com.magistuarmory.item.armor.DyeableWearableArmorDecorationItem;
import com.magistuarmory.item.armor.MedievalArmorItem;
import com.magistuarmory.item.armor.WearableArmorDecorationItem;
import dev.architectury.injectables.annotations.ExpectPlatform;
import dev.architectury.registry.registries.DeferredRegister;
import dev.architectury.registry.registries.RegistrySupplier;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.entity.EquipmentSlot;
import net.minecraft.world.item.ArmorMaterial;
import net.minecraft.world.item.Item;
public class ItemRegistryHelper
{
@ExpectPlatform
public static RegistrySupplier registerKnightItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerJoustingItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerDyeableMedievalArmorItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties, int defaultcolor)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerMedievalArmorItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerWearableArmorDecorationItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerDyeableWearableArmorDecorationItem(DeferredRegister- items, String id, ArmorMaterial material, EquipmentSlot type, Item.Properties properties, int defaultcolor)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerMedievalWeaponItem(DeferredRegister- items, String id, Item.Properties properties, ModItemTier material, WeaponType type)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerLanceItem(DeferredRegister- items, String id, Item.Properties properties, ModItemTier material, WeaponType type)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerMedievalShieldItem(DeferredRegister- items, String id, ResourceLocation location, Item.Properties properties, ModItemTier material, boolean paintable, boolean is3d, ShieldType type)
{
throw new AssertionError();
}
@ExpectPlatform
public static RegistrySupplier
registerPaviseItem(DeferredRegister- items, String id, ResourceLocation location, Item.Properties properties, ModItemTier material, boolean paintable, boolean is3d, ShieldType type)
{
throw new AssertionError();
}
}