clickitem.yml

Sample Clickable Item (Supports Right-Click Interaction): Here's an example of how you might define a clickable item with right-click interaction in a YAML file for CoreExtensions:

# clickitem.yml
items:
  clickable_item_1:
    name: "Test Clickable Item" # Item name (not included in lang file)
    namespace: "coreextensions" # Namespace (string type)
    id: "clickable_item_1" # Item ID (string type)
    maxCount: 16 # Maximum stack size (integer, int type)
    attackDamage: 5 # Attack damage (integer, int type)
    attackSpeed: 1.0 # Attack speed (double type)

In this example, the item named "clickable_item_1" is defined with properties including its name, namespace, ID, maximum stack size, attack damage, and attack speed. This item is designed to have right-click interaction.

The accompanying data pack setup consists of various functions and configurations to enable the right-click interaction for the item. It involves creating function files, setting up scoreboard objectives, and defining trigger functions to handle the right-click behavior.

Please note that this example provides an overview of the steps involved in setting up right-click interaction for a CoreExtensions item. It's essential to follow these steps and customize the functions and triggers according to your specific needs.

Last updated