Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. import crafttweaker.item.IItemStack;
  2.  
  3. recipes.remove(<cathedral:cathedral_pillar_various:*>);
  4.  
  5. val IArrayRedSand = [<minecraft:red_sandstone:*>, <chisel:sandstonered:*>, <chisel:sandstonered1:*>, <chisel:sandstonered2:*>] as IItemStack[];
  6.  
  7. <ore:redSandStone>.add(IArrayRedSand);
  8. <ore:sandstone>.remove(IArrayRedSand);
  9.  
  10. recipes.addShaped(<cathedral:cathedral_pillar_various:0> * 4, [[null, <ore:stone>, null], [null, <ore:stone>, null], [null, <ore:stone>, null]]);
  11. recipes.addShaped(<cathedral:cathedral_pillar_various:1> * 4, [[null, <minecraft:sandstone>, null], [null, <minecraft:sandstone>, null], [null, <minecraft:sandstone>, null]]);
  12. recipes.addShaped(<cathedral:cathedral_pillar_various:2> * 4, [[null, <ore:redSandStone>, null], [null, <ore:redSandStone>, null], [null, <ore:redSandStone>, null]]);
  13. recipes.addShaped(<cathedral:cathedral_pillar_various:3> * 4, [[null, <ore:obsidian>, null], [null, <ore:obsidian>, null], [null, <ore:obsidian>, null]]);
  14. recipes.addShaped(<cathedral:cathedral_pillar_various:4> * 4, [[null, <minecraft:nether_brick>, null], [null, <minecraft:nether_brick>, null], [null, <minecraft:nether_brick>, null]]);
  15. recipes.addShaped(<cathedral:cathedral_pillar_various:5> * 4, [[null, <ore:blockQuartz>, null], [null, <ore:blockQuartz>, null], [null, <ore:blockQuartz>, null]]);
  16. recipes.addShaped(<cathedral:cathedral_pillar_various:6> * 4, [[null, <ore:endstone>, null], [null, <ore:endstone>, null], [null, <ore:endstone>, null]]);
  17. recipes.addShaped(<cathedral:cathedral_pillar_various:7> * 4, [[null, <minecraft:packed_ice>, null], [null, <minecraft:packed_ice>, null], [null, <minecraft:packed_ice>, null]]);
  18. recipes.addShaped(<cathedral:cathedral_pillar_various:8> * 4, [[null, <minecraft:snow>, null], [null, <minecraft:snow>, null], [null, <minecraft:snow>, null]]);
  19. recipes.addShaped(<cathedral:cathedral_pillar_various:9> * 4, [[null, <ore:stoneMarble>, null], [null, <ore:stoneMarble>, null], [null, <ore:stoneMarble>, null]]);
  20. recipes.addShaped(<cathedral:cathedral_pillar_various:10> * 4, [[null, <ore:stoneLimestone>, null], [null, <ore:stoneLimestone>, null], [null, <ore:stoneLimestone>, null]]);
  21. recipes.addShaped(<cathedral:cathedral_pillar_various:11> * 4, [[null, <ore:stoneBasalt>, null], [null, <ore:stoneBasalt>, null], [null, <ore:stoneBasalt>, null]]);
  22. recipes.addShaped(<cathedral:cathedral_pillar_various:12> * 4, [[null, <cathedral:dwemer_block_carved>, null], [null, <cathedral:dwemer_block_carved>, null], [null, <cathedral:dwemer_block_carved>, null]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement