PersonTheCat

Ore Properties Default Example Json

Jul 9th, 2018
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.66 KB | None | 0 0
  1. //This is the only necessary file. No field is necessary. You can delete this commentary.
  2.  
  3. //You can place these files inside of another zip, or inside of a new directory under the same folder.
  4.  
  5. //The name of the file / directory determines the name of the block.
  6. //It must end with "_ore" It cannot contain spaces.
  7.  
  8. //backgroundMatcher is only used to generate a new overlay.
  9. //It is not written here, as it defaults to "assets/minecraft/textures/blocks/stone.png"
  10.  
  11. //This overlay will be placed inside of resources.zip, a resource pack.
  12. //There is no need to remove resources.zip from this location. It will be regenerated, if you do.
  13. //You will not need to apply the resource pack, but you can optionally create your own.
  14.  
  15. //If you have dense variants enabled, a dense variant of this block will be automatically created for you.
  16.  
  17. //if both "drop" and "dropSilkTouch" are set to the same drop (the same block), the block will drop
  18. //itself if "Variants Drop" is set to true in the config file.
  19.  
  20. //This is a basic template, the values of which are the same as those of coal ore.
  21. //For another, more advanced template and more options, see this version: https://pastebin.com/ikBt34ew
  22. //For a simpler example, see this version: https://pastebin.com/ySPxBn75
  23. //To find out what empty fields will default to, see this version: https://pastebin.com/K1XnK8HW
  24.  
  25. {
  26.     "addToCustomPropertyGroup" : "minecraft",
  27.     "originalTexture" : "assets/minecraft/textures/blocks/coal_ore.png",
  28.     "languageKey" : "tile.oreCoal.name",
  29.     "hardness" : 3.0F,
  30.     "harvestLevel" : 0,
  31.     "drop" : "minecraft:coal:0",
  32.     "dropSilkTouch" : "minecraft:coal_ore:0",
  33.     "dropRange" : [1, 1],
  34.     "xpRange" : [0, 2]
  35. }
Advertisement
Add Comment
Please, Sign In to add comment