public class CustomRecipe
extends java.lang.Object
CustomItem
s.
Adding a custom recipe enables the player to craft the target item.Server.registerCustomRecipe(net.risingworld.api.objects.custom.CustomRecipe)
Modifier and Type | Class and Description |
---|---|
static class |
CustomRecipe.Type |
Constructor and Description |
---|
CustomRecipe(java.lang.String uuid,
CustomRecipe.Type type,
int variation,
java.lang.String category,
java.lang.String... craftingStations)
Creates a new custom recipe.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCategory() |
java.lang.String[] |
getCraftingStations() |
java.lang.String[] |
getIngredients()
Gets all ingredients which are required to craft this item.
|
java.lang.String[] |
getLocalizedCategories() |
java.lang.String[] |
getLocalizedDescriptions() |
java.lang.String[] |
getLocalizedNames() |
Vector3f |
getPreviewOffset() |
Quaternion |
getPreviewRotation() |
float |
getPreviewSize()
Gets the size of the preview element (in the crafting menu).
|
int |
getTargetCount()
Gets the amount of items you get when crafting this item.
|
java.lang.String |
getTargetUUID()
Gets the UUID of the target item/object.
|
int |
getTargetVariation()
Gets the variation of the target item/object.
|
void |
setIngredients(java.lang.String... ingredients)
Sets the ingredients which are required to craft this item.
|
void |
setLocalizedCategories(java.lang.String... categoryNames)
Sets a (localized) name for the category.
|
void |
setLocalizedDescriptions(java.lang.String... descriptions) |
void |
setLocalizedNames(java.lang.String... names)
Sets a (localized) name of the recipe.
|
void |
setPreviewOffset(float x,
float y,
float z) |
void |
setPreviewOffset(Vector3f offset) |
void |
setPreviewRotation(float x,
float y,
float z,
float w) |
void |
setPreviewRotation(Quaternion rotation) |
void |
setPreviewSize(float size)
Sets the size of the preview 3D view.
|
void |
setTargetCount(int count)
Sets the amount of items you get when crafting this item.
|
public CustomRecipe(java.lang.String uuid, CustomRecipe.Type type, int variation, java.lang.String category, java.lang.String... craftingStations)
Server.registerCustomRecipe(net.risingworld.api.objects.custom.CustomRecipe)
),
players will be able to craft the item at the specified crafting station(s).uuid
- the UUID of the custom item.type
- the recipe type.variation
- the target variation of the item. Default is 0category
- the item category (where the item is listed). You can either specify
a new category, or alternatively you can use an existing one (e.g. "tools").
Use lower-case names (the specified category is only used as internal identifier). For the
actual category name (which is shown to the player), you can use setLocalizedCategories(java.lang.String...)
(for example, you could use "oldweapons" as category name, and specify "Historic Melee Weapons" as
localized name).craftingStations
- the crafting stations where the item can be crafted. Always use lower-case names.
Examples: "player" (default crafting menu, accessible from the inventory), "workbench" (first workbench),
"sawmill" (saw bench), "workbench2" (workbench tier II) etc.public void setTargetCount(int count)
count
- the new amount of items you get when crafting this item.public int getTargetCount()
public int getTargetVariation()
public java.lang.String getTargetUUID()
public java.lang.String getCategory()
public void setLocalizedNames(java.lang.String... names)
names
- an array of all localized names for this item. If you want to support
multiple languages, you have set the name like this: "en=Pickaxe" or "de=Spitzhacke" etc.
If you want to use a single, universal name for the item, just provide it without
any language indicators, i.e. "Pickaxe"public java.lang.String[] getLocalizedNames()
public void setLocalizedDescriptions(java.lang.String... descriptions)
public java.lang.String[] getLocalizedDescriptions()
public java.lang.String[] getCraftingStations()
public void setLocalizedCategories(java.lang.String... categoryNames)
categoryNames
- an array of all localized category names for this recipe. If you want to support
multiple languages, you have set the name like this: "en=Magic Weapons" or "de=Magische Waffen" etc.
If you want to use a single, universal name for the item, just provide it without
any language indicators, i.e. "Magic Weapons"public java.lang.String[] getLocalizedCategories()
public void setIngredients(java.lang.String... ingredients)
ingredients
- the ingredients, as an array of strings.public java.lang.String[] getIngredients()
public void setPreviewSize(float size)
size
- the size of the preview model. Default is 1.0fpublic float getPreviewSize()
public void setPreviewOffset(Vector3f offset)
public void setPreviewOffset(float x, float y, float z)
public void setPreviewRotation(Quaternion rotation)
public void setPreviewRotation(float x, float y, float z, float w)
public Vector3f getPreviewOffset()
public Quaternion getPreviewRotation()