Minestuck integration for KubeJS. This mod allows you to add and edit custom recipes with Minestuck's recipe types, as well as define custom Grist types for making more detailed alchemy systems beyond the original mod.
Combination Recipes
- Done in the Totem Lathe (and) or Punch Designix (or)
- output from item and/or another item
event.recipes.minestuck.combination( input1, input2, mode, output )
- mode is either
and
oror
Grist Costs
- apply grist costs to any item
event.recipes.minestuck.grist_cost( item, { "type1": amount1, "type2": amount2, ... })
wildcard_grist_cost(item, amount)
makes an item use a specific amount of any gristunavailable_grist_cost(item)
makes an item unalchemizable if it has a higher priority- priority can added to any grist cost recipe as an extra param (higher numbers chosen)
- to make an item free, just put an empty object (
{}
)
Custom Grist
- found in the startup registry
minestuck:grist
event.create( name ).rarity( x ).value( y )
- additionally, you can use
.notUnderlingType()
and.candy( item )