Мова

Custom Item API

Custom Item API

Modrinth

An API to make your own custom blocks and custom items.

1.7k завантажень 12 підписників оновлено 25mo ago
остання v5.5 Modrinth
Paper 1.20 – 1.21 DecorationGame-mechanicsLibrary

An API for making custom blocks and items for 1.20+ on paperMC

How to use?

Data driven blocks and items

Create a 'pack'

To create custom items and blocks in this way, you will have to create a 'pack' similar to a datapack or a resource pack. The file structure of which looks like this:

- <namespace>
   - blocks
      - default_block
      - transparent_block
   - items

The namespace of your pack will be what shows before the item id in the give command namespace:item_id.

Add items

To add an item you just need to create a json and put it in the items folder. The name of the file will become the item id.

Add blocks

To add a block you need to create a json. If you want it to be a transparent block, you need to put it in the transparent_block folder. It is recommended to use a block that is transparent as the placed_block, otherwise it might look weird. If you want a normal block you put the json in the default_block folder. The name of the file will become the block id, for good practice you should make this id the same as the id of its item but it's not required.

Use a 'pack'

To use a 'pack' you need to put it in the packs folder, this can be found by going in the plugins folder and then the custom_item_api folder.

- plugins
   - Custom_Item_Api
	- packs

Add blocks and items with a plugin

Custom items

You can add a custom item by creating a new CustomItem(Material material, NamespacedKey key, Class actions).
This will create the custom item if there isn't a custom item with this NamespacedKey. The actions define what should happen when the item is clicked, it's a class that implements CustomItemActions.
You can change the texture,tags,...
If you want to place a custom block using this item you can add this with CustomItem#setCustomBlock(NamespacedKey)

example:

NamespacedKey itemKey = new NamespacedKey(plugin, "example_item");
CustomItem customItem = new CustomItem(Material.FURNACE, itemKey, Class.forName("org.super_man2006.custom_item_api.utils.items.EmptyCustomItemAction"));
customItem.setCustomBlock(blockKey);
customItem.setName(Component.text("Example"));

Custom blocks

You can add a custom item by creating a new CustomBlock(Material material, NamespacedKey key, Class actions, Material placedBlock).
This will create the custom item if there isn't a custom item with this NamespacedKey. The actions define what should happen when the block is placed/broken/clicked on, it's a class that implements CustomBlockActions.
You can change the texture,tags,...
The block uses an item texture, NOT a block texture. This means that if you set custom model data (cmd) you can change the texture.
If you want to drop a custom item after breaking this block you made with CustomBlock#setDropItem(NamespacedKey)

example:

NamespacedKey blockKey = new NamespacedKey(plugin, "example_block");
CustomBlock customBlock = new CustomBlock(Material.FURNACE, blockKey, Class.forName("org.super_man2006.custom_item_api.utils.blocks.EmptyCustomBlockAction"), Material.STONE);
customBlock.setRotation(CustomBlock.Rotation.AROUND_Y);

Features / Bugs

If you find bugs or want a feature to be added, ask in the discord or create an issue on github.

Версії

Release
5.5
paper · 1.20.6, 1.21 · 25mo ago
Updated to Minecraft 1.20.6 and Java 1.21 **Full Changelog**: https://github.com/Senne98/Custom-Item-Api/compare/Custom_Item_Api-5.4...Custom_Item_Api-5.5
633
Release
5.4
paper · 1.20, 1.20.1, 1.20.2 · 27mo ago
## What's Changed * Performance in https://github.com/Senne98/Custom-Item-Api/pull/10 * Optimized light updates of custom blocks **Full Changelog**:…
230
Release
5.3
paper · 1.20, 1.20.1, 1.20.2 · 28mo ago
## What's Changed * org.super_man2006.custom_item_api.utils.blocks.EmptyCustomItemAction to…
82
Release
5.2
paper · 1.20, 1.20.1, 1.20.2 · 28mo ago
## What's Changed * permissions get saved now when the server restarts **Full Changelog**:…
85
Release
5.1
paper · 1.20, 1.20.1, 1.20.2 · 28mo ago
Added a notification when a new version is available. Give log info about every block and item that is loaded. **Full Changelog**:…
91
Release
5.0
paper · 1.20, 1.20.1, 1.20.2 · 28mo ago
## What's Changed * Added a way to create data driven blocks and items with 'packs'. * Added ``customapi`` command with ``permission/help/give`` to use the…
70
Release
4.1
paper · 1.20, 1.20.1, 1.20.2 · 29mo ago
Features: - Changed customBlockActions: you now need to give the class (with .getClass) instead of an Instance. - Custom blocks can now drop vanilla items.
85
Release
4.0
paper · 1.20, 1.20.1, 1.20.2 · 30mo ago
## Features * Added Transparent blocks * Added the ability to choose the block placed at the 'core' of a custom block
75
Release
3.0
paper · 1.20, 1.20.1, 1.20.2 · 32mo ago
Features: - Added ```CustomBlockActions``` and ```CustomItemActions```, which can be used to add your own features to items and blocks. - Items and blocks are…
133
Release
2.0-SNAPSHOT
paper · 1.20, 1.20.1, 1.20.2 · 33mo ago
Bug Fixes: - Pistons could move the block "inside" the custom block Features: - Pistons can no longer move custom blocks.
120
Alpha
1.0-SNAPSHOT
paper · 1.20, 1.20.1 · 34mo ago
First release, might still contain bugs.
103

Коментарі 0

Поки немає коментарів. Будь першим, хто поділиться думкою.

Завантажити Custom Item API

Файли надаються напряму з першоджерела. Modgrid не зберігає та не змінює їх.