Skip to content

TheHunterJPScripts/Crafting-Enhanced-Core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Zomboid Mod: Crafting Enhanced Mod

  • Project: Crafting Enhanced Mod

  • Author: TheHunterJP

  • Date: January 26, 2023

  • Portuguese and Brazilian translation: ?XIM?

Description

  • This mod add a couple of new crafting table to use as a core component on crafting enhanced mods.

How to add recipes

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,
    }
}

External link