summaryrefslogtreecommitdiff
path: root/rubenfood_basic/init - Copy (2).lua
blob: 3a7cfc98b2064805aa2c00d34471d7f5e21c6516 (plain)
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
-- This file registers all the foods

print ("RubenFood: Loading basic foods")


--------------------------Apple Juice--------------------------
minetest.register_node(":rubenfood:apple_juice", {
	description = "Apple Juice",
	drawtype = "plantlike",
	visual_scale = 1.0,
	tiles = {"ruben_juice_apple.png"},
	inventory_image = "ruben_juice_apple.png",
	paramtype = "light",
	sunlight_propagates = true,
	walkable = false,
	groups = {fleshy=3,dig_immediate=3,flammable=2},
	on_use = minetest.item_eat(2),
	sounds = default.node_sound_defaults(),
})

minetest.register_craft({
	output = '":rubenfood:apple_juice" 4',
	recipe = {
		{'""','""','""'},
		{'""','"default:apple"','""'},
		{'""','"bucket:bucket_water"','""'},
	}
})





----------------------------Cigerete----------------------------
minetest.register_node(":rubenfood:cigarette", {
	description = "Cigarette",
	drawtype = "plantlike",
	visual_scale = 1.0,
	tiles = {"ruben_cigar.png"},
	inventory_image = "ruben_cigar.png",
	paramtype = "light",
	sunlight_propagates = true,
	walkable = false,
	groups = {fleshy=3,dig_immediate=3,flammable=2},
	on_use = minetest.item_eat(-4),
	sounds = default.node_sound_defaults(),
})

minetest.register_craft({
	output = '"rubenfood:cigarette" 1',
	recipe = {
		{'"default:dry_shrub"','"default:dry_shrub"','"default:dry_shrub"'},

	}
})





-----------------------------Coffee-----------------------------

minetest.register_craftitem(":rubenfood:coffeebean",{
	description = "Coffee Bean",
	tiles = {"ruben_coffee.png"},
	inventory_image = "ruben_coffee.png",
})

minetest.register_craftitem(":rubenfood:coffeebean_cooked",{
	description = "Cooked Coffee Bean",
	tiles = {"ruben_coffee_cooked.png"},
	inventory_image = "ruben_coffee_cooked.png",
})

minetest.register_node(":rubenfood:coffee", {
	description = "Coffee",
	drawtype = "plantlike",
	visual_scale = 1.0,
	tiles = {"ruben_coffee_cup.png"},
	inventory_image = "ruben_coffee_cup.png",
	paramtype = "light",
	sunlight_propagates = true,
	walkable = false,
	groups = {fleshy=3,dig_immediate=3,flammable=2},
	on_use = minetest.item_eat(10),
	sounds = default.node_sound_defaults(),
})

minetest.register_craft({
	output = '"rubenfood:coffeebean" 1',
	recipe = {
		{'""','"default:dry_shrub"','""'},
		{'""','"default:dry_shrub"','""'},
		{'""','"default:dry_shrub"','""'},
	}
})

minetest.register_craft({
	output = '"rubenfood:coffee" 1',
	recipe = {
		{'""','"rubenfood:coffeebean_cooked"','""'},
		{'""','"rubenfood:coffeebean_cooked"','""'},
		{'""','"bucket:bucket_water"','""'},
	}
})

minetest.register_craft({
	type = "cooking",
	output = "rubenfood:coffeebean_cooked",
	recipe = "rubenfood:coffeebean",
})