forked from ElCeejo/paleotest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crafting.lua
119 lines (103 loc) · 2.89 KB
/
crafting.lua
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
-----------------------
-- Craftting Recipes --
-----------------------
------- Ver 2.0 -------
--------------
-- Crafting --
--------------
minetest.register_craft({
output = "paleotest:feeder_carnivore",
recipe = {
{"group:color_red", "default:glass", "group:color_red"},
{"", "bucket:bucket_empty", ""},
{"", "default:steelblock", ""},
}
})
minetest.register_craft({
output = "paleotest:feeder_piscivore",
recipe = {
{"group:color_blue", "default:glass", "group:color_blue"},
{"", "bucket:bucket_empty", ""},
{"", "default:steelblock", ""},
}
})
minetest.register_craft({
output = "paleotest:feeder_herbivore",
recipe = {
{"group:color_green", "default:glass", "group:color_green"},
{"", "bucket:bucket_empty", ""},
{"", "default:steelblock", ""},
}
})
minetest.register_craft({
output = "paleotest:field_guide",
recipe = {
{"", "", ""},
{"group:fossil", "", ""},
{"default:book", "group:color_blue", ""},
}
})
minetest.register_craft({
output = "paleotest:whip",
recipe = {
{"", "", "farming:cotton"},
{"", "default:stick", "farming:cotton"},
{"default:stick", "", "farming:cotton"},
}
})
minetest.register_craft({
output = "paleotest:pursuit_ball",
recipe = {
{"farming:string", "wool:pink", "farming:string"},
{"wool:pink", "farming:cotton", "wool:pink"},
{"farming:string", "wool:pink", "farming:string"},
}
})
minetest.register_craft({
output = "paleotest:scratching_post",
recipe = {
{"wool:white", "default:wood", "wool:white"},
{"wool:white", "default:wood", "wool:white"},
{"default:tree", "default:tree", "default:tree"},
}
})
minetest.register_craft({
output = "paleotest:dna_cultivator",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:glass", "bucket:bucket_water", "default:glass"},
{"default:steel_ingot", "default:bronze_ingot", "default:steel_ingot"}
}
})
minetest.register_craft({
output = "paleotest:fossil_analyzer",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"},
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"}
}
})
minetest.register_craft({
type = "cooking",
output = "paleotest:dinosaur_meat_raw",
recipe = "paleotest:dinosaur_meat_cooked",
cooktime = 5
})
minetest.register_craft({
type = "cooking",
output = "paleotest:mammal_meat_raw",
recipe = "paleotest:mammal_meat_cooked",
cooktime = 5
})
minetest.register_craft({
type = "cooking",
output = "paleotest:reptile_meat_raw",
recipe = "paleotest:reptile_meat_cooked",
cooktime = 5
})
minetest.register_craft({
type = "cooking",
output = "paleotest:fish_meat_raw",
recipe = "paleotest:fish_meat_cooked",
cooktime = 5
})