item.yml

Sample Item (No Right-Click Interaction): Here's an example of how you might define an item in a YAML file for CoreExtensions:

# item.yml
items:
  custom_item_1:
    name: "Test Item" # Item name (not included in lang file)
    namespace: "coreextensions" # Namespace (string type)
    id: "custom_item" # Item ID (string type)
    maxCount: 64 # Maximum stack size (integer, int type)
# Add more items...

In this example, the item named "custom_item_1" is defined with properties such as its name, namespace, ID, and maximum stack size.

This structure allows you to define and manage items within a CoreExtensions pack, making it easier to organize and maintain the content. This example specifically showcases an item that does not have any right-click interaction.

Last updated