readme.txt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Witchcraft by D00Med
  2. Some notes:
  3. >farming_redo is required for the mod even though this is not shown in depends.txt
  4. >mobs_redo is optionally required for the mod, but since pmobs requires it, it is assumed that if you have pmobs then you have mobs.
  5. >Some potions are dangerous!
  6. Some crafting recipes:
  7. herbs(shapeless):
  8. weed or groundfungus or bush
  9. jar of eyes:
  10. eye, X, X
  11. eye, X. X
  12. drinking glass, X, X
  13. eyes(shapeless):
  14. jar of eyes
  15. magic cooking pot:
  16. copper lump, X, copper lump
  17. copper lump, X, copper lump
  18. X, copper lump, X
  19. the magic cooking pot cooks its contents without fire, so there is no need to light a fire underneath.
  20. potion shelf:
  21. wood, wood, wood
  22. potion, potion, potion
  23. wood, wood, wood
  24. empty scroll:
  25. paper, diamond, paper
  26. paper, paper, paper
  27. Need some slime? try scraping it out of an empty cauldron with a drinking glass.
  28. Potion ingredients(may be slightly inaccurate):
  29. >herbs
  30. >jar of eyes
  31. >diamond
  32. >apple
  33. >gold lumps
  34. >mese crystal fragment
  35. >obsidian shard
  36. >jar of slime
  37. >curlyfruit
  38. >mushroom(moreplants)
  39. >red mushroom(flowers)
  40. >grass
  41. >umbrella plant
  42. >glass
  43. >glass fragments
  44. >flint
  45. >tnt
  46. >copper block
  47. >steel block
  48. >steel ingot
  49. >lilypad
  50. >dirt
  51. >sand
  52. >gravel
  53. >bucket of water
  54. >bullrush
  55. >bones
  56. About the recipes:
  57. init.lua contains the pot recipes. For each pot there is a line similar to the one below, in the 'witchraft.pot' table.
  58. {"blue", "brown", "default:dirt", "blue2", "moreplants:bullrush", "red", "purple"},
  59. {"potion name", "result1", "ingredient1", "result2", "ingredient2", "combine potion", "combine result"}
  60. The first column of the table("blue"), is the color of the current potion pot. In the example, it is the blue pot, so the ingredients and results in the other columns
  61. will apply to the blue pot, ie: the blue pot must be rightclicked. It is important that the name of the pot is in the name of it's texture, eg: a blue pot has the texture "witchraft_pot_blue.png"
  62. The second and fourth columns are the two possible results after adding new ingredients. The last column is the result after combining the current potion with another.
  63. The third and fifth columns are the ingredients required. The ingredient req. to make the potion in column 2 must be in column 3, and the ingredient req. to make the potion in columns 4 must be in columns 5.
  64. The 6th column is the potion that can be combined with the current potion to make a new potion.