Added fruits...
BIN
icon/material/apple.png
Normal file
After Width: | Height: | Size: 233 B |
BIN
icon/material/banana.png
Normal file
After Width: | Height: | Size: 241 B |
BIN
icon/material/cherry.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
icon/material/lemon.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
icon/material/orange.png
Normal file
After Width: | Height: | Size: 276 B |
BIN
icon/material/peach.png
Normal file
After Width: | Height: | Size: 239 B |
BIN
icon/material/pear.png
Normal file
After Width: | Height: | Size: 251 B |
BIN
icon/material/plum.png
Normal file
After Width: | Height: | Size: 232 B |
@ -9,7 +9,11 @@ package material is
|
||||
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
type enumeration is (
|
||||
sulphur, mercury, mint, cinnamon
|
||||
sulphur, mercury, mint, cinnamon, apple, peach,
|
||||
pear, banana, orange, plum, cherry, lemon,
|
||||
potato, wheat, carrot, cucumber, onion, garlic,
|
||||
eggplant, tomato, meat, fish_meat, skull, animal_skull,
|
||||
bone, rib_cage, animal_skin, animal_fur
|
||||
);
|
||||
|
||||
------------------------------------------------------------------------------------------
|
||||
@ -24,10 +28,34 @@ package material is
|
||||
count : constant natural := enumeration'pos (enumeration'last) + 1;
|
||||
|
||||
trait : constant array (enumeration) of information := (
|
||||
sulphur => ("Sulphur ", 7),
|
||||
mercury => ("Mercury ", 13),
|
||||
mint => ("Mint ", 3),
|
||||
cinnamon => ("Cinnamon ", 5)
|
||||
sulphur => ("Sulphur ", 7),
|
||||
mercury => ("Mercury ", 13),
|
||||
mint => ("Mint ", 3),
|
||||
cinnamon => ("Cinnamon ", 5),
|
||||
apple => ("Apple ", 2)
|
||||
peach => ("Peach ", 2),
|
||||
pear => ("Pear ", 2),
|
||||
banana => ("Banana ", 3),
|
||||
orange => ("Orange ", 3),
|
||||
plum => ("Plum ", 3),
|
||||
cherry => ("Cherry ", 3),
|
||||
lemon => ("Lemon ", 2),
|
||||
potato => ("Potato ", 1),
|
||||
wheat => ("Wheat ", 1),
|
||||
carrot => ("Carrot ", 2),
|
||||
cucumber => ("Cucumber ", 3),
|
||||
onion => ("Onion ", 2),
|
||||
garlic => ("Garlic ", 2),
|
||||
eggplant => ("Eggplant ", 3),
|
||||
tomato => ("Tomato ", 2),
|
||||
meat => ("Meat ", 3),
|
||||
fish_meat => ("Fish Meat ", 2),
|
||||
skull => ("Skull ", 1),
|
||||
animal_skull => ("Animal Skull ", 1),
|
||||
bone => ("Bone ", 1),
|
||||
rib_cage => ("Rib Cage ", 1),
|
||||
animal_skin => ("Animal Skin ", 5),
|
||||
animal_fur => ("Animal Fur ", 7)
|
||||
);
|
||||
|
||||
------------------------------------------------------------------------------------------
|
||||
|