Advertisement
Guest User

Untitled

a guest
Feb 19th, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.21 KB | None | 0 0
  1. // item/fireberryBush.json
  2.  
  3. {
  4.   "parent": "pyromancy:block/fireberryBush",
  5.   "display": {
  6.     "thirdperson": {
  7.       "rotation": [ 10, -45, 170 ],
  8.       "translation": [ 0, 1.5, -2.75 ],
  9.       "scale": [ 0.375, 0.375, 0.375 ]
  10.     }
  11.   }
  12. }
  13.  
  14. // block/fireberryBush.json
  15.  
  16. {
  17.   "parent": "block/cube_tall",
  18.   "textures": {
  19.     "all": "pyromancy:blocks/fireberryBush"
  20.   }
  21. }
  22.  
  23. // blockstates/fireberryBush.json
  24.  
  25. {
  26.   "variants": {
  27.     "normal": {"model": "pyromancy:fireberryBush"}
  28.   }
  29. }
  30.  
  31. // model/block/cube_tall.json
  32.  
  33. {   "parent": "block/block",
  34.   "textures": {
  35.     "particle": "#side"
  36.   },
  37.   "elements": [
  38.     {   "from": [ 0, 0, 0 ],
  39.       "to": [ 14, 16, 14 ],
  40.       "faces": {
  41.         "down":  { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" },
  42.         "up":    { "uv": [ 0, 0, 16, 16 ], "texture": "#top" },
  43.         "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" },
  44.         "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" },
  45.         "west":  { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" },
  46.         "east":  { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" }
  47.       }
  48.     }
  49.   ]
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement