feat: emi config & flax->canvas
This commit is contained in:
parent
ea800c7b5d
commit
84db9adda6
|
|
@ -46,7 +46,7 @@
|
||||||
/**
|
/**
|
||||||
* Which action should be performed when clicking the recipe book.
|
* Which action should be performed when clicking the recipe book.
|
||||||
*/
|
*/
|
||||||
recipe-book-action: toggle-craftables;
|
recipe-book-action: toggle-visibility;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Where to display status effects in the inventory.
|
* Where to display status effects in the inventory.
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,18 @@
|
||||||
ServerEvents.recipes(event => {
|
ServerEvents.recipes(event => {
|
||||||
event.replaceInput({input: 'supplementaries:flax'},
|
// only one rope
|
||||||
'supplementaries:flax',
|
event.remove({output:'supplementaries:rope'});
|
||||||
'farmersdelight:straw'
|
|
||||||
);
|
|
||||||
|
|
||||||
event.shapeless('farmersdelight:straw', 'supplementaries:flax');
|
// flax now makes canvas
|
||||||
|
event.shaped('4x farmersdelight:canvas', ['SS', 'SS'], {S: 'supplementaries:flax'});
|
||||||
|
|
||||||
|
// stuff made of flax is now made of canvas
|
||||||
|
for(const output of [
|
||||||
|
'supplementaries:sack',
|
||||||
|
'supplementaries:doormat',
|
||||||
|
'supplementaries:awning',
|
||||||
|
]) event.replaceInput({output},
|
||||||
|
'supplementaries:flax',
|
||||||
|
'farmersdelight:canvas');
|
||||||
|
|
||||||
event.remove({output:'spelunkery:depth_gauge'});
|
event.remove({output:'spelunkery:depth_gauge'});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue