Starchasers / ImmersiveFactory-Modpack

Issue traker for ImmersiveFactory Minecraft Modpack
3 stars 0 forks source link

Recepty na filtry #13

Closed HubertBalcerzak closed 5 years ago

HubertBalcerzak commented 5 years ago

Dodać recepty na odnawianie filtrów w craftingu zamiast kowadła

marcin212 commented 5 years ago

https://pastebin.com/raw/eBXs5EDT

recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, sulfur: 0}}), [<adpother:diamond_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>]);
recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, carbon: 0}}), [<adpother:diamond_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>]);
recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, dust: 0}}), [<adpother:diamond_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);

recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, sulfur: 0}}), [<adpother:gold_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>]);
recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, carbon: 0}}), [<adpother:gold_filter>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, dust: 0}}), [<adpother:gold_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);

recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, sulfur: 0}}), [<adpother:iron_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>]);
recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, carbon: 0}}), [<adpother:iron_filter>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, dust: 0}}), [<adpother:iron_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);

recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, sulfur: 0, carbon: 0}}), [<adpother:diamond_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, sulfur: 0, carbon: 0}}), [<adpother:gold_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, sulfur: 0, carbon: 0}}), [<adpother:iron_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);

recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, sulfur: 0, dust: 0}}), [<adpother:diamond_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);
recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, sulfur: 0, dust: 0}}), [<adpother:gold_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);
recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, sulfur: 0, dust: 0}}), [<adpother:iron_filter>, <ore:blockWool>, <ore:blockWool>, <ore:blockWool>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>]);

recipes.addShapeless(<adpother:diamond_filter>.withTag({FULLNESS: {CAPACITY: 256, dust: 0, carbon: 0}}), [<adpother:diamond_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:gold_filter>.withTag({FULLNESS: {CAPACITY: 128, dust: 0, carbon: 0}}), [<adpother:gold_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);
recipes.addShapeless(<adpother:iron_filter>.withTag({FULLNESS: {CAPACITY: 64, dust: 0, carbon: 0}}), [<adpother:iron_filter>, <minecraft:paper>, <minecraft:paper>, <minecraft:paper>, <ore:treeLeaves>, <ore:treeLeaves>, <ore:treeLeaves>]);