-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathores.lua
More file actions
50 lines (43 loc) · 790 Bytes
/
ores.lua
File metadata and controls
50 lines (43 loc) · 790 Bytes
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
return {
Stone = {
Rarity = 2500;
SellValue = 1;
MinLevel = 0;
NoAlter = true
};
Coal = {
Rarity = 750;
SellValue = 2;
MinLevel = 0
};
Iron = {
Rarity = 500;
SellValue = 3;
MinLevel = 1
};
Copper = {
Rarity = 400;
SellValue = 5;
MinLevel = 2
};
Silver = {
Rarity = 300;
SellValue = 7;
MinLevel = 3
};
Gold = {
Rarity = 200;
SellValue = 12;
MinLevel = 4
};
Ruby = {
Rarity = 250;
SellValue = 10;
MinLevel = 5
};
Sapphire = {
Rarity = 250;
SellValue = 10;
MinLevel = 5
}
}