1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
-- FOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- =====================================
-- >> food/support.lua
-- Support external mods
-- =====================================
-- The following ingredient list is licensed under WTFPL
-- You may use the list in your mod. I am doing this to
-- make it easier for mods to support lots of others -
-- good for the end user
-- Add support for other mods
food.support("cocoa", "farming_plus:cocoa_bean")
food.support("cup", "vessels:drinking_glass")
food.support("cactus", "default:cactus")
food.support("apple", "default:apple")
food.support("orange", {
"farming_plus:orange_item",
"ethereal:orange",
})
food.disable_if("ethereal", "orange")
food.support("potato", {
"docfarming:potato",
"veggies:potato",
"farming_plus:potato_item"
})
food.support("tomato", {
"farming_plus:tomato_item",
"plantlib:tomato"
})
food.support("carrot", {
"farming_plus:carrot_item",
"docfarming:carrot",
"plantlib:carrot",
"jkfarming:carrot"
})
food.support("milk", {
"animalmaterials:milk",
"my_mobs:milk_glass_cup",
"mtfoods:dandelion_milk"
})
food.support("milkbucket", {
"jkanimals:bucket_milk",
"mobs:bucket_milk",
})
food.support("egg", {
"animalmaterials:egg",
"animalmaterials:egg_big",
"jkanimals:egg",
"mobs:egg"
})
food.support("meat", {
"mobs:meat",
"jkanimals:meat",
"mobfcooking:cooked_pork",
"mobfcooking:cooked_beef",
"mobfcooking:cooked_chicken",
"mobfcooking:cooked_lamb",
"mobfcooking:cooked_venison"
})
food.support("sugar", {
"jkfarming:sugar",
"bushes:sugar",
"mtfoods:sugar"
})
if farming and farming.mod == "redo" then
food.support("wheat", "farming:wheat")
food.support("flour", "farming:flour")
food.support("carrot", "farming:carrot")
food.support("potato", "farming:potato")
food.support("tomato", "farming:tomato")
food.support("cocoa", "farming:cocoa_beans")
food.support("coffee", "farming:coffee_beans")
food.support("dark_chocolate", "farming:chocolate_dark")
food.support("sugar", "farming:sugar")
food.support("cup", "farming:drinking_cup")
food.disable_if("farming", "baked_potato")
else
food.support("wheat", "farming:wheat")
food.support("flour", "farming:flour")
end
if minetest.get_modpath("mobs") and mobs.mod == "redo" then
if minetest.get_modpath("mobs_animal") then
food.support("chicken", "mobs:chicken_cooked")
else
food.support("chicken", "mobs:meat")
end
end
|