game/old/recipes.py

8 lines
268 B
Python
Raw Normal View History

2020-05-11 19:52:50 -05:00
from lib.gameregistry import GameRegistry
def init():
GameRegistry.registerCrafting({"wood":6},"door")
GameRegistry.registerCrafting({"wood":4},"workbench")
GameRegistry.registerCrafting({"stone":8},"furnace")
GameRegistry.registerSmelting("iron_ore","wood")