forked from brevven/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiamond.lua
More file actions
83 lines (79 loc) · 2.24 KB
/
diamond.lua
File metadata and controls
83 lines (79 loc) · 2.24 KB
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
local resource_autoplace = require('resource-autoplace');
local noise = require('noise');
local util = require("__bzcarbon__.data-util");
if util.me.use_rough_diamond() then
data:extend({
{
type = "autoplace-control",
category = "resource",
name = "diamond",
richness = true,
order = "b-e"
},
{
type = "noise-layer",
name = "diamond"
},
{
type = "resource",
icon_size = 64, icon_mipmaps = 3,
name = "diamond",
icon = "__bzcarbon__/graphics/icons/rough-diamond.png",
flags = {"placeable-neutral"},
order="a-b-a",
map_color = {r=0.30, g=0.54, b=0.92},
minable =
{
mining_particle = "diamond-particle",
mining_time = 15,
result = "rough-diamond"
},
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 = "diamond",
order = "b-z",
base_density = 0.5,
base_spots_per_km2 = 0.5,
has_starting_area_placement = false,
regular_rq_factor_multiplier = 0.6,
},
stage_counts = {15000, 9500, 5500, 2900, 1300, 400, 150, 80},
stages =
{
sheet =
{
filename = "__bzcarbon__/graphics/entity/ores/diamond.png",
priority = "extra-high",
size = 64,
frame_count = 8,
variation_count = 8,
hr_version =
{
filename = "__bzcarbon__/graphics/entity/ores/hr-diamond.png",
priority = "extra-high",
size = 128,
frame_count = 8,
variation_count = 8,
scale = 0.5
}
}
},
},
{
type = "item",
name = "rough-diamond",
icon_size = 64, icon_mipmaps = 3,
icon = "__bzcarbon__/graphics/icons/rough-diamond.png",
pictures = {
{filename="__bzcarbon__/graphics/icons/rough-diamond.png", size=64, scale=0.25},
{filename="__bzcarbon__/graphics/icons/rough-diamond-1.png", size=64, scale=0.25},
{filename="__bzcarbon__/graphics/icons/rough-diamond-2.png", size=64, scale=0.25},
{filename="__bzcarbon__/graphics/icons/rough-diamond-3.png", size=64, scale=0.25},
},
subgroup = "raw-resource",
order = "t-c-a",
stack_size = util.get_stack_size(50)
},
})
end