Furnitures and machines

How to create furnitures and machines

furnitures.yml

You can decide to create a simple furniture, with no real use that is just a decorative item or to add some cool functionality to your furnitures. An example is the vending machine, you can create a "trading machine" to allow players to trade junk and get cool items.

Example of decorative furniture

table:
  enabled: true
  permission: table
  model_id: 4
  name: '&fTable'
  lore:
    - "&7Decorative item"
  craft_recipe:
    enabled: true
    pattern:
      - XXX
      - WWW
      - WXW
    ingredients:
      W: SPRUCE_PLANKS

Example of useful furniture with trade menu

trade_machine tag can also be used in blocks

Specific properties

trade_machine

You can notice there is a special specific property named "trade_machine", if you specify it in your config when player rightclicks the furniture a trade menu will be opened with different products:

has_gravity

You can specify if the furniture has gravity

fixed_rotation

Set if the furniture must rotate based on player head or not when placed

small_hitbox

Set if you want to use small hitbox (small armorstand) or not

Last updated

Was this helpful?