forked from mathyscraft/potions_and_magic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrafts.lua
More file actions
101 lines (101 loc) · 2.98 KB
/
Copy pathcrafts.lua
File metadata and controls
101 lines (101 loc) · 2.98 KB
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
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:water_glass_bottle 1",
recipe = {"vessels:glass_bottle", "bucket:bucket_water"}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:health_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:vitality_plant",
"potions_and_magic:vitality_plant",
"potions_and_magic:vitality_plant",
"potions_and_magic:vitality_plant"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:nightvision_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:glow_mushroom",
"potions_and_magic:glow_mushroom",
"potions_and_magic:glow_mushroom",
"potions_and_magic:glow_mushroom"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:golden_apple 1",
recipe = {"default:apple", "default:gold_ingot"}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:weightlessness_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:golden_apple",
"potions_and_magic:golden_apple",
"potions_and_magic:golden_apple",
"potions_and_magic:golden_apple"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:water_breathing_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:gillykelp",
"potions_and_magic:gillykelp",
"potions_and_magic:gillykelp",
"potions_and_magic:gillykelp"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:sugar 1",
recipe = {"potions_and_magic:sugar_cane"}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:speed_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:sugar",
"potions_and_magic:sugar",
"potions_and_magic:sugar",
"potions_and_magic:sugar"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:slime 9",
recipe = {"potions_and_magic:slime_block"}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:slime_block 1",
recipe = {
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime"
}
})
minetest.register_craft({
type = "shapeless",
output = "potions_and_magic:jump_potion 1",
recipe = {
"potions_and_magic:water_glass_bottle",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime",
"potions_and_magic:slime"
}
})