-
Notifications
You must be signed in to change notification settings - Fork 3
Соковыжималка
DDShadowRU edited this page Aug 27, 2017
·
2 revisions
ModAPI.addAPICallback("ForestryAPI", function(api){
api.RecipeRegistry.registerSqueezerRecipe({
input0: { //Первый предмет
id: 260,
data: 0,
count: 1
},
input1: { //Второй предмет
id: 0,
data: 0,
count: 0
},
special: { //Дополнительный выход(Необязательно)
id: ItemID.mulch,
data: 0,
count: 1,
chance: 0.4
},
liquid: "forestryJuice", //Получаемая жидкость
liquidCount: 0.2 //Количество жидкости
});
}