recipes_base.py 635 B

1234567891011121314151617181920212223
  1. from utils.crafting import CraftingRecipe
  2. class WoodenPuppetRecipe(CraftingRecipe):
  3. """A puppet"""
  4. name = "wooden puppet" # name to refer to this recipe as
  5. tool_tags = ["blade"]
  6. consumable_tags = ["wood"]
  7. output_prototypes = [
  8. {"key": "carved wooden doll",
  9. "typeclass": "typeclasses.objects.Item",
  10. "desc": "A small carved doll"}
  11. ]
  12. class SummoningCircleRecipe(CraftingRecipe):
  13. """A summoning circle"""
  14. name = "summoning circle" # name to refer to this recipe as
  15. tool_tags = []
  16. consumable_tags = ["blood"]
  17. output_prototypes = [
  18. "summoning_circle"
  19. ]