-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBotanyTrowels.zs
More file actions
40 lines (33 loc) · 2.13 KB
/
BotanyTrowels.zs
File metadata and controls
40 lines (33 loc) · 2.13 KB
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
// File generated by MineTweakerRecipeMaker
// READ THIS HEADER BEFORE EDITING ANYTHING
// ================================================================================
// This file is read and changed by the mod.
// If you remove/edit any of the markers, IT WILL STOP WORKING!
// If you want to make manual edits, make a backup of this file!
// Markers look like this: "//#MARKER something"
// They indicate where calls should be placed, so that MineTweaker does them in the correct order.
// Removes come first, then stuff is added.
// ================================================================================
//
// ================================================================================
//#MARKER REMOVE
recipes.remove(<Botany:trowelGold>);
recipes.remove(<Botany:trowelDiamond>);
recipes.remove(<Botany:trowelIron>);
recipes.remove(<Botany:trowelStone>);
recipes.remove(<Botany:trowelWood>);
// ================================================================================
//#MARKER REMOVE SHAPELESS
// ================================================================================
//#MARKER REMOVE SHAPED
// ================================================================================
//#MARKER ADD
// ================================================================================
//#MARKER ADD SHAPELESS
// ================================================================================
//#MARKER ADD SHAPED
recipes.addShaped(<Botany:trowelGold>, [[null, null, <ore:ingotGold>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelDiamond>, [[null, null, <ore:gemDiamond>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelIron>, [[null, null, <minecraft:iron_ingot>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelStone>, [[null, null, <ore:cobblestone>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelWood>, [[null, null, <ore:plankWood>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);