Otho

Example 1

Sep 14th, 2014
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "blocks":
  3.     [      
  4.         {
  5.             "name": "Test block",
  6.             "textureName": "blocoTeste",
  7.             "material": "rock",
  8.             "toolClass":"pickaxe",
  9.             "hardness": 2,
  10.             "resistance": 3,
  11.             "lightLevel": 1,
  12.             "harvestLevel": 2
  13.         }
  14.     ],
  15.     "items":
  16.     [
  17.         {
  18.             "name":"Test Item",
  19.             "textureName":"test",
  20.             "maxstackSize": 5
  21.         }
  22.     ],
  23.     "fluids":
  24.     [
  25.         {
  26.             "name":"aguaVermelha",
  27.             "textureName":"aguavermelha",
  28.             "luminosity": 0,
  29.             "density": 1000,
  30.             "temperature": 50,
  31.             "viscosity": 1500,
  32.             "isGas": false
  33.         },
  34.         {
  35.             "name":"gasAzul",
  36.             "textureName":"gasazul",
  37.             "luminosity":0,
  38.             "density":-400,
  39.             "temperature":500,
  40.             "viscosity":500,
  41.             "isGas":true
  42.         }
  43.     ],
  44.     "tools":
  45.     {
  46.         "shovels":
  47.         [
  48.             {
  49.                 "name":"Test",
  50.                 "textureName":"Test",
  51.  
  52.                 "harvestLevel":1,
  53.                 "maxUses":30000,
  54.                 "efficiencyOnProperMaterial":20,
  55.                 "damageVsEntity":0,
  56.                 "enchantability":0
  57.             },
  58.             {
  59.                 "name":"Tretinha",
  60.                 "textureName":"tretinha",
  61.                 "harvestLevel":1,
  62.                 "maxUses":5,
  63.                 "efficiencyOnProperMaterial":20,
  64.                 "damageVsEntity":0,
  65.                 "enchantability":0
  66.             }
  67.         ],
  68.         "pickaxes":
  69.         [
  70.             {
  71.                 "name":"Picaretona",
  72.                 "textureName":"picaretona",
  73.  
  74.                 "harvestLevel":0,
  75.                 "maxUses":30000,
  76.                 "efficiencyOnProperMaterial":200,
  77.                 "damageVsEntity":0,
  78.                 "enchantability":0
  79.             }
  80.         ]
  81.     },
  82.     "armor":
  83.     {
  84.         "helmets":
  85.         [
  86.             {
  87.                 "name":"Chapeu",
  88.                 "textureName":"chapeu",
  89.  
  90.                 "durability":2,
  91.                 "reduction":1,
  92.                 "enchantability":30
  93.             }
  94.         ],
  95.         "chestplates":
  96.         [
  97.             {
  98.                 "name":"Corpo",
  99.                 "textureName":"chapeu",
  100.  
  101.                 "durability":2,
  102.                 "reduction":1,
  103.                 "enchantability":30
  104.             }
  105.         ],
  106.         "leggings":[],
  107.         "boots":[]
  108.     }, 
  109.     "foods":
  110.     [
  111.         {
  112.             "name":"raiuva",
  113.             "textureName":"raiuva",
  114.  
  115.             "healAmount": 0,
  116.             "saturationModifier":3,
  117.             "isWolfsFavoriteMeat":false,
  118.  
  119.             "potionEffect":
  120.             {
  121.                 "effect": "moveSpeed",
  122.                 "potionDuration": 20,
  123.                 "potionAmplifier": 3,
  124.                 "potionEffectProbability": 1.0
  125.             }          
  126.         }
  127.     ]
  128. }
Advertisement
Add Comment
Please, Sign In to add comment