1material Ogre/Earring
2{
3	technique
4	{
5		pass
6		{
7			ambient 0.7 0.7 0
8			diffuse 0.7 0.7 0
9
10			texture_unit
11			{
12				texture spheremap.png
13				colour_op_ex add src_texture src_current
14				colour_op_multipass_fallback one one
15				env_map spherical
16			}
17		}
18	}
19}
20
21material Ogre/Skin
22{
23	technique
24	{
25		pass
26		{
27			ambient 0.3 0.8 0.3
28
29			texture_unit
30			{
31				texture GreenSkin.jpg
32				tex_address_mode mirror
33			}
34		}
35	}
36}
37
38material Ogre/Tusks
39{
40	technique
41	{
42		pass
43		{
44			ambient 0.7 0.7 0.6
45
46			texture_unit
47			{
48				texture tusk.jpg
49				scale 0.2 0.2
50			}
51		}
52	}
53}
54
55material Ogre/Eyes
56{
57	technique
58	{
59		pass
60		{
61			ambient 1 0.4 0.4
62			diffuse 1 0.7 0
63			emissive 0.3 0.1 0
64		}
65	}
66}