91 lines
1.3 KiB
Lua
91 lines
1.3 KiB
Lua
-- naturum
|
|
-- replacement for farming_plus by tenplus1
|
|
-- License: WTFPL because i simply do not give a shit since this is a hobby at this point
|
|
|
|
-- things to alias from farming plus:
|
|
|
|
--[[
|
|
|
|
hoes
|
|
|
|
wheat, seeds, flour, toast
|
|
potatos
|
|
carrots
|
|
pumpkins
|
|
melons
|
|
berry bushes (alias the actual plantables, not things)
|
|
cocoa
|
|
corn
|
|
cotton -> rename to flax and hemp respectively
|
|
cucumbers
|
|
rhubarb
|
|
sugar
|
|
tomatos
|
|
strawberries (the food, not nodes)
|
|
|
|
]]
|
|
|
|
-- add the crushing hammer
|
|
|
|
--[[
|
|
|
|
list of known in world recipes:
|
|
|
|
stone -> cobble
|
|
cobble -> gravel
|
|
gravel -> sand
|
|
sand -> dust
|
|
|
|
]]
|
|
|
|
-- compost barrel
|
|
|
|
--[[
|
|
|
|
compost barrel recipes:
|
|
|
|
dust + water = clay
|
|
8 compostable foods + time = 1 dirt
|
|
water + lava + iron compost barrel = obsidian
|
|
|
|
]]
|
|
|
|
-- berry bushes
|
|
|
|
--[[
|
|
|
|
starfruit (only grows during day, rare)
|
|
moonfruit (only grows at night, rare)
|
|
blueberries
|
|
raspberries
|
|
blackberries
|
|
grapes
|
|
|
|
]]
|
|
|
|
-- salt ore
|
|
|
|
-- used for making crisps and such
|
|
|
|
-- cookware (reuseable)
|
|
|
|
--[[
|
|
|
|
knife? see below
|
|
chopping board (knife included?)
|
|
frying pan
|
|
saucepan
|
|
bowl
|
|
mixing spoon
|
|
baking tray
|
|
|
|
]]
|
|
|
|
-- to add:
|
|
|
|
--[[
|
|
|
|
coffee (and lava coffee)
|
|
coffee machine
|
|
|
|
]] |