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
###Sugar
id=969
name=Sugar
icon=gfx\salt.bmp
model=gfx\grain.b3d
scale=0.2
mat=dust
weight=25
info=Sugar from a sugar cane. Makes foods tastier.
script start
	on:eat {
		process "eating",500;
		play "eat.wav";
		eat,5,10,0,10;
		}
	
script=end
###Sugary Cake
id=968
name=Sugary Cake
icon=gfx\Cake.bmp
model=gfx\pavilion.b3d
scale=0.2
mat=dust
weight=150
info=Yummy Cake!
script=start
	on:eat {
		process "eating",3000;
		play "eat.wav";
		eat 25,55,5,10;
		}
script=end
###Good Coffee
id=966
name=Good Coffee
group=potion
icon=gfx\mug_coffee.bmp
model=gfx\mug01_coffee.b3d
scale=0.2
mat=glass
weight=100
info=Coffee! Helps keep me awake.
script=start
	on:eat {
		process "drinking", 1000;
		drink 15,20,10,30
script=end
Those are the edibles.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
###Wand
id=976
name=Wand
group=stuff
icon=gfx\wand.bmp
model=gfx\branch.b3d
weight=-1000
info=A magical wand containing elemental powers.It feels like it wants to float.
scale=0.3
script=start
	on:use {
		process "Casting Wand",5000;
		find 982;
		msg "The wand has magicly made a cake!";
		}
script=end
###Wand2
id=975
name=Wand
group=stuff
icon=gfx\wand.bmp
model=gfx\branch.b3d
weight=-1000
info=A magical wand containing elemental powers.It feels like it wants to float.
scale=0.3
script=start
	on:use {
		process "Casting Wand",2501;
		find 991;
		msg "The wand has magicly made a pat of cream!";
		}
script=end
###Wand3
id=974
name=Wand
group=stuff
icon=gfx\wand.bmp
model=gfx\branch.b3d
weight=-1000
info=A magical wand containing elemental powers.It feels like it wants to float.
scale=0.3
script=start
	on:use {
		process "Casting Wand",500;
		find 53;
		msg "The wand has magicly made an arrow!";
		}
script=end
###Wand4
id=972
name=Floating Wand
group=stuff
icon=gfx\wand.bmp
model=gfx\branch.b3d
weight=-2500
info=A magical wand containing elemental powers.It's seirously making your backpack lighter.
scale=0.3
script=start
	on:use {
		process "Casting Wand",4000;
		msg "Your rucksack suddenly feels lighter...";
		msg "...It's another butterfly!";
		find 69;
		}
script=end
Different wands do different things