๐ถNoteBlock Mechanic
How to add your own blocks to the game
How to create a simple block?
Parent Models
The Nexo-item root configuration is the same as for any item (you can use any material like a diamond for example) and set an itemname, etc. It is recommended to not use a block for your material, sticking to such materials as PAPER For the pack section you can use your own model or texture for your block. If all you have is a texture, you can specify a parent_model and Nexo will generate the needed files for you. A Normal 1x1x1 block uses "block/cube_all"
Each of these parent models take a different amount of textures.
block/cube_all
takes 1 texture, block/cube_column
takes 2, block/cross
takes 1, block/orientable
takes 3 and block/orientable_vertical
takes 2.
For example, if you want to make a log block using the Directional Block mechanic, you should use block/cube_column
.
All the vanilla models can be found at MCAsset. Find the one you want to use for your usecase. Recommend using a "texture map" in the config for multi-texture setups.
CustomBlock Mechanic configuration
To use this mechanic you need to tell to Nexo which model to use (to use the generated one, just put the name id of your item). You then need to use custom_variation which is not already used by another block. Valid custom_variation is 1..1149
Custom Sounds
Furniture, like custom blocks, can have custom sounds
All the volume and pitch values are set to be what Minecraft uses for blocks normally. If you want to change the volume or pitch, you can do so by using the format below. Keep in mind these two formats are compatible with eachother. We recommend just use the default one, but the option is there if you want to change it.
Customize the breaking speed
You can customize the breaking speed and the most suitable tools with the hardness subsection.
drop.best_tool
dictates the "preferred tool" for this block which further tweaks the speed
Limited placing
You can customize what blocks a custom block/furniture can be placed on with limited_placing
subsection. You can use the roof
, floor
and wall
options to dictate where a block can be placed. By default, all are set to true
.
The type
specifies if it should only be allowed on or denied on specific blocks.
If type is ALLOW
the block can only be placed on the given blocks.
If the type is DENY
can be placed on all blocks not matching the given blocks.
The block_tags
can be found at this page. Useful if you want to allow/deny a group of blocks.
The block_types
are materials. Useful if you want to allow/deny a specific list block.
The nexo_blocks
are blocks defined in the nexo configuration.
This allows all custom blocks and furniture in here, but furniture requires a barrier-hitbox.
Beacon Base
You can also make a custom block work in beacons with the following:
Blast-Resistant
You can make your custom-block blast-resistant by adding the following.
If unspecified it defaults to false.
You can also make your block drop something when it explodes by adding in_explosion: true
to your Loot like below
BlockLocker
You can use this to allow protection via BlockLocker Valid protectionTypes are CONTAINER, DOOR, ATTACHABLE
Storage
This is a sub-mechanic for furniture and noteblock mechanics, that let you make a custom storage container. Essentially a chest, closet or whatever you might want.
There's a few different types: STORAGE, PERSONAL, ENDERCHEST & DISPOSAL. STORAGE is similar to a normal chest. Anyone can open it and view the content of it. PERSONAL is essentially a custom enderchest, letting you edit the row-count and so on. ENDERCHEST is literally just the enderchest inventory, but letting you make a custom block/furniture to access it. DISPOSAL is a custom trashcan, letting you throw items in it, and they will be deleted when closed.\
Falling Blocks
This is a sub-mechanic that mimics sand & gravel for your custom block. Placing it next to another block, with no block beneath, will make it fall
Last updated