-
Notifications
You must be signed in to change notification settings - Fork 3
Электроламповый завод
DDShadowRU edited this page Oct 10, 2017
·
2 revisions
ModAPI.addAPICallback("ForestryAPI", function(api){
api.RecipeRegistry.addFabricatorRecipe({
input: { //Вход
"slot4": {id: 351, data: 1},
"slot7": {id: ItemID.propolis, data: 0}
},
dop: { //Дополнительный предмет
id: ItemID.waxCast,
data: 0,
count: 1,
dec: false // Если true предмет доп. предмет будет исчезать
},
output: { //Результат
id: BlockID.forestryGlass,
count: 1,
data: 0
}
});
});