game/old/recipes.py
2020-05-11 19:52:50 -05:00

8 lines
268 B
Python

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")