Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. {
  2. //A List of frames
  3. "Copper":{
  4. //The display name of the frame(required)
  5. "name":"frame.ore.copper",
  6. //The rgb color of the frame(optional default: 255,255,255)
  7. "ColorRed":195,
  8. "ColorGreen":125,
  9. "ColorBlue":10,
  10. //The frame type (optional default 0)
  11. //0: metal
  12. //1: stone
  13. //2: obsidian
  14. "FrameType":0,
  15. //The tier the frame is used to craft(optional 0-7(inclusive) default -1)
  16. //set to -1 to disable crafting(still alows painting)
  17. "tier":1,
  18. //a list of materials that can be used to craft/paint a frame(required)
  19. //OreDictionary value: "Ore"
  20. //ItemStack: {"name":"name", (optional)"meta":meta(set to "wildcard" to use any meta}, "nbt":{nbt data}}
  21. "materials":"ingotCopper"
  22. },
  23. "Tin":{
  24. "name":"frame.ore.tin",
  25. "ColorRed":117,
  26. "ColorGreen":148,
  27. "ColorBlue":191,
  28. "FrameType":0,
  29. "tier":1,
  30. "materials":"ingotTin"
  31. },
  32. "Silver":{
  33. "name":"frame.ore.silver",
  34. "ColorRed":147,
  35. "ColorGreen":178,
  36. "ColorBlue":201,
  37. "FrameType":0,
  38. "tier":2,
  39. "materials":"ingotSilver"
  40. },
  41. "Steel":{
  42. "name":"frame.ore.steel",
  43. "ColorRed":128,
  44. "ColorGreen":128,
  45. "ColorBlue":128,
  46. "FrameType":0,
  47. "tier":3,
  48. "materials":"ingotSteel"
  49. },
  50. "Aluminium":{
  51. "name":"frame.ore.aluminium",
  52. "ColorRed":109,
  53. "ColorGreen":171,
  54. "ColorBlue":205,
  55. "FrameType":0,
  56. "tier":4,
  57. "materials":"ingotAluminium"
  58. },
  59. "Cobalt":{
  60. "name":"frame.ore.cobalt",
  61. "ColorRed":65,
  62. "ColorGreen":65,
  63. "ColorBlue":255,
  64. "FrameType":0,
  65. "tier":5,
  66. "materials":"ingotCobalt"
  67. },
  68. "Platinum":{
  69. "name":"frame.ore.platinum",
  70. "ColorRed":98,
  71. "ColorGreen":153,
  72. "ColorBlue":255,
  73. "FrameType":0,
  74. "tier":6,
  75. "materials":"ingotPlatinum"
  76. },
  77. "Manyullyn":{
  78. "name":"frame.ore.manyullyn",
  79. "ColorRed":120,
  80. "ColorGreen":0,
  81. "ColorBlue":235,
  82. "FrameType":0,
  83. "tier":7,
  84. "materials":"ingotManyullyn"
  85. }
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement