Overview
Comment: | add new god, add idol crafting recipes, fix bugs |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6e7b450ec726c020209130cf5458589c |
User & Date: | lexi on 2021-07-05 16:47:11 |
Other Links: | manifest | tags |
Context
2021-07-05
| ||
19:17 | remove debugging shim oops check-in: d08d3d2bd8 user: lexi tags: trunk | |
16:47 | add new god, add idol crafting recipes, fix bugs check-in: 6e7b450ec7 user: lexi tags: trunk | |
03:24 | really unbreak imbue this time, also fix dumb rune bug check-in: f9d8ede806 user: lexi tags: trunk | |
Changes
Modified altar.lua from [7e265da854] to [235fbb7fc6].
1 2 3 4 5 6 7 8 9 10 11 .. 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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
local altar_item_offset = { x = 0, y = -0.3, z = 0 } local log = sorcery.logger('altar') local range = function(min, max) local span = max - min local val = math.random() * span return val + min end ................................................................................ for g in pairs(god.gifts) do -- can't mutate table while we're iterating it if not minetest.registered_nodes[g] then bad[#bad+1] = g end end for _, g in ipairs(bad) do god.gifts[g] = nil end end end) for name, god in pairs(sorcery.data.gods) do local hitbox = { 0-(god.idol.width / 2.0), 0-(god.idol.height / 2.0), -0.15, god.idol.width / 2.0, god.idol.height / 2.0, 0.15 } -- {xmin, ymin, zmin, -- xmax, ymax, zmax} in nodes from node center. paramtype = "light"; sorcery.lib.node.reg_autopreserve('sorcery:idol_' .. name, { description = god.idol.desc; drawtype = "mesh"; mesh = 'sorcery-idol-' .. name .. '.obj'; paramtype = 'light'; paramtype2 = 'facedir'; sunlight_propagates = true; ................................................................................ stack_max = 1; tiles = god.idol.tex; selection_box = { type = "fixed"; fixed = {hitbox}; }; collision_box = { type = "fixed"; fixed = {hitbox}; }; groups = { cracky = 2, sorcery_idol = 1, heavy = 1, sorcery_worship = 1}; on_construct = function(pos) minetest.get_node_timer(pos):start(1) end; on_timer = function(pos, elapsed) local altar = minetest.find_node_near(pos, 3, "sorcery:altar") -- TODO even without an altar, an idol with high favor could still be the source of miracles -- refills nearby partly empty troughs at cost to favor? if not altar then return true end local altarmeta = minetest.get_meta(altar) local inv = altarmeta:get_inventory() local idolmeta = minetest.get_meta(pos) local divine_favor = idolmeta:get_int('favor') local bestow = function(item,color) if type(item) == 'string' then item = ItemStack(item) end if color == nil then color = sorcery.lib.color(god.color) end ................................................................................ } end inv:set_stack('item',1,item) end if inv:is_empty('item') then -- nothing on the altar. decide if we're going to do a -- gift cycle by rolling against the god's stinginess if math.random(god.stinginess) == 1 then -- we've beat the odds and started a gift cycle. now -- we pick a random gift and roll against its rarity -- to determine if the god is feeling generous local gift = sorcery.lib.tbl.pick(god.gifts) local data = god.gifts[gift] local value, rarity = data[1], data[2] if value <= divine_favor and math.random(rarity) == 1 then |
> > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > | |
1 2 3 4 5 6 7 8 9 10 11 12 .. 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 86 87 88 .. 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 ... 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
local altar_item_offset = { x = 0, y = -0.3, z = 0 } local log = sorcery.logger('altar') local L = sorcery.lib local range = function(min, max) local span = max - min local val = math.random() * span return val + min end ................................................................................ for g in pairs(god.gifts) do -- can't mutate table while we're iterating it if not minetest.registered_nodes[g] then bad[#bad+1] = g end end for _, g in ipairs(bad) do god.gifts[g] = nil end end end) local god_interval = 1 for name, god in pairs(sorcery.data.gods) do local hitbox = { 0-(god.idol.width / 2.0), 0-(god.idol.height / 2.0), -0.15, god.idol.width / 2.0, god.idol.height / 2.0, 0.15 } -- {xmin, ymin, zmin, -- xmax, ymax, zmax} in nodes from node center. paramtype = "light"; if god.idol.craft then minetest.register_craft { output = 'sorcery:idol_' .. name; recipe = god.idol.craft; }; end sorcery.lib.node.reg_autopreserve('sorcery:idol_' .. name, { description = god.idol.desc; drawtype = "mesh"; mesh = 'sorcery-idol-' .. name .. '.obj'; paramtype = 'light'; paramtype2 = 'facedir'; sunlight_propagates = true; ................................................................................ stack_max = 1; tiles = god.idol.tex; selection_box = { type = "fixed"; fixed = {hitbox}; }; collision_box = { type = "fixed"; fixed = {hitbox}; }; groups = { cracky = 2, sorcery_idol = 1, heavy = 1, sorcery_worship = 1}; on_construct = function(pos) minetest.get_node_timer(pos):start(god_interval) end; on_timer = function(pos, elapsed) local altar = minetest.find_node_near(pos, 3, "sorcery:altar") -- TODO even without an altar, an idol with high favor could still be the source of miracles -- refills nearby partly empty troughs at cost to favor? if not altar then return true end local altarmeta = minetest.get_meta(altar) local inv = altarmeta:get_inventory() local idolmeta = minetest.get_meta(pos) local divine_favor = idolmeta:get_int('favor') if divine_favor > 5 then local ct = divine_favor / 5 minetest.add_particlespawner { texture = L.image('sorcery_glitter.png'):glow(L.color(god.color)):render(); glow = 14; amount = ct / (1 / god_interval), time = god_interval; minpos = pos:offset(-0.4, -0.5, -0.4); maxpos = pos:offset( 0.4,god.idol.height-0.5,0.4); minvel = vector.new(0, 0.05, 0); minvel = vector.new(0, 0.1, 0); minacc = vector.new(0, 0.1, 0); maxacc = vector.new(0, 0.2, 0); minexptime = 4, maxexptime = 4; minsize = 0.3, maxsize = 1; animation = { type = 'vertical_frames'; length = 0.1; aspect_w = 16, aspect_h = 16; } } end local bestow = function(item,color) if type(item) == 'string' then item = ItemStack(item) end if color == nil then color = sorcery.lib.color(god.color) end ................................................................................ } end inv:set_stack('item',1,item) end if inv:is_empty('item') then -- nothing on the altar. decide if we're going to do a -- gift cycle by rolling against the god's stinginess if god.gifts and next(god.gifts) and math.random(god.stinginess) == 1 then -- we've beat the odds and started a gift cycle. now -- we pick a random gift and roll against its rarity -- to determine if the god is feeling generous local gift = sorcery.lib.tbl.pick(god.gifts) local data = god.gifts[gift] local value, rarity = data[1], data[2] if value <= divine_favor and math.random(rarity) == 1 then |
Modified astrolabe.lua from [21ab3e0c25] to [4969c316df].
76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
description = 'Astrolabe'; drawtype = 'mesh'; mesh = 'sorcery-astrolabe.obj'; groups = { cracky = 2, choppy = 2; dig_immediate = 2; sorcery_tech = 1; }; sunlight_propagates = true; paramtype = 'light'; selection_box = albox, collision_box = albox; after_dig_node = sorcery.lib.node.purge_containers; tiles = { 'default_steel_block.png'; |
> |
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
description = 'Astrolabe';
drawtype = 'mesh';
mesh = 'sorcery-astrolabe.obj';
groups = {
cracky = 2, choppy = 2;
dig_immediate = 2;
sorcery_tech = 1;
flammable = 1;
};
sunlight_propagates = true;
paramtype = 'light';
selection_box = albox, collision_box = albox;
after_dig_node = sorcery.lib.node.purge_containers;
tiles = {
'default_steel_block.png';
|
Modified coins.lua from [f1f53dbe15] to [3ea00fa42e].
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
} minetest.register_node('sorcery:coin_press', { description = "Coin Press"; drawtype = 'mesh'; mesh = 'sorcery-coinpress.obj'; sunlight_propagates = true; paramtype = 'light'; paramtype2 = 'facedir'; groups = { cracky = 2; oddly_breakable_by_hand = 3; sorcery_metallurgy = 1}; tiles = { 'default_wood.png'; 'default_stone.png'; 'default_copper_block.png'; 'default_steel_block.png'; }; selection_box = hitbox; |
> > | > > |
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
} minetest.register_node('sorcery:coin_press', { description = "Coin Press"; drawtype = 'mesh'; mesh = 'sorcery-coinpress.obj'; sunlight_propagates = true; paramtype = 'light'; paramtype2 = 'facedir'; groups = { cracky = 2; oddly_breakable_by_hand = 3; sorcery_metallurgy = 1; sorcery_tech = 1; }; tiles = { 'default_wood.png'; 'default_stone.png'; 'default_copper_block.png'; 'default_steel_block.png'; }; selection_box = hitbox; |
Modified compat.lua from [13321ca8da] to [79c7e033c3].
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
end
if minetest.get_modpath("new_campfire") then
minetest.register_alias('sorcery:ash', 'new_campfire:ash')
else
minetest.register_craftitem('sorcery:ash', {
description = 'Ash';
inventory_image = 'sorcery_iron_powder.png^[colorize:#FFFFFF:60';
})
minetest.register_alias('new_campfire:ash', 'sorcery:ash')
end
-- xdecor offers a conflicting and somewhat poorly designed enchantment
-- mechanism; make it inaccessible but don't fuck up already existing
-- enchanters in the world
|
| |
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
end
if minetest.get_modpath("new_campfire") then
minetest.register_alias('sorcery:ash', 'new_campfire:ash')
else
minetest.register_craftitem('sorcery:ash', {
description = 'Ash';
inventory_image = 'sorcery_steel_powder.png^[colorize:#FFFFFF:60';
})
minetest.register_alias('new_campfire:ash', 'sorcery:ash')
end
-- xdecor offers a conflicting and somewhat poorly designed enchantment
-- mechanism; make it inaccessible but don't fuck up already existing
-- enchanters in the world
|
Modified data/gods.lua from [fc9658990d] to [a732e194a1].
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
..
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
local L = sorcery.lib return { harvest = { name = "Irix Irimentari" --[[ an old Elerian harvest goddess, Irix Irimentari has watched vigilantly over the fields of her worshippers since before the Second Age. she favors alcoholic beverages as tribute, and has been known to perform blessings for sorcerers when sufficiently inebriated. she harbors a particular hatred of daemons and those who spill the blood of farmers. legend says that a barbarian lord high on opium once wandered into a temple of Irix and left the severed head of a local shepherd on the her altar. this desecration so enraged the goddess that the barbarian's entire tribe soon starved horribly to death, their crops refusing to take root, and their stolen breads turning to ash in their mouths. in the mystic arts, she is the patron of Alchemy. it is said that Irix Irimentari herself invented alchemy when she brewed the first mead. ]]; laziness = 5; stinginess = 3; generosity = 10; color = {214, 255, 146}; idol = { desc = "Harvest Idol"; width = 0.5; height = 1; tex = { "default_grass.png", "default_gold_block.png", "default_copper_block.png", "default_tin_block.png" }; }; bless = { potions = {}; tools = {}; }; consecrate = { ["flowerpot:empty"] = {2, { ................................................................................ pred = function(c) local me = ctx.god if c.mod == 'farming' or minetest.get_item_group(c.item, 'sorcery_potion') ~= 0 or minetest.get_item_group(c.item, 'sorcery_oil') ~= 0 or minetest.get_item_group(c.item, 'sorcery_grease') ~= 0 or minetest.get_item_group(c.item, 'sorcery_extract') ~= 0 or me.sacrifice [c.item] or me.consecrate[c.item] then print(' !! accepted') return true end print(' -- rejected') end; }) return 1, stack end; -- ["default:steel_ingot"] = {15, "sorcery:holy_token_harvest"}; }; sacrifice = { |
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
<
|
|
>
>
>
>
>
>
>
>
>
|
<
|
<
|
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
...
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
local L = sorcery.lib return { magic = { name = "Sulavri Tefrusir" --[[ Sulavri the Blind is the husband of Irix Irimentari. Elerian legend tells that he fell in love with Irix when she invented alchemy, and they wed, giving birth to the human race. Sulavri is Lord of the Leylines, Father of Man and Magic, and his domain is that of sorcery, physics, the aether, and all the hidden arts besides. legend tells that a foolish mortal king once conspired to steal away Sulavri's staff, knowing it to be the apex of the sorcerer's art and desirous of its might. wise Sulavri however saw the warnings on the wind and in the dances of the birds, and so on the fateful day he fashioned an imitation staff that held no power at all, his wife concealing his true staff by turning into a shawl and casting it about her shoulders. sure enough, when Sulavri laid down to rest at his favored mountain stream, a master thief in the employ of the king stole away the false staff, bringing it to his master. at first delighted, the king found the staff would not answer his will, and soon went mad seeking to unlock the secrets of its power. Sulavri is the patron of elders, men, and Wand-Working. ]]; laziness = 7; generosity = 4; stinginess = 1; color = {255,34,123}; idol = { desc = 'Mystic Idol'; width = 0.7; height = 1; tex = { "default_obsidian.png"; "default_gold_block.png"; "default_copper_block.png"; "default_tin_block.png^[brighten"; "default_bronze_block.png"; }; craft = { {'default:bronze_ingot','default:gold_ingot','default:obsidian_shard'}; {'sorcery:fragment_copper','sorcery:silver_ingot','sorcery:fragment_copper'}; {'default:obsidian_shard','stairs:slab_goldblock','default:bronze_ingot'}; }; }; bless = { potions = {}; tools = {}; }; gifts = {}; consecrate = { ["sorcery:dagger"] = {17, "sorcery:dagger_consecrated"}; ["sorcery:oil_mystic"] = {9, "sorcery:oil_purifying"}; ["sorcery:potion_water"] = {4, "sorcery:holy_water"}; ["default:paper"] = function(ctx) local stack = ItemStack('sorcery:recipe') local mode = select(2,L.tbl.pick{'cook','craft','infuse','grind','enchant'}) sorcery.cookbook.setrecipe(stack, mode, nil, { pred = function(c) local me = ctx.god if mode == 'enchant' or minetest.get_item_group(c.item, 'sorcery_magical') ~= 0 or minetest.get_item_group(c.item, 'sorcery_magitech') ~= 0 or minetest.get_item_group(c.item, 'sorcery_ley_device') ~= 0 or minetest.get_item_group(c.item, 'sorcery_tech') ~= 0 or minetest.get_item_group(c.item, 'crafttool') ~= 0 or me.sacrifice [c.item] or me.consecrate[c.item] then return true end end; }) return 1, stack end; -- ["default:gold_ingot"] = {15, "sorcery:holy_token_magic"}; }; sacrifice = { ['sorcery:essence_frost'] = 25; ['sorcery:essence_flame'] = 25; ['sorcery:essence_force'] = 30; ['sorcery:gem_luxite'] = 6; ['sorcery:gem_ruby'] = 10; ['sorcery:gem_amethyst'] = 16; ['sorcery:gem_sapphire'] = 25; ['sorcery:gem_emerald'] = 34; ['default:mese_crystal'] = 42; ['default:diamond'] = 50; ['sorcery:gem_luxite_amulet'] = 20; ['sorcery:gem_ruby_amulet'] = 35; ['sorcery:gem_amethyst_amulet'] = 48; ['sorcery:gem_sapphire_amulet'] = 56; ['sorcery:gem_emerald_amulet'] = 63; ['sorcery:gem_mese_amulet'] = 78; ['sorcery:gem_diamond_amulet'] = 91; ['sorcery:oil_mystic'] = 2; ['sorcery:oil_berry'] = 4; ['sorcery:oil_wind'] = 6; ['sorcery:oil_bleak'] = 6; ['sorcery:oil_stone'] = 7; ['sorcery:oil_mushroom'] = 8; ['sorcery:oil_flame'] = 8; ['sorcery:oil_dawn'] = 11; ['sorcery:oil_luscious'] = 12; ['sorcery:oil_luck'] = 16; ['sorcery:oil_sagnuine'] = -15; ['sorcery:grease_fog'] = 17; ['sorcery:grease_pine'] = 18; ['sorcery:grease_storm'] = 20; ['sorcery:grease_whisper'] = 21; ['sorcery:grease_thunder'] = 22; ['sorcery:grease_enchanting'] = 24; ['sorcery:grease_lift'] = 32; ['sorcery:grease_war'] = -5; ['sorcery:warding_plate'] = 6; ['sorcery:ley_puncture'] = 8; ['sorcery:pulse_rectifier'] = 8; ['sorcery:current_felicitator'] = 12; ['sorcery:infuser_concentrator'] = 15; ['sorcery:infuser_tube'] = 23; ['sorcery:inverter_coil'] = 31; ['sorcery:inversion_matrix'] = 70; ['sorcery:inferno_crystal'] = 75; ['sorcery:beam_generator'] = 83; ['sorcery:field_emitter'] = 92; ['sorcery:catalytic_converter'] = 95; ['sorcery:gravity_manipulator'] = 97; ['sorcery:core_syncretic'] = 64; ['sorcery:core_mandatic'] = 53; ['sorcery:core_praxic'] = 72; ['sorcery:core_counterpraxic'] = 31; ['sorcery:sap'] = 1; ['sorcery:sap_apple'] = 2; ['sorcery:sap_aspen'] = 3; ['sorcery:sap_pine'] = 3; ['sorcery:sap_jungle'] = 4; ['sorcery:sap_acacia'] = 5; ['sorcery:blood'] = -5; }; }; harvest = { name = "Irix Irimentari" --[[ an old Elerian harvest goddess, Irix the Bountiful has watched vigilantly over the fields of her worshippers since before the Second Age. she favors alcoholic beverages as tribute, and has been known to perform blessings for sorcerers when sufficiently inebriated. she harbors a particular hatred of daemons and those who spill the blood of farmers. legend says that a barbarian lord high on opium once wandered into a temple of Irix and left the severed head of a local shepherd on the her altar. this desecration so enraged the goddess that the barbarian's entire tribe soon starved horribly to death, their crops refusing to take root, and their stolen breads turning to ash in their mouths. Irix is the patron of maidens, mothers, and Alchemy. it is said that Irix Irimentari herself invented alchemy when she brewed the first mead. ]]; laziness = 5; stinginess = 3; generosity = 10; color = {214, 255, 146}; idol = { desc = "Harvest Idol"; width = 0.7; height = 1; tex = { "default_grass.png", "default_gold_block.png", "default_copper_block.png", "default_tin_block.png" }; craft = { {'sorcery:fragment_tin','default:fern_1','sorcery:fragment_tin'}; {'sorcery:fragment_copper','default:gold_ingot','sorcery:fragment_copper'}; {'','stairs:slab_goldblock',''}; }; }; bless = { potions = {}; tools = {}; }; consecrate = { ["flowerpot:empty"] = {2, { ................................................................................ pred = function(c) local me = ctx.god if c.mod == 'farming' or minetest.get_item_group(c.item, 'sorcery_potion') ~= 0 or minetest.get_item_group(c.item, 'sorcery_oil') ~= 0 or minetest.get_item_group(c.item, 'sorcery_grease') ~= 0 or minetest.get_item_group(c.item, 'sorcery_extract') ~= 0 or minetest.get_item_group(c.item, 'sorcery_container') ~= 0 or minetest.get_item_group(c.item, 'plant') ~= 0 or minetest.get_item_group(c.item, 'flora') ~= 0 or minetest.get_item_group(c.item, 'flowerpot') ~= 0 or me.sacrifice [c.item] or me.consecrate[c.item] then return true end end; }) return 1, stack end; -- ["default:steel_ingot"] = {15, "sorcery:holy_token_harvest"}; }; sacrifice = { |
Modified metallurgy-cold.lua from [3417cf14d8] to [05dee2b1dd].
141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
return mp end minetest.register_node('sorcery:mill',{ description = 'Mill'; groups = { cracky = 2; sorcery_ley_device = 1; sorcery_metallurgy = 1; }; paramtype2 = 'facedir'; after_dig_node = sorcery.lib.node.purge_container; on_construct = function(pos) local meta = minetest.get_meta(pos) |
> |
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
return mp
end
minetest.register_node('sorcery:mill',{
description = 'Mill';
groups = {
cracky = 2;
sorcery_magitech = 1;
sorcery_ley_device = 1;
sorcery_metallurgy = 1;
};
paramtype2 = 'facedir';
after_dig_node = sorcery.lib.node.purge_container;
on_construct = function(pos)
local meta = minetest.get_meta(pos)
|
Modified metallurgy-hot.lua from [dd0624e110] to [65f0002753].
323 324 325 326 327 328 329 330 331 332 333 334 335 336 ... 406 407 408 409 410 411 412 413 414 415 416 417 418 419 ... 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
drawtype = "mesh"; after_dig_node = sorcery.lib.node.purge_container; mesh = 'sorcery-kiln-' .. state .. '.obj'; drop = id; groups = { cracky = (state == 'open' and 2) or nil; sorcery_metallurgy = 1; not_in_creative_inventory = (state == 'open') and nil or 1; }; sunlight_propagates = true; paramtype1 = 'light'; paramtype2 = 'facedir'; selection_box = box[state]; collision_box = box[state]; ................................................................................ _proto = kind; description = desc; drop = id; after_dig_node = sorcery.lib.node.purge_container; groups = { cracky = (not active and 2) or nil; sorcery_metallurgy = 1; not_in_creative_inventory = active and 1 or nil; }; paramtype2 = 'facedir'; light_source = (active and 9) or 0; on_construct = function(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() ................................................................................ recipe = recipe; output = id; } end for _, t in pairs { {1, nil, 'clay'}; {2, 'hot','aluminum'}; {3, 'volcanic','platinum'}; {4, 'stellar','duridium'}; {5, 'nova','impervium'}; } do register_kiln { temp = t[1], temp_name = t[2]; material = t[3]; size = 3, outsize = 4, fuelsize = 1; -- future-proofing } for _, s in pairs { |
> > | | | | |
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 ... 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 ... 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
drawtype = "mesh"; after_dig_node = sorcery.lib.node.purge_container; mesh = 'sorcery-kiln-' .. state .. '.obj'; drop = id; groups = { cracky = (state == 'open' and 2) or nil; sorcery_metallurgy = 1; sorcery_tech = 1; not_in_creative_inventory = (state == 'open') and nil or 1; }; sunlight_propagates = true; paramtype1 = 'light'; paramtype2 = 'facedir'; selection_box = box[state]; collision_box = box[state]; ................................................................................ _proto = kind; description = desc; drop = id; after_dig_node = sorcery.lib.node.purge_container; groups = { cracky = (not active and 2) or nil; sorcery_metallurgy = 1; sorcery_tech = 1; not_in_creative_inventory = active and 1 or nil; }; paramtype2 = 'facedir'; light_source = (active and 9) or 0; on_construct = function(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() ................................................................................ recipe = recipe; output = id; } end for _, t in pairs { {1, nil, 'clay'}; -- {2, 'hot','aluminum'}; -- {3, 'volcanic','platinum'}; -- {4, 'stellar','duridium'}; -- {5, 'nova','impervium'}; } do register_kiln { temp = t[1], temp_name = t[2]; material = t[3]; size = 3, outsize = 4, fuelsize = 1; -- future-proofing } for _, s in pairs { |
Added models/sorcery-idol-magic.obj version [0d831653cf].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 |
# Blender v2.93.0 OBJ File: 'idol.blend' # www.blender.org mtllib sorcery-idol-magic.mtl o obsidian.001_obsidiian v -0.246168 0.300068 0.101268 v -0.246168 0.300068 -0.050139 v -0.379587 0.300068 0.101268 v -0.379587 0.300068 -0.050139 v -0.246168 0.428089 0.101268 v -0.246168 0.428089 -0.050139 v -0.379587 0.428089 0.101268 v -0.379587 0.428089 -0.050139 v 0.160002 -0.152805 -0.210085 v 0.188941 -0.152805 -0.210085 v 0.160002 -0.180533 -0.210085 v 0.188941 -0.180533 -0.210085 v 0.188941 -0.152805 -0.261607 v 0.160002 -0.152805 -0.261607 v 0.188941 -0.180533 -0.261607 v 0.160002 -0.180533 -0.261607 vt 0.940594 1.000000 vt 0.059406 0.000000 vt 0.059406 1.000000 vt 0.059406 0.000000 vt 0.940594 1.000000 vt 0.059406 1.000000 vt 0.000000 0.077231 vt 1.000000 0.922769 vt 1.000000 0.077231 vt 0.059406 0.077231 vt 0.940594 0.922769 vt 0.940594 0.077231 vt 1.000000 0.077231 vt 0.000000 0.922769 vt 0.000000 0.077231 vt 0.940594 0.077231 vt 0.059406 0.922769 vt 0.059406 0.077231 vt 0.232427 0.463339 vt 0.232427 0.463339 vt 0.232427 0.463339 vt 0.268545 0.463339 vt 0.268545 0.463339 vt 0.268545 0.463339 vt 0.268545 0.463339 vt 0.232427 0.463339 vt 0.940594 0.000000 vt 0.940594 0.000000 vt 0.000000 0.922769 vt 0.059406 0.922769 vt 1.000000 0.922769 vt 0.940594 0.922769 vn 0.0000 -1.0000 0.0000 vn 0.0000 1.0000 0.0000 vn 1.0000 0.0000 0.0000 vn 0.0000 0.0000 1.0000 vn -1.0000 0.0000 0.0000 vn 0.0000 0.0000 -1.0000 g obsidian.001_obsidiian_obsidian.001 usemtl obsidian.001 s off f 3/1/1 2/2/1 1/3/1 f 6/4/2 7/5/2 5/6/2 f 2/7/3 5/8/3 1/9/3 f 1/10/4 7/11/4 3/12/4 f 3/13/5 8/14/5 4/15/5 f 4/16/6 6/17/6 2/18/6 f 12/19/3 13/20/3 10/21/3 f 13/20/6 16/22/6 14/23/6 f 9/24/2 13/20/2 14/23/2 f 9/24/5 16/22/5 11/25/5 f 11/25/1 15/26/1 12/19/1 f 11/25/4 10/21/4 9/24/4 f 3/1/1 4/27/1 2/2/1 f 6/4/2 8/28/2 7/5/2 f 2/7/3 6/29/3 5/8/3 f 1/10/4 5/30/4 7/11/4 f 3/13/5 7/31/5 8/14/5 f 4/16/6 8/32/6 6/17/6 f 12/19/3 15/26/3 13/20/3 f 13/20/6 15/26/6 16/22/6 f 9/24/2 10/21/2 13/20/2 f 9/24/5 14/23/5 16/22/5 f 11/25/1 16/22/1 15/26/1 f 11/25/4 12/19/4 10/21/4 o gold_gold.001 v -0.313161 -0.440594 0.175564 v -0.313161 -0.500000 0.175564 v -0.313161 -0.440594 -0.124436 v -0.313161 -0.500000 -0.124436 v 0.186839 -0.440594 0.175564 v 0.186839 -0.500000 0.175564 v 0.186839 -0.440594 -0.124436 v 0.186839 -0.500000 -0.124436 v -0.140532 0.330386 0.082059 v -0.140532 0.330386 -0.030931 v 0.014211 0.330386 0.082059 v 0.014211 0.330386 -0.030931 v -0.234690 0.330386 0.125482 v -0.234690 0.330386 -0.074353 v 0.108369 0.330386 0.125482 v 0.108369 0.330386 -0.074353 v -0.148593 0.348292 0.083376 v -0.148593 0.348292 -0.032247 v 0.022272 0.348292 0.083375 v 0.022272 0.348292 -0.032247 v -0.234690 0.348292 0.125482 v -0.234690 0.348292 -0.074353 v 0.108369 0.348292 0.125482 v 0.108369 0.348292 -0.074353 v -0.063161 0.493312 0.053205 v -0.063161 0.493312 -0.002076 v 0.155388 -0.148039 0.286742 v 0.193555 -0.148039 0.286742 v 0.155388 -0.185299 0.286742 v 0.193555 -0.185299 0.286742 v 0.142270 -0.135232 -0.062889 v 0.142270 -0.135232 -0.176994 v 0.206673 -0.135232 -0.062889 v 0.206673 -0.135232 -0.176994 v 0.142270 -0.198107 -0.062889 v 0.142270 -0.198107 -0.176994 v 0.206673 -0.198107 -0.062889 v 0.206673 -0.198107 -0.176994 v 0.155388 -0.148039 0.111927 v 0.193555 -0.148039 0.111927 v 0.155388 -0.185299 0.111927 v 0.193555 -0.185299 0.111927 v -0.016464 0.132185 0.064969 v -0.016464 0.132185 -0.013841 v 0.076931 0.112570 0.064969 v 0.076931 0.112570 -0.013841 v -0.203252 0.112570 0.064969 v -0.203252 0.112570 -0.013841 v -0.109858 0.132185 0.064969 v -0.109858 0.132185 -0.013841 v -0.203252 -0.270861 -0.028293 v -0.203252 -0.270861 -0.052403 v -0.109858 -0.290807 -0.028293 v -0.109858 -0.290807 -0.052403 v -0.016464 -0.290807 -0.028293 v -0.016464 -0.290807 -0.052403 v 0.076931 -0.270861 -0.028293 v 0.076931 -0.270861 -0.052403 v 0.076931 -0.388012 0.113442 v -0.016464 -0.407958 0.113442 v -0.109858 -0.407958 0.113442 v -0.203252 -0.388012 0.113442 v -0.016464 -0.407958 0.089332 v 0.076931 -0.388012 0.089332 v -0.203252 -0.388012 0.089332 v -0.109858 -0.407958 0.089332 v -0.203252 0.134975 0.089080 v -0.203252 0.134975 -0.037951 v -0.109858 0.154590 0.089080 v -0.109858 0.154590 -0.037951 v -0.016464 0.154590 0.089080 v -0.016464 0.154590 -0.037951 v 0.076931 0.134975 0.089080 v 0.076931 0.134975 -0.037951 vt 1.000000 0.559406 vt 0.000000 0.440594 vt 1.000000 0.440594 vt 0.288620 0.955961 vt 0.588472 0.905657 vt 0.711380 0.955961 vt 0.000000 0.559406 vt 1.000000 0.440594 vt 0.000000 0.440594 vt 0.800000 0.559406 vt 0.200000 0.440594 vt 0.200000 0.559406 vt 0.185468 0.044782 vt 0.395156 1.000000 vt 0.395156 0.000000 vt 0.218682 0.470887 vt 0.282290 0.470887 vt 0.282290 0.470887 vt 0.560743 0.990775 vt 0.439257 0.990775 vt 0.439257 0.990775 vt 0.578431 0.547275 vt 0.433541 0.547275 vt 0.578431 0.547275 vt 0.589175 0.990775 vt 0.422797 0.990775 vt 0.422797 0.990775 vt 0.439257 0.990775 vt 0.560743 0.990775 vt 0.560743 0.990775 vt 0.422797 0.990775 vt 0.589175 0.990775 vt 0.589175 0.990775 vt 0.578431 0.452725 vt 0.589175 0.560743 vt 0.422797 0.990775 vt 0.578431 0.452725 vt 0.433541 0.452725 vt 0.433541 0.452725 vt 0.433541 0.547275 vt 0.282290 0.536661 vt 0.218682 0.536661 vt 0.218682 0.536661 vt 0.218682 0.515994 vt 0.218682 0.515994 vt 0.589175 0.990775 vt 0.439257 0.990775 vt 0.218682 0.495327 vt 0.218682 0.470887 vt 0.282290 0.495327 vt 0.282290 0.495327 vt 0.218682 0.495327 vt 0.422797 0.560743 vt 0.282290 0.515994 vt 0.282290 0.536661 vt 0.282290 0.515994 vt 1.000000 0.800000 vt 0.000000 0.200000 vt 1.000000 0.200000 vt 0.395156 0.949696 vt 0.185468 0.044782 vt 0.185468 0.905657 vt 0.395156 0.588472 vt 0.185468 0.411528 vt 0.395156 0.411528 vt 0.604844 1.000000 vt 0.814532 0.044782 vt 0.604844 0.000000 vt 0.814532 0.588472 vt 0.604844 0.411528 vt 0.814532 0.411528 vt 0.395156 0.711380 vt 0.185468 0.588472 vt 0.395156 0.588472 vt 0.814532 0.711380 vt 0.604844 0.588472 vt 0.814532 0.588472 vt 0.395156 0.411528 vt 0.185468 0.288620 vt 0.395156 0.288620 vt 0.814532 0.411528 vt 0.604844 0.288620 vt 0.814532 0.288620 vt 0.395156 1.000000 vt 0.185468 0.044782 vt 0.395156 0.000000 vt 0.200000 0.559406 vt 0.800000 0.440594 vt 0.800000 0.559406 vt 0.288620 0.955961 vt 0.711380 0.955961 vt 0.411528 0.905657 vt 1.000000 0.200000 vt 0.000000 0.800000 vt 1.000000 0.800000 vt 0.604844 0.949696 vt 0.814532 0.044782 vt 0.814532 0.905657 vt 0.814532 0.044782 vt 0.604844 1.000000 vt 0.604844 0.000000 vt 0.604844 0.949696 vt 0.814532 0.044782 vt 0.604844 0.000000 vt 0.395156 0.949696 vt 0.185468 0.044782 vt 0.395156 0.000000 vt 0.588472 0.949696 vt 0.411528 0.949696 vt 0.288620 1.000000 vt 0.711380 1.000000 vt 0.288620 1.000000 vt 0.588472 0.949696 vt 0.604844 0.288620 vt 0.814532 0.711380 vt 0.814532 0.288620 vt 0.395156 0.288620 vt 0.185468 0.711380 vt 0.395156 0.711380 vt 0.000000 0.559406 vt 0.288620 0.044782 vt 0.411528 0.905657 vt 0.411528 0.044782 vt 0.588472 0.044782 vt 0.711380 0.044782 vt 1.000000 0.559406 vt 0.800000 0.440594 vt 0.185468 0.955961 vt 0.560743 0.990775 vt 0.589175 0.990775 vt 0.439257 0.990775 vt 0.422797 0.990775 vt 0.589175 0.439257 vt 0.560743 0.990775 vt 0.589175 0.990775 vt 0.422797 0.990775 vt 0.422797 0.439257 vt 0.000000 0.800000 vt 0.395156 0.000000 vt 0.185468 0.588472 vt 0.814532 0.955961 vt 0.604844 0.588472 vt 0.185468 0.711380 vt 0.604844 0.711380 vt 0.185468 0.411528 vt 0.604844 0.411528 vt 0.185468 0.955961 vt 0.200000 0.440594 vt 0.411528 0.044782 vt 0.288620 0.044782 vt 0.711380 0.044782 vt 0.588472 0.905657 vt 0.588472 0.044782 vt 0.000000 0.200000 vt 0.604844 0.000000 vt 0.814532 0.955961 vt 0.814532 0.905657 vt 0.185468 0.905657 vt 0.411528 0.000000 vt 0.288620 0.000000 vt 0.711380 1.000000 vt 0.711380 0.000000 vt 0.588472 0.000000 vt 0.588472 0.000000 vt 0.711380 0.000000 vt 0.288620 0.000000 vt 0.411528 0.949696 vt 0.411528 0.000000 vt 0.604844 0.711380 vt 0.185468 0.288620 vn -0.0000 0.0000 -1.0000 vn -1.0000 -0.0000 0.0000 vn 0.0000 0.0000 1.0000 vn 1.0000 0.0000 0.0000 vn 0.0069 -0.0324 0.9995 vn 0.0000 0.2037 0.9790 vn 0.0000 1.0000 0.0000 vn 0.0000 -1.0000 0.0000 vn -0.8616 0.5076 0.0000 vn -0.0000 0.2037 -0.9790 vn 0.8616 0.5076 0.0000 vn 0.0102 0.0486 0.9988 vn 0.2055 0.9786 0.0000 vn -0.0069 -0.0324 0.9994 vn -0.2055 0.9786 0.0000 vn -0.2089 0.9779 0.0000 vn 0.2089 0.9779 0.0000 vn 0.0092 -0.0433 -0.9990 vn -0.0079 0.0377 -0.9993 vn -0.0092 -0.0433 -0.9990 vn 0.0096 0.0451 0.9989 vn -0.0073 0.0341 -0.9994 vn 0.2055 -0.9786 0.0000 vn -0.2055 -0.9786 0.0000 vn -0.0075 -0.0356 0.9993 vn -0.0096 0.0451 0.9989 vn 0.0075 -0.0356 0.9993 vn -0.0098 -0.0465 -0.9989 vn 0.0073 0.0341 -0.9994 vn 0.0098 -0.0465 -0.9989 vn -0.0102 0.0486 0.9988 vn 0.0079 0.0377 -0.9993 g gold_gold.001_gold.001 usemtl gold.001 s off f 19/33/7 24/34/7 20/35/7 f 90/36/8 61/37/8 89/38/8 f 21/39/9 18/40/9 22/41/9 f 21/42/10 24/43/10 23/44/10 f 74/45/11 88/46/11 72/47/11 f 50/48/7 52/49/7 48/50/7 f 29/51/8 38/52/8 30/53/8 f 33/54/12 35/55/12 41/56/12 f 30/57/7 40/58/7 32/59/7 f 32/60/10 39/61/10 31/62/10 f 31/63/9 37/64/9 29/65/9 f 34/66/13 37/67/13 33/54/13 f 28/68/14 30/57/14 32/60/14 f 33/54/15 42/69/15 34/66/15 f 36/70/16 34/66/16 42/71/16 f 36/70/17 41/72/17 35/55/17 f 43/73/9 46/74/9 44/75/9 f 44/75/10 58/76/10 56/77/10 f 25/78/14 29/51/14 26/79/14 f 49/80/10 54/81/10 50/48/10 f 48/50/8 51/82/8 47/83/8 f 52/49/14 53/84/14 51/82/14 f 49/80/13 48/50/13 47/83/13 f 53/84/9 47/83/9 51/82/9 f 36/70/13 35/55/13 39/85/13 f 55/86/8 45/87/8 43/73/8 f 57/88/14 46/74/14 45/87/14 f 44/75/13 55/86/13 43/73/13 f 17/89/13 23/90/13 19/91/13 f 59/92/18 80/93/18 61/94/18 f 59/95/19 62/96/19 60/97/19 f 86/98/20 68/99/20 70/100/20 f 63/101/21 66/102/21 64/103/21 f 76/104/22 80/105/22 79/106/22 f 78/107/23 82/108/23 81/109/23 f 71/110/22 74/111/22 72/112/22 f 67/113/23 70/114/23 68/115/23 f 87/116/24 75/117/24 76/118/24 f 19/119/8 18/120/8 17/121/8 f 84/122/10 83/123/10 64/124/10 f 20/125/14 22/126/14 18/127/14 f 66/128/25 67/129/25 64/130/25 f 78/131/26 85/132/26 77/133/26 f 65/134/27 81/135/27 82/136/27 f 60/137/28 73/138/28 71/139/28 f 59/140/10 60/141/10 88/142/10 f 85/143/8 86/144/8 65/145/8 f 86/146/29 83/147/29 84/148/29 f 88/149/30 89/150/30 87/151/30 f 55/86/7 58/76/7 57/88/7 f 19/33/7 23/152/7 24/34/7 f 90/36/8 74/153/8 62/154/8 f 74/153/8 73/155/8 62/154/8 f 80/156/8 75/157/8 61/37/8 f 75/157/8 89/38/8 61/37/8 f 90/36/8 62/154/8 61/37/8 f 21/39/9 17/158/9 18/40/9 f 21/42/10 22/159/10 24/43/10 f 74/45/31 90/160/31 88/46/31 f 50/48/7 54/81/7 52/49/7 f 29/51/8 37/161/8 38/52/8 f 30/57/7 38/162/7 40/58/7 f 32/60/10 40/163/10 39/61/10 f 31/63/9 39/164/9 37/64/9 f 34/66/13 38/165/13 37/67/13 f 31/62/14 27/166/14 28/68/14 f 28/68/14 26/167/14 30/57/14 f 32/60/14 31/62/14 28/68/14 f 33/54/15 41/56/15 42/69/15 f 36/70/17 42/71/17 41/72/17 f 43/73/9 45/87/9 46/74/9 f 44/75/10 46/74/10 58/76/10 f 25/78/14 27/168/14 31/63/14 f 29/51/14 30/53/14 26/79/14 f 25/78/14 31/63/14 29/51/14 f 49/80/10 53/84/10 54/81/10 f 48/50/8 52/49/8 51/82/8 f 52/49/14 54/81/14 53/84/14 f 49/80/13 50/48/13 48/50/13 f 53/84/9 49/80/9 47/83/9 f 35/55/13 33/54/13 37/67/13 f 40/169/13 38/165/13 36/70/13 f 38/165/13 34/66/13 36/70/13 f 35/55/13 37/67/13 39/85/13 f 40/169/13 36/70/13 39/85/13 f 55/86/8 57/88/8 45/87/8 f 57/88/14 58/76/14 46/74/14 f 44/75/13 56/77/13 55/86/13 f 17/89/13 21/170/13 23/90/13 f 59/92/32 79/171/32 80/93/32 f 59/95/19 61/172/19 62/96/19 f 86/98/33 84/173/33 68/99/33 f 63/101/21 65/174/21 66/102/21 f 76/104/22 75/175/22 80/105/22 f 78/107/23 77/176/23 82/108/23 f 71/110/22 73/177/22 74/111/22 f 67/113/23 69/178/23 70/114/23 f 87/116/34 89/179/34 75/117/34 f 19/119/8 20/180/8 18/120/8 f 67/181/10 68/182/10 64/124/10 f 68/182/10 84/122/10 64/124/10 f 83/123/10 78/183/10 63/184/10 f 78/183/10 81/185/10 63/184/10 f 83/123/10 63/184/10 64/124/10 f 20/125/14 24/186/14 22/126/14 f 66/128/35 69/187/35 67/129/35 f 78/131/36 83/188/36 85/132/36 f 65/134/37 63/189/37 81/135/37 f 60/137/38 62/190/38 73/138/38 f 71/191/10 72/192/10 60/141/10 f 72/192/10 88/142/10 60/141/10 f 87/193/10 76/194/10 59/140/10 f 76/194/10 79/195/10 59/140/10 f 87/193/10 59/140/10 88/142/10 f 82/196/8 77/197/8 65/145/8 f 77/197/8 85/143/8 65/145/8 f 86/144/8 70/198/8 66/199/8 f 70/198/8 69/200/8 66/199/8 f 86/144/8 66/199/8 65/145/8 f 86/146/29 85/201/29 83/147/29 f 88/149/30 90/202/30 89/150/30 f 55/86/7 56/77/7 58/76/7 o copper v -0.213161 -0.440594 0.075564 v -0.213161 -0.440594 -0.024436 v -0.113161 -0.440594 0.075564 v -0.113161 -0.440594 -0.024436 v -0.013161 -0.440594 0.075564 v -0.013161 -0.440594 -0.024436 v 0.086839 -0.440594 0.075564 v 0.086839 -0.440594 -0.024436 v -0.213161 -0.360064 0.075564 v -0.213161 -0.360064 -0.024436 v -0.113161 -0.360064 0.075564 v -0.113161 -0.360064 -0.024436 v -0.013161 -0.360064 0.075564 v -0.013161 -0.360064 -0.024436 v 0.086839 -0.360064 0.075564 v 0.086839 -0.360064 -0.024436 v -0.102219 0.190953 0.054084 v -0.102219 0.190953 -0.002955 v -0.024103 0.190953 0.054084 v -0.024103 0.190953 -0.002955 v -0.140532 0.190953 0.082059 v -0.140532 0.190953 -0.030931 v 0.014211 0.190953 0.082059 v 0.014211 0.190953 -0.030931 v -0.140532 0.330386 0.082059 v -0.140532 0.330386 -0.030931 v 0.014211 0.330386 0.082059 v 0.014211 0.330386 -0.030931 v 0.148990 -0.077775 0.054371 v 0.148990 -0.077775 -0.003242 v 0.199953 -0.077775 0.054371 v 0.199953 -0.077775 -0.003242 v -0.286113 0.300068 0.055938 v -0.286113 0.300068 -0.004809 v -0.339643 0.300068 0.055938 v -0.339643 0.300068 -0.004809 v -0.102219 0.132185 -0.002955 v -0.024103 0.132185 -0.002955 v -0.024103 0.132185 0.054084 v -0.102219 0.132185 0.054084 v 0.148990 -0.141793 0.054371 v 0.148990 -0.141793 -0.003242 v 0.199953 -0.141793 0.054371 v 0.199953 -0.141793 -0.003242 v -0.286113 0.132185 0.055938 v -0.339643 0.132185 0.055938 v -0.339643 0.132185 -0.004809 v -0.286113 0.132185 -0.004809 vt 0.446240 0.055489 vt 0.553760 0.227749 vt 0.553760 0.055489 vt 0.553760 0.055489 vt 0.446240 0.227749 vt 0.446240 0.055489 vt 0.446240 0.055489 vt 0.553760 0.227749 vt 0.553760 0.055489 vt 0.559745 0.055489 vt 0.667264 0.227749 vt 0.667264 0.055489 vt 0.553760 0.055489 vt 0.446240 0.227749 vt 0.446240 0.055489 vt 0.344707 0.055489 vt 0.452226 0.227749 vt 0.452226 0.055489 vt 0.667264 0.055489 vt 0.559745 0.227749 vt 0.559745 0.055489 vt 0.452226 0.055489 vt 0.344707 0.227749 vt 0.344707 0.055489 vt 0.463991 0.874297 vt 0.547981 0.811110 vt 0.463991 0.811110 vt 0.589175 0.439257 vt 0.463991 0.469336 vt 0.547981 0.469336 vt 0.469336 0.874297 vt 0.530664 0.811110 vt 0.469336 0.811110 vt 0.547981 0.874297 vt 0.463991 0.811110 vt 0.547981 0.811110 vt 0.530664 0.874297 vt 0.469336 0.811110 vt 0.530664 0.811110 vt 0.422797 0.990775 vt 0.589175 0.874297 vt 0.422797 0.874297 vt 0.422797 0.560743 vt 0.463991 0.530664 vt 0.547981 0.530664 vt 0.560743 0.990775 vt 0.439257 0.874297 vt 0.560743 0.874297 vt 0.589175 0.990775 vt 0.422797 0.874297 vt 0.589175 0.874297 vt 0.439257 0.990775 vt 0.560743 0.874297 vt 0.439257 0.874297 vt 0.218682 0.534692 vt 0.282290 0.441199 vt 0.282290 0.534692 vt 0.745701 0.811110 vt 0.803256 0.991617 vt 0.803256 0.811110 vt 0.745701 0.467342 vt 0.803256 0.532658 vt 0.745701 0.532658 vt 0.532658 0.811110 vt 0.467342 0.991617 vt 0.467342 0.811110 vt 0.467342 0.811110 vt 0.532658 0.991617 vt 0.532658 0.811110 vt 0.803256 0.811110 vt 0.745701 0.991617 vt 0.745701 0.811110 vt 0.282290 0.463339 vt 0.218682 0.536661 vt 0.282290 0.536661 vt 0.463339 0.534692 vt 0.536661 0.441199 vt 0.536661 0.534692 vt 0.282290 0.534692 vt 0.218682 0.441199 vt 0.218682 0.534692 vt 0.536661 0.534692 vt 0.463339 0.441199 vt 0.463339 0.534692 vt 0.589175 0.990775 vt 0.422797 0.990775 vt 0.667264 0.227749 vt 0.452226 0.227749 vt 0.446240 0.227749 vt 0.553760 0.227749 vt 0.446240 0.227749 vt 0.559745 0.227749 vt 0.553760 0.227749 vt 0.344707 0.227749 vt 0.547981 0.874297 vt 0.422797 0.439257 vt 0.530664 0.874297 vt 0.463991 0.874297 vt 0.469336 0.874297 vt 0.589175 0.560743 vt 0.439257 0.990775 vt 0.560743 0.990775 vt 0.218682 0.441199 vt 0.745701 0.991617 vt 0.803256 0.467342 vt 0.532658 0.991617 vt 0.467342 0.991617 vt 0.803256 0.991617 vt 0.218682 0.463339 vt 0.463339 0.441199 vt 0.282290 0.441199 vt 0.536661 0.441199 vn 1.0000 0.0000 0.0000 vn -1.0000 0.0000 0.0000 vn 0.0000 0.0000 1.0000 vn -0.0000 0.0000 -1.0000 vn 0.0000 -1.0000 0.0000 vn 0.0000 1.0000 0.0000 g copper_copper_copper.001 usemtl copper.001 s off f 98/203/39 105/204/39 97/205/39 f 95/206/40 104/207/40 96/208/40 f 94/209/39 101/210/39 93/211/39 f 93/212/41 99/213/41 91/214/41 f 91/215/40 100/216/40 92/217/40 f 97/218/41 103/219/41 95/220/41 f 92/221/42 102/222/42 94/223/42 f 96/224/42 106/225/42 98/226/42 f 109/227/41 130/228/41 129/229/41 f 112/230/43 110/231/43 108/232/43 f 110/233/39 129/234/39 128/235/39 f 108/236/42 128/237/42 127/238/42 f 107/239/40 127/240/40 130/241/40 f 117/242/41 111/243/41 113/244/41 f 110/231/43 113/245/43 109/246/43 f 113/245/43 107/247/43 109/246/43 f 107/247/43 112/230/43 108/232/43 f 115/248/40 112/249/40 111/250/40 f 116/251/42 114/252/42 112/253/42 f 118/254/39 113/255/39 114/256/39 f 122/257/42 132/258/42 120/259/42 f 135/260/41 125/261/41 136/262/41 f 124/263/44 125/264/44 123/265/44 f 136/266/40 126/267/40 137/268/40 f 138/269/39 123/270/39 135/271/39 f 137/272/42 124/273/42 138/274/42 f 132/275/43 133/276/43 131/277/43 f 120/278/40 131/279/40 119/280/40 f 119/281/41 133/282/41 121/283/41 f 121/284/39 134/285/39 122/286/39 f 115/287/44 118/288/44 116/251/44 f 99/213/44 102/222/44 100/289/44 f 104/290/44 105/204/44 106/225/44 f 94/223/43 91/214/43 92/221/43 f 98/226/43 95/220/43 96/224/43 f 127/240/43 129/234/43 130/241/43 f 138/269/43 136/266/43 137/268/43 f 120/259/44 121/284/44 122/257/44 f 98/203/39 106/291/39 105/204/39 f 95/206/40 103/292/40 104/207/40 f 94/209/39 102/293/39 101/210/39 f 93/212/41 101/294/41 99/213/41 f 91/215/40 99/295/40 100/216/40 f 97/218/41 105/296/41 103/219/41 f 92/221/42 100/289/42 102/222/42 f 96/224/42 104/290/42 106/225/42 f 109/227/41 107/297/41 130/228/41 f 112/230/43 114/298/43 110/231/43 f 110/233/39 109/299/39 129/234/39 f 108/236/42 110/300/42 128/237/42 f 107/239/40 108/301/40 127/240/40 f 117/242/41 115/287/41 111/243/41 f 110/231/43 114/298/43 113/245/43 f 113/245/43 111/302/43 107/247/43 f 107/247/43 111/302/43 112/230/43 f 115/248/40 116/303/40 112/249/40 f 116/251/42 118/288/42 114/252/42 f 118/254/39 117/304/39 113/255/39 f 122/257/42 134/305/42 132/258/42 f 135/260/41 123/306/41 125/261/41 f 124/263/44 126/307/44 125/264/44 f 136/266/40 125/308/40 126/267/40 f 138/269/39 124/309/39 123/270/39 f 137/272/42 126/310/42 124/273/42 f 132/275/43 134/311/43 133/276/43 f 120/278/40 132/312/40 131/279/40 f 119/281/41 131/313/41 133/282/41 f 121/284/39 133/314/39 134/285/39 f 115/287/44 117/304/44 118/288/44 f 99/213/44 101/210/44 102/222/44 f 104/290/44 103/219/44 105/204/44 f 94/223/43 93/211/43 91/214/43 f 98/226/43 97/205/43 95/220/43 f 127/240/43 128/237/43 129/234/43 f 138/269/43 135/260/43 136/266/43 f 120/259/44 119/281/44 121/284/44 o silver v -0.256908 -0.360064 0.086177 v -0.256908 -0.360064 -0.035048 v 0.130586 -0.360064 0.086177 v 0.130586 -0.360064 -0.035048 v -0.182587 -0.030643 0.059662 v -0.182587 -0.030643 -0.008533 v -0.016464 -0.030643 0.059662 v -0.016464 -0.030643 -0.008533 v 0.056265 -0.030643 0.059662 v 0.056265 -0.030643 -0.008533 v -0.203252 0.041002 0.059662 v -0.203252 0.041002 -0.008533 v 0.076931 0.041002 0.059662 v 0.076931 0.041002 -0.008533 v -0.203252 0.112570 0.059662 v -0.203252 0.112570 -0.008533 v -0.109858 0.132185 0.059662 v -0.109858 0.132185 -0.008533 v -0.016464 0.132185 0.059662 v -0.016464 0.132185 -0.008533 v 0.076931 0.112570 0.059662 v 0.076931 0.112570 -0.008533 v 0.091178 0.052313 0.059662 v 0.091178 0.052313 -0.008533 v 0.197394 0.052313 0.059662 v 0.197394 0.052313 -0.008533 v 0.164687 0.105571 0.059662 v 0.164687 0.105571 -0.008533 v -0.305006 -0.064419 0.059662 v -0.305006 -0.064419 -0.008533 v -0.282832 0.132185 0.059662 v -0.282832 0.132185 -0.008533 v -0.371643 0.013697 0.059662 v -0.371643 0.013697 -0.008533 v -0.342924 0.132185 0.059662 v -0.342924 0.132185 -0.008533 v 0.235955 -0.077775 0.059662 v 0.235955 -0.077775 -0.008533 v 0.112988 -0.077775 0.059662 v 0.112988 -0.077775 -0.008533 v -0.140532 0.274813 0.082059 v -0.140532 0.274813 -0.030931 v 0.014211 0.274813 0.082059 v 0.014211 0.274813 -0.030931 v -0.140532 0.322156 0.082059 v -0.140532 0.322156 -0.030931 v 0.014211 0.322156 0.082059 v 0.014211 0.322156 -0.030931 v -0.149969 0.274813 0.088950 v -0.149969 0.274813 -0.037821 v 0.023647 0.274813 0.088950 v 0.023647 0.274813 -0.037821 v -0.149969 0.322156 0.088950 v -0.149969 0.322156 -0.037821 v 0.023647 0.322156 0.088950 v 0.023647 0.322156 -0.037821 v -0.041105 0.280067 0.088950 v -0.085217 0.280067 0.088950 v -0.041105 0.316902 0.088950 v -0.085217 0.316902 0.088950 v -0.085217 0.280067 0.112787 v -0.041105 0.280067 0.112787 v -0.085217 0.316902 0.112787 v -0.041105 0.316902 0.112787 v -0.080472 0.280067 0.088950 v -0.045850 0.280067 0.088950 v -0.080472 0.280067 0.112787 v -0.045850 0.280067 0.112787 v -0.080472 0.136187 0.088950 v -0.045850 0.136187 0.088950 v -0.080472 0.136187 0.112787 v -0.045850 0.136187 0.112787 v -0.063161 0.155444 0.088950 v -0.063161 0.155444 0.112787 v 0.008654 0.435324 0.088102 v -0.134976 0.435324 0.088102 v -0.134976 0.435324 -0.036973 v 0.008654 0.435324 -0.036973 v 0.025295 0.435324 0.102592 v -0.151616 0.435324 0.102592 v -0.151616 0.435324 -0.051463 v 0.025295 0.435324 -0.051463 v 0.008654 0.421342 0.088102 v 0.008654 0.421342 -0.036973 v -0.134976 0.421342 0.088102 v -0.134976 0.421342 -0.036973 v 0.025295 0.421342 0.102592 v 0.025295 0.421342 -0.051463 v -0.151616 0.421342 0.102592 v -0.151616 0.421342 -0.051463 vt 0.565170 0.227749 vt 0.463339 0.636039 vt 0.434830 0.227749 vt 0.355361 0.725233 vt 0.355361 0.636039 vt 0.455777 0.811110 vt 0.656611 0.636039 vt 0.238231 0.227749 vt 0.355361 0.636039 vt 0.434830 0.227749 vt 0.536661 0.636039 vt 0.565170 0.227749 vt 0.536661 0.636039 vt 0.463339 0.725233 vt 0.536661 0.725233 vt 0.463339 0.599724 vt 0.463339 0.636039 vt 0.536661 0.725233 vt 0.455777 0.536661 vt 0.355361 0.463339 vt 0.455777 0.463339 vt 0.656611 0.536661 vt 0.556194 0.463339 vt 0.656611 0.463339 vt 0.355361 0.463339 vt 0.282290 0.536661 vt 0.355361 0.536661 vt 0.463339 0.725233 vt 0.536661 0.782495 vt 0.536661 0.725233 vt 0.742174 0.463339 vt 0.742174 0.536661 vt 0.536661 0.637403 vt 0.463339 0.811110 vt 0.463339 0.637403 vt 0.742174 0.536661 vt 0.837663 0.463339 vt 0.742174 0.463339 vt 0.556194 0.811110 vt 0.556194 0.811110 vt 0.244706 0.536661 vt 0.355361 0.536661 vt 0.463339 0.725233 vt 0.536661 0.534692 vt 0.536661 0.725233 vt 0.463339 0.534692 vt 0.806784 0.811110 vt 0.742174 0.811110 vt 0.742174 0.811110 vt 0.773741 0.227749 vt 0.773741 0.227749 vt 0.316592 0.534692 vt 0.536661 0.534692 vt 0.316592 0.534692 vt 0.589175 0.874297 vt 0.422797 0.990775 vt 0.422797 0.874297 vt 0.439257 0.874297 vt 0.560743 0.990775 vt 0.560743 0.874297 vt 0.422797 0.874297 vt 0.589175 0.990775 vt 0.589175 0.874297 vt 0.560743 0.874297 vt 0.439257 0.990775 vt 0.439257 0.874297 vt 0.422797 0.990775 vt 0.589175 0.874297 vt 0.422797 0.874297 vt 0.560743 0.990775 vt 0.439257 0.874297 vt 0.560743 0.874297 vt 0.589175 0.990775 vt 0.422797 0.874297 vt 0.589175 0.874297 vt 0.439257 0.990775 vt 0.560743 0.874297 vt 0.439257 0.874297 vt 0.560743 0.990775 vt 0.589175 0.990775 vt 0.439257 0.990775 vt 0.422797 0.990775 vt 0.125000 0.666667 vt 0.375000 0.750000 vt 0.375000 0.500000 vt 0.125000 0.666667 vt 0.125000 0.583333 vt 0.375000 0.500000 vt 0.125000 0.500000 vt 0.125000 0.500000 vt 0.125000 0.583333 vt 0.125000 0.750000 vt 0.375000 0.750000 vt 0.125000 0.750000 vt 0.125000 0.666667 vt 0.125000 0.625000 vt 0.125000 0.583333 vt 0.125000 0.625000 vt 0.125000 0.583333 vt 0.125000 0.666667 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.000000 0.000000 vt 0.656611 0.790021 vt 0.656611 0.725233 vt 0.656611 0.636039 vt 0.355361 0.790021 vt 0.244706 0.782495 vt 0.282290 0.725233 vt 0.218682 0.725233 vt 0.837663 0.637403 vt 0.742174 0.599724 vt 0.238231 0.227749 vt 0.184380 0.534692 vt 0.282290 0.725233 vt 0.218682 0.725233 vt 0.184380 0.534692 vt 0.244706 0.782495 vt 0.355361 0.790021 vt 0.455777 0.811110 vt 0.355361 0.725233 vt 0.656611 0.790021 vt 0.656611 0.725233 vt 0.806784 0.811110 vt 0.837663 0.637403 vt 0.742174 0.599724 vt 0.536661 0.599724 vt 0.463339 0.725233 vt 0.556194 0.536661 vt 0.282290 0.463339 vt 0.463339 0.782495 vt 0.536661 0.811110 vt 0.837663 0.536661 vt 0.244706 0.463339 vt 0.463339 0.534692 vt 0.589175 0.990775 vt 0.439257 0.990775 vt 0.422797 0.990775 vt 0.560743 0.990775 vn -0.9755 0.2201 0.0000 vn -0.0000 0.0000 -1.0000 vn 0.0000 0.0802 0.9968 vn 0.9755 0.2201 0.0000 vn -0.9608 -0.2771 0.0000 vn 0.7195 -0.6945 0.0000 vn 0.9608 -0.2771 0.0000 vn 0.2055 0.9786 0.0000 vn -0.2055 0.9786 0.0000 vn 0.6218 -0.7832 0.0000 vn 0.8521 0.5233 0.0000 vn 0.2393 0.9709 0.0000 vn -0.9719 0.2356 0.0000 vn -0.7608 -0.6490 0.0000 vn 0.0000 1.0000 0.0000 vn 0.0795 0.9968 0.0000 vn -0.9862 -0.1653 0.0000 vn 0.9588 0.2842 0.0000 vn 0.0000 -1.0000 0.0000 vn 1.0000 0.0000 -0.0000 vn 0.0000 0.0000 1.0000 vn -1.0000 0.0000 0.0000 vn -0.7437 0.6685 0.0000 vn 0.7437 0.6685 0.0000 vn -0.0000 0.0802 -0.9968 g silver_silver_silver usemtl silver s off f 139/315/45 144/316/45 140/317/45 f 152/318/46 148/319/46 158/320/46 f 143/321/47 141/322/47 147/323/47 f 142/324/48 147/325/48 141/326/48 f 143/327/49 150/328/49 144/316/49 f 149/329/50 168/330/50 150/328/50 f 148/331/51 151/332/51 147/325/51 f 157/333/52 160/334/52 158/335/52 f 153/336/53 156/337/53 154/338/53 f 152/339/54 161/340/54 151/341/54 f 164/342/55 165/343/55 163/344/55 f 153/336/56 170/345/56 169/346/56 f 171/347/57 174/348/57 172/349/57 f 167/350/58 172/351/58 168/352/58 f 155/353/59 158/320/59 156/354/59 f 165/355/60 160/334/60 159/356/60 f 162/357/61 177/358/61 161/359/61 f 163/344/62 176/360/62 164/342/62 f 174/361/59 169/362/59 170/363/59 f 140/364/63 141/326/63 139/365/63 f 178/366/63 175/367/63 177/368/63 f 179/369/46 185/370/46 181/371/46 f 180/372/64 183/373/64 179/374/64 f 182/375/65 184/376/65 180/377/65 f 181/378/66 186/379/66 182/380/66 f 193/381/65 187/382/65 189/383/65 f 191/384/66 188/385/66 187/386/66 f 192/387/46 190/388/46 188/389/46 f 194/390/64 189/391/64 190/392/64 f 185/393/59 194/390/59 186/379/59 f 182/375/63 188/389/63 190/388/63 f 182/380/63 189/391/63 181/378/63 f 183/394/59 193/381/59 185/370/59 f 184/395/59 191/384/59 183/373/59 f 179/369/63 189/383/63 187/382/63 f 179/374/63 188/385/63 180/372/63 f 186/396/59 192/387/59 184/376/59 f 204/397/65 197/398/65 198/399/65 f 206/400/46 205/401/46 201/402/46 f 198/399/64 199/403/64 196/404/64 f 197/398/63 201/402/63 198/399/63 f 196/404/59 205/401/59 203/405/59 f 195/406/66 202/407/66 197/398/66 f 204/397/59 200/408/59 195/406/59 f 204/397/66 210/409/66 206/400/66 f 211/410/67 209/411/67 212/412/67 f 205/401/64 207/413/64 203/405/64 f 206/400/46 210/409/46 212/412/46 f 203/405/65 207/413/65 211/410/65 f 208/414/68 212/412/68 210/409/68 f 213/415/59 220/416/59 216/417/59 f 220/416/59 215/418/59 216/417/59 f 218/419/59 213/415/59 214/420/59 f 215/418/59 218/419/59 214/420/59 f 226/421/63 221/422/63 222/423/63 f 224/424/63 226/421/63 222/423/63 f 221/422/63 227/425/63 223/426/63 f 227/425/63 224/424/63 223/426/63 f 215/418/65 222/423/65 216/417/65 f 213/415/46 223/426/46 214/420/46 f 228/427/66 218/419/66 219/428/66 f 225/429/64 220/416/64 217/430/64 f 223/426/64 215/418/64 214/420/64 f 222/423/66 213/415/66 216/417/66 f 220/416/46 228/427/46 219/428/46 f 218/419/65 225/429/65 217/430/65 f 139/315/45 143/327/45 144/316/45 f 154/431/46 156/354/46 150/432/46 f 156/354/46 158/320/46 144/433/46 f 160/434/46 166/435/46 162/436/46 f 166/435/46 164/437/46 162/436/46 f 156/354/46 144/433/46 150/432/46 f 158/320/46 160/434/46 152/318/46 f 152/318/46 160/434/46 162/436/46 f 174/361/46 170/363/46 172/438/46 f 170/363/46 154/431/46 150/432/46 f 168/439/46 172/438/46 150/432/46 f 150/432/46 172/438/46 170/363/46 f 142/440/69 140/364/69 144/433/69 f 164/437/46 176/441/46 178/366/46 f 164/437/46 178/366/46 162/436/46 f 142/440/69 144/433/69 148/319/69 f 148/319/46 144/433/46 158/320/46 f 161/442/65 177/368/65 163/443/65 f 177/368/65 175/444/65 163/443/65 f 163/443/65 165/445/65 161/442/65 f 159/446/65 157/447/65 151/448/65 f 157/447/65 155/353/65 147/323/65 f 159/446/65 151/448/65 161/442/65 f 165/445/65 159/446/65 161/442/65 f 155/353/65 153/449/65 149/450/65 f 153/449/65 169/362/65 149/450/65 f 169/362/65 173/451/65 171/452/65 f 149/450/65 169/362/65 171/452/65 f 171/452/65 167/453/65 149/450/65 f 151/448/65 157/447/65 147/323/65 f 143/321/47 139/365/47 141/322/47 f 149/450/65 143/321/65 155/353/65 f 155/353/65 143/321/65 147/323/65 f 142/324/48 148/331/48 147/325/48 f 143/327/49 149/329/49 150/328/49 f 149/329/50 167/454/50 168/330/50 f 148/331/51 152/455/51 151/332/51 f 157/333/52 159/356/52 160/334/52 f 153/336/53 155/456/53 156/337/53 f 152/339/54 162/457/54 161/340/54 f 164/342/55 166/458/55 165/343/55 f 153/336/56 154/338/56 170/345/56 f 171/347/57 173/459/57 174/348/57 f 167/350/58 171/460/58 172/351/58 f 155/353/59 157/333/59 158/320/59 f 165/355/60 166/461/60 160/334/60 f 162/357/61 178/462/61 177/358/61 f 163/344/62 175/367/62 176/360/62 f 174/361/59 173/459/59 169/362/59 f 140/364/63 142/440/63 141/326/63 f 178/366/63 176/441/63 175/367/63 f 179/369/46 183/394/46 185/370/46 f 180/372/64 184/395/64 183/373/64 f 182/375/65 186/396/65 184/376/65 f 181/378/66 185/393/66 186/379/66 f 193/381/65 191/463/65 187/382/65 f 191/384/66 192/464/66 188/385/66 f 192/387/46 194/465/46 190/388/46 f 194/390/64 193/466/64 189/391/64 f 185/393/59 193/466/59 194/390/59 f 182/375/63 180/377/63 188/389/63 f 182/380/63 190/392/63 189/391/63 f 183/394/59 191/463/59 193/381/59 f 184/395/59 192/464/59 191/384/59 f 179/369/63 181/371/63 189/383/63 f 179/374/63 187/386/63 188/385/63 f 186/396/59 194/465/59 192/387/59 f 198/399/65 196/404/65 203/405/65 f 204/397/65 195/406/65 197/398/65 f 198/399/65 203/405/65 204/397/65 f 205/401/46 199/403/46 201/402/46 f 201/402/46 202/407/46 206/400/46 f 202/407/46 200/408/46 206/400/46 f 198/399/64 201/402/64 199/403/64 f 197/398/63 202/407/63 201/402/63 f 196/404/59 199/403/59 205/401/59 f 195/406/66 200/408/66 202/407/66 f 204/397/59 206/400/59 200/408/59 f 204/397/66 208/414/66 210/409/66 f 211/410/67 207/413/67 209/411/67 f 205/401/64 209/411/64 207/413/64 f 209/411/46 205/401/46 212/412/46 f 205/401/46 206/400/46 212/412/46 f 208/414/65 204/397/65 211/410/65 f 204/397/65 203/405/65 211/410/65 f 208/414/68 211/410/68 212/412/68 f 213/415/59 217/430/59 220/416/59 f 220/416/59 219/428/59 215/418/59 f 218/419/59 217/430/59 213/415/59 f 215/418/59 219/428/59 218/419/59 f 226/421/63 225/429/63 221/422/63 f 224/424/63 228/427/63 226/421/63 f 221/422/63 225/429/63 227/425/63 f 227/425/63 228/427/63 224/424/63 f 215/418/65 224/424/65 222/423/65 f 213/415/46 221/422/46 223/426/46 f 228/427/66 227/425/66 218/419/66 f 225/429/64 226/421/64 220/416/64 f 223/426/64 224/424/64 215/418/64 f 222/423/66 221/422/66 213/415/66 f 220/416/46 226/421/46 228/427/46 f 218/419/65 227/425/65 225/429/65 l 145 146 o bronze v 0.074040 0.330386 -0.044713 v 0.074040 0.186605 -0.044713 v 0.074040 0.330386 0.113945 v 0.074040 0.186605 0.113945 v 0.099168 0.330386 -0.044713 v 0.099168 0.186605 -0.044713 v 0.099168 0.330386 0.113945 v 0.099168 0.186605 0.113945 v -0.225419 0.330386 -0.044713 v -0.225419 0.186605 -0.044713 v -0.225419 0.330386 0.113945 v -0.225419 0.186605 0.113945 v -0.200291 0.330386 -0.044713 v -0.200291 0.186605 -0.044713 v -0.200291 0.330386 0.113945 v -0.200291 0.186605 0.113945 v 0.074040 0.330386 0.082213 v 0.074040 0.330386 0.050482 v 0.074040 0.330386 0.018750 v 0.074040 0.330386 -0.012981 v 0.074040 0.186605 -0.012981 v 0.074040 0.186605 0.018750 v 0.074040 0.186605 0.050482 v 0.074040 0.186605 0.082213 v 0.099168 0.330386 -0.012981 v 0.099168 0.330386 0.018750 v 0.099168 0.330386 0.050482 v 0.099168 0.330386 0.082213 v 0.099168 0.186605 0.082213 v 0.099168 0.186605 0.050482 v 0.099168 0.186605 0.018750 v 0.099168 0.186605 -0.012981 v -0.225419 0.330386 0.082213 v -0.225419 0.330386 0.050482 v -0.225419 0.330386 0.018750 v -0.225419 0.330386 -0.012981 v -0.225419 0.186605 -0.012981 v -0.225419 0.186605 0.018750 v -0.225419 0.186605 0.050482 v -0.225419 0.186605 0.082213 v -0.200291 0.330386 -0.012981 v -0.200291 0.330386 0.018750 v -0.200291 0.330386 0.050482 v -0.200291 0.330386 0.082213 v -0.200291 0.186605 0.082213 v -0.200291 0.186605 0.050482 v -0.200291 0.186605 0.018750 v -0.200291 0.186605 -0.012981 v 0.148990 -0.141793 -0.062889 v 0.148990 -0.141793 -0.176994 v 0.199953 -0.141793 -0.062889 v 0.199953 -0.141793 -0.176994 v 0.148990 -0.191546 -0.062889 v 0.148990 -0.191546 -0.176994 v 0.199953 -0.191546 -0.062889 v 0.199953 -0.191546 -0.176994 v 0.199953 -0.141793 -0.210085 v 0.148990 -0.141793 -0.210085 v 0.199953 -0.191546 -0.210085 v 0.148990 -0.191546 -0.210085 v 0.148990 -0.141793 0.111927 v 0.199953 -0.141793 0.111927 v 0.148990 -0.191546 0.111927 v 0.199953 -0.191546 0.111927 vt 0.625000 0.200000 vt 0.375000 0.250000 vt 0.375000 0.200000 vt 0.625000 0.250000 vt 0.375000 0.500000 vt 0.625000 0.700000 vt 0.375000 0.750000 vt 0.375000 0.700000 vt 0.625000 0.750000 vt 0.375000 1.000000 vt 0.125000 0.700000 vt 0.125000 0.750000 vt 0.875000 0.700000 vt 0.625000 0.200000 vt 0.375000 0.250000 vt 0.375000 0.200000 vt 0.625000 0.250000 vt 0.375000 0.500000 vt 0.625000 0.700000 vt 0.375000 0.750000 vt 0.375000 0.700000 vt 0.625000 0.750000 vt 0.375000 1.000000 vt 0.125000 0.750000 vt 0.125000 0.700000 vt 0.875000 0.750000 vt 0.625000 0.500000 vt 0.875000 0.550000 vt 0.625000 0.550000 vt 0.875000 0.600000 vt 0.625000 0.650000 vt 0.625000 0.600000 vt 0.875000 0.600000 vt 0.625000 0.650000 vt 0.625000 0.600000 vt 0.125000 0.550000 vt 0.125000 0.500000 vt 0.375000 0.600000 vt 0.125000 0.650000 vt 0.125000 0.600000 vt 0.875000 0.500000 vt 0.625000 0.550000 vt 0.625000 0.500000 vt 0.375000 0.550000 vt 0.375000 0.150000 vt 0.625000 0.150000 vt 0.375000 0.650000 vt 0.375000 0.050000 vt 0.625000 0.050000 vt 0.625000 0.000000 vt 0.375000 0.000000 vt 0.375000 0.100000 vt 0.625000 0.100000 vt 0.125000 0.550000 vt 0.125000 0.500000 vt 0.375000 0.600000 vt 0.125000 0.650000 vt 0.125000 0.600000 vt 0.375000 0.550000 vt 0.375000 0.050000 vt 0.625000 0.050000 vt 0.375000 0.650000 vt 0.625000 0.000000 vt 0.375000 0.000000 vt 0.375000 0.150000 vt 0.625000 0.150000 vt 0.625000 0.100000 vt 0.375000 0.100000 vt 0.218682 0.470887 vt 0.282290 0.463339 vt 0.282290 0.470887 vt 0.282290 0.463339 vt 0.218682 0.470887 vt 0.282290 0.470887 vt 0.218682 0.463339 vt 0.218682 0.463339 vt 0.282290 0.495327 vt 0.282290 0.515994 vt 0.282290 0.515994 vt 0.218682 0.495327 vt 0.218682 0.515994 vt 0.218682 0.495327 vt 0.282290 0.495327 vt 0.218682 0.515994 vt 0.625000 1.000000 vt 0.875000 0.750000 vt 0.625000 1.000000 vt 0.875000 0.700000 vt 0.875000 0.500000 vt 0.875000 0.650000 vt 0.875000 0.650000 vt 0.875000 0.550000 vn -1.0000 0.0000 0.0000 vn 0.0000 0.0000 1.0000 vn 1.0000 0.0000 0.0000 vn 0.0000 0.0000 -1.0000 vn 0.0000 1.0000 0.0000 vn 0.0000 -1.0000 0.0000 g bronze_bronze_bronze.001 usemtl bronze.001 s off f 252/467/70 231/468/70 245/469/70 f 232/470/71 235/471/71 231/468/71 f 260/472/72 233/473/72 253/474/72 f 234/475/73 229/476/73 233/473/73 f 248/477/74 233/473/74 229/478/74 f 249/479/75 234/475/75 260/472/75 f 268/480/70 239/481/70 261/482/70 f 240/483/71 243/484/71 239/481/71 f 276/485/72 241/486/72 269/487/72 f 242/488/73 237/489/73 241/486/73 f 269/487/74 237/490/74 264/491/74 f 276/485/75 238/492/75 242/488/75 f 236/493/75 252/494/75 257/495/75 f 251/496/75 259/497/75 258/498/75 f 267/499/75 275/500/75 274/501/75 f 235/471/74 245/502/74 231/503/74 f 255/504/74 247/505/74 246/506/74 f 240/507/75 273/508/75 244/509/75 f 236/493/72 256/510/72 235/471/72 f 258/498/71 246/511/71 251/512/71 f 258/498/72 254/513/72 255/504/72 f 260/472/71 248/514/71 249/515/71 f 230/516/70 248/514/70 229/517/70 f 247/518/73 259/497/73 250/519/73 f 250/519/70 246/511/70 247/518/70 f 245/469/73 257/495/73 252/467/73 f 243/484/74 261/520/74 239/521/74 f 271/522/74 263/523/74 262/524/74 f 244/509/72 272/525/72 243/484/72 f 276/485/71 264/526/71 265/527/71 f 274/501/72 270/528/72 271/522/72 f 261/482/73 273/508/73 268/480/73 f 238/529/70 264/526/70 237/530/70 f 274/501/71 262/531/71 267/532/71 f 266/533/70 262/531/70 263/534/70 f 263/534/73 275/500/73 266/533/73 f 280/535/74 286/536/74 278/537/74 f 288/538/75 284/539/75 282/540/75 f 286/536/70 282/540/70 278/537/70 f 280/535/72 287/541/72 285/542/72 f 277/543/70 291/544/70 289/545/70 f 291/544/75 283/546/75 292/547/75 f 289/545/74 279/548/74 277/543/74 f 285/542/73 288/538/73 286/536/73 f 281/549/73 279/548/73 283/546/73 f 289/545/71 292/547/71 290/550/71 f 290/550/72 283/546/72 279/548/72 f 280/535/71 282/540/71 284/539/71 f 252/467/70 232/470/70 231/468/70 f 232/470/71 236/493/71 235/471/71 f 260/472/72 234/475/72 233/473/72 f 234/475/73 230/551/73 229/476/73 f 248/477/74 253/474/74 233/473/74 f 249/479/75 230/552/75 234/475/75 f 268/480/70 240/483/70 239/481/70 f 240/483/71 244/509/71 243/484/71 f 276/485/72 242/488/72 241/486/72 f 242/488/73 238/553/73 237/489/73 f 269/487/74 241/486/74 237/490/74 f 276/485/75 265/554/75 238/492/75 f 236/493/75 232/555/75 252/494/75 f 251/496/75 250/556/75 259/497/75 f 267/499/75 266/557/75 275/500/75 f 235/471/74 256/510/74 245/502/74 f 255/504/74 254/513/74 247/505/74 f 240/507/75 268/558/75 273/508/75 f 236/493/72 257/495/72 256/510/72 f 258/498/71 255/504/71 246/511/71 f 258/498/72 259/497/72 254/513/72 f 260/472/71 253/474/71 248/514/71 f 230/516/70 249/515/70 248/514/70 f 247/518/73 254/513/73 259/497/73 f 250/519/70 251/512/70 246/511/70 f 245/469/73 256/510/73 257/495/73 f 243/484/74 272/525/74 261/520/74 f 271/522/74 270/528/74 263/523/74 f 244/509/72 273/508/72 272/525/72 f 276/485/71 269/487/71 264/526/71 f 274/501/72 275/500/72 270/528/72 f 261/482/73 272/525/73 273/508/73 f 238/529/70 265/527/70 264/526/70 f 274/501/71 271/522/71 262/531/71 f 266/533/70 267/532/70 262/531/70 f 263/534/73 270/528/73 275/500/73 f 280/535/74 285/542/74 286/536/74 f 288/538/75 287/541/75 284/539/75 f 286/536/70 288/538/70 282/540/70 f 280/535/72 284/539/72 287/541/72 f 277/543/70 281/549/70 291/544/70 f 291/544/75 281/549/75 283/546/75 f 289/545/74 290/550/74 279/548/74 f 285/542/73 287/541/73 288/538/73 f 281/549/73 277/543/73 279/548/73 f 289/545/71 291/544/71 292/547/71 f 290/550/72 292/547/72 283/546/72 f 280/535/71 278/537/71 282/540/71 |
Added settingtypes.txt version [4a4cb020f3].
> > > > |
1 2 3 4 |
# common tweaks for the sorcery mod # allow the XDecor enchanter to coexist with the Sorcery enchanter compat_xdecor_allow_enchanter (Compat/XDecor: Allow Enchanter) bool false |
Modified tap.lua from [de4da8497e] to [43b3147bb9].
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
-- start dripping immediately to indicate the tree is alive
tapdrip(tree.def.sapliq, where.above)
end
stack:take_item(1)
return stack
end;
on_screwdriver = function() return false end;
_sorcery = {
recipe = {
note = 'Extract syrups and oils from trees';
};
};
})
|
| |
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
-- start dripping immediately to indicate the tree is alive
tapdrip(tree.def.sapliq, where.above)
end
stack:take_item(1)
return stack
end;
on_rotate = function() return false end;
_sorcery = {
recipe = {
note = 'Extract syrups and oils from trees';
};
};
})
|