Actions

Difference between revisions of "Crafting"

From Crea Wiki

Line 41: Line 41:
 
</translate>
 
</translate>
 
{{clear}}
 
{{clear}}
<div class="row recipe-title">[[File:collect_icon.png|link=]] Hand</div>
+
<div class="row recipe-title">[[File:hand.png|link=]] Hand</div>
 
{{Item/Table | type = surfacelist | category=Hand}}
 
{{Item/Table | type = surfacelist | category=Hand}}
  

Revision as of 20:58, 11 April 2016

Other languages:
English • ‎français

In Crea the majority of items are obtained through crafting them. Crafting is a simple process but in order to craft an item you first must obtain that item’s recipe. There are several means to acquiring recipes: monster loot; treasure chests; quests; and, most importantly, the Researcher NPC.

The Researcher NPC is specifically for discovering new recipes. First you provide the Researcher with materials. Upon returning to him after some time, you gain any recipes his research turned up. Upon request the research can provide hints as to what items he may need to discover more recipes.

After obtaining an item recipe, you must obtain the materials needed to craft the item. Additionally, many items will require you to be near “ crafting surfaces” such as an anvil or furnace. To make crafter lives easier, materials in nearby containers will be accessible during crafting. This means you can stash all of your ingots in a treasure chest next to your anvil. Then you do not have to move them from the chest to your inventory before crafting.


Modding

Creating new items to craft is quite simple. All it requires is to add a craft component to the item. Through this you can specify the item’s category, subcategory, surface requirement (if any), list of materials and quantity required, and the quantity produced.

#Example for Copper Ingot
craft = Craft('Recipes', 'Smelting', 'anvil')
craft.add('mods/base/tile/copper_ore.ce', 3)
craft.quantity = 1

The surface requirement can be left empty to designate that the item can be crafted anywhere. If it is specified, the surface requirement does not refer to a crafting surface item but to a crafting surface service. There is a “Surface” component which enables entities to provide any number of crafting services.

Most items requiring an anvil can be crafted with any anvil; however, some special items may need an upgraded anvil. This upgraded anvil would provide the services needed for both the special items and any other items requiring an anvil. Any item can provide any surface service, so it is entirely possible to create uber surface items. It is of course possible to create entirely new crafting surface services that new items can require.

#Iron Anvil
surface = Surface(["anvil"])
#Uber Anvil
surface = Surface(["anvil", “uber anvil”])

Recipes

There is a limit on the recipes you can research based off of your craft level. If there are remaining recipes to discover for an item then the category will have a red ‘!’ over it and the tooltip will mention requiring a higher craft level.
Hand.png Hand
Name Type Subtype Description
Researcher Outfit.png Researcher Outfit Basics Outfits The simple outfit of one who practices the sciences.


Name Type Subtype Description
Carpenter Tools.png Carpenter Tools Basics Essential tools for any carpenter.
Smithing Tools.png Smithing Tools Basics







Name Type Subtype Description
Acano Bed.png Acano Bed Home Furniture Perfect for winter nights, this bed produces its own source of warmth.
Acano Chair.png Acano Chair Home Furniture Made with the essence of lava and fire. Don't sit on it for too long.
Acano Chandelier.png Acano Chandelier Home Lighting The design is inspired by Acano, the volcano where Aegnix resides.
Acano Table.png Acano Table Home Furniture The hot surface of the table keeps food steaming hot.
Acano Table Lamp.png Acano Table Lamp Home Lighting The smouldering fire crystals give off a smoky scent.
Adamantite Arrow.png Adamantite Arrow Weapons Ammo Aeolus, send our arrows flying swift and far.
Adamantite Quiver.png Adamantite Quiver Weapons Ammo A prayer to Aeolus is stitched on the band.
Agmore Bow.png Agmore Bow Weapons Bows The archers of the Agmore brigade were crucial in fighting flying monsters during the war.
Alatrian Bed.png Alatrian Bed Home Furniture An extravant bed, as might be found in the bedchambers of the royal palace.
Alatrian Chair.png Alatrian Chair Home Furniture Beautifully carved in polished wood.

... further results