-
Notifications
You must be signed in to change notification settings - Fork 6
/
aluminum-ore.lua
85 lines (81 loc) · 2.41 KB
/
aluminum-ore.lua
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
local resource_autoplace = require('resource-autoplace');
local noise = require('noise');
local util = require("data-util");
data:extend({
{
type = "autoplace-control",
category = "resource",
name = "aluminum-ore",
richness = true,
order = "b-e"
},
{
type = "noise-layer",
name = "aluminum-ore"
},
{
type = "resource",
icon_size = 64, icon_mipmaps = 3,
name = "aluminum-ore",
icon = "__bzaluminum__/graphics/icons/aluminum-ore.png",
flags = {"placeable-neutral"},
order="a-b-a",
map_color = {r=1.00, g=0.80, b=0.50},
tree_removal_probability = 0.7,
tree_removal_max_distance = 32 * 32,
minable =
{
hardness = 1,
mining_particle = mods.bztitanium and "titanium-ore-particle" or "iron-ore-particle",
mining_time = 1,
result = "aluminum-ore"
},
collision_box = {{ -0.1, -0.1}, {0.1, 0.1}},
selection_box = {{ -0.5, -0.5}, {0.5, 0.5}},
autoplace = resource_autoplace.resource_autoplace_settings{
name = "aluminum-ore",
order = "b-z",
base_density = 6,
base_spots_per_km2 = 1,
has_starting_area_placement = true,
regular_rq_factor_multiplier = 1.2,
starting_rq_factor_multiplier = 1.7,
},
stage_counts = {15000, 9500, 5500, 2900, 1300, 400, 150, 80},
stages =
{
sheet =
{
filename = "__bzaluminum__/graphics/entity/ores/aluminum-ore.png",
priority = "extra-high",
size = 64,
frame_count = 8,
variation_count = 8,
hr_version =
{
filename = "__bzaluminum__/graphics/entity/ores/hr-aluminum-ore.png",
priority = "extra-high",
size = 128,
frame_count = 8,
variation_count = 8,
scale = 0.5
}
}
},
},
{
type = "item",
name = "aluminum-ore",
icon_size = 64, icon_mipmaps = 3,
icon = "__bzaluminum__/graphics/icons/aluminum-ore.png",
pictures = {
{filename="__bzaluminum__/graphics/icons/aluminum-ore.png", size=64, scale=0.25},
{filename="__bzaluminum__/graphics/icons/aluminum-ore-2.png", size=64, scale=0.25},
{filename="__bzaluminum__/graphics/icons/aluminum-ore-3.png", size=64, scale=0.25},
{filename="__bzaluminum__/graphics/icons/aluminum-ore-4.png", size=64, scale=0.25},
},
subgroup = "raw-resource",
order = "t-c-a",
stack_size = util.get_stack_size(50)
},
})