Jump to content

Recommended Posts

If you want to make a new item that's craftable you can add the recipe similar to how Wigfrid's battle gear is added:

local spear_recipe = Recipe("spear_wathgrithr", {Ingredient("twigs", 2), Ingredient("flint", 2), Ingredient("goldnugget", 2)}, RECIPETABS.WAR, {SCIENCE = 0, MAGIC = 0, ANCIENT = 0}, nil, nil, nil, nil, true)

{SCIENCE = 0, MAGIC = 0, ANCIENT = 0} makes it so that you don't need to have a research station to make the items.

 

 

You can make your character vegetarian via:

inst.components.eater:SetVegetarian(true)

Other than that, please use the search function to find similar questions, as this sort of thing gets asked countless times.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...