Minecraft Name: Xboyfernz Suggestion: Having a place to buy llama eggs and polar bear eggs Reason: Cause it would be cool Other Information: Any other information we should know about this suggestion. Link to this plugin/Is this a custom addition?: A link to the plug-in you are suggesting, if applicable.
wither skeleton, stray, husk, elder guardian, donkey, mule, skeleton horse, zombie horse, evoker, vex and vindicator should also all be added as they have eggs. Make them available for purchase via the event tokens. +1
why not add them to voting like all other eggs we can make it a random draw if u get lucky or super lucky ect the more votes help the server.
It would be cool to see players controlling the market for those eggs, if the only way to obtain them would be through voting. Maybe if you get UltraLucky, it gives you one of the rare eggs. That would be cool to see, because players could price them at what they want. Plus, they'd be rare to obtain.
Mojang uses NBT data for eggs, which means essentials can't have them added to the itemlist. Which is a pain. If there's a way to work around this, then I'm all for it, but realistically I'm not sure if it's feasible.
Item ID is 2 numbers. The ID and Data. So you have 1:2 being coarse dirt. BUT, a lot of blocks and items no longer use data values. They use block states, which is NBT data. Think of NBT data as a text file containing information pertaining to an item or block. In the case of eggs it would be MobType and a few other values, in the case of Leaves it would contain values such as 'Decayable' (whether it can decay) and 'variant' (oak, jungle, spruce, birch). Long story short, it's data that isn't yet condensed into a short notation. That requires a custom system that converts nbt values into a human readable system. NBT data is too long. It would be fairly complex to turn that into single word values. it would have to turn "Leaves {'Decayable': true, 'variant': 'oak'}" into "decayable_oak_leaves" or something. Lots of typing is involved.