-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathVanilla.zs
62 lines (51 loc) · 2.96 KB
/
Vanilla.zs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Vanilla
val cauldron = <minecraft:cauldron>;
val bucket = <minecraft:bucket>;
val hopper = <minecraft:hopper>;
val chest = <minecraft:chest>;
val anvil = <minecraft:anvil>;
val bars = <minecraft:iron_bars>;
val block = <RotaryCraft:rotarycraft_block_deco:0>;
val ingot = <RotaryCraft:rotarycraft_item_shaftcraft:1>;
val rod = <RotaryCraft:rotarycraft_item_shaftcraft:2>;
val plIron = <ore:plateIron>;
# Iron doors only produce 1 per cast, prevents iron exploit
recipes.remove(<minecraft:iron_door>);
recipes.addShaped(<minecraft:iron_door>, [[<ore:ingotIron>,<ore:ingotIron>],[<ore:ingotIron>,<ore:ingotIron>],[<ore:ingotIron>,<ore:ingotIron>]]);
#remove all vanilla armor creation
recipes.remove(<minecraft:iron_boots>);
<minecraft:iron_boots>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:iron_leggings>);
<minecraft:iron_leggings>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:iron_chestplate>);
<minecraft:iron_chestplate>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:iron_helmet>);
<minecraft:iron_helmet>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:golden_boots>);
<minecraft:golden_boots>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:golden_leggings>);
<minecraft:golden_leggings>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:golden_chestplate>);
<minecraft:golden_chestplate>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:golden_helmet>);
<minecraft:golden_helmet>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:diamond_boots>);
<minecraft:diamond_boots>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:diamond_leggings>);
<minecraft:diamond_leggings>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:diamond_chestplate>);
<minecraft:diamond_chestplate>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
recipes.remove(<minecraft:diamond_helmet>);
<minecraft:diamond_helmet>.addTooltip(format.white("DISABLED: Use HSLA Steel armor instead."));
#Vanilla items should use Steel plates
recipes.remove(cauldron);
recipes.addShaped(cauldron, [[plIron,null,plIron],[plIron,null,plIron],[plIron,plIron,plIron]]);
recipes.remove(bucket);
recipes.addShaped(bucket * 1, [[plIron,null,plIron], [null,plIron,null]]);
recipes.remove(hopper);
recipes.addShaped(hopper * 1, [[plIron,null,plIron],[plIron,chest,plIron],[null,plIron,null]]);
recipes.remove(<RotaryCraft:rotarycraft_item_shaftcraft:10> * 3);
# fixup blocks
#val copperIngot = <RotaryCraft:rotarycraft_item_modingots:1>;
#recipes.remove(<ore:ingotCopper> * 9);
#recipes.addShapeless(<RotaryCraft:rotarycraft_item_modingots:1> * 9, [<ore:blockCopper>]);