BracketHandlers
This class contains the “simple” Bracket handlers from CraftTweaker. However, some Bracket handlers, like for recipeTypes, tags, tagManagers, won’t be shown here as they use a different internal structure.
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
Static Methods
Return Type: Attribute
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description No Description Provided |
Gets a Biome based on the tokens.
Throws an error if it can’t get the biome
Returns: The found biome
Return Type: MCBiome
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The biome’s resource location |
Gets the given MCMaterial. Throws an Exception if not found.
Returns: The found MCMaterial
Return Type: MCMaterial
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description What you would write in the BEP call. |
Creates a Blockstate based on the given inputs.
Returns null
if it cannot find the block, ignored invalid variants
Returns: The found BlockState
Return Type: MCBlockState
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The block’s resource location and variants |
Gets a damage source based on type.
If the damage source is not pre-registered, it will create a new one with the given name
Returns: The found pre-registered damage source or a new one
Return Type: DamageSource
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description the damage sources’ type |
Gets the direction Axis based on name. Throws an error if it can’t find the direction Axis.
Returns: The found direction Axis
Return Type: DirectionAxis
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The direction Axis’s resource location |
Gets the effect based on registry name. Throws an error if it can’t find the effect.
Returns: The found effect
Return Type: MCPotionEffect
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The effect’s resource location |
Gets the enchantment based on registry name. Throws an error if it can’t find the enchantment.
Returns: The found enchantment
Return Type: MCEnchantment
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The enchantment’s registry name |
Gets the entityClassification based on registry name. Logs an error and returns null
if it can’t find the entityClassification.
Returns: The found entityClassification
Return Type: MCEntityClassification
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The entityClassification’s resource location |
Gets the entityType based on registry name. Throws an exception if it can’t find the entityType.
Returns: The found entityType
Return Type: MCEntityType
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The entityType’s resource location |
Gets the equipment slot type based on name. Throws an error if it can’t find the equipment slot type.
Returns: The found equipment slot type
Return Type: MCEquipmentSlotType
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The equipment slot type’s name |
Gets the fluid Stack based on registry name. Throws an error if it can’t find the fluid.
Returns: A stack of the liquid with amount == 1mb
Return Type: IFluidStack
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The Fluid’s resource location |
Gets the item based on registry name. Throws an error if it can’t find the item.
Returns: The found item
Return Type: IItemStack
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The item’s resource location |
Gets an ItemGroup by name.
Will throw an error if the group could not be found!
Returns: The found ItemGroup
Return Type: ItemGroup
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The ItemGroup’s name. |
Return Type: MCPotion
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description No Description Provided |
Gets the villager profession based on registry name. Throws an exception if it can’t find the profession.
Returns: The found profession
Return Type: MCVillagerProfession
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The profession’s resource location |
Gets the recipeManager based on registry name. Throws an error if it can’t find the recipeManager.
Throws an exception if the given recipeType is not found.
This will always return IRecipeManager.
There is also a BEP for that but that works differently so it can’t be automatically added to the docs here.
But the BEP looks the same as the other ones: <recipetype:minecraft:crafting>
Returns: The found recipeManager
Return Type: IRecipeManager
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The recipeManager’s resource location |
Creates a Resource location based on the tokens.
Throws an error if the tokens are not a valid location.
Returns: The location
Return Type: MCResourceLocation
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description The resource location |
Return Type: TextFormatting
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description No Description Provided |
Gets a tool type by name.
If the tool type doesn’t exist yet, this will create a new one with the given name
Returns: The found tool type or a new one
Return Type: ToolType
Parameter | Type | Description |
---|---|---|
Parameter tokens | Type string | Description the tool type’s name |