-
Project: Crafting Enhanced Mod
-
Author: TheHunterJP
-
Date: January 26, 2023
-
Portuguese and Brazilian translation: ?XIM?
- This mod add a couple of new crafting table to use as a core component on crafting enhanced mods.
To add a new recipe that uses this tables just add the NearItem:Table_ID on the recipe. Doing so will ensure that to
perform the recipe, the player needs to be close to the specified table.
Table IDs:
Laboratory Table: "Laboratory Table"
Forge: "Forge Table"
Armory Table: "Armory Table"
Mechanic Table: "Mechanic Table"
Tailoring Table: "Tailoring Table"
Simple recipe example:
module Example_Recipes
{
imports
{
Base
}
recipe Make Convert Nails
{
Screws=1,
keep Hammer,
Result:Nails,
Time:100.0,
Category:Chemistry,
Sound:Anvil,
NearItem:Laboratory Table,
AnimNode:BuildHigh,
Prop1:Hammer,
Prop2:Source=1,
}
}