Jump to content

[1.14] loot_table


BeerHuntor

Recommended Posts

im following along with a tutorial and creating a basic slab block. However when I mine it, the item doesnt drop.  can someone explain what these keywords mean in the loot table for the acacia_slab so i can modify it to suit my needs.

{
  "type": "minecraft:block",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "functions": [
            {
              "function": "minecraft:set_count",
              "conditions": [
                {
                  "condition": "minecraft:block_state_property",
                  "block": "minecraft:acacia_slab",
                  "properties": {
                    "type": "double"
                  }
                }
              ],
              "count": 2
            },
            {
              "function": "minecraft:explosion_decay"
            }
          ],
          "name": "minecraft:acacia_slab"
        }
      ]
    }
  ]
}

I am trying to make slabs from oak logs however nothing is dropping for me.  The tutorial I am following their loot table drop file isnt this in depth..

Edited by BeerHuntor
Link to comment
Share on other sites

Ok I think i understand what its doing,  however it still isnt working for me.

{

  "type": "minecraft:block",

  "pools": [

    {

      "rolls": 1,

      "entries": [

        {

          "type": "minecraft:item",

          "functions": [

            {

              "function": "minecraft:set_count",

              "conditions": [

                {

                  "condition": "minecraft:block_state_property",

                  "block": "moreslabsmod:oak_log_slab",

                  "properties": {

                    "type": "double"

                  }

                }

              ],

              "count": 2

            },

            {

              "function": "minecraft:explosion_decay"

            }

          ],

          "name": "moreslabsmod:oak_log_slab"

        }

      ]

    }

  ]

}

Im setting the double state model to minecraft:block/oak_log if that makes any difference. But even still nothing is dropping when its not a double.
image.png.ee9f13eddab632935502ff985c460b32.png
I do have everything set correctly right?  I havent got it in a wierd place where it shouldn't be.. as this is how it is shown in the tutorial .

Edited by BeerHuntor
Link to comment
Share on other sites

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.