Skip to content

Latest commit

 

History

History
57 lines (51 loc) · 1.31 KB

File metadata and controls

57 lines (51 loc) · 1.31 KB

Leaves and wood

Creating the leaves and wood blocks

In order to create a custom tree you have to create two blocks for each tree: leaves and wood.

Follow this tutorial to create blocks

{% content-ref url="../block/create-a-block.md" %} create-a-block.md {% endcontent-ref %}

For example I created 2 blocks by following the tutorial: my_leaves, my_log.

info:
  namespace: myitems
items:
  my_leaves:
    display_name: "My Leaves"
    permission: myitems.my_leaves
    resource:
      material: PAPER
      generate: true
      textures:
      - block/my_leaves.png
    specific_properties:
      block:
        hardness: 0.2
        cancel_drop: true
        placed_model:
          type: REAL_TRANSPARENT
          break_particles: ITEM
  my_log:
    display_name: "My Log"
    permission: myitems.my_log
    resource:
      material: PAPER
      generate: true
      textures:
      - block/my_log/log_top.png
      - block/my_log/log.png
      - block/my_log/log.png
      - block/my_log/log.png
      - block/my_log/log_top.png
      - block/my_log/log.png
    specific_properties:
      block:
        hardness: 1.7
        placed_model:
          type: REAL
          break_particles: ITEM
        break_tools_whitelist:
        - _AXE
        - _axe
        - HAND