TechnoVision – Minecraft 1.16.4: Fabric Modding Tutorial – Loot Tables (#5)

Video Information

Hey guys it’s thomas here with technovision and welcome back to another minecraft modding tutorial video for 1.16.4 now in this episode we’re going to be covering loot tables to add a custom block drop to our block and in order to fit all the information into this one video

I’m going to be splitting this up into three sections and as you can see on screen in the first section we’re gonna be adding a custom blue table so essentially uh block drops to our ruby block that we made in the previous episode and this will change based on the

Enchantment on the pickaxe then in the second part we are going to be overriding the vanilla loot table for the cole or block and then in the third episode we are going to be injecting some of our own entries into the existing loot table for the emerald ore block so three

Examples of how you can use loot tables to add some interesting drops to your game alright so to get started we are actually going to create a directory to store our custom loot tables so to do that you want to go over to your package explorer over here

And go open resources now right now we have a a package here a directory called assets and this obviously stores all of our assets for the game but what we want to do is close this up and we actually want to create a new folder and resources here

So right click resources new directory and we’re going to call this data and just like you would expect this data folder is going to hold all the data jsons for our game so what you can do in this data folder is create a new directory

And you want to name this the name of your mod id so in my case i have right here tutorial so i’m going to name mine tutorial so as you can see just like assets we have our our mod id right after there we go so inside of our mod id

Folder we’re going to right click create a new directory and we’re going to name this loot tables and you want this to be it has to be specifically loot underscore tables with that underscore there we go and inside of loot tables we want to right click create a new directory and we’re going

To call this directory blocks all right so this is again the reason we do this is because it follows the structure of the game’s packages but so now we have a data your mod id folder loot tables and then all of the loot tables regarding blocks

So custom block drops are going to be inside of this blocks package here now i am going to show you the other packages inside of loot tables just so that in the future you can add your loot tables to more advanced things to their respective directory

So the second directory we want to make inside of loot tables is going to be called chests and we’re not going to be using this in this episode but you will be throwing your loot tables for all of the things that spawn inside of chess whether that’s

Like a dungeon chest or in a village that will be going inside of here another directory inside of loot tables that we want to make is called entities again we will not be using this inside of this tutorial but any sort of loot table that has to do with the drops

For an entity like for example the drops of a creeper or a a pig would go inside of this folder and then finally we have our last directory inside of loot tables and that’s called a gameplay and you’re probably never going to be using this unless you are making a very advanced mod

But uh all the loot tables that have to do with things like trading like piglen trading uh phishing all that sort of stuff would be going inside of this folder right here now to actually make your loot table you want to come over to the blocks package here

Because we are going to be making a loot table for our ruby block and you want to right click create a new file and this is going to be a json file and it’s going to be named the path of your your specific block that you are making this loot table for

So for example before i actually do this in mod blocks you can see that our ruby block the path is named right here ruby underscore block so we would have to set our loot table’s name to this that way the game knows that this is what we’re setting the loot table for

So again go to your blocks here blocks package right click new file and name it exactly what you put your block path so mine is ruby underscore block and then you want to add dot json of course because this is a json file hit enter add a repository

All right so we now have our json file now loot tables are very complicated in how they actually are created and structured and it does require a lot of knowledge of json but i have a really helpful solution in the description so if you head to the description of

This video you can actually find this website here and i actually found this from my good friend turdy wordy who also does tutorials on on minecraft and modding and this is essentially a loot table generator which will allow you to generate a minecraft json blue table for a block or really

Anything without having to actually code in json which is super helpful especially if you don’t know json that well although it always helps now first thing you want to do make sure that the version up here is set to 1.16 uh because that is the the version we

Are using for this tutorial another thing i should mention before we continue is that there are a lot of presets here with this preset button you can click any of these presets like for example if you wanted to find the redstone or loot table you could type redstone underscore or

And there we go you can see blocks redstone ore and if you click it and not only does it give you the redstone or json here on the right but you can actually edit any of the values as necessary so super helpful and i definitely recommend playing around with that

But we are just going to reload real quick all right so before we actually get started here with all these values i want to actually explain really quickly what loot tables are and how they are structured and how they work because loot tables are really really complicated when you don’t understand

Exactly what these sort of entries are and what they’re doing so i’m gonna make a little crappy animation that you can look at right now but essentially every loot table is a json file that has pools now a pool is like essentially just a group of entries

There can be multiple pools in a loot table there can most often just be one pool but just know that there can be any amount of pools that you want so inside of a pool there are entries and there’s also a value called rolls and this essentially

Determines how many of these entries are randomly selected so these entries can be all sorts of different stuff all sorts of different drops and a lot of different things that you can mess around with that i’ll show you in a second but you can add multiple of them and

Inside of these entries you can add functions and conditions now these functions will carry out unique properties uh and then the conditions will actually specify what conditions you need to meet for this entry to actually roll and to happen i know that’s really complicated and i

Hope this sort of helps a little bit but you’ll see it in action in a second but just know that there can be multiple pools and in each of these pools can be multiple entries and each of these entries can be multiple functions and conditions

So yeah all right so now that we have that out of the way uh first we want to select the type of our loot table we are going to be making a block drop loot table so we are going to click minecraft block here

There we go and you can see it set the type right there to minecraft block and uh you can add as many pools as you would like but i’m going to be starting out with one pool so you can see it auto generated a pool for us here

So we have a pool and we need to select the rolls value now the rolls like i mentioned earlier is uh how many entries in the pool are going to be randomly selected so if you have like 10 entries for example inside of this pool and you have a roll value of 2

That means out of those 10 entries 2 will be randomly selected from this pool they’ll compete with each other to get selected when you break this block uh to keep this simple i’m just gonna be setting this to one because i only want one thing to execute

When um one entry to execute when i break the block but you can mess around with this you can even have a range like a minimum and maximum so it’s random or binomial if you want but i’m going to be having exact one and it shows you right here uh some

Information you can also have bonus rolls but i’m not going to be messing around with that so we also have an entry here it auto-generated an entry for us and you can see here so we have our pool right here and instead of that pool is the entries array and we have our

First entry here and this entry is just an item entry so uh we can select with this entry an item that will drop uh when we break this block so right now what this is saying is that when this uh this block is being broken in

In our case it’s the ruby block it is going to drop a stone block we don’t want that obviously so i’m going to delete this and you can type in whatever you want to drop when you break your block i’m going to be setting this up kind of

Similar to an ore so actually when you break the ruby block i want it to drop the ruby items so to just get one of your custom items in here you’re going to type your mod id so tutorial colon and then the name of your your item or block so in my case

Ruby and so what this is saying it’s going to give you an error but that’s because the the generator doesn’t know about our custom items so just ignore that but essentially this is just going to this loot table right now super basic uh but i believe it would work

Uh is essentially just dropping a ruby item one ruby item every time the block is broken so yeah and again you could also have it drop like itself like it could drop the ruby block uh whatever you wanted if you wanted to use a vanilla item you could type minecraft because that is

The mod id of minecraft’s colon and then the name of the block or item or you could just select from this list here and there’s tons on there so but again i want this to drop our ruby item so tutorial colon ruby and we can add a function or condition uh

Condition would determine you can see you can select some weird conditions here would determine uh what condition this entry needs to meet to run we’re not going to mess around that just yet but we will do that later and then functions are just some interesting things that we can set

For this uh this entry so one of the functions that we can set for example is the set count so if we add a function here again to add a function to this entry i just selected the functions button here and there’s a bunch of different functions here if i delete this

You can see all the different functions i’m going to be selecting set count i believe right here set count and this will set the amount of the item you specified how much of it will drop so if you set this to one for example then one ruby will drop

If you set this to five then five ruby items will drop every time you break the the block uh you could also set it to range which is what i’m gonna do so i’m gonna set the minimum range to one and the maximum to four and what this means is that every time

You break the ruby block with this uh loot table uh there will be a random chance to get anywhere between one to four rubies so you can have a range like that uh or you could also have a binomial so yeah i’m going to do that so

You’re going to get a chance between one to four rubies every time you break this block and we can also set again a condition for this function so even functions can have conditions uh so i know it’s very advanced a lot of stuff going on here but

Again just to show you you can select any condition you’d like here uh but i don’t want any conditions for right now so i’m just going to leave this be so there we go right now our loot table you know it is functional like i said

Uh but we want a little bit more than this so um in order to actually have multiple functions um rolling but that don’t conflict with one another uh what we can do is we can actually get rid of this function here and this entry and we can add a new entry

And we can set this to alternatives and uh we can actually have children here and we can select children entries so what alternatives we’ll do as an entry will allow you to have uh this is like one entry and when this is uh rolled by the pool it will uh

Check any of these entries essentially so this can this will allow us to do stuff like having a silk touch silk touch like custom enchant effects as well as like fortune and all sorts of stuff like that so i’m going to be going with the entry alternatives i just wanted to show you

That previous example just so you kind of understand entries uh and then inside of here we’re going to add a children this is going to be item again i want it to drop the tutorial the tutorial ruby and we’re going to add a function here

Uh the count i want to set it to a range between one and four and we’re going to add another children to or another child rather to alternatives so another child because what i want to happen is i want silk touch to actually drop the the block itself not a ruby item

So what we can do here is set this to item again because it is an item drop uh we can set the drop to our mod id tutorial colon and then the block so ruby underscore block because this is what i want to drop for this specific

Entry and then we can select a function um we can select the count if we want uh i believe one is default though so we don’t need to set any of these functions let’s see if i want anything interesting in here uh no i don’t need anything interesting in

Here so we can just get rid of this function but we do want a condition so the reason we want to condition is because we want to check if the player has the silk touch enchantment so we can select i believe it is a match tool

For a condition and you can do all sorts of stuff here you can check if the player is holding like granite you can check if they’ve got like a potion potion effect you can check item tags all sorts of stuff but i’m just going to be checking in an enchantment

So i’m going to leave all this blank and i’m just going to select enchantments and we want to check for silk touch silk touch and we want we can check an exact level or we can check like a minimum i’m going to do range because i want just like a minimum so

I’m going to leave max empty because there will be no max but i want to make sure that they have at least level one of silk touch for this so all right hopefully this is making sense so basically if you see over here it’s editing our our uh loot table here so um

This is this pool is gonna roll the minecraft alternative uh entry here and if the uh the player has the enchantment silk touch and it’s at least level 1 then this loot table will make sure that the block drops itself the ruby block if the player does not have silk touch

Then it will run this entry which will give the player between one to four ruby items so yeah kind of hopefully making sense here i know it’s a lot to process but you’re just gonna have to mess around with it yourself some other things i want to add inside of our our

Ruby item drop entry here is some additional functions so let’s see what we can add um let’s go to functions for this entry so that would be right here and let’s see what other functions we can add here we could add a uh apply bonus yeah apply bonus here this will allow us

To uh set like a bonus amount that will drop when the player has a fortune enchant because you know these things they don’t work like naturally like just because you have your block dropping rubies doesn’t mean the fortune enchant will automatically affect that so we need to add it ourselves so

We can do like apply bonus for example and we can select the enchantments uh i think it’s looting or not looting what is it called fortune that’s the one for mining and we can select a formula here uh you could select like an individual multiplier but i’m going to just be following the

The or drops formula and there we go so as you can see right here when we mine our our thing with fortune it will uh it will apply a bonus so that’s very important i want to make that a distinct there and then i guess another thing another function we could add

Instead of our basic item drop here is uh uh what’s another one that most ores have explosion decay is another one that most uh ores have so this will make sure that uh it will change the drop amount if um the uh the thing explodes from like a

Tnt piece for example because as you know in minecraft if an ore is blown up with tnt sometimes the ore will actually uh like be destroyed in that explosion so yeah that’s what explosion decay will affect and yeah i think that’s pretty much all that we need for right now so as you

Can see we have created a pretty advanced i would say it’s you know it’s basic but pretty advanced medium level advanced loot table and you can see it all right here and just to run through it one more time uh this time on the actual loot table itself

Um we have one pool just a single pool with one roll so it’s going to select one entry and we actually have one parent entry called minecraft alternatives that has two children the first child is a block drop for the ruby block so this will this means that the ruby

Block will drop itself and we’re making sure that the player has silk touch for this with at least a level of one uh if that is not the case then it will move on to this other entry here for a minecraft item and this will drop the ruby item our custom ruby item

And uh we’ve got a few functions here first the ruby item could be anything from one to four rubies so that will be selected here uh we also have a bonus being applied if the player has a fortune and chance and we also have explosion decay so as you can see we’ve got

All these sort of like sub functions and sub uh conditions inside of our entries inside of our pool so yeah again the only way that you’re going to actually make sense of any of this is by trying it out yourself and making mistakes and specifically checking out these presets

So once you are done with your loot table and you’re all happy with it you can actually come over here copy your loot table go back to intellij right click in your your json here where your loot table should be and you can paste it in and just like

That we have our loot table and thank god for this uh this generator otherwise we would have to uh pretty much code all this by hand which would not be fun i can promise you right now so yeah there you go you’ve got your loot table all set in intellij

Alright so we should be good to go and run the game now to test this out so file save all and we can run the game and i will see you in a second all right so we’re inside of the game now and we’ve got a ruby blocks and some pickaxes

And if we throw this on the ground uh if you remember in the last episode we actually set the harvest level to the number two which means that we should only be able to harvest this with iron tools and above so if we actually try this with an iron

Pickaxe we should get between one to four uh rubies and there we go we got three this time so it should be random so if we try it one more time we might get a different number we might get the same but there we go

That time we got two rubies so it is working perfectly and if we try it with a stone pickaxe it should not be able to harvest because it is below the harvest level that we set in the blocks tutorial so there we go so we got nothing that

Time perfect and then i also want to try this out with our silk touch pickaxe so we got silk touch and chant on here and it should drop the block itself so there we go perfect just like how an ore works in the vanilla game and also of course if you

Enchant one of these pickaxes with fortune there will be a chance for extra rubies when you mine it just like we set in the loot table all right so that’s the end of stage one of this tutorial episode now in the second stage i’m going to be showing you how to completely override

A vanilla loot table to add your own custom one now i do not recommend doing this if you are trying to make a mod that is going to work with other mods because this will completely override even changes that other mods are making to vanilla loot tables

I can show you in the third phase of this episode how you can get around this so i really don’t recommend this method unless you really think that it’s specific to your use case but i’m going to show it anyway just you have the tools available to you

So if you want to completely override a vanilla loot table you want to come over to your data folder here and as you can see we have the mod id folder for our mod id which is tutorial now what you can do is you can actually create

The directory to the vanilla game files using the vanilla game mod id which is minecraft and you can overwrite them from there so we can actually right click on data create new directory and we want to name this minecraft because that is the mod id of the vanilla game

And then just like we did here we’re going to create the same directory so right click on minecraft create a new directory and just name it loot underscore tables and then inside of here i’m going to only make the blocks one but you’re welcome to use the other ones if you

Are making loot tables for those things i’m going to right click create a new directory and name this blocks great so we now have the directory of the vanilla game loot tables for blocks so what i’m going to do is i’m actually just going to copy this ruby block

The one we made and i’m just going to just right click copy and i’m just going to paste it in here just so that i don’t have to make another one uh because i do want to keep this video somewhat short and i’m going to rename this

Uh we want this to override an existing vanilla block so in my case i guess we’re going to do this for the coal ore block so this would be coal underscore or json and you hit okay and add a repository great so we actually now have a we are overriding

The loot table for the cool or block with our custom ruby block json so now our coal ore should drop rubies one to four rubies unless you have a silk touch pickaxe in which case it’ll drop a ruby block so yeah and again this will completely override any other changes that other

Mods or vanilla minecraft are making to this loot table so we can test this out by file save all and clicking the green triangle to run the game all right so we’re back inside of the game and we’ve got our coal ore blocks so if we drop one down and we mine it

With an iron pickaxe there we go as you can see is completely overridden the uh the vanilla loot table for it so now it just pretty much follows our custom loot table perfect alright great so that’s the end of phase two so now we have created a custom

Blue table for our custom block we’ve overridden a vanilla blue table and now we are going to inject additional entries into an existing loot table without completely overwriting it so to do that and again this is going to allow you to actually um change or add code

To the uh the loot table for a vanilla block without actually overriding the things that other mods are doing so this is the preferred way of doing it you can do this in another class if you would like but i’m going to be doing it in our main class just because it’s not

That much code but you want to make sure that everything you do eventually ends up in your on initialize method here so go to your main class essentially and what i’m going to be doing for this phase is we are going to be editing or i guess injecting additional code additional entries into

The loot table for the emerald ore block so first i’m going to grab the emerald or loot table and to do that we can just create a private static final identifier and i’m going to name this emerald underscore or underscore loot underscore table underscore id this is going to equal oh i spelt

Emerald wrong this is going to equal a uh just a simple identifier so a new identifier and uh to grab a loot table id you just want an identifier uh with the the mod id and then the uh the actual path so the mod id in this case since it’s a vanilla

Loot table would just be minecraft and the pathway would be blocks slash oh blox slash emerald underscore or i keep misspelling emerald there we go so as you can see we are grabbing the uh the emerald or loot table id by getting the identifier getting a new identifier essentially

With the namespace or mod id uh in this case minecraft because it’s vanilla and then the pathway to the actual loot table and you want to omit so get don’t include um the loot underscore tables here just blocks and then the name of the the block and then i’m also going to

Grab just really quick because we’re going to do some stuff with it in a second the uh pathway or the identifier for our custom ruby block loot table so again we can just do private static final identifier i’m going to name this ruby underscore block underscore loot underscore table

Underscore id this is going to equal a new identifier oh definitely not that a new identifier and this time the namespace is not going to be minecraft because it’s not vanilla this is a custom block or a custom blue table rather so this would be our mod id so we would just

Throw in mod id again accessing that string up here and then for the path uh it would be blocks slash and then as you can see here the pathway is blocks and then ruby underscore block so that’s the path blocks and then ruby underscore block

There we go perfect so now we have our ruby block loot table all right now to use these i’m going to make a new method right below the uninitialized method called modify loot tables and we’re just going to throw all of our code in there

Just so we can call it in on initialize without any sort of like you know messy code in the main uh the main function here so i’m gonna make a public or no i’m gonna make it private rather because no one needs to access this so private void uh modify loot tables

Modify loot tables there we go and again you can name this whatever you’d like this is just my specific one and i’m going to be throwing my code in here so in order to actually inject additional entries into a a loop table we need to get the loot tables when they’re being

Registered to the game so to do that we can actually get loot table i believe it’s not not config loot table loading callback i think yeah okay loot table loading callback uh dot events and then i believe it’s dot register and inside of this dot register we can uh well first let’s

Set the parameters so resource manager it’ll if you type resource manager and you hit tab it should autofill all of them there are a ton here i think all we really need is resource manager loop manager uh we can call this id for short let’s call this supplier because we know

What kind of supplier it is and just setter there we go so this is going to open up into some braces here there we go and then inside of this uh this register method here we are going to be running a bit of code so we’re essentially uh like adding our own

Stuff when the uh the loot tables are being loaded in the game pretty much so what we want to do is check for the emerald blue table id so uh we can do that with if emerald or loot table id dots equals and then we can just grab

The id right here that we have uh there we go so if that’s the case because what this is gonna do is it’s going to go through all of the loot tables in the game so uh we’re first checking for the emerald or loot table

And then once we know that we have that specific um loot table because it equals the id that is currently uh you know uh in in play here then we can uh add our own code so let’s just write a little note here checks for emerald or loot table

And once we know that it’s that one again you can customize this however you would like uh what you want to do is create a pool in code so just like we made a pool here in our our generator you can see our pool right there we’re

Going to do that in the code here so to create a pool you want to use the fabric loot pool builder and i’m just going to call this pool builder for now and this is going to equal a fabric loot pool builder dot builder and then we’re

Going to use a few methods inside of this builder to actually build our pool so we’re going to build the pool first and then we’re going to inject or insert or add whatever you want to call it into the existing loot table so uh there’s a few ways you can go

About this i’m gonna show you two examples um let’s say for this example let’s say we want to add just a single individual item so we just want to add one item to the loot table of emerald ore so to do that what we can do

Is first do dot rolls and we can uh we can just create the amount of rolls to one so let’s let’s put inside of here constant loop uh loot rather not loop constant loot table range dot create and this will set the uh the

Roles for our pool so in my case one and again just like uh in this generator here we’ve got the rolls here so we’re creating a pool and then we’re setting the rolls to one so yeah there you go uh and i believe you could actually set this

Also as a range if you wanted i believe you could use instead of constant loot table you could use uh what is it called i’m forgetting uniform loot table range i believe yeah dot create dot between that’s what and then you could set two floats like 1.0 f

And then like 3.0 f so that would set a range between one to three rolls but yeah you can use that if you want i’m gonna be doing a constant so just one roll and then uh i don’t want a semicolon there i want to keep going so then we want to add

An entry so we can do that with dot width and we can add an entry by just doing item entry dots and then builder with a lowercase dot builder um this is a method rather and we can just add the item that we want to inject into this loot table so

I guess the item i want to use is items dots let’s do like a gold nugget there we go gold nugget and again if you wanted to add your custom item you could do mod items dot and grab your custom item but yeah i’m gonna add a gold nugget to

This and make sure you import item entry and uh let’s see what else can we do here let’s let’s hit the amount so we could set the amount with a function so again all the stuff that we’re doing here is exactly what we’re doing in this loot

Table generator we’re just doing it with code instead of json so um another thing we could do as a function so we could do with function for example and we could throw in a function like uh let’s let’s set the count so set count loot function there’s a bunch

Of different ones that you can look at yourself if you want dot builder and uh let’s throw in this is gonna set the count the amount of gold uh nuggets that are gonna drop we could set this from anywhere between uh well dot builders rather so inside the builder we need to set

Uh a uniform loot table range between and we can set let’s do same as the uh the main loot table 1.0 f the main by main i mean the ruby block glue table rather 1.0 f and 4.0 f uh and then we also have to dot build this builder so there we go

Yeah kind of annoying but as you can see uh we’ve pretty much just built a pool pretty much so it’s got a roll of one it’s uh just got one item one drop which is gold nuggets and it will drop a count amount of a range between one to

Four so it’ll drop between one to four gold nuggets and yeah we can just build this and add it with supplier dots with pool with pool and then we can add our pool so uh pool builder that’s this thing right here that we just created

And then of course this is we don’t want the fabric loop pool builder we want just the loot pool so we got to do dot build in order to actually make sure we build it into a pool and yeah there we go so that is a pool and we have

Successfully added it right here to the emerald ore loot table and you can do this for any sort of loot table that you want now you could add additional dot width methods here but because they would be entries inside of the same pool it would actually compete with each other

Now you could get around this by using an alternative entry like we did here that’s uh where is it minecraft alternative entry here with children but i’m just gonna make a second pool and inject it like that so uh just for our second example here i’m gonna try adding an entirely uh new

Loot table into the existing table so it’ll combine them together so what’s a little note here i can set injects or add custom loot table so again this will not overwrite it like the last example i showed you not this example like uh the one we did here

So this one overrides the the block again this will not overwrite it this will add it on top of existing material so again we can grab that pool builder again and this time our pool we’re going to do some interesting stuff with it we’re going to set the rolls

To uh just like last time just one so constant loot table range dot creates and we can just set this to one there we go oh we also need to name this something else cause we’ve already used pool builder so let’s do pool builder two i guess

Uh i don’t wanna send me go on keep doing that so we’ve set the roles to one now we can also we can just add our loot table so dot width and uh you can see in our last example here we added just with dot width just an item entry

This time we are going to add a loot table entry so we’re injecting an entire loot table salute table entry dots builder builder and then i believe we just throw into that builder the loot table so let’s import loot table entry and we can throw in

Our ruby block loot table id copy it we got it from the identifier here and paste it in and there we go i think that’s pretty much it so this second pool builder is again just as a role of one but instead of uh adding an item entry

With just one item and a function this time we are actually inserting adding our entire all the code inside of the ruby block loot table so yeah that’s that’s pretty much oh well we gotta do one more thing before we’re done we need to add it to the supplier so

Supplier dot with pool remember this is very important you have to actually add it to the uh the loot table so we’re going to add the pool builder tool too because that’s the one we’ve been building right here dot build there we go so

I know this is a lot very sorry i know but hopefully you now know how to actually um uh not not just override but add into existing vanilla loot tables because this is highly requested so now that we’ve done that we can file save all and uh we just need to

Throw in on initialize so make sure you always run all this code in on initialize let’s just throw modify loot tables in there so again that’s the name of our our function here so we’re grabbing our our identifiers using them inside of this custom private function and then we’re

Just calling it in our on initialize method in the main class cool so now we can run the game and test this out all right so we’re inside of the game again and we’ve got our emerald ore this time and again it should not get rid of the

Existing loot table it should add on top of it so uh our sheep is checking us out here if we actually mine this block here there we go so we can see that uh both pool we added both pools here so first it’s using the existing loot table

Of uh just the regular emerald low table and then we also added those gold nuggets that pool of gold nuggets and then finally we also injected our ruby uh our ruby block uh loot table in there so we’ve got essentially three loot tables merged into one or essentially three pools in one loot

Table and yeah so and again because we use two pools instead of one for the gold nuggets and the ruby stuff we uh they aren’t competing so they both uh run separately but if we put them in the same pool uh they would actually compete with each

Other and sometimes you might get gold nuggets and other times you might get rubies so keep that in mind when you’re designing them and again if we use silk touch here we can see we actually get uh that gold nugget one is running like normal uh because we didn’t set any silk touch

Stuff with that but we get the emerald block and we also get uh this block as well all these things working perfectly just like we set in uh in the code in the main class all right so that’s going to do it for this episode thanks guys so much for watching

I know it is a ton of information and i know this is a really long video but i wanted to show all the possible ways that you can use loot tables that way you wouldn’t have to wait for other videos so it’s all in one place but again definitely make sure you check

Out this builder mess around with it make mistakes get errors in your code do whatever you have to do to fully understand this because once you do i promise it’ll be so much easier to modify stuff and make really awesome advanced loot tables and of course definitely make sure you

Check out this sort of cool system we can use to modify existing loot tables i didn’t show you everything but there are a ton of different like methods you can mess around with here adding different entries functions conditions so definitely check all this out and i will also leave a bunch of links

And tutorials uh additional stuff additional help for all of this in the description so thanks guys so much for watching and i will see you in the next episode

This video, titled ‘Minecraft 1.16.4: Fabric Modding Tutorial – Loot Tables (#5)’, was uploaded by TechnoVision on 2020-12-30 18:26:41. It has garnered 15587 views and 591 likes. The duration of the video is 00:38:17 or 2297 seconds.

Learn to code a Minecraft mod from scratch in this complete tutorial series! In this episode, we create a loot table that allow for custom block drops and also override and modify existing vanilla loot tables. I also showcase how to create a fully functional ore using enchantment addons.

— Important Links —

● Loot Table Generator: https://misode.github.io/loot-table/ ● Additional Info: https://minecraft.gamepedia.com/Loot_table

● Discord: https://discord.gg/m5fjByfrKP ● GitHub Repository: https://github.com/TechnoVisionDev/Fabric-Modding-Tutorial-1.16.4

— Music —

● [No Copyright] Chill Lofi Hip-hop ● Phil Smiff – lake.side ● Xori – Dreamin

— My Channel —

● Subscribe: http://tinyurl.com/zbc7mwy ● Instagram: https://www.instagram.com/tomm.peters ● Twitter: https://twitter.com/TechnoVisionTV

#minecraft #modding #tutorial

  • Secret Quarry for Cobble Generator in Minecraft

    Secret Quarry for Cobble Generator in Minecraft Exploring Minecraft: Building a Quarry to Hide a Cobble Generator Minecraft, the beloved sandbox game, offers endless possibilities for creativity and exploration. One popular project among players is building a quarry to hide a cobble generator. Let’s delve into this exciting endeavor and discover the magic of Minecraft! The Cobble Generator Before diving into the quarry, let’s understand the cobble generator. This ingenious contraption automatically generates cobblestone, a versatile building material in Minecraft. Players can use this generator to gather resources efficiently and build magnificent structures. Building the Quarry Now, onto the quarry! Players can construct a quarry to… Read More

  • Exploring Minecraft’s Scariest Seed

    Exploring Minecraft's Scariest Seed The Spooky World of Minecraft: Exploring the Scariest Seed Embark on a thrilling adventure as you delve into the eerie world of Minecraft’s scariest seed. In this bone-chilling journey, players are met with unexpected twists and turns that will keep them on the edge of their seats. A Terrifying Exploration As you navigate through the haunting landscapes of this seed, be prepared to encounter spine-tingling surprises at every corner. From mysterious structures to ominous creatures, the scariest seed in Minecraft is sure to test your courage. A Kid’s Perspective Join P6Gaming on a hair-raising escapade through this terrifying seed…. Read More

  • Exploding Paradise Island with Atom Bomb! – Minecraft

    Exploding Paradise Island with Atom Bomb! - Minecraft The Explosive Finale: Paradise Island Destroyed by an Atom Bomb in Minecraft In a shocking turn of events, the once serene Paradise Island in Minecraft met its demise in a spectacular fashion – being obliterated by an atom bomb in the final episode of the series. The explosive conclusion left players and viewers on the edge of their seats, witnessing the destruction of a beloved virtual world. The Epic Conclusion The detonation of the atom bomb marked the climax of a series filled with entertainment, suspense, horror, and mystery. As the island was engulfed in flames and debris, the… Read More

  • Crafting Chaos: Day 39 of Wood Challenge Madness

    Crafting Chaos: Day 39 of Wood Challenge Madness In the world of Minecraft, a challenge so grand, Day 39 has arrived, with wood in hand. Cherry tree biome, pink wood so fine, Crafting new worlds, one at a time. Greetings to Pablo, Jeronimo too, Gepogfro, xd_17_xd, all in the crew. Nicochinote, Fraan Rodas, they all say hi, In the world of Minecraft, we reach for the sky. Version 1.21, with features so new, Launching soon, with adventures to pursue. Stay tuned, subscribe, don’t miss a beat, In the world of Minecraft, where challenges meet. So join the fun, in this gaming delight, With rhymes and updates, shining… Read More

  • The Irish Gamer’s Wood Challenge Day 38

    The Irish Gamer's Wood Challenge Day 38 Minecraft Exploration: Uncovering the World Seed -2034128519473573144 Discovering a Unique Landscape Exploring the Minecraft world seed -2034128519473573144 has led our intrepid gamer to a fascinating discovery. A vast prairie dotted with sparse trees, each one standing alone in the vast expanse. This unique landscape presents both challenges and opportunities for our player as they navigate through the terrain. Survival Challenges Ahead With so few trees scattered across the prairie, our gamer anticipates the need to pay closer attention to their food supplies in the coming days. Survival in this environment will require strategic planning and resource management to ensure… Read More

  • Velyxz’s Wild Minecraft Adventures

    Velyxz's Wild Minecraft Adventures Minecraft Hardcore Survival: A Thrilling Adventure Embark on an adrenaline-pumping journey through the world of Minecraft Hardcore Survival with Velyxz in episode 1 of the 100-day challenge. Join the excitement as Velyxz navigates through challenges, unexpected encounters, and stunning landscapes in this epic gameplay. Exploring the World From the initial introduction to the heart-pounding gameplay, Velyxz takes viewers on a rollercoaster ride through the Minecraft universe. Witness the highs and lows as the adventure unfolds, showcasing the true essence of survival in a hardcore setting. Discoveries and Challenges As the gameplay progresses, Velyxz encounters various obstacles, including a game… Read More

  • Roofing Woes in Minecraft

    Roofing Woes in Minecraft Tetőfedő Problémák (Solo Minecraft Ep.3): Exploring the World of Minecraft Embark on a thrilling adventure in the world of Minecraft with the latest episode of Tetőfedő Problémák. Join the protagonist as they navigate through challenges, build magnificent structures, and explore the vast landscapes of this popular sandbox game. Unleashing Creativity In Minecraft, players have the freedom to unleash their creativity and build anything their imagination desires. From towering castles to intricate redstone contraptions, the possibilities are endless. The protagonist of Tetőfedő Problémák showcases their building skills and takes on exciting construction projects that will leave you in awe. Surviving… Read More

  • Mind-Reading Mobs in Minecraft!

    Mind-Reading Mobs in Minecraft! Minecraft Telepathy Monsters! Part 4 In the latest installment of Minecraft Telepathy Monsters, 656 members are embarking on the Telepathy challenge. This unique challenge tests the bond between players as they try to synchronize their actions in the game. The challenge involves placing the same block at the exact same time, showcasing the players’ ability to communicate and coordinate effectively. Testing Telepathic Abilities The Telepathy challenge pushes players to rely on their intuition and understanding of their partner’s actions. By attempting to place the same block simultaneously, players demonstrate their telepathic connection within the game. This challenge not only… Read More

  • Herobrine Saves Baby Girl from Bad Pillager

    Herobrine Saves Baby Girl from Bad Pillager Help Herobrine Save the Baby Girl from the Bad Pillager in Minecraft Embark on an epic adventure in Minecraft as you join forces with Herobrine to save the innocent Baby Girl from the clutches of the menacing Bad Pillager. The stakes are high, and only your quick thinking and strategic skills can tip the scales in favor of justice and heroism. The Quest Begins As the story unfolds, Herobrine, the legendary figure in Minecraft lore, calls upon you to aid in the rescue mission. The Baby Girl, a symbol of innocence and hope, is in grave danger, held captive… Read More

  • Block Xuan: Minecraft’s World Restore Encore

    Block Xuan: Minecraft's World Restore Encore In the world of Minecraft, where creativity thrives, Fangkuaixuan brings joy with his animated vibes. From funny animations to songs that adapt, He crafts content that leaves us all entrapped. With a heart for the game and a mind that’s keen, He shares Minecraft facts in a playful scene. From hidden chests to secret surprises, He keeps us entertained, our interest he rises. So leap into his world, where laughter reigns, And join the fun as he entertains. With each video, a smile he’ll bring, Fangkuaixuan, the Minecraft king! Read More

  • Ultimate Minecraft Roleplay – Episode 84 – Orion Empreendimentos – Unlock Secrets Now!

    Ultimate Minecraft Roleplay - Episode 84 - Orion Empreendimentos - Unlock Secrets Now!Video Information Boa noite galera como é que vocês mano De boa de boa boa noite boa noite boa noite Vamos que vamos gente a tem muita coisa para fazer ainda mano é Empreendimentos não tem jeito fala Magic Ghost seja bemvindo Valeu pelo follow hellam why What is the vage oh fala Fox como é que você tá fala Fox de boa de boa é a primeira vez que eu vejo aqui pode me passar um leve resumo então Fox eu faço Live de Minecraft role Play no servidor G role Play maior servidor de role play do Brasil… Read More

  • Strange Mods in Minecraft 1.21 Tricky Trials Update

    Strange Mods in Minecraft 1.21 Tricky Trials UpdateVideo Information I am the D and this is your daily dose of Minecraft and the 1.21 update is also now out for our first clip player not Josh is starting to hate the game and to be fair I don’t blame him if this happened to me I would hate the game as all and yeah it looks like Bedrock Edition is ready for hardcore player Eland really wanted to make a circular hub for his home but the Minecraft generation had other plans for him because only one block behind the wall was this [Music] and to be… Read More

  • 🔥JOIN THE PARTY – EPIC MINECRAFT GAMEPLAY! #minecraft

    🔥JOIN THE PARTY - EPIC MINECRAFT GAMEPLAY! #minecraftVideo Information Minecraft но я добрый часть пять всем песина с вами пати И сегодня я буду добрым в раю эти овечки могли упасть но я построю им забор теперь эти овечки могут спокойно здесь ходить потому что здесь всё огорожено Вау смотрите там Кит летает я сейчас нахожусь в каком-то здании и вот этот вот ангел сказал мне ему помочь Что ты хотел Помоги мне посадить дуб О что просто посадить дуб И всё да ты очень доба Я бы хотел чтобы это сделал Ты О’кей хорошо так видимо мне надо посадить дуб сюда и сюда Спасибо тебе за… Read More

  • Unbelievable Minecraft Build Hacks! #gigachad

    Unbelievable Minecraft Build Hacks! #gigachadVideo Information This video, titled ‘MINECRAFT BUILD HACKS #minecraft #minecraftshorts #gigachad#shorts’, was uploaded by BlazeBell on 2024-04-08 14:33:19. It has garnered 2535 views and 29 likes. The duration of the video is 00:00:33 or 33 seconds. MINECRAFT BUILD HACKS #minecraft #minecraftshorts #gigachad#shorts Read More

  • Ultimate Epic Battle: Defeating Dragon in Hardcore Minecraft

    Ultimate Epic Battle: Defeating Dragon in Hardcore MinecraftVideo Information hello and welcome everybody Welcome to my new series so basically how the series is going to work is it’s going to go down into uh sort of a thing where I am not stopping until I die and as you can see from my hot bar I’m in hardcore but you’re probably wondering what’s the challenge I mean Hardcore Minecraft is easy what I’m doing is I will be adding a mod every single episode until I die and the mod is up to you guys so basically you just comment down what mod you want to… Read More

  • Monster School: Zombie vs Squid Game Doll – DON’T CHOOSE WRONG!

    Monster School: Zombie vs Squid Game Doll - DON'T CHOOSE WRONG!Video Information This video, titled ‘Monster School : Zombie x Squid Game Doll DON’T CHOOSE WRONG – Minecraft Animation’, was uploaded by GA Animations on 2024-02-29 09:03:10. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Monster School : Zombie x Squid Game Doll DON’T CHOOSE WRONG – Minecraft Animation https://youtu.be/-niGeL_yMUo Hello! Read More

  • Insane Minecraft World Tour on MTR Server!!

    Insane Minecraft World Tour on MTR Server!!Video Information [Music] everything all right we should be good to go I need to play me big operators you’re already big operators oh what’s good everybody welcome back to the stream we are back again we’re not doing a short stream this time for this series I believe I’ll stick to the normal format how’s everyone doing though it has been a while got some uh new stuff going on here I need to change this skin I’m sorry I I can’t do this I can’t do this bro we found the perfect place to start though big man… Read More

  • SHOCKING SERVER CRASH HACK! LIQUIDBOUNCE NEXTGEN

    SHOCKING SERVER CRASH HACK! LIQUIDBOUNCE NEXTGENVideo Information [Music] go [Music] n raining on the floor with my favorite slot if you touch your sh your neck gets SC they someka they some crack I don’t give a this is how we party in the Russian Club This video, titled ‘SIGN SERVER CRASH EXPLOIT | LIQUIDBOUNCE NEXTGEN’, was uploaded by xyz1337 on 2024-03-25 21:00:37. It has garnered 1200 views and 20 likes. The duration of the video is 00:01:16 or 76 seconds. hypixel skywars,skywars,hypixel,minecraft skywars,hacking,hacking in skywars,hacking on hypixel,ranked skywars,minecraft skywars hypixel,hypixel hacking,shmeado hypixel skywars,skywars hacker,hypixel hacker,hypixel sky wars,hypixel hacks,how to be good in skywars,hacker compilation… Read More

  • Insane DC2 Skibidi Pobre 9! Crazy Wind Landscapes

    Insane DC2 Skibidi Pobre 9! Crazy Wind LandscapesVideo Information This video, titled ‘(dc2) skibidi pobre 9 FULL’, was uploaded by WIND FROM THE LANDSCAPE on 2024-05-10 21:51:33. It has garnered 7 views and 0 likes. The duration of the video is 00:00:46 or 46 seconds. new threat found #skibiditoiletmeme #skibditoilet #minecraft #skibidibopyesyesyes #animation Read More

  • ChabCraft-Civilizations

    ChabCraft-CivilizationsWelcome to ChabCraft, a realm where strategy, politics, and faction warfare converge to create an unparalleled gaming experience. Immerse yourself into a world where every move you make shapes the course of history. Immerse yourself in the complex web of alliances and rivalries, where diplomacy and cunning are your most potent weapons. Non-Whitelisted, Join Our Discord! 104.168.46.196 Read More

  • Fabulous Miners SMP Whitelisted Java Bedrock 1.20.X

    Welcome to our Minecraft Server! If you’re looking for a fun and non-toxic gaming experience, you’ve come to the right place. Our server has been up for a month and we’re welcoming new players to join our community. Server Features: Enhanced vanilla gameplay – sethome, tpa Leveling system – unlock perks/commands Unique fishing system – new fish without custom resource pack Auto-replanting harvester hoe Player-driven economy – server shop and chest shops Collect mob heads – a fun challenge Join us on Discord to start your application: https://discord.gg/fabulous Read More

  • Dragonia Gaming

    Immerse yourself in a unique and personalized survival experience at Dragonia Gaming! Our server offers a perfect combination of classic Minecraft elements with advanced and custom features to provide an unmatched gaming experience.🔨 Custom CraftsDiscover a world full of new possibilities with our personalized crafts. From powerful weapons to useful tools, there will always be something new to create.🛠️ Advanced and Complex SystemsAt Dragonia Gaming, we have implemented advanced systems that will challenge even the most experienced players. Are you ready to master all our systems?👾 Custom EnemiesFace unique and challenging enemies you won’t find anywhere else. Each battle is… Read More

  • Minecraft Memes – My game is straight-up busted

    Minecraft Memes - My game is straight-up busted“I keep trying to dig straight down in Minecraft but I just end up falling into my own grave. Maybe I need a new strategy.” Read More

  • Creepy Craft: 3AM Sleep Turns Strange

    Creepy Craft: 3AM Sleep Turns Strange In Minecraft’s world, strange things occur, At 3am, the game takes a dark turn. Ngao’s sleep disrupted by eerie sights, A tale of fear in the dead of night. The video captures the spooky scene, With Ngao’s reactions, both real and keen. The audience watches, hearts aflutter, As Minecraft’s mysteries start to stutter. Ngao’s channel, a hub of fun and fright, Where gaming and storytelling unite. With each new video, a fresh delight, In Minecraft’s realm, where day turns to night. So hit like, share, and subscribe with glee, To join Ngao’s world, where all can see. The magic… Read More

  • Minecraft block battle: The Hottest Showdown! 🔥😂 #shorts #trending

    Minecraft block battle: The Hottest Showdown! 🔥😂 #shorts #trending When you’re in a Minecraft block battle and you accidentally hit your friend instead of the enemy, and suddenly it’s a battle of who can say sorry the fastest 😂 #friendlyfire #minecraftproblems Read More

  • Ultimate Guide: Free 24/7 Minecraft Server Creation 2024!

    Ultimate Guide: Free 24/7 Minecraft Server Creation 2024! Creating a Free and 24/7 Open Minecraft Server – Complete Tutorial 2024! Are you ready to dive into the world of Minecraft with your very own server that’s accessible 24/7? In this tutorial, you’ll learn how to set up your own Minecraft server for free, ensuring endless gaming fun with your friends! Why Choose Mega Hosting? When it comes to hosting your Minecraft server, Mega Hosting offers some fantastic benefits: 100% Free with No Hidden Fees: Enjoy hosting your server without any costs. 24/7 Guaranteed Uptime: Your server will always be available for you and your friends to play… Read More

  • Ultimate Mod Elevator Build Challenge

    Ultimate Mod Elevator Build Challenge Building an Elevator with Create Mod in Minecraft Embark on a creative journey as you witness the construction of a magnificent elevator using the Create mod in Minecraft. This project is part of a 30-day challenge that showcases the endless possibilities of this innovative mod. Unleashing Creativity with Create Mod The Create mod revolutionizes the way players interact with Minecraft by introducing a plethora of mechanical elements. From conveyor belts to gearboxes, this mod empowers users to engineer complex systems limited only by their imagination. Constructing the Elevator In this video, the skilled builder demonstrates the step-by-step process of… Read More

  • Mikey and JJ discover secret chocolate factory in Minecraft!

    Mikey and JJ discover secret chocolate factory in Minecraft!Video Information This video, titled ‘Mikey and JJ open a CHOCOLATE FACTORY in Minecraft ! – Maizen’, was uploaded by Mikey World on 2024-05-23 20:00:29. It has garnered 7153 views and 47 likes. The duration of the video is 00:16:52 or 1012 seconds. Mikey and JJ open a CHOCOLATE FACTORY in Minecraft ! – Maizen This is not an official Maizen channel, we make fan videos with Mikey and JJ. Our channel is exclusively for fans of Maizen. We’re not trying to impersonate his personality, we just want to add new and interesting stories to his characters. We hope you… Read More

  • Minecraft 1.12.0/1.20.4: See All Crafts with JEI

    Minecraft 1.12.0/1.20.4: See All Crafts with JEIVideo Information This video, titled ‘COMO ver TODOS los CRAFTEOS en Minecraft 1.12.0/1.20.4 – JUST ENOUGH ITEMS (JEI)’, was uploaded by Canal Héroes on 2024-03-08 18:30:46. It has garnered 747 views and 30 likes. The duration of the video is 00:02:14 or 134 seconds. Hello everyone and welcome to a new video on this channel, in today’s video we bring you a quick review of a Minecraft mod, this mod allows you to see all the crafting available in Minecraft, anyway, I hope you like it and bye. INSTAGRAM LINK 😎: https://www.instagram.com/elsaibort90/?igshid=YmMyMTA2M2Y%3D OTROS LINKS: ✅comic Building😎: https://www.webtoons.com/es/challenge/building-/list?title_no=542809 ☑️comic The Forgotten… Read More

  • SECRET MINECRAFT COLLAB: YOU WON’T BELIEVE WHAT HAPPENS! #viral

    SECRET MINECRAFT COLLAB: YOU WON'T BELIEVE WHAT HAPPENS! #viralVideo Information This video, titled ‘Майнкрфат Сейчас покажу #viral #майнкрафт #minecraft #gaming #memes #videogames #video #gamer’, was uploaded by ILYA x ISMA on 2024-03-06 13:15:00. It has garnered 6805 views and 175 likes. The duration of the video is 00:00:38 or 38 seconds. Sign up for a free trial English lesson in Minecraft with your parents, here is the link: ➜ https://clck.ru/38Rffc #shorts #minecraft #minecraft Sign up for a free trial English lesson in Minecraft with your parents, here is the link: ➜ https://clck.ru/37iV9U Subpishis ➜ https://clck.ru/37zNxn Our social network social network https://dronio24.com ➜ https://dronio24.com SUBSCRIPTION MOTION GRAPHICS FOR VIDEO… Read More

  • BaconBoy’s Insane Minecraft PS4 Gameplay 🔥

    BaconBoy's Insane Minecraft PS4 Gameplay 🔥Video Information This video, titled ‘Minecraft: Bedrock Edition – Gameplay Walkthrough Part 1 (PlayStation)’, was uploaded by BaconBoyYT on 2024-04-19 15:24:00. It has garnered 79 views and 6 likes. The duration of the video is 00:04:53 or 293 seconds. Minecraft: Bedrock Edition – Gameplay Walkthrough Part 1 (PlayStation) Minecraft is a 2011 sandbox game developed by Mojang Studios and originally released in 2009. The game was created by Markus “Notch” Persson in the Java programming language. Following several early private testing versions, it was first made public in May 2009 before being fully released on November 18, 2011, with Notch… Read More

  • Insane RLcraft Gameplay! First time players? #minecraft

    Insane RLcraft Gameplay! First time players? #minecraftVideo Information This video, titled ‘Is this everyone’s FIRST RLcraft experience? #minecraft #rlcraft #shorts’, was uploaded by RCgames on 2024-03-19 19:00:12. It has garnered 423 views and 7 likes. The duration of the video is 00:00:34 or 34 seconds. Hey, how are you? —————————————————————————————————- Check this out : Twitch – https://www.twitch.tv/rcgamesss Discord – https://www.discord.gg/3TaHuKN TikTok – https://www.tiktok.com/@rcgamesss Become a member – https://www.youtube.com/channel/UC6TG2eCuSPxEbDqNFMEGjDw Business inquiries – [email protected] —————————————————————————————————- #minecraft #rlcraft Read More

  • Lost in Minecraft: Where’s the End Update?

    Lost in Minecraft: Where's the End Update?Video Information This video, titled ‘Mojang, Where is the End Update?’, was uploaded by Minecraft Detective on 2024-04-03 18:27:25. It has garnered 34714 views and 1200 likes. The duration of the video is 00:09:05 or 545 seconds. This video shows how Minecraft hasn’t released an update for the end in over 9 years, and if the end update could come after the recent 1.21 update #minecraft #minecraftend #minecrafthardcoremode Music Used : Infraction: Storyteller – https://youtu.be/GEXlG_fQrbg?si=or3uVkfRdnIWjP8a Life Goes On -https://youtu.be/L1sVDPjLd1c?si=1c8oVwtHA88HCPIZ Story – https://youtu.be/WGPArLvbARk?si=gyF531Sg8zUdKfV “Cold Cinema” by Cold Cinema https://bit.ly/3wROUWM “Wings Of Inspiration” by Cold Cinema https://bit.ly/46OJAQZ Read More

  • Bearman3600 Exposes Insane Minecraft Strategies

    Bearman3600 Exposes Insane Minecraft StrategiesVideo Information This video, titled ‘The Worst Ways To Play Minecraft | Bearman3600’, was uploaded by Bearman3600 on 2024-02-23 18:00:06. It has garnered 540288 views and 30787 likes. The duration of the video is 00:34:41 or 2081 seconds. Today I take a look at some of the best reasons to fucking end it all featuring a variety of different computers, consoles, and other devices. Thank you for your patience with my uploads if you actually watch them. I often have little time to record or edit videos, so I try to spend as much time as I can working on… Read More

  • Insane Challenge: Surviving on SCULK ONE BLOCK with Maizen

    Insane Challenge: Surviving on SCULK ONE BLOCK with MaizenVideo Information This video, titled ‘JJ And Mikey Survive On SCULK ONE BLOCK In Minecraft – Maizen’, was uploaded by Maizem on 2024-05-31 13:00:03. It has garnered 3574 views and 16 likes. The duration of the video is 00:41:09 or 2469 seconds. JJ And Mikey Survive On SCULK ONE BLOCK In Minecraft – Maizen This is not an official Maizen channel, we make fan videos with JJ and Mikey. Our channel is exclusively for fans of Maizen. We are not trying to impersonate his personality, we just want to add new and interesting stories to his characters. We hope you… Read More

  • EPIC Mother’s Day Minecraft Surprise!!

    EPIC Mother's Day Minecraft Surprise!!Video Information This video, titled ‘Mothers’ Day Minecraft Showcase!!!’, was uploaded by ChaChaYourVmom on 2024-05-13 09:59:46. It has garnered 681 views and 99 likes. The duration of the video is 01:57:45 or 7065 seconds. Explore your own unique worlds, survive the night, and create anything you can imagine! Minecraft is a 2011 sandbox game developed by Mojang Studios and originally released in 2009. The game was created by Markus “Notch” Persson in the Java programming language. Come home to my Discord! https://discord.gg/ma-mas-house-1150624776566620292 You, too, can be an elite for only $0.99/month! Join my channel: https://www.youtube.com/channel/UCXwpLFOlJTROLn_26LQQVRA/join If you’re struck by the… Read More

  • Alinea SMP | Whitelisted | Proximity Voice Chat | 1.21 | Vanilla Compatible | Extra Enchantments | Launched Today | New World

    Alinea Minecraft Server Alinea Come join Alinea, a 1.21 SMP Minecraft server offering a Vanilla-like experience with added features. Whitelisted for protection, custom enchantments, food skewers, proximity voice chat, and more. Join our Discord server to apply and start playing today! VANILLA+ SMP – Join with a Vanilla client and enjoy all features except proximity voice chat. To join, apply for our whitelist in the #whitelist-application channel on our Discord server. Application includes an interview and rule review. Feature Spotlight Proximity Voice Chat – Use Plasmo Voice to talk in-game. Food Skewers – Try new foods like veggie skewers. Extra… Read More

  • Minecraft Memes – Minecraft Community Overload!

    Well, I guess the meme is scoring pretty high despite its humble beginnings as just a joke title. Minecraft memes are definitely a force to be reckoned with! Read More

  • Block Xuan: Crafting Calculations, Minecraft Style!

    Block Xuan: Crafting Calculations, Minecraft Style! In the world of Minecraft, where creativity thrives, Fangkuaixuan brings joy with every dive. Animations that are funny and bright, Bringing happiness, day and night. No pirated content, only originals here, With humor and fun, there’s nothing to fear. So follow along, subscribe with glee, For Minecraft adventures, come join me! From classroom series to song adaptation too, Fangkuaixuan’s channel has something for you. So dive into the world of blocks and fun, With MC Funny, the journey’s just begun. So let’s do some calculations today, In Minecraft world, where we laugh and play. Join Fangkuaixuan, the master of… Read More

  • Minecraft Meme: Hotter than a lava pit! #memes #minecraft

    Minecraft Meme: Hotter than a lava pit! #memes #minecraft “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” #minecraftmemes #relationshipdrama Read More

TechnoVision – Minecraft 1.16.4: Fabric Modding Tutorial – Loot Tables (#5)