sorcery  Check-in [96c5289a2a]

Overview
Comment:add rune forges, runes, amulet frames, write sacrifice spell, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, remove sneaky old debug code, improve library code, add utility for uploading merge requests
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 96c5289a2a0144fc994a089100a7e48cda0b30d2c2fa0339dc0fcc414c9501ae
User & Date: lexi on 2020-10-21 03:35:35
Original Comment: add rune forges, runes, amulet frames, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, improve library code, add utility for uploading merge requests
Other Links: manifest | tags
Context
2020-10-22
15:51
balance amulets better, add sound effects, add debugging privilege for runes, swat various glitches and bugs check-in: 83426a2748 user: lexi tags: trunk
2020-10-21
03:35
add rune forges, runes, amulet frames, write sacrifice spell, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, remove sneaky old debug code, improve library code, add utility for uploading merge requests check-in: 96c5289a2a user: lexi tags: trunk
2020-10-19
22:42
add wand rack, rework wand power mechanics, add missing texture, swat some bugs, insert hack to neuter unkillable fucking impossibug in portal code check-in: 4a3678503f user: lexi tags: trunk
Changes

Modified data/compat.lua from [8a224b156e] to [40f7d044df].

50
51
52
53
54
55
56

57
58
59
60

61
62
63
64
65
66
67
			mode = 'produce';
		};
	};
	gems = {
		['default:mese_crystal'] = {
			id = 'mese', gem = true;
			value = 9, raw = true;

		};
		['default:mese_crystal_fragment'] = {
			id = 'mese', gem = true;
			value = 1, raw = true;

		};
		['default:diamond'] = {
			id = 'diamond', gem = true;
			value = 9, raw = true;
		};
	};
	ore = {







>




>







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
			mode = 'produce';
		};
	};
	gems = {
		['default:mese_crystal'] = {
			id = 'mese', gem = true;
			value = 9, raw = true;
			sacrifice_value = 500;
		};
		['default:mese_crystal_fragment'] = {
			id = 'mese', gem = true;
			value = 1, raw = true;
			sacrifice_value = 500 / 9;
		};
		['default:diamond'] = {
			id = 'diamond', gem = true;
			value = 9, raw = true;
		};
	};
	ore = {

Modified data/metals.lua from [727f380ee7] to [127702c66e].

148
149
150
151
152
153
154
155

156
157
158
159
160
161
162
...
195
196
197
198
199
200
201

202
203
204
205
206
207
208
...
215
216
217
218
219
220
221
222

223
224
225
226
227
228
229
...
239
240
241
242
243
244
245



246
247
248
249
250
251
252
...
265
266
267
268
269
270
271



272
273
274
275

276
277
278
279
280
281
282
		hardness = 1;
		depth = 256;
		level = 1;
		maxenergy = 3000;
		slots = {
			{affinity = {'praxic','counterpraxic'}; confluence = 1.4};
			{affinity = {'praxic','counterpraxic'}; confluence = 1.2};
		}

	};
	silver = {
		tone = {218,255,246};
		dye = 'white';
		maxenergy = 2000;
		hardness = 1;
		level = 1;
................................................................................
		maxlevel = 3;
		depth = 650;
		slots = {
			{affinity = {'counterpraxic'}, confluence = 0.6};
			{affinity = {'praxic','counterpraxic'}, confluence = 1};
			{affinity = {'praxic'}, confluence = 0.5};
		};

	};
	cobalt = {
		dye = 'blue';
		tone = {48,101,255}, alpha = 90;
		rarity = 17;
		durability = 400;
		hardness = 6;
................................................................................
		level = 2;
		slots = {
			{
				affinity = {'counterpraxic'};
				confluence = 0.65;
				interference = {speed = 1};
			};
		}

	};
	lithium = {
		tone = {255,252,93}, alpha = 80;
		dye = 'yellow';
		rarity = 13;
		hardness = 2;
		fuel = 80;
................................................................................
		hardness = 1;
		durability = 300;
		meltpoint = 2;
		cooktime = 20;
		no_tools = true, no_armor = true;
		conduct = 5;
		level = 1;



		mix = {
			metals = {
				lithium = 2;
				tin = 4;
				gold = 1;
			}
		};
................................................................................
		sharpness = 4;
		level = 3;
		maxenergy = 1800;
		depth = 1370;
		conduct = 10;
		durability = 1900;
		speed = 3;



		slots = {
			{affinity={'counterpraxic','syncretic'}, confluence = 1.1};
			{affinity={'cognic','entropic'}, confluence = 0.8};
		};

	};
	duridium = {
		tone = {255,64,175}, alpha = 70;
		cooktime = 120;
		artificial = true;
		durability = 3400;
		speed = 3.1;







|
>







 







>







 







|
>







 







>
>
>







 







>
>
>




>







148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
...
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
...
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
		hardness = 1;
		depth = 256;
		level = 1;
		maxenergy = 3000;
		slots = {
			{affinity = {'praxic','counterpraxic'}; confluence = 1.4};
			{affinity = {'praxic','counterpraxic'}; confluence = 1.2};
		};
		amulet = {};
	};
	silver = {
		tone = {218,255,246};
		dye = 'white';
		maxenergy = 2000;
		hardness = 1;
		level = 1;
................................................................................
		maxlevel = 3;
		depth = 650;
		slots = {
			{affinity = {'counterpraxic'}, confluence = 0.6};
			{affinity = {'praxic','counterpraxic'}, confluence = 1};
			{affinity = {'praxic'}, confluence = 0.5};
		};
		amulet = {};
	};
	cobalt = {
		dye = 'blue';
		tone = {48,101,255}, alpha = 90;
		rarity = 17;
		durability = 400;
		hardness = 6;
................................................................................
		level = 2;
		slots = {
			{
				affinity = {'counterpraxic'};
				confluence = 0.65;
				interference = {speed = 1};
			};
		};
		amulet = {};
	};
	lithium = {
		tone = {255,252,93}, alpha = 80;
		dye = 'yellow';
		rarity = 13;
		hardness = 2;
		fuel = 80;
................................................................................
		hardness = 1;
		durability = 300;
		meltpoint = 2;
		cooktime = 20;
		no_tools = true, no_armor = true;
		conduct = 5;
		level = 1;
		image = {
			block = 'sorcery_metal_vidrium_shiny.png';
		};
		mix = {
			metals = {
				lithium = 2;
				tin = 4;
				gold = 1;
			}
		};
................................................................................
		sharpness = 4;
		level = 3;
		maxenergy = 1800;
		depth = 1370;
		conduct = 10;
		durability = 1900;
		speed = 3;
		image = {
			block = 'sorcery_metal_iridium_shiny.png';
		};
		slots = {
			{affinity={'counterpraxic','syncretic'}, confluence = 1.1};
			{affinity={'cognic','entropic'}, confluence = 0.8};
		};
		amulet = {};
	};
	duridium = {
		tone = {255,64,175}, alpha = 70;
		cooktime = 120;
		artificial = true;
		durability = 3400;
		speed = 3.1;

Added data/runes.lua version [bd35ca52e8].





















































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
-- a rune is an abstract object created by a runeforge, which can be
-- applied to an amulet in order to imbue that amulet with unique
-- and fearsome powers. the specific spell depends on the stone the
-- rune is applied to, and not all runes can necessarily be applied
-- to all stones.

return {
	translocate = {
		name = 'Translocate';
		tone = {0,235,233};
		minpower = 3;
		rarity = 15;
		amulets = {
			amethyst = {
				name = 'Joining';
				desc = 'Give this amulet to another and they can arrive at your side in a flash from anywhere in the world — though returning whence they came may be a more difficult matter';
				frame = {
					gold = {
						name = 'Exchange';
						desc = 'Give this amulet to another and they will be able to trade places with you no matter where in the world each of you might be.'; 
					};
					cobalt = {
						name = 'Sending';
						desc = 'Give this amulet to another and by wielding this amulet against another they will be able to transport them instantly to your side';
					};
					iridium = {
						name = 'Arrival';
						desc = "Give this amulet to another and they will be able to arrive at your side in a flash from anywhere in the world, carrying others with them in the spell's grip";
					};
				};
			};
			sapphire = {
				name = 'Return';
				desc = 'Use this amulet once to bind it to a particular point in the world, then use it again to return instantly to that point.';
				frame = {
					iridium = {
						name = 'Mass Return';
						desc = 'Use this amulet once to bind it to a particular point in the world, then carry yourself and everyone around you back to that point in a flash simply by using it again';
					};
				};
			};
			emerald = {
				name = 'Banishment';
				desc = 'Use this amulet once to bind it to a particular point in the world, then wield it against a foe to whisk them away immediately to your chosen prison';
				frame = {
					iridium = {
						name = 'Mass Banishment';
						desc = 'Use this amulet once to bind it to a particular point in the world, then use it again to seize up everyone surrounding you in the grip of a fearsome magic that will deport them all in the blink of an eye to whatever destination you have chosen';
					};
				};
			};
			ruby = {
				name = 'Escape';
				desc = 'Immediately transport yourself out of a dangerous situation back to the last place you slept';
				frame = {
					cobalt = {
						name = 'Vengeful Exit';
						desc = 'Translocate away to the safety of your boudoir with a fearsome blast of dangerous radiance that will send bodies flying and deal heavy damage to those nearby';
					};
					iridium = {
						name = 'Mass Escape';
						desc = 'Break up even the fiercest of quarrels by transporting yourself and everyone around you out of harms\' way and immediately back to the last place each slept';
					};
				};
			};
			diamond = {
				name = 'Elevation';
				desc = 'Lift yourself and everything around you high up into the sky';
			};
		};
	};
	disjoin = {
		name = 'Disjoin';
		tone = {159,235,0};
		minpower = 4;
		rarity = 20;
		amulets = {
			amethyst = {
				name = 'Unsealing';
				desc = 'Wielding this amulet, a touch of your hand will unravel even the mightiest protective magics, leaving doors unsealed and walls free to tear down';
			};
			emerald = {
				name = 'Mundanity';
				desc = 'Strip away the effects of all active potions and spells in your immediate vicinity, leaving adversaries without their magicks to enhance and protect them, and allies free of any curses they may be hobbled by -- and, of course, vice versa';
			};
		}
	};
	repulse = {
		name = 'Repulse';
		tone = {0,180,235};
		minpower = 1;
		rarity = 7;
		amulets = {
			amethyst = {
				name = 'Hurling';
				desc = 'Wielding this amulet, a mere flick of your fingers will lift any target of your choice bodily into the air and press upon them with tremendous repulsive force, throwing them like a hapless ragdoll out of your path';
			};
			diamond = {
				name = 'Shockwave';
				desc = 'Unleash a tidal wave of force in every direction, blasting friends and foes alike away from you with enough violence to sprain and fracture bone';
			};
		};
	};
	obliterate = {
		name = 'Obliterate';
		tone = {255,0,10};
		minpower = 5;
		rarity = 30;
		amulets = {
			amethyst = {
				name = 'Sapping';
				desc = 'Punch a hole in enemy fortifications big enough to slip through but small enough to avoid immediate attention';
			};
			ruby = {
				name = 'Shattering';
				desc = 'Tear a violent wound in the earth with the destructive force of this amulet';
			};
			diamond = {
				name = 'Killing';
				desc = 'Wield this amulet against a foe to instantly snuff the life out of their mortal form, regardless of their physical protections.';
				frame = {
					iridium = {
						name = 'Massacre';
						desc = "Unleash the dark and wicked force that lurks within this fell amulet to instantaneously slay all those who surround you, friend and foe alike";
					};
				};
			};
		};
	};
	excavate = {
		name = 'Excavate';
		tone = {0,68,235};
		minpower = 3;
		rarity = 60;
		amulets = {
			sapphire = {
				name = 'Tunnelling';
				desc = 'Carve a long tunnel ahead of you into the rock';
			};
			emerald = {
				name = 'Boring';
				desc = 'Release the force of this amulet to punch a deep borehole down into the earth below';
			}
		};
	};
	genesis = {
		name = 'Genesis';
		tone = {235,0,175};
		minpower = 5;
		rarity = 50;
		amulets = {
			mese = {
				name = 'Duplication';
				desc = 'Generate a copy of any object or item, no matter how common or rare';
			};
		};
	};
	luminate = {
		name = 'Luminate';
		tone = {255,194,0};
		minpower = 1;
		rarity = 25;
		amulets = {
			luxite = {
				name = 'Glow';
				desc = 'Swathe yourself in an aura of sparkling radiance, casting light upon all the dark places where you voyage';
			};
			diamond = {
				name = 'Radiance';
				desc = 'Set the air around you alight with a mystic luminance, letting you see clearly a great distance in every direction for several minutes';
				frame = {
					iridium = {
						name = 'Sunshine';
						desc = 'Unleash the power of this amulet to seize ultimate control over the forces of nature and summon the Sun high into the nighttime sky';
					};
				};
			};
		};
	};
	dominate = {
		name = 'Dominate';
		tone = {235,0,228};
		minpower = 4;
		rarity = 40;
		amulets = {
			ruby = {
				name = 'Exsanguination';
				desc = 'Rip the life force out of another, leaving them on the brink of death, and use it to mend your own wounds and invigorate your own being';
			};
			amethyst = {
				name = 'Disarming';
				desc = 'Wield this amulet against a foe to rip all the weapons in their possession out of their grasp';
				frame = {
					iridium = {
						name = 'Peacemaking';
						desc = 'Confiscate all weapons held by those surrounding you';
					};
				};
			};
		};
	};
}

Modified data/spells.lua from [bdb226347b] to [151760f504].

278
279
280
281
282
283
284
285
286





287
288
289
290
291
292
293
...
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
		desc = 'Send up sparks of radia to indicate nearness or absence of the blocks whose presence the wand is attuned to';
	};
	verdant = {
		name = 'verdant';
		color = {16,29,255};
		uses = 48;
		leytype = 'imperic';
		desc = 'Pour life-energy into the soil, causing flowers and trees to spring up at your command';
		affinity = {'jungle','verdant'};





	};
	praxic        = anchorwand('praxic',       16, {'pine','shimmering','blazing'});
	counterpraxic = anchorwand('counterpraxic',23, {'pine','shimmering','silent'});
	entropic      = anchorwand('entropic',      8, {'jungle','dark'});
	syncretic     = anchorwand('syncretic',    12, {'aspen','verdant','shimmering','blazing'});
	cognic        = anchorwand('cognic',       32, {'acacia','verdant','dark'});
	occlutic      = anchorwand('occlutic',     15, {'apple','silent','dark'});
................................................................................
			enchantment_sparkle(ctx,sorcery.lib.color(255,12,0))
			enchantment_sparkle(ctx,sorcery.lib.color(85,18,35))
			enchantment_sparkle(ctx,sorcery.lib.color(0,0,0))
		end
	};
	sacrifice = {
		name = 'sacrifice';
		uses = 58;
		color = {212,6,63};
		affinity = {'aspen','blazing'};
		leytype = 'syncretic';
		desc = 'Transform the matter of one to three items on an enchanter into energy and empower the item on the center of the enchanter with it. Useful to recharge wands in areas with weak leylines.';









































































	};
	transfer = {
		name = 'transfer';
		uses = 65;
		color = {6,212,121};
		leytype = 'syncretic';
		affinity = {'aspen','shimmering','silent'};
		desc = 'Transfer ley-current from items on an enchanter into the item in the center, but at a 50% loss if they are of mismatched affinities. One third of maximum current is transferred, and when used on items with little power may destroy them or their enchantments';
	};
	transmute = {
		name = 'transmutation';
		uses = 7;
		color = {255,90,18};
		leytype = 'imperic';
		affinity = {'aspen','shimmering','dark','blazing'};
		desc = 'Transmute three ingots into one of a different metal, determined by chance, and influenced by configuration of the wand as well as the stars and the phase of the moon';
		-- diamond = quantity varies between 1-3
	};
	disjoin = {
		name = 'disjunction';
		uses = 32;
		color = {17,6,212};
		leytype = 'occlutic';







|

>
>
>
>
>







 







|



|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>











|



|







278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
...
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
		desc = 'Send up sparks of radia to indicate nearness or absence of the blocks whose presence the wand is attuned to';
	};
	verdant = {
		name = 'verdant';
		color = {16,29,255};
		uses = 48;
		leytype = 'imperic';
		desc = 'Pour a fraction of your life-energy into the soil, causing flowers and trees to spring up at your command';
		affinity = {'jungle','verdant'};
		-- rubies(?) make it draw life-energy from bottles of blood
		-- in inventory rather than your own bodily health points
		cast = function(ctx)

		end
	};
	praxic        = anchorwand('praxic',       16, {'pine','shimmering','blazing'});
	counterpraxic = anchorwand('counterpraxic',23, {'pine','shimmering','silent'});
	entropic      = anchorwand('entropic',      8, {'jungle','dark'});
	syncretic     = anchorwand('syncretic',    12, {'aspen','verdant','shimmering','blazing'});
	cognic        = anchorwand('cognic',       32, {'acacia','verdant','dark'});
	occlutic      = anchorwand('occlutic',     15, {'apple','silent','dark'});
................................................................................
			enchantment_sparkle(ctx,sorcery.lib.color(255,12,0))
			enchantment_sparkle(ctx,sorcery.lib.color(85,18,35))
			enchantment_sparkle(ctx,sorcery.lib.color(0,0,0))
		end
	};
	sacrifice = {
		name = 'sacrifice';
		uses = 24;
		color = {212,6,63};
		affinity = {'aspen','blazing'};
		leytype = 'syncretic';
		desc = 'Transform the matter of one to three items on an enchanter into energy and empower the item on the center of the enchanter with it. Useful to quickly recharge wands in areas with weak leylines or in emergencies.';
		cast = function(ctx)
			local bitch = function(err)
				sorcery.log('data/spells(sacrifice)', err)
				return false
			end

			local e = get_enchanter(ctx)
			if not e then return false end

			local scgroups = {
				sorcery_tech = 400;
				sorcery_magitech = 600;
				shovel = 100;
				sword = 200;
				pick = 300;
				axe = 250;
			}

			local rechargee = e:get_stack('item',1)
			if rechargee:is_empty() then return false end
			local charge, maxcharge = sorcery.ley.getcharge(rechargee)
			if not charge then return false end

			local getscval = function(stack)
				local name,def = stack:get_name(),stack:get_definition()
				local getitemval = function()
					if name == 'sorcery:ash' or name == 'new_campfire:ash' then
						return 0
					end

					do local f = sorcery.itemclass.get(name, 'fuel')
						if f then return f.burntime * 3, f.leftover end
					end

					if def._sorcery and def._sorcery.material then
						local m = def._sorcery.material
						if m.sacrifice_value then return m.sacrifice_value end
						if m.metal then
							return (m.data.level * 120) * (m.value or 1)
						end
						if m.mass then return m.mass*15 end
						if m.value then return m.value*25 end
					end

					for g,v in pairs(scgroups) do
						if minetest.get_item_group(name,g) ~= 0 then return v end
					end

					return 80
				end
				local v,l = getitemval()
				if l then l:set_count(stack:get_count()) end
				return v * stack:get_count(), l
			end

			local newenergy = 0
			for i=1,e:get_size('foci') do
				local st = e:get_stack('foci',i)
				local val,leftover = getscval(st)
				if val > 0 and newenergy + val <= maxcharge then
					newenergy = newenergy + val
					e:set_stack('foci',i,leftover or ItemStack {
						name = 'sorcery:ash', count = st:get_count();
					})
				end
			end
			newenergy = math.min(maxcharge, newenergy * (ctx.stats.power or 1))

			sorcery.ley.setcharge(rechargee,charge + newenergy)
			e:set_stack('item',1,rechargee)

			enchantment_sparkle(ctx, sorcery.lib.color(212,6,63))
		end;
	};
	transfer = {
		name = 'transfer';
		uses = 65;
		color = {6,212,121};
		leytype = 'syncretic';
		affinity = {'aspen','shimmering','silent'};
		desc = 'Transfer ley-current from items on an enchanter into the item in the center, but at a 50% loss if they are of mismatched affinities. One third of maximum current is transferred, and when used on items with little power may destroy them or their enchantments';
	};
	transmute = {
		name = 'transmutation';
		uses = 13;
		color = {255,90,18};
		leytype = 'imperic';
		affinity = {'aspen','shimmering','dark','blazing'};
		desc = 'Transmute three parts of metal into one of a different metal, determined by chance, and influenced by configuration of the wand as well as the stars and the phase of the moon';
		-- diamond = quantity varies between 1-3
	};
	disjoin = {
		name = 'disjunction';
		uses = 32;
		color = {17,6,212};
		leytype = 'occlutic';

Modified data/transmutation.lua from [c466f67e6e] to [75fdeb1a1c].

5
6
7
8
9
10
11
12









13
14
15

return {
	gold = {
		[-2] = {'brass', 5};
		[-1] = {'silver', 3}; -- one chance in three of silver - undesirable
		[1] = {'lithium', 2};
		[2] = {'cobalt', 3};
		[3] = {'iridium', 50};









		fallback = 1;
	};
}







|
>
>
>
>
>
>
>
>
>



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

return {
	gold = {
		[-2] = {'brass', 5};
		[-1] = {'silver', 3}; -- one chance in three of silver - undesirable
		[1] = {'lithium', 2};
		[2] = {'cobalt', 3};
		[3] = {'iridium', 20};
		[4] = {'tyrannium', 100};
		fallback = 1;
	};
	silver = {
		[-2] = {'tin',4};
		[-1] = {'brass',3};
		[1] = {'electrum',2};
		[2] = {'gold',4};
		[3] = {'platinum',10};
		fallback = 1;
	};
}

Modified enchanter.lua from [9df8830b92] to [bac74a37c3].

100
101
102
103
104
105
106

107
108

109
110
111
112
113
114
115
...
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
		background[-0.25,-0.25;8.5,9;sorcery_enchanter_bg.png;true]
		image[2.13,0;4.35,4;sorcery_enchanter_glyphs.png]
		list[context;foci;3.5,0;1,1;0]
		list[context;item;3.5,1.2;1,1;]
		list[context;foci;2.5,2;1,1;1]
		list[context;foci;4.5,2;1,1;2]
		list[current_player;main;0,4.7;8,4;]

		listring[current_player;main]
		listring[context;item]

	]] .. slots)
end

sorcery.enchant = {} do
	sorcery.enchant.update_enchanter = enchanter_update
	local m = sorcery.lib.marshal
	local ench_t = m.g.struct {
................................................................................
		-- so i'm just compromising and setting delta to a
		-- constant :/
		minetest.after(delta, function()
			if not sorcery.ctx.stat(user) then return end
			local u = sorcery.ctx.get(user)
			local h = u.hud_ench
			if not h then return end
			print('timeleft,delta',h.timeleft,delta)
			if h.timeleft - delta <= 0 then
				user:hud_remove(h.id)
				u.hud_ench = nil
			else
				h.timeleft = h.timeleft - delta
				h.fn = false
				enchpwrhud(user, false, h.fac)







>


>







 







<







100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
...
378
379
380
381
382
383
384

385
386
387
388
389
390
391
		background[-0.25,-0.25;8.5,9;sorcery_enchanter_bg.png;true]
		image[2.13,0;4.35,4;sorcery_enchanter_glyphs.png]
		list[context;foci;3.5,0;1,1;0]
		list[context;item;3.5,1.2;1,1;]
		list[context;foci;2.5,2;1,1;1]
		list[context;foci;4.5,2;1,1;2]
		list[current_player;main;0,4.7;8,4;]
		listring[context;foci]
		listring[current_player;main]
		listring[context;item]
		listring[current_player;main]
	]] .. slots)
end

sorcery.enchant = {} do
	sorcery.enchant.update_enchanter = enchanter_update
	local m = sorcery.lib.marshal
	local ench_t = m.g.struct {
................................................................................
		-- so i'm just compromising and setting delta to a
		-- constant :/
		minetest.after(delta, function()
			if not sorcery.ctx.stat(user) then return end
			local u = sorcery.ctx.get(user)
			local h = u.hud_ench
			if not h then return end

			if h.timeleft - delta <= 0 then
				user:hud_remove(h.id)
				u.hud_ench = nil
			else
				h.timeleft = h.timeleft - delta
				h.fn = false
				enchpwrhud(user, false, h.fac)

Modified gems.lua from [378fef1f36] to [e866e2741b].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
..
49
50
51
52
53
54
55



56
57
58



59
60
61
62
63

64
65























66
67
68
69
70
71
72
			id = name; data = gem;
			value = c.cost*shards_per_gem;
		}
	end end
	if gem.armor then for a,c in pairs(armors) do
		sorcery.matreg.lookup[(gem.items and gem.items[a]) or ('sorcery:' .. a .. '_' .. name)] = {
			gem = true;
			id = name; data = gem;
			value = c.cost*shards_per_gem;
		}
	end end

	if gem.foreign_shard then
		minetest.clear_craft {output=shardname}
	else
................................................................................
						};
					}
				};
			};
		})
	end
	if not gem.foreign_amulet then



		minetest.register_craftitem(amuletname, {
			description = sorcery.lib.str.capitalize(name) .. ' amulet';
			inventory_image = sorcery.lib.image('sorcery_amulet.png'):multiply(sorcery.lib.color(gem.tone)):render();



			_sorcery = {
				material = {
					gem = true, id = name, data = gem;
					value = (5 * shards_per_gem) + 4;
				};

			};
		}) 























	end
	minetest.register_craft {
		type = 'shapeless';
		recipe = (minetest.get_modpath('xdecor') and {
			'xdecor:hammer', itemname;
		}) or { itemname };
		output = shardname .. ' 9';







|







 







>
>
>


<
>
>
>





>


>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
..
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
			id = name; data = gem;
			value = c.cost*shards_per_gem;
		}
	end end
	if gem.armor then for a,c in pairs(armors) do
		sorcery.matreg.lookup[(gem.items and gem.items[a]) or ('sorcery:' .. a .. '_' .. name)] = {
			gem = true;
			id = name, data = gem;
			value = c.cost*shards_per_gem;
		}
	end end

	if gem.foreign_shard then
		minetest.clear_craft {output=shardname}
	else
................................................................................
						};
					}
				};
			};
		})
	end
	if not gem.foreign_amulet then
		local img = sorcery.lib.image
		local img_stone = img('sorcery_amulet.png'):multiply(sorcery.lib.color(gem.tone))
		local img_sparkle = img('sorcery_amulet_sparkle.png')
		minetest.register_craftitem(amuletname, {
			description = sorcery.lib.str.capitalize(name) .. ' amulet';

			inventory_image = img_sparkle:blit(img_stone):render();
			wield_scale = { x = 0.6, y = 0.6, z = 0.6 };
			groups = { sorcery_amulet = 1 };
			_sorcery = {
				material = {
					gem = true, id = name, data = gem;
					value = (5 * shards_per_gem) + 4;
				};
				amulet = { base = name };
			};
		}) 
		sorcery.register.metals.foreach('sorcery:mk-amulet-frames-'..name,{'sorcery:generate'}, function(metalid,metal)
			if not metal.amulet then return end
			local framedid = string.format("%s_frame_%s", amuletname, metalid)
			local img_frame = img(string.format('sorcery_amulet_frame_%s.png',metalid))
			minetest.register_craftitem(framedid, {
				description = string.format("%s-framed %s amulet",sorcery.lib.str.capitalize(metalid), name);
				inventory_image = img_sparkle:blit(img_frame):blit(img_stone):render();
				wield_scale = { x = 0.6, y = 0.6, z = 0.6 };
				groups = { sorcery_amulet = 1 };
				_sorcery = {
					amulet = { base = name, frame = metalid };
				};
			})
			local frag = metal.parts.fragment
			minetest.register_craft {
				output = framedid;
				recipe = {
					{'',  frag,''};
					{frag,amuletname,frag};
					{'',  frag,''};
				};
			}
		end)
	end
	minetest.register_craft {
		type = 'shapeless';
		recipe = (minetest.get_modpath('xdecor') and {
			'xdecor:hammer', itemname;
		}) or { itemname };
		output = shardname .. ' 9';

Modified init.lua from [bad82c62c0] to [f9d7281393].

99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
...
126
127
128
129
130
131
132
133
134
135
136
137
138
139
root {'compat','matreg'}
if not sorcery.stage('loadlore', data, root) then
	data {
		'compat';
		'affinities'; 'gods';
		'calendar', 'signs';
		'resonance';
		'enchants', 'spells';
		'gems', 'metals';
		'potions', 'oils', 'greases',
			'draughts', 'elixirs',
			'philters', 'extracts';
	}
end

................................................................................
	'potions'; 'metal', 'gems'; 'leylines'; 'infuser';
	'altar'; 'wands'; 'tools', 'crafttools'; 'enchanter';
	'harvester'; 'metallurgy-hot', 'metallurgy-cold';
	'entities'; 'recipes'; 'coins'; 'interop';
	'tnodes'; 'forcefield'; 'farcaster'; 'portal';
	'cookbook', 'writing'; 'disassembly'; 'displacer';
	'gravitator'; 'precipitator'; 'calendar', 'astrolabe';
	'keypunch';

	'admin';
} do sorcery.load(u) end
sorcery.stage('finalize')

sorcery.registry.defercheck()







|







 







|






99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
...
126
127
128
129
130
131
132
133
134
135
136
137
138
139
root {'compat','matreg'}
if not sorcery.stage('loadlore', data, root) then
	data {
		'compat';
		'affinities'; 'gods';
		'calendar', 'signs';
		'resonance';
		'enchants', 'spells', 'runes';
		'gems', 'metals';
		'potions', 'oils', 'greases',
			'draughts', 'elixirs',
			'philters', 'extracts';
	}
end

................................................................................
	'potions'; 'metal', 'gems'; 'leylines'; 'infuser';
	'altar'; 'wands'; 'tools', 'crafttools'; 'enchanter';
	'harvester'; 'metallurgy-hot', 'metallurgy-cold';
	'entities'; 'recipes'; 'coins'; 'interop';
	'tnodes'; 'forcefield'; 'farcaster'; 'portal';
	'cookbook', 'writing'; 'disassembly'; 'displacer';
	'gravitator'; 'precipitator'; 'calendar', 'astrolabe';
	'keypunch'; 'runeforge';

	'admin';
} do sorcery.load(u) end
sorcery.stage('finalize')

sorcery.registry.defercheck()

Modified itemclass.lua from [36308ba599] to [ba9d479786].

75
76
77
78
79
80
81
82


83
84
85
86
87
88
89
90



91
92
93
94
95
96
97
...
103
104
105
106
107
108
109
110















111
112
113
114
115
116
117
			end;
		};
		metallic = {
			subclass = {'metal'};
			predicate = function(name)
				-- matreg is a registry binding crafted items,
				-- like armors and tools, to the material they
				-- are made out of


				local mat = sorcery.matreg.lookup[name]
				if mat and mat.metal then return mat end
				local prop = minetest.registered_items[name]._sorcery
				if prop and prop.material and prop.material.metal then
					return prop.material
				end
			end;
		};



		ore = {
			groups = { 'ore' };
			compat = 'ore';
			predicate = function(name)
				-- maybe revise this at some point once sorcery is extricated
				-- from instant_ores and we have more control over the items
				-- we generate
................................................................................
						return { metal = true, id = iname }
					elseif sorcery.data.gems[iname] then
						return { gem = true, id = iname }
					end
				end
			end;
		};
		-- fuel = {};















	};
	get = function(name,class)
		local c = sorcery.itemclass.classes[class]
		local o
		if not c then return false end
		if type(name) ~= 'string' then name = name:get_name() end








|
>
>








>
>
>







 







|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
...
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
			end;
		};
		metallic = {
			subclass = {'metal'};
			predicate = function(name)
				-- matreg is a registry binding crafted items,
				-- like armors and tools, to the material they
				-- are made out of. it's necessary because not
				-- all items we want to interact with have
				-- definitions under our control
				local mat = sorcery.matreg.lookup[name]
				if mat and mat.metal then return mat end
				local prop = minetest.registered_items[name]._sorcery
				if prop and prop.material and prop.material.metal then
					return prop.material
				end
			end;
		};
		material = {
			subclass = {'metallic','crystalline'};
		};
		ore = {
			groups = { 'ore' };
			compat = 'ore';
			predicate = function(name)
				-- maybe revise this at some point once sorcery is extricated
				-- from instant_ores and we have more control over the items
				-- we generate
................................................................................
						return { metal = true, id = iname }
					elseif sorcery.data.gems[iname] then
						return { gem = true, id = iname }
					end
				end
			end;
		};
		fuel = {
			groups = {'fuel','flammable'};
			predicate = function(name)
				local c,di = minetest.get_craft_result {
					method = 'fuel';
					width = 1;
					items = { ItemStack(name) };
				}
				if c.time and c.time > 0 then
					return {
						burntime = c.time;
						leftover = di and di[1];
					}
				end
			end;
		};
	};
	get = function(name,class)
		local c = sorcery.itemclass.classes[class]
		local o
		if not c then return false end
		if type(name) ~= 'string' then name = name:get_name() end

Modified leylines.lua from [3c460c3a0d] to [fd8a9ad01c].

44
45
46
47
48
49
50
51








































52
53
54
55
56
57
58
59
60
...
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
...
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
	privs = { server = true };
	func = function(caller,params)
		local pos = minetest.get_player_by_name(caller):get_pos()
		local ley = sorcery.ley.estimate(pos)
		minetest.chat_send_player(caller, 'Leyline force ' .. tostring(ley.force) .. ' with affinities ' .. table.concat(ley.aff, ','))
	end;
})









































-- leyline energy can be transmitted via a conduit from a leysink. however, it cannot be stored like aetheric energy can be; leyline energy must be drawn when needed unless it is bound up in an enchantment (which simply delays its expression). leysinks provide a constant source of ley-force.
-- there are two nodes for transmitting leyline energy, wires and conduits. wires transmit a limited amount of energy, but are cheap and small. conduits transmit much more, but are expensive and take up full blocks. both are composed of electrum, the carrier, and copper, which prevents the ley-force from leaking out as dangerous radiance.

minetest.register_node('sorcery:conduit', {
	description = 'Conduit';
	tiles = {
		'sorcery_conduit_copper_top.png';
		'sorcery_conduit_copper_top.png';
		'sorcery_conduit_copper_side.png';
................................................................................
end

sorcery.ley.field_to_current = function(strength,time)
	local ley_factor = 0.25
	-- a ley harvester will produce this much current with
	-- access to a full-strength leyline
	
	return strength * ley_factor * time;
end

do -- register condenser
	local gem = sorcery.lib.image('default_diamond_block.png')
	local amethyst = gem:multiply(sorcery.lib.color(sorcery.data.gems.amethyst.tone))
	local emerald = gem:multiply(sorcery.lib.color(sorcery.data.gems.emerald.tone))
	local box = {
................................................................................
					condset('minpower',min)
					condset('maxpower',min)
				else
					condset('minpower',min)
					condset('maxpower',max)
				end
			else -- power usage is simply a constant
				condset('power',p)
				condset('minpower',p)
				condset('maxpower',p)
			end
		else
			local feval = function(v)
				if type(v) == 'function' then
					return v(pos,timespan)
				else return v * timespan end
			end








>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

|







 







|







 







|
|
|







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
...
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
...
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
	privs = { server = true };
	func = function(caller,params)
		local pos = minetest.get_player_by_name(caller):get_pos()
		local ley = sorcery.ley.estimate(pos)
		minetest.chat_send_player(caller, 'Leyline force ' .. tostring(ley.force) .. ' with affinities ' .. table.concat(ley.aff, ','))
	end;
})

sorcery.ley.chargetype = function(stack)
	if minetest.get_item_group(stack:get_name(),'sorcery_wand') ~= 0 then
		return 'wear'
	else
		local e = sorcery.enchant.get(stack)
		if e and #e.spells > 0 then
			return 'enchant'
		end
	end
	return false
end

sorcery.ley.getcharge = function(stack)
	local chargetype = sorcery.ley.chargetype(stack)
	if not chargetype then return false end
	if chargetype == 'wear' then
		return (65535 - stack:get_wear()) / 15, 65535 / 15
	elseif chargetype == 'enchant' then
		local e = sorcery.enchant.get(stack)
		local mat = sorcery.itemclass.get(stack:get_name(), 'material')
		return e.energy, mat.data.maxenergy
	end
end

sorcery.ley.setcharge = function(stack, charge, overcharge)
	local max = select(2, sorcery.ley.getcharge(stack))
	if not max then return false end
	if charge > max and not overcharge then charge = max end

	local chargetype = sorcery.ley.chargetype(stack)
	if chargetype == 'wear' then
		stack:set_wear(65535 - charge * 15)
	elseif chargetype == 'enchant' then
		local e = sorcery.enchant.get(stack)
		e.energy = charge
		sorcery.enchant.set(stack,e)
	end
	return stack
end

-- leyline energy can be transmitted via a conduit from a leysink. however, it cannot be stored like aetheric energy can be; leyline energy must be drawn when needed unless it is bound up in an enchantment (which simply delays its expression). leysinks provide a constant source of ley-force.
-- there are two nodes for transmitting leyline energy, wires and conduits. wires transmit a limited amount of energy, but are cheap and small. conduits transmit much more, but are expensive and take up full blocks. both are composed of a carrier metal and copper, which prevents the ley-force from leaking out as dangerous radiance.

minetest.register_node('sorcery:conduit', {
	description = 'Conduit';
	tiles = {
		'sorcery_conduit_copper_top.png';
		'sorcery_conduit_copper_top.png';
		'sorcery_conduit_copper_side.png';
................................................................................
end

sorcery.ley.field_to_current = function(strength,time)
	local ley_factor = 0.25
	-- a ley harvester will produce this much current with
	-- access to a full-strength leyline
	
	return (strength * ley_factor) * time;
end

do -- register condenser
	local gem = sorcery.lib.image('default_diamond_block.png')
	local amethyst = gem:multiply(sorcery.lib.color(sorcery.data.gems.amethyst.tone))
	local emerald = gem:multiply(sorcery.lib.color(sorcery.data.gems.emerald.tone))
	local box = {
................................................................................
					condset('minpower',min)
					condset('maxpower',min)
				else
					condset('minpower',min)
					condset('maxpower',max)
				end
			else -- power usage is simply a constant
				condset('power',p * timespan)
				condset('minpower',p * timespan)
				condset('maxpower',p * timespan)
			end
		else
			local feval = function(v)
				if type(v) == 'function' then
					return v(pos,timespan)
				else return v * timespan end
			end

Modified lib/node.lua from [7144dd8474] to [b1f018643d].

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
...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
		{x =  0, y =  0, z = -1};
	};
}

ofs.adjoining = sorcery.lib.tbl.append(sorcery.lib.tbl.append(
	ofs.neighbors,ofs.planecorners),ofs.cubecorners)

return {
	offsets = ofs;
	purge_container = function(pos,node,meta,user)
		local offset = function(pos,range)
			local r = function(min,max)
				return (math.random() * (max - min)) + min
			end
			return {
				x = pos.x + r(0 - range, range);
				y = pos.y;
				z = pos.z + r(0 - range, range);
			}
		end
		for name, inv in pairs(meta.inventory) do

			for _, item in pairs(inv) do
				if not item:is_empty() then
					minetest.add_item(offset(pos,0.4), item)
				end
			end

		end






	end;


	amass = function(startpoint,names,directions)
		if not directions then directions = ofs.neighbors end
		local nodes, positions, checked = {},{},{}
		local checkedp = function(pos)
			for _,v in pairs(checked) do
				if vector.equals(pos,v) then return true end
................................................................................
		minetest.load_area(pos)
		return minetest.get_node(pos)
	end;

	-- when items have already been removed; notify cannot be relied on
	-- to reach the entire network; this function accounts for the gap
	notifyneighbors = function(pos)
		sorcery.lib.node.forneighbor(pos, sorcery.ley.txofs, function(pos,node)
			if minetest.get_item_group(node.name,'sorcery_ley_device') ~= 0 then
				sorcery.ley.notify(sum)
			end
		end)
	end;

	blockpos = function(pos)







<
<
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
>
|
>
>
>
>
>
>
|
>







 







|







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
...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
		{x =  0, y =  0, z = -1};
	};
}

ofs.adjoining = sorcery.lib.tbl.append(sorcery.lib.tbl.append(
	ofs.neighbors,ofs.planecorners),ofs.cubecorners)



local purge_container = function(only, pos,node,meta,user)
	local offset = function(pos,range)
		local r = function(min,max)
			return (math.random() * (max - min)) + min
		end
		return {
			x = pos.x + r(0 - range, range);
			y = pos.y;
			z = pos.z + r(0 - range, range);
		}
	end
	for name, inv in pairs(meta.inventory) do
		if only and not sorcery.lib.tbl.has(only,name) then goto skip end
		for _, item in pairs(inv) do
			if not item:is_empty() then
				minetest.add_item(offset(pos,0.4), item)
			end
		end
	::skip::end
end;
return {
	offsets = ofs;
	purge_container = function(...) return purge_container(nil, ...) end;
	purge_only = function(lst)
		return function(...)
			return purge_container(lst, ...)
		end
	end; 

	amass = function(startpoint,names,directions)
		if not directions then directions = ofs.neighbors end
		local nodes, positions, checked = {},{},{}
		local checkedp = function(pos)
			for _,v in pairs(checked) do
				if vector.equals(pos,v) then return true end
................................................................................
		minetest.load_area(pos)
		return minetest.get_node(pos)
	end;

	-- when items have already been removed; notify cannot be relied on
	-- to reach the entire network; this function accounts for the gap
	notifyneighbors = function(pos)
		sorcery.lib.node.forneighbor(pos, sorcery.ley.txofs, function(sum,node)
			if minetest.get_item_group(node.name,'sorcery_ley_device') ~= 0 then
				sorcery.ley.notify(sum)
			end
		end)
	end;

	blockpos = function(pos)

Modified metal.lua from [a37b19ab11] to [fa121c0c8a].

140
141
142
143
144
145
146

147
148
149
150
151
152
153
			power = metal.power;
			speed = metal.speed;
			artificial = metal.artificial;
			cooktime = metal.cooktime;
			hardness = (metal.hardness/8) * 3; -- scaled wrt diamond
			level = math.ceil(((metal.hardness/8) * 3)) + 1;
			ingot_image = (metal.image and metal.image.ingot) or nil;

			ore_image = 'default_stone.png^sorcery_' .. name .. '_ore.png';
			lump_image = (metal.image and metal.image.lump) or nil;
			armor_weight = metal.armor_weight;
			armor_protection = metal.armor_protection;
		}
	end
	local ti = (metal.image and metal.image.tool)







>







140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
			power = metal.power;
			speed = metal.speed;
			artificial = metal.artificial;
			cooktime = metal.cooktime;
			hardness = (metal.hardness/8) * 3; -- scaled wrt diamond
			level = math.ceil(((metal.hardness/8) * 3)) + 1;
			ingot_image = (metal.image and metal.image.ingot) or nil;
			block_image = (metal.image and metal.image.block) or nil;
			ore_image = 'default_stone.png^sorcery_' .. name .. '_ore.png';
			lump_image = (metal.image and metal.image.lump) or nil;
			armor_weight = metal.armor_weight;
			armor_protection = metal.armor_protection;
		}
	end
	local ti = (metal.image and metal.image.tool)

Added models/sorcery-runeforge.obj version [b897e815aa].































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
# Blender v2.82 (sub 7) OBJ File: 'amulet-enchanter.blend'
# www.blender.org
mtllib sorcery-runeforge.mtl
o diamond_Cube.006
v 0.420548 -0.245840 -0.001136
v 0.420548 -0.114994 -0.001136
v 0.420548 -0.245840 0.133356
v 0.420548 -0.114994 0.133356
v 0.286057 -0.245840 -0.001136
v 0.286057 -0.114994 -0.001136
v 0.286057 -0.245840 0.133356
v 0.286057 -0.114994 0.133356
v -0.278808 -0.245840 -0.001135
v -0.278808 -0.114994 -0.001135
v -0.278808 -0.245840 0.133356
v -0.278808 -0.114994 0.133356
v -0.413300 -0.245840 -0.001135
v -0.413300 -0.114994 -0.001135
v -0.413300 -0.245840 0.133356
v -0.413300 -0.114994 0.133356
v 0.306135 -0.355294 -0.054439
v 0.306135 -0.361149 -0.054439
v 0.300638 -0.361149 -0.056456
v 0.300638 -0.355294 -0.056456
v 0.303675 -0.355294 -0.047737
v 0.303675 -0.361149 -0.047737
v 0.298178 -0.361149 -0.049755
v 0.298178 -0.355294 -0.049755
v 0.321577 -0.357530 -0.481200
v 0.321577 -0.363385 -0.481200
v 0.327413 -0.363385 -0.480719
v 0.327413 -0.357530 -0.480719
v 0.322164 -0.357530 -0.488315
v 0.322164 -0.363385 -0.488315
v 0.327999 -0.363385 -0.487834
v 0.327999 -0.357530 -0.487834
v 0.014215 -0.387963 -0.150431
v 0.014215 -0.397481 -0.081273
v -0.006996 -0.387963 -0.099224
v -0.034687 -0.397481 -0.101529
v -0.036992 -0.387963 -0.129220
v -0.054943 -0.397481 -0.150431
v -0.036992 -0.387963 -0.171641
v -0.034687 -0.397481 -0.199332
v -0.006996 -0.387963 -0.201637
v 0.014215 -0.397481 -0.219588
v 0.035425 -0.387963 -0.201637
v 0.063117 -0.397481 -0.199332
v 0.065421 -0.387963 -0.171641
v 0.083373 -0.397481 -0.150431
v 0.065421 -0.387963 -0.129220
v 0.063117 -0.397481 -0.101529
v 0.035425 -0.387963 -0.099224
v 0.014215 -0.426065 -0.150431
v -0.013476 -0.407014 -0.083577
v 0.014215 -0.416548 -0.081273
v -0.006996 -0.426065 -0.099224
v -0.052638 -0.407014 -0.122739
v -0.034687 -0.416548 -0.101529
v -0.036992 -0.426065 -0.129220
v -0.052638 -0.407014 -0.178122
v -0.054943 -0.416548 -0.150431
v -0.036992 -0.426065 -0.171641
v -0.013477 -0.407014 -0.217284
v -0.034687 -0.416548 -0.199332
v -0.006996 -0.426065 -0.201637
v 0.041906 -0.407014 -0.217284
v 0.014215 -0.416548 -0.219588
v 0.035425 -0.426065 -0.201637
v 0.081068 -0.407014 -0.178122
v 0.063117 -0.416548 -0.199332
v 0.065421 -0.426065 -0.171641
v 0.081068 -0.407014 -0.122739
v 0.083373 -0.416548 -0.150431
v 0.065421 -0.426065 -0.129220
v 0.041906 -0.407014 -0.083578
v 0.063117 -0.416548 -0.101529
v 0.035425 -0.426065 -0.099224
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 0.000000
vt 0.000000 1.000000
vt 0.000000 0.000000
vt 0.509188 0.962780
vt 0.490812 0.985184
vt 0.490812 0.962780
vt 0.490812 0.509188
vt 0.509188 0.490812
vt 0.509188 0.509188
vt 0.509188 0.962780
vt 0.490812 0.985184
vt 0.509188 0.985184
vt 0.490812 0.985184
vt 0.490812 0.962780
vt 0.509188 0.985184
vt 0.509188 0.962780
vt 0.509188 0.962780
vt 0.490812 0.985184
vt 0.490812 0.962780
vt 0.490812 0.509188
vt 0.509188 0.490812
vt 0.509188 0.509188
vt 0.509188 0.962780
vt 0.490812 0.985184
vt 0.509188 0.985184
vt 0.490812 0.985184
vt 0.490812 0.962780
vt 0.509188 0.985184
vt 0.509188 0.962780
vt 0.655476 0.954220
vt 0.612901 0.851434
vt 0.794814 0.836294
vt 0.809954 0.654382
vt 0.912740 0.696957
vt 0.927879 0.515045
vt 0.809954 0.375708
vt 0.912740 0.333132
vt 0.794814 0.193796
vt 0.612901 0.178655
vt 0.655476 0.075870
vt 0.473564 0.060730
vt 0.334227 0.178655
vt 0.291652 0.075870
vt 0.152315 0.193796
vt 0.137175 0.375708
vt 0.034389 0.333132
vt 0.019249 0.515045
vt 0.137175 0.654382
vt 0.034389 0.696957
vt 0.152315 0.836294
vt 0.334227 0.851434
vt 0.291652 0.954220
vt 0.473564 0.969360
vt 0.473564 0.515045
vt 0.612901 0.851434
vt 0.794814 0.836294
vt 0.809954 0.654382
vt 0.927879 0.515045
vt 0.809954 0.375708
vt 0.794814 0.193796
vt 0.612901 0.178655
vt 0.473564 0.060730
vt 0.334227 0.178655
vt 0.152315 0.193796
vt 0.137175 0.375708
vt 0.019249 0.515045
vt 0.137175 0.654382
vt 0.152315 0.836294
vt 0.334227 0.851434
vt 0.473564 0.969360
vt 0.473564 0.515045
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 1.000000
vt 0.509188 0.985184
vt 0.490812 0.490812
vt 0.490812 0.962780
vt 0.509188 0.985184
vt 0.490812 0.490812
vt 0.490812 0.962780
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
vn -0.3445 0.0000 0.9388
vn -0.9388 0.0000 -0.3446
vn 0.9388 0.0000 0.3446
vn 0.0822 0.0000 -0.9966
vn 0.9966 0.0000 0.0822
vn -0.9966 0.0000 -0.0822
vn -0.2858 0.6644 0.6906
vn -0.3312 0.8835 0.3312
vn -0.6904 0.6644 0.2862
vn -0.4684 0.8835 0.0000
vn -0.6906 0.6644 -0.2858
vn -0.3312 0.8835 -0.3312
vn -0.2862 0.6644 -0.6904
vn -0.0000 0.8835 -0.4684
vn 0.2858 0.6644 -0.6906
vn 0.3312 0.8835 -0.3312
vn 0.6904 0.6644 -0.2862
vn 0.4684 0.8835 0.0000
vn 0.6906 0.6644 0.2858
vn 0.3312 0.8835 0.3312
vn 0.2862 0.6644 0.6904
vn 0.0000 0.8835 0.4684
vn -0.2858 -0.6644 0.6906
vn -0.3312 -0.8835 0.3312
vn -0.6904 -0.6644 0.2862
vn -0.4684 -0.8835 0.0000
vn -0.6906 -0.6644 -0.2858
vn -0.3312 -0.8835 -0.3312
vn -0.2862 -0.6644 -0.6904
vn -0.0000 -0.8835 -0.4684
vn 0.2858 -0.6644 -0.6906
vn 0.3312 -0.8835 -0.3312
vn 0.6904 -0.6644 -0.2862
vn 0.4684 -0.8835 -0.0000
vn 0.6906 -0.6644 0.2858
vn 0.3312 -0.8835 0.3312
vn 0.2862 -0.6644 0.6904
vn 0.0000 -0.8835 0.4684
vn 0.7633 0.0000 -0.6460
vn 0.9966 0.0000 0.0829
vn 0.6460 0.0000 0.7633
vn 0.0829 0.0000 0.9966
vn -0.7633 0.0000 0.6460
vn -0.9966 0.0000 -0.0829
vn -0.6460 0.0000 -0.7633
vn 0.0829 0.0000 -0.9966
vn -0.3446 0.0000 0.9388
vn -0.2862 0.6644 0.6904
vn -0.6906 0.6644 0.2858
vn -0.6904 0.6644 -0.2862
vn -0.2858 0.6644 -0.6906
vn 0.2862 0.6644 -0.6904
vn 0.6906 0.6644 -0.2858
vn 0.6904 0.6644 0.2862
vn 0.2858 0.6644 0.6906
vn -0.2862 -0.6644 0.6904
vn -0.6906 -0.6644 0.2858
vn -0.6904 -0.6644 -0.2862
vn -0.2858 -0.6644 -0.6906
vn 0.2862 -0.6644 -0.6904
vn 0.6906 -0.6644 -0.2858
vn 0.6904 -0.6644 0.2862
vn 0.2858 -0.6644 0.6906
vn 0.6460 0.0000 -0.7633
vn 0.9966 0.0000 -0.0829
vn 0.7633 0.0000 0.6460
vn -0.0829 0.0000 0.9966
vn -0.6460 0.0000 0.7633
vn -0.9966 0.0000 0.0829
vn -0.7633 0.0000 -0.6460
vn -0.0829 0.0000 -0.9966
g diamond_Cube.006_diamond.001
usemtl diamond.001
s off
f 2/1/1 3/2/1 1/3/1
f 4/4/2 7/5/2 3/6/2
f 8/7/3 5/8/3 7/9/3
f 6/10/4 1/11/4 5/12/4
f 7/13/5 1/11/5 3/6/5
f 4/4/6 6/14/6 8/15/6
f 10/16/1 11/17/1 9/18/1
f 12/19/2 15/20/2 11/21/2
f 16/22/3 13/23/3 15/24/3
f 14/25/4 9/26/4 13/27/4
f 15/28/5 9/26/5 11/21/5
f 12/19/6 14/29/6 16/30/6
f 20/31/6 21/32/6 17/33/6
f 22/34/7 24/35/7 23/36/7
f 19/37/5 22/38/5 23/39/5
f 19/37/8 24/40/8 20/41/8
f 17/33/9 22/42/9 18/43/9
f 28/44/6 29/45/6 25/46/6
f 30/47/10 32/48/10 31/49/10
f 27/50/5 30/51/5 31/52/5
f 27/50/11 32/53/11 28/54/11
f 25/46/12 30/55/12 26/56/12
f 51/57/13 35/58/13 36/59/13
f 36/59/14 35/58/14 37/60/14
f 54/61/15 37/60/15 38/62/15
f 38/62/16 37/60/16 39/63/16
f 57/64/17 39/63/17 40/65/17
f 40/65/18 39/63/18 41/66/18
f 60/67/19 41/66/19 42/68/19
f 42/68/20 41/66/20 43/69/20
f 63/70/21 43/69/21 44/71/21
f 44/71/22 43/69/22 45/72/22
f 66/73/23 45/72/23 46/74/23
f 46/74/24 45/72/24 47/75/24
f 69/76/25 47/75/25 48/77/25
f 48/77/26 47/75/26 49/78/26
f 72/79/27 49/78/27 34/80/27
f 34/80/28 49/78/28 35/58/28
f 35/58/5 33/81/5 49/78/5
f 33/81/5 35/58/5 37/60/5
f 33/81/5 37/60/5 39/63/5
f 33/81/5 39/63/5 41/66/5
f 33/81/5 41/66/5 43/69/5
f 33/81/5 43/69/5 45/72/5
f 33/81/5 45/72/5 47/75/5
f 33/81/5 47/75/5 49/78/5
f 53/82/29 51/57/29 55/83/29
f 55/83/30 56/84/30 53/82/30
f 56/84/31 54/61/31 58/85/31
f 58/85/32 59/86/32 56/84/32
f 59/86/33 57/64/33 61/87/33
f 61/87/34 62/88/34 59/86/34
f 62/88/35 60/67/35 64/89/35
f 64/89/36 65/90/36 62/88/36
f 65/90/37 63/70/37 67/91/37
f 67/91/38 68/92/38 65/90/38
f 68/92/39 66/73/39 70/93/39
f 70/93/40 71/94/40 68/92/40
f 71/94/41 69/76/41 73/95/41
f 73/95/42 74/96/42 71/94/42
f 74/96/43 72/79/43 52/97/43
f 52/97/44 53/82/44 74/96/44
f 53/82/6 74/96/6 50/98/6
f 50/98/6 56/84/6 53/82/6
f 50/98/6 59/86/6 56/84/6
f 50/98/6 62/88/6 59/86/6
f 50/98/6 65/90/6 62/88/6
f 50/98/6 68/92/6 65/90/6
f 50/98/6 71/94/6 68/92/6
f 50/98/6 74/96/6 71/94/6
f 67/91/45 44/71/45 66/73/45
f 70/93/46 46/74/46 69/76/46
f 73/95/47 48/77/47 72/79/47
f 34/80/48 52/97/48 72/79/48
f 55/83/49 36/59/49 54/61/49
f 58/85/50 38/62/50 57/64/50
f 61/87/51 40/65/51 60/67/51
f 64/89/52 42/68/52 63/70/52
f 2/1/1 4/99/1 3/2/1
f 4/4/2 8/100/2 7/5/2
f 8/7/3 6/101/3 5/8/3
f 6/10/4 2/102/4 1/11/4
f 7/13/5 5/103/5 1/11/5
f 4/4/6 2/102/6 6/14/6
f 10/16/1 12/104/1 11/17/1
f 12/19/2 16/105/2 15/20/2
f 16/22/3 14/106/3 13/23/3
f 14/25/4 10/107/4 9/26/4
f 15/28/5 13/108/5 9/26/5
f 12/19/6 10/107/6 14/29/6
f 20/31/6 24/109/6 21/32/6
f 22/34/53 21/110/53 24/35/53
f 19/37/5 18/111/5 22/38/5
f 19/37/8 23/39/8 24/40/8
f 17/33/9 21/32/9 22/42/9
f 28/44/6 32/112/6 29/45/6
f 30/47/10 29/113/10 32/48/10
f 27/50/5 26/114/5 30/51/5
f 27/50/11 31/52/11 32/53/11
f 25/46/12 29/45/12 30/55/12
f 51/57/54 34/80/54 35/58/54
f 54/61/55 36/59/55 37/60/55
f 57/64/56 38/62/56 39/63/56
f 60/67/57 40/65/57 41/66/57
f 63/70/58 42/68/58 43/69/58
f 66/73/59 44/71/59 45/72/59
f 69/76/60 46/74/60 47/75/60
f 72/79/61 48/77/61 49/78/61
f 53/82/62 52/97/62 51/57/62
f 56/84/63 55/83/63 54/61/63
f 59/86/64 58/85/64 57/64/64
f 62/88/65 61/87/65 60/67/65
f 65/90/66 64/89/66 63/70/66
f 68/92/67 67/91/67 66/73/67
f 71/94/68 70/93/68 69/76/68
f 74/96/69 73/95/69 72/79/69
f 67/91/70 63/70/70 44/71/70
f 70/93/71 66/73/71 46/74/71
f 73/95/72 69/76/72 48/77/72
f 34/80/73 51/57/73 52/97/73
f 55/83/74 51/57/74 36/59/74
f 58/85/75 54/61/75 38/62/75
f 61/87/76 57/64/76 40/65/76
f 64/89/77 60/67/77 42/68/77
o tin_Cube.012
v -0.500000 -0.425626 0.500000
v -0.500000 -0.500000 0.500000
v -0.500000 -0.425626 -0.500000
v -0.500000 -0.500000 -0.500000
v 0.500000 -0.425626 0.500000
v 0.500000 -0.500000 0.500000
v 0.500000 -0.425626 -0.500000
v 0.500000 -0.500000 -0.500000
v -0.213439 -0.425626 -0.500000
v 0.213439 -0.425626 -0.500000
v 0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.217716
v 0.213439 -0.425626 0.217716
v 0.213439 -0.370377 -0.438150
v 0.500000 -0.370377 -0.438150
v -0.500000 -0.370377 0.500000
v -0.500000 -0.370377 -0.438150
v 0.500000 -0.370377 0.500000
v -0.213439 -0.370377 0.500000
v -0.213439 -0.370377 -0.438150
v 0.213439 -0.370377 0.500000
v -0.213439 -0.370377 0.217716
v 0.213439 -0.370377 0.217716
v 0.213439 -0.500000 -0.500000
v -0.213439 -0.500000 -0.500000
v -0.213439 -0.500000 0.500000
v 0.213439 -0.500000 0.500000
v -0.372690 -0.370681 -0.462649
v -0.372690 -0.351130 -0.462649
v -0.332973 -0.370681 -0.284363
v -0.332973 -0.351130 -0.284363
v -0.442866 -0.370681 -0.447016
v -0.442866 -0.351130 -0.447016
v -0.403150 -0.370681 -0.268730
v -0.403150 -0.351130 -0.268730
v -0.340052 -0.370681 -0.316137
v -0.365611 -0.370681 -0.430875
v -0.365611 -0.351130 -0.430875
v -0.340052 -0.351130 -0.316137
v -0.435788 -0.370681 -0.415242
v -0.410228 -0.370681 -0.300504
v -0.410228 -0.351130 -0.300504
v -0.435788 -0.351130 -0.415242
v -0.344824 -0.367932 -0.315074
v -0.370383 -0.367932 -0.429812
v -0.370383 -0.353878 -0.429812
v -0.344824 -0.353878 -0.315074
v -0.431016 -0.367932 -0.416305
v -0.405456 -0.367932 -0.301567
v -0.405456 -0.353878 -0.301567
v -0.431016 -0.353878 -0.416305
v -0.368062 -0.370681 -0.276547
v -0.368062 -0.351130 -0.276547
v -0.377143 -0.366977 -0.274524
v -0.377143 -0.354833 -0.274524
v -0.394068 -0.354833 -0.270754
v -0.394068 -0.366977 -0.270754
v -0.342055 -0.366977 -0.282340
v -0.342055 -0.354833 -0.282340
v -0.358980 -0.354833 -0.278570
v -0.358980 -0.366977 -0.278570
v 0.399469 -0.351846 -0.298733
v 0.382242 -0.351846 -0.251795
v 0.365014 -0.351846 -0.204857
v 0.347787 -0.351846 -0.157918
v 0.347787 -0.364596 -0.157918
v 0.365014 -0.364596 -0.204857
v 0.382242 -0.364596 -0.251795
v 0.399469 -0.364596 -0.298733
v 0.335817 -0.364596 -0.162311
v 0.353045 -0.364596 -0.209250
v 0.370272 -0.364596 -0.256188
v 0.387500 -0.364596 -0.303126
v 0.335817 -0.351846 -0.162311
v 0.353045 -0.351846 -0.209250
v 0.370272 -0.351846 -0.256188
v 0.387500 -0.351846 -0.303126
v 0.404517 -0.346469 -0.296881
v 0.387289 -0.346469 -0.249942
v 0.370062 -0.346469 -0.203004
v 0.352834 -0.346469 -0.156066
v 0.352834 -0.369973 -0.156066
v 0.370062 -0.369973 -0.203004
v 0.387289 -0.369973 -0.249942
v 0.404517 -0.369973 -0.296881
v 0.330770 -0.369973 -0.164164
v 0.347997 -0.369973 -0.211102
v 0.365225 -0.369973 -0.258041
v 0.382452 -0.369973 -0.304979
v 0.330770 -0.346469 -0.164164
v 0.347997 -0.346469 -0.211102
v 0.365225 -0.346469 -0.258041
v 0.382452 -0.346469 -0.304979
v 0.296653 -0.354083 -0.220873
v 0.300762 -0.354083 -0.270704
v 0.304871 -0.354083 -0.320535
v 0.308979 -0.354083 -0.370366
v 0.308979 -0.366833 -0.370366
v 0.304871 -0.366833 -0.320535
v 0.300762 -0.366833 -0.270704
v 0.296653 -0.366833 -0.220873
v 0.321686 -0.366833 -0.369318
v 0.317578 -0.366833 -0.319487
v 0.313469 -0.366833 -0.269657
v 0.309360 -0.366833 -0.219826
v 0.321686 -0.354083 -0.369318
v 0.317578 -0.354083 -0.319487
v 0.313469 -0.354083 -0.269657
v 0.309360 -0.354083 -0.219826
v 0.291294 -0.348706 -0.221315
v 0.295403 -0.348706 -0.271146
v 0.299512 -0.348706 -0.320977
v 0.303621 -0.348706 -0.370808
v 0.303621 -0.372210 -0.370808
v 0.299512 -0.372210 -0.320977
v 0.295403 -0.372210 -0.271146
v 0.291294 -0.372210 -0.221315
v 0.327045 -0.372210 -0.368877
v 0.322936 -0.372210 -0.319046
v 0.318827 -0.372210 -0.269215
v 0.314719 -0.372210 -0.219384
v 0.327045 -0.348706 -0.368877
v 0.322936 -0.348706 -0.319046
v 0.318827 -0.348706 -0.269215
v 0.314719 -0.348706 -0.219384
vt 1.001223 0.502243
vt 0.063073 0.557492
vt 1.001223 0.557492
vt 0.001223 0.502243
vt 1.001223 0.427869
vt 0.001223 0.427869
vt 1.001223 0.502243
vt 0.001223 0.427869
vt 1.001223 0.427869
vt 1.000000 0.001223
vt 0.713439 0.063073
vt 0.713439 0.001223
vt 0.000000 0.063073
vt 0.286561 0.063073
vt 0.286561 0.718939
vt 0.713439 0.718939
vt 1.000000 0.063073
vt 0.718939 0.502243
vt 0.063073 0.557492
vt 0.718939 0.557492
vt 0.286561 0.001223
vt 0.000000 0.001223
vt 0.713439 0.502243
vt 1.000000 0.557492
vt 1.000000 0.502243
vt 0.718939 0.502243
vt 0.063073 0.557492
vt 0.001223 0.502243
vt 0.063073 0.557492
vt 0.001223 0.502243
vt 0.000000 0.502243
vt 0.286561 0.557492
vt 0.286561 0.502243
vt 0.000000 0.427869
vt 0.286561 0.502243
vt 0.000000 0.502243
vt 0.713439 0.502243
vt 1.000000 0.427869
vt 1.000000 0.502243
vt 1.000000 0.427869
vt 0.286561 0.001223
vt 0.000000 1.001223
vt 0.286561 1.001223
vt 0.000000 0.427869
vt 0.713439 0.001223
vt 1.000000 1.001223
vt 1.000000 0.001223
vt 0.999829 0.662809
vt 0.978089 0.648872
vt 0.972343 0.657380
vt 0.979702 0.861885
vt 0.987357 0.839466
vt 0.999233 0.861012
vt 0.985711 0.828547
vt 0.988586 0.811877
vt 0.997554 0.756241
vt 0.969323 0.769223
vt 0.985935 0.698828
vt 0.999829 0.755133
vt 0.999233 0.755475
vt 0.996086 0.860985
vt 0.983395 0.692955
vt 0.969677 0.734623
vt 0.983602 0.861551
vt 0.986551 0.726822
vt 0.983542 0.721703
vt 0.998948 0.662444
vt 0.987706 0.807084
vt 0.996073 0.753013
vt 0.980210 0.763995
vt 0.969323 0.737148
vt 0.974311 0.657905
vt 0.986735 0.703580
vt 0.987540 0.717968
vt 0.982855 0.716549
vt 0.983370 0.669093
vt 0.982919 0.665161
vt 0.980368 0.685948
vt 0.977074 0.664653
vt 0.985462 0.279805
vt 0.987395 0.284453
vt 0.984486 0.268815
vt 0.987664 0.125434
vt 0.984486 0.105004
vt 0.984636 0.120963
vt 0.988198 0.142950
vt 0.987395 0.120641
vt 0.984304 0.125947
vt 0.989651 0.044410
vt 0.975573 0.000171
vt 0.975772 0.013925
vt 0.989651 0.208221
vt 0.975573 0.163982
vt 0.975772 0.177737
vt 0.980597 0.062881
vt 0.971738 0.049860
vt 0.981628 0.068959
vt 0.980597 0.226692
vt 0.971738 0.213672
vt 0.981628 0.232771
vt 0.987664 0.289246
vt 0.984636 0.284774
vt 0.989651 0.327452
vt 0.987700 0.048380
vt 0.987700 0.212192
vt 0.988198 0.306761
vt 0.969323 0.210084
vt 0.969323 0.046273
vt 0.985462 0.115994
vt 0.989651 0.163641
vt 0.984303 0.289758
vt 0.989856 0.445164
vt 0.975734 0.487991
vt 0.987868 0.440524
vt 0.988120 0.508024
vt 0.987471 0.530245
vt 0.989856 0.488333
vt 0.988402 0.525737
vt 0.984797 0.545717
vt 0.985774 0.534633
vt 0.981165 0.586922
vt 0.972091 0.599673
vt 0.969323 0.603894
vt 0.988120 0.347485
vt 0.984872 0.369477
vt 0.988402 0.365198
vt 0.989856 0.605704
vt 0.975734 0.648531
vt 0.987868 0.601064
vt 0.984744 0.364875
vt 0.984797 0.385178
vt 0.987471 0.369706
vt 0.981165 0.426383
vt 0.981686 0.420475
vt 0.972091 0.439134
vt 0.981686 0.581014
vt 0.989856 0.327793
vt 0.984872 0.530016
vt 0.969323 0.443354
vt 0.985774 0.374093
vt 0.976924 0.635040
vt 0.984744 0.525415
vt 0.976924 0.474501
vt 0.286561 1.001223
vt 0.000000 1.001223
vt 1.000000 1.001223
vt 0.713439 1.001223
vt 0.001223 0.502243
vt 0.713439 0.557492
vt 0.718939 0.557492
vt 1.001223 0.557492
vt 0.000000 0.557492
vt 0.286561 0.427869
vt 0.713439 0.427869
vt 0.713439 0.427869
vt 0.000000 0.001223
vt 0.286561 0.427869
vt 0.713439 1.001223
vt 0.981978 0.702067
vt 0.986498 0.687181
vn 1.0000 0.0000 -0.0000
vn -1.0000 0.0000 0.0000
vn -0.0000 0.7458 -0.6662
vn 0.0000 1.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.9761 0.0000 -0.2174
vn -0.9761 0.0000 0.2174
vn -0.2174 0.0000 -0.9761
vn 0.2174 0.0000 0.9761
vn -0.2175 0.0000 -0.9761
vn 0.3446 0.0000 -0.9388
vn -0.3445 -0.0000 0.9388
vn -0.3446 0.0000 0.9388
vn 0.3445 0.0000 -0.9388
vn -0.9388 0.0000 -0.3446
vn 0.9388 0.0000 0.3446
vn -0.0822 0.0000 0.9966
vn 0.0822 -0.0000 -0.9966
vn 0.9966 0.0000 0.0822
vn -0.9966 0.0000 -0.0822
g tin_Cube.012_tin.001
usemtl tin.001
s off
f 79/115/78 90/116/78 93/117/78
f 81/118/78 80/119/78 82/120/78
f 75/121/79 78/122/79 76/123/79
f 77/124/80 95/125/80 83/126/80
f 90/127/81 89/128/81 98/129/81
f 97/130/81 95/125/81 92/131/81
f 87/132/78 95/133/78 97/134/78
f 84/135/80 90/127/80 81/136/80
f 86/137/82 91/138/82 75/139/82
f 88/140/79 89/141/79 84/142/79
f 75/121/79 92/143/79 77/144/79
f 79/145/82 96/146/82 85/147/82
f 82/148/83 84/149/83 81/150/83
f 83/151/83 78/152/83 77/153/83
f 76/154/82 86/137/82 75/139/82
f 99/155/84 80/156/84 102/157/84
f 85/147/82 80/158/82 79/145/82
f 100/159/84 76/160/84 78/161/84
f 114/162/85 105/163/85 111/164/85
f 118/165/86 107/166/86 115/167/86
f 108/168/87 103/169/87 107/166/87
f 112/170/84 107/166/84 103/169/84
f 113/171/81 108/168/81 118/165/81
f 128/172/81 114/162/81 117/173/81
f 115/167/88 120/174/88 123/175/88
f 127/176/84 116/177/84 111/164/84
f 115/167/88 126/178/88 118/165/88
f 110/179/86 116/177/86 109/180/86
f 111/164/87 122/181/87 114/162/87
f 104/182/85 112/170/85 103/169/85
f 114/162/87 125/183/87 117/173/87
f 113/171/88 126/178/88 121/184/88
f 112/170/88 121/184/88 120/174/88
f 116/177/89 125/183/89 124/185/89
f 116/177/87 119/186/87 111/164/87
f 130/187/88 127/176/88 128/172/88
f 131/188/88 128/172/88 110/179/88
f 132/189/88 110/179/88 109/180/88
f 127/176/88 132/189/88 109/180/88
f 134/190/88 105/163/88 106/191/88
f 128/172/88 134/190/88 106/191/88
f 136/192/88 128/172/88 127/176/88
f 133/193/88 127/176/88 105/163/88
f 139/194/90 166/195/90 155/196/90
f 143/197/91 163/198/91 159/199/91
f 138/200/92 167/201/92 151/202/92
f 144/203/90 164/204/90 148/205/90
f 141/206/92 156/207/92 140/208/92
f 137/209/90 168/210/90 153/211/90
f 145/212/92 165/213/92 161/214/92
f 142/215/93 155/196/93 158/216/93
f 167/201/81 153/211/81 168/210/81
f 166/195/81 156/207/81 155/196/81
f 163/198/94 168/210/94 164/204/94
f 161/214/94 166/195/94 162/217/94
f 159/199/84 164/204/84 160/218/84
f 157/219/84 162/217/84 158/216/84
f 153/211/95 159/199/95 160/218/95
f 156/207/95 158/216/95 155/196/95
f 142/215/93 162/217/93 146/220/93
f 140/208/92 165/213/92 149/221/92
f 141/206/91 161/214/91 157/219/91
f 148/205/93 168/210/93 152/222/93
f 144/203/93 153/211/93 160/218/93
f 147/223/92 167/201/92 163/198/92
f 143/197/92 154/224/92 138/200/92
f 146/220/93 166/195/93 150/225/93
f 171/226/96 198/227/96 187/228/96
f 175/229/97 195/230/97 191/231/97
f 170/232/97 199/233/97 183/234/97
f 176/235/96 196/236/96 180/237/96
f 173/238/97 188/239/97 172/240/97
f 169/241/96 200/242/96 185/243/96
f 177/244/97 197/245/97 193/246/97
f 174/247/96 187/228/96 190/248/96
f 199/233/81 185/243/81 200/242/81
f 198/227/81 188/239/81 187/228/81
f 195/230/98 200/242/98 196/236/98
f 193/246/98 198/227/98 194/249/98
f 192/250/84 195/230/84 196/236/84
f 189/251/84 194/249/84 190/248/84
f 186/252/99 192/250/99 185/243/99
f 188/239/99 190/248/99 187/228/99
f 174/247/96 194/249/96 178/253/96
f 172/240/97 197/245/97 181/254/97
f 173/238/97 193/246/97 189/251/97
f 180/237/96 200/242/96 184/255/96
f 176/235/96 185/243/96 192/250/96
f 179/256/97 199/233/97 195/230/97
f 175/229/97 186/252/97 170/232/97
f 178/253/96 198/227/96 182/257/96
f 79/115/78 81/118/78 90/116/78
f 81/118/78 79/115/78 80/119/78
f 75/121/79 77/144/79 78/122/79
f 77/124/80 92/131/80 95/125/80
f 98/129/81 96/258/81 93/259/81
f 93/259/81 90/127/81 98/129/81
f 92/131/81 91/260/81 97/130/81
f 91/260/81 94/261/81 97/130/81
f 87/132/78 83/262/78 95/133/78
f 84/135/80 89/128/80 90/127/80
f 86/137/82 94/263/82 91/138/82
f 88/140/79 98/264/79 89/141/79
f 75/121/79 91/265/79 92/143/79
f 79/145/82 93/266/82 96/146/82
f 82/148/83 99/267/83 84/149/83
f 83/151/83 100/268/83 78/152/83
f 76/154/82 101/269/82 86/137/82
f 99/155/84 82/270/84 80/156/84
f 85/147/82 102/271/82 80/158/82
f 100/159/84 101/272/84 76/160/84
f 114/162/85 106/191/85 105/163/85
f 118/165/86 108/168/86 107/166/86
f 108/168/87 104/182/87 103/169/87
f 112/170/84 115/167/84 107/166/84
f 113/171/81 104/182/81 108/168/81
f 117/173/81 110/179/81 128/172/81
f 128/172/81 106/191/81 114/162/81
f 115/167/88 112/170/88 120/174/88
f 111/164/84 105/163/84 127/176/84
f 127/176/84 109/180/84 116/177/84
f 115/167/88 123/175/88 126/178/88
f 110/179/86 117/173/86 116/177/86
f 111/164/87 119/186/87 122/181/87
f 104/182/85 113/171/85 112/170/85
f 114/162/87 122/181/87 125/183/87
f 113/171/88 118/165/88 126/178/88
f 112/170/88 113/171/88 121/184/88
f 116/177/87 117/173/87 125/183/87
f 116/177/87 124/185/87 119/186/87
f 130/187/88 129/273/88 127/176/88
f 131/188/88 130/187/88 128/172/88
f 132/189/88 131/188/88 110/179/88
f 127/176/88 129/273/88 132/189/88
f 134/190/88 133/193/88 105/163/88
f 128/172/88 135/274/88 134/190/88
f 136/192/88 135/274/88 128/172/88
f 133/193/88 136/192/88 127/176/88
f 139/194/93 150/225/93 166/195/93
f 143/197/92 147/223/92 163/198/92
f 138/200/92 154/224/92 167/201/92
f 144/203/93 160/218/93 164/204/93
f 141/206/91 157/219/91 156/207/91
f 137/209/90 152/222/90 168/210/90
f 145/212/91 149/221/91 165/213/91
f 142/215/93 139/194/93 155/196/93
f 167/201/81 154/224/81 153/211/81
f 166/195/81 165/213/81 156/207/81
f 163/198/94 167/201/94 168/210/94
f 161/214/94 165/213/94 166/195/94
f 159/199/84 163/198/84 164/204/84
f 157/219/84 161/214/84 162/217/84
f 153/211/95 154/224/95 159/199/95
f 156/207/95 157/219/95 158/216/95
f 142/215/90 158/216/90 162/217/90
f 140/208/92 156/207/92 165/213/92
f 141/206/92 145/212/92 161/214/92
f 148/205/93 164/204/93 168/210/93
f 144/203/93 137/209/93 153/211/93
f 147/223/92 151/202/92 167/201/92
f 143/197/92 159/199/92 154/224/92
f 146/220/90 162/217/90 166/195/90
f 171/226/96 182/257/96 198/227/96
f 175/229/97 179/256/97 195/230/97
f 170/232/97 186/252/97 199/233/97
f 176/235/96 192/250/96 196/236/96
f 173/238/97 189/251/97 188/239/97
f 169/241/96 184/255/96 200/242/96
f 177/244/97 181/254/97 197/245/97
f 174/247/96 171/226/96 187/228/96
f 199/233/81 186/252/81 185/243/81
f 198/227/81 197/245/81 188/239/81
f 195/230/98 199/233/98 200/242/98
f 193/246/98 197/245/98 198/227/98
f 192/250/84 191/231/84 195/230/84
f 189/251/84 193/246/84 194/249/84
f 186/252/99 191/231/99 192/250/99
f 188/239/99 189/251/99 190/248/99
f 174/247/96 190/248/96 194/249/96
f 172/240/97 188/239/97 197/245/97
f 173/238/97 177/244/97 193/246/97
f 180/237/96 196/236/96 200/242/96
f 176/235/96 169/241/96 185/243/96
f 179/256/97 183/234/97 199/233/97
f 175/229/97 191/231/97 186/252/97
f 178/253/96 194/249/96 198/227/96
o iridium_Cube.013
v -0.213439 -0.425626 -0.500000
v 0.213439 -0.425626 -0.500000
v 0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.217716
v 0.213439 -0.425626 0.217716
v 0.213439 -0.500000 -0.500000
v -0.213439 -0.500000 -0.500000
v -0.213439 -0.500000 0.500000
v 0.213439 -0.500000 0.500000
v 0.327323 -0.355294 -0.112168
v 0.327323 -0.361149 -0.112168
v 0.321826 -0.361149 -0.114185
v 0.321826 -0.355294 -0.114185
v 0.306135 -0.355294 -0.054439
v 0.306135 -0.361149 -0.054439
v 0.300638 -0.361149 -0.056456
v 0.300638 -0.355294 -0.056456
v 0.316524 -0.357530 -0.419914
v 0.316524 -0.363385 -0.419914
v 0.322359 -0.363385 -0.419433
v 0.322359 -0.357530 -0.419433
v 0.321577 -0.357530 -0.481200
v 0.321577 -0.363385 -0.481200
v 0.327413 -0.363385 -0.480719
v 0.327413 -0.357530 -0.480719
vt 0.999952 0.228735
vt 0.615457 0.000048
vt 0.999952 0.000048
vt 0.575613 0.000048
vt 0.615457 0.228735
vt 0.575613 0.228735
vt 0.039892 0.228735
vt 0.000048 0.000048
vt 0.039892 0.000048
vt 0.509188 0.769785
vt 0.490812 0.962780
vt 0.490812 0.769785
vt 0.490812 0.769785
vt 0.509188 0.962780
vt 0.509188 0.769785
vt 0.509188 0.769785
vt 0.490812 0.962780
vt 0.490812 0.769785
vt 0.509188 0.962780
vt 0.509188 0.769785
vt 0.490812 0.962780
vt 0.490812 0.769785
vt 0.490812 0.769785
vt 0.509188 0.962780
vt 0.509188 0.769785
vt 0.509188 0.962780
vt 0.490812 0.962780
vt 0.490812 0.769785
vt 0.509188 0.962780
vt 0.000048 0.228735
vt 0.509188 0.962780
vt 0.490812 0.962780
vt 0.509188 0.769785
vt 0.490812 0.962780
vn 0.0000 1.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.9388 0.0000 -0.3446
vn 0.9388 0.0000 0.3446
vn 0.9966 0.0000 0.0822
vn -0.9966 0.0000 -0.0822
g iridium_Cube.013_iridium.001
usemtl iridium.001
s off
f 206/275/100 201/276/100 205/277/100
f 208/278/101 202/279/101 207/280/101
f 210/281/102 204/282/102 209/283/102
f 207/280/103 209/283/103 208/278/103
f 213/284/104 218/285/104 214/286/104
f 211/287/105 216/288/105 212/289/105
f 214/290/100 215/291/100 211/287/100
f 212/292/103 217/293/103 213/284/103
f 221/294/106 226/295/106 222/296/106
f 219/297/107 224/298/107 220/299/107
f 219/297/100 226/300/100 223/301/100
f 220/302/103 225/303/103 221/294/103
f 206/275/100 202/279/100 201/276/100
f 208/278/101 201/276/101 202/279/101
f 210/281/102 203/304/102 204/282/102
f 207/280/103 210/281/103 209/283/103
f 213/284/104 217/293/104 218/285/104
f 211/287/105 215/291/105 216/288/105
f 214/290/100 218/305/100 215/291/100
f 212/292/103 216/306/103 217/293/103
f 221/294/106 225/303/106 226/295/106
f 219/297/107 223/301/107 224/298/107
f 219/297/100 222/307/100 226/300/100
f 220/302/103 224/308/103 225/303/103
o vidrium_Cube.014
v 0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.500000
v -0.213439 -0.425626 0.217716
v 0.213439 -0.425626 0.217716
v -0.213439 -0.370377 0.500000
v 0.213439 -0.370377 0.500000
v -0.213439 -0.370377 0.217716
v 0.213439 -0.370377 0.217716
v 0.213439 -0.235992 0.500000
v -0.213439 -0.235992 0.500000
v -0.213439 -0.235992 0.217716
v 0.213439 -0.235992 0.217716
v 0.213439 -0.206730 0.500000
v -0.213439 -0.206730 0.500000
v -0.213439 -0.206730 0.217716
v 0.213439 -0.206730 0.217716
v -0.344824 -0.367932 -0.315074
v -0.370383 -0.367932 -0.429812
v -0.370383 -0.353878 -0.429812
v -0.344824 -0.353878 -0.315074
v -0.431016 -0.367932 -0.416305
v -0.405456 -0.367932 -0.301567
v -0.405456 -0.353878 -0.301567
v -0.431016 -0.353878 -0.416305
vt 0.000000 0.189588
vt 1.000000 0.319013
vt 1.000000 0.189588
vt 1.000000 0.189588
vt 0.000000 0.319013
vt 0.000000 0.189588
vt 0.000000 0.319013
vt 1.000000 0.633822
vt 1.000000 0.319013
vt 0.000000 0.633822
vt 0.000000 0.830638
vt 1.000000 0.169362
vt 1.000000 0.830638
vt 0.000000 0.633822
vt 1.000000 0.702371
vt 1.000000 0.633822
vt 0.000000 0.702371
vt 0.584852 0.291778
vt 0.415148 -0.029360
vt 0.584852 -0.029360
vt 0.415148 0.291778
vt 0.584852 -0.029360
vt 0.415148 -0.029360
vt 0.291778 0.519198
vt -0.029360 0.480802
vt 0.291778 0.480802
vt -0.029360 0.519198
vt 0.291778 0.480802
vt -0.029360 0.480802
vt 0.000000 0.169362
vt 0.000000 0.702371
vt 1.000000 0.702371
vt 0.415148 0.291778
vt 0.584852 0.291778
vt -0.029360 0.519198
vt 0.291778 0.519198
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
vn -0.9761 0.0000 0.2174
vn 0.9761 0.0000 -0.2174
g vidrium_Cube.014_vidrium.001
usemtl vidrium.001
s off
f 227/309/108 231/310/108 228/311/108
f 229/312/109 234/313/109 230/314/109
f 232/315/108 236/316/108 231/310/108
f 233/317/109 238/318/109 234/313/109
f 239/319/110 241/320/110 240/321/110
f 235/322/108 240/323/108 236/316/108
f 237/324/109 242/325/109 238/318/109
f 249/326/110 245/327/110 250/328/110
f 243/329/111 247/330/111 244/331/111
f 249/332/112 247/333/112 248/334/112
f 245/335/113 243/336/113 244/337/113
f 227/309/108 232/315/108 231/310/108
f 229/312/109 233/317/109 234/313/109
f 232/315/108 235/322/108 236/316/108
f 233/317/109 237/324/109 238/318/109
f 239/319/110 242/338/110 241/320/110
f 235/322/108 239/339/108 240/323/108
f 237/324/109 241/340/109 242/325/109
f 249/326/110 246/341/110 245/327/110
f 243/329/111 248/342/111 247/330/111
f 249/332/112 250/343/112 247/333/112
f 245/335/113 246/344/113 243/336/113
o copper_Cube.015
v -0.213439 -0.370377 0.500000
v 0.213439 -0.370377 0.500000
v -0.213439 -0.370377 0.217716
v 0.213439 -0.370377 0.217716
v 0.213439 -0.235992 0.500000
v -0.213439 -0.235992 0.500000
v -0.213439 -0.235992 0.217716
v 0.213439 -0.235992 0.217716
v -0.259952 -0.370377 0.500000
v -0.259952 -0.370377 0.217716
v 0.259953 -0.370377 0.500000
v 0.259952 -0.370377 0.217716
v -0.259952 -0.235992 0.500000
v -0.259952 -0.235992 0.217716
v 0.259953 -0.235992 0.500000
v 0.259952 -0.235992 0.217716
v 0.213439 -0.206730 0.500000
v -0.213439 -0.206730 0.500000
v -0.213439 -0.206730 0.217716
v 0.213439 -0.206730 0.217716
v 0.213439 -0.370377 0.157013
v 0.213439 -0.235992 0.157013
v -0.213439 -0.370377 0.157013
v -0.213439 -0.235992 0.157013
v 0.259952 -0.370377 0.157013
v 0.259952 -0.235992 0.157013
v -0.259952 -0.370377 0.157013
v -0.259952 -0.235992 0.157013
v -0.363015 -0.163046 0.462842
v -0.363015 -0.192792 0.462842
v -0.363015 -0.163046 0.433096
v -0.363015 -0.192792 0.433096
v -0.336883 -0.163046 0.462842
v -0.336883 -0.192792 0.433096
v -0.336883 -0.192792 0.462842
v -0.336883 -0.163046 0.433096
v -0.363015 -0.372137 0.462842
v -0.363015 -0.372137 0.433096
v -0.336883 -0.372137 0.433096
v -0.336883 -0.372137 0.462842
v -0.233197 -0.192792 0.462842
v -0.259080 -0.192792 0.462842
v -0.233197 -0.163046 0.433096
v -0.259080 -0.163046 0.433096
v -0.259080 -0.192792 0.433096
v -0.233197 -0.192792 0.433096
v -0.259080 -0.163046 0.462842
v -0.233197 -0.163046 0.462842
v -0.233197 -0.008515 0.433096
v -0.259080 -0.008515 0.433096
v -0.259080 -0.008515 0.462842
v -0.233197 -0.008515 0.462842
v -0.233197 0.018727 0.433096
v -0.259080 0.018727 0.433096
v -0.259080 0.018727 0.462842
v -0.233197 0.018727 0.462842
v -0.369698 -0.008515 0.433096
v -0.369698 -0.008515 0.462842
v -0.369698 0.018727 0.433096
v -0.369698 0.018727 0.462842
v -0.093031 -0.008515 0.433096
v -0.093031 -0.008515 0.462841
v -0.093031 0.018727 0.433096
v -0.093031 0.018727 0.462841
v -0.064641 -0.008515 0.433096
v -0.064641 -0.008515 0.462841
v -0.064641 0.018727 0.433096
v -0.064641 0.018727 0.462841
v -0.093031 -0.058916 0.433096
v -0.093031 -0.058916 0.462841
v -0.093031 0.069128 0.433096
v -0.093031 0.069128 0.462841
v -0.064641 -0.058916 0.433096
v -0.064641 -0.058916 0.462841
v -0.064641 0.069128 0.433096
v -0.064641 0.069128 0.462841
v -0.093031 -0.083590 0.433096
v -0.093031 -0.083590 0.462841
v -0.093031 0.093801 0.433096
v -0.093031 0.093801 0.462841
v -0.064641 -0.083590 0.433096
v -0.064641 -0.083590 0.462841
v -0.064641 0.093801 0.433096
v -0.064641 0.093801 0.462841
v -0.363015 -0.192792 0.190009
v -0.363015 -0.163046 0.190009
v -0.336883 -0.163046 0.190009
v -0.336883 -0.192792 0.190009
v -0.363015 -0.192792 0.160571
v -0.363015 -0.163046 0.160571
v -0.336883 -0.163046 0.160571
v -0.336883 -0.192792 0.160571
v -0.363015 -0.377769 0.190009
v -0.336883 -0.377769 0.190009
v -0.363015 -0.377769 0.160571
v -0.336883 -0.377769 0.160571
v -0.436533 -0.192792 0.190009
v -0.436533 -0.163046 0.190009
v -0.263364 -0.192792 0.190009
v -0.263364 -0.163046 0.190009
v -0.436533 -0.192792 0.160571
v -0.436533 -0.163046 0.160571
v -0.263364 -0.192792 0.160571
v -0.263364 -0.163046 0.160571
v -0.465748 -0.192792 0.190009
v -0.465748 -0.163046 0.190009
v -0.234150 -0.192792 0.190009
v -0.234150 -0.163046 0.190009
v -0.465748 -0.192792 0.160571
v -0.465748 -0.163046 0.160571
v -0.234150 -0.192792 0.160571
v -0.234150 -0.163046 0.160571
v -0.436533 -0.192792 -0.026252
v -0.436533 -0.163046 -0.026252
v -0.263364 -0.192792 -0.026252
v -0.263364 -0.163046 -0.026252
v -0.465748 -0.192792 -0.026252
v -0.465748 -0.163046 -0.026252
v -0.234150 -0.192792 -0.026252
v -0.234150 -0.163046 -0.026252
v -0.436533 -0.192792 -0.052874
v -0.436533 -0.163046 -0.052874
v -0.263364 -0.192792 -0.052874
v -0.263364 -0.163046 -0.052874
v -0.465748 -0.192792 -0.052874
v -0.465748 -0.163046 -0.052874
v -0.234150 -0.192792 -0.052874
v -0.234150 -0.163046 -0.052874
v -0.363015 -0.163046 -0.026252
v -0.336883 -0.163046 -0.026252
v -0.363015 -0.163046 -0.052874
v -0.336883 -0.163046 -0.052874
v -0.363015 -0.192792 -0.026252
v -0.336883 -0.192792 -0.026252
v -0.363015 -0.192792 -0.052874
v -0.336883 -0.192792 -0.052874
v -0.336883 -0.369886 -0.026252
v -0.363015 -0.369886 -0.026252
v -0.363015 -0.369886 -0.052874
v -0.336883 -0.369886 -0.052874
v -0.424976 -0.163046 0.433096
v -0.424976 -0.163046 0.462842
v -0.424976 -0.192792 0.462842
v -0.424976 -0.192792 0.433096
v 0.363015 -0.163046 0.462841
v 0.363015 -0.192792 0.462841
v 0.363015 -0.163046 0.433096
v 0.363015 -0.192792 0.433096
v 0.336883 -0.163046 0.462841
v 0.336883 -0.192792 0.433096
v 0.336883 -0.192792 0.462841
v 0.336883 -0.163046 0.433096
v 0.000000 -0.163046 0.433096
v 0.000000 -0.192792 0.433096
v 0.000000 -0.163046 0.462841
v 0.000000 -0.192792 0.462841
v 0.363015 -0.372137 0.462841
v 0.363015 -0.372137 0.433096
v 0.336883 -0.372137 0.433096
v 0.336883 -0.372137 0.462841
v 0.233197 -0.192792 0.462841
v 0.259080 -0.192792 0.462841
v 0.233197 -0.163046 0.433096
v 0.259080 -0.163046 0.433096
v 0.259080 -0.192792 0.433096
v 0.233197 -0.192792 0.433096
v 0.259080 -0.163046 0.462841
v 0.233197 -0.163046 0.462841
v 0.233197 -0.008515 0.433096
v 0.259080 -0.008515 0.433096
v 0.259080 -0.008515 0.462841
v 0.233197 -0.008515 0.462841
v 0.233197 0.018727 0.433096
v 0.259080 0.018727 0.433096
v 0.259080 0.018727 0.462841
v 0.233197 0.018727 0.462841
v 0.369698 -0.008515 0.433096
v 0.369698 -0.008515 0.462841
v 0.369698 0.018727 0.433096
v 0.369698 0.018727 0.462841
v 0.093031 -0.008515 0.433096
v 0.093031 -0.008515 0.462841
v 0.093031 0.018727 0.433096
v 0.093031 0.018727 0.462841
v 0.064641 -0.008515 0.433096
v 0.064641 -0.008515 0.462841
v 0.064641 0.018727 0.433096
v 0.064641 0.018727 0.462841
v 0.093031 -0.058916 0.433096
v 0.093031 -0.058916 0.462841
v 0.093031 0.069128 0.433096
v 0.093031 0.069128 0.462841
v 0.064641 -0.058916 0.433096
v 0.064641 -0.058916 0.462841
v 0.064641 0.069128 0.433096
v 0.064641 0.069128 0.462841
v 0.093031 -0.083590 0.433096
v 0.093031 -0.083590 0.462841
v 0.093031 0.093801 0.433096
v 0.093031 0.093801 0.462841
v 0.064641 -0.083590 0.433096
v 0.064641 -0.083590 0.462841
v 0.064641 0.093801 0.433096
v 0.064641 0.093801 0.462841
v 0.000000 -0.058916 0.433096
v 0.000000 -0.058916 0.462841
v 0.000000 0.069128 0.433096
v 0.000000 0.069128 0.462841
v 0.000000 -0.083590 0.433096
v 0.000000 -0.083590 0.462841
v 0.000000 0.093801 0.433096
v 0.000000 0.093801 0.462841
v 0.363015 -0.192792 0.190009
v 0.363015 -0.163046 0.190009
v 0.336883 -0.163046 0.190009
v 0.336883 -0.192792 0.190009
v 0.363015 -0.192792 0.160571
v 0.363015 -0.163046 0.160571
v 0.336883 -0.163046 0.160571
v 0.336883 -0.192792 0.160571
v 0.363015 -0.377769 0.190009
v 0.336883 -0.377769 0.190009
v 0.363015 -0.377769 0.160571
v 0.336883 -0.377769 0.160571
v 0.436533 -0.192792 0.190009
v 0.436533 -0.163046 0.190009
v 0.263364 -0.192792 0.190009
v 0.263364 -0.163046 0.190009
v 0.436533 -0.192792 0.160571
v 0.436533 -0.163046 0.160571
v 0.263364 -0.192792 0.160571
v 0.263364 -0.163046 0.160571
v 0.465748 -0.192792 0.190009
v 0.465748 -0.163046 0.190009
v 0.234150 -0.192792 0.190009
v 0.234150 -0.163046 0.190009
v 0.465748 -0.192792 0.160571
v 0.465748 -0.163046 0.160571
v 0.234150 -0.192792 0.160571
v 0.234150 -0.163046 0.160571
v 0.436533 -0.192792 -0.026252
v 0.436533 -0.163046 -0.026252
v 0.263364 -0.192792 -0.026252
v 0.263364 -0.163046 -0.026252
v 0.465748 -0.192792 -0.026252
v 0.465748 -0.163046 -0.026252
v 0.234150 -0.192792 -0.026252
v 0.234150 -0.163046 -0.026252
v 0.436533 -0.192792 -0.052875
v 0.436533 -0.163046 -0.052875
v 0.263364 -0.192792 -0.052875
v 0.263364 -0.163046 -0.052875
v 0.465748 -0.192792 -0.052875
v 0.465748 -0.163046 -0.052875
v 0.234150 -0.192792 -0.052875
v 0.234150 -0.163046 -0.052875
v 0.363015 -0.163046 -0.026252
v 0.336883 -0.163046 -0.026252
v 0.363015 -0.163046 -0.052875
v 0.336883 -0.163046 -0.052875
v 0.363015 -0.192792 -0.026252
v 0.336883 -0.192792 -0.026252
v 0.363015 -0.192792 -0.052875
v 0.336883 -0.192792 -0.052875
v 0.336883 -0.369886 -0.026252
v 0.363015 -0.369886 -0.026252
v 0.363015 -0.369886 -0.052875
v 0.336883 -0.369886 -0.052875
v 0.424976 -0.163046 0.433096
v 0.424976 -0.163046 0.462841
v 0.424976 -0.192792 0.462841
v 0.424976 -0.192792 0.433096
v -0.377143 -0.366977 -0.274524
v -0.377143 -0.354833 -0.274524
v -0.394068 -0.354833 -0.270754
v -0.394068 -0.366977 -0.270754
v -0.342055 -0.366977 -0.282340
v -0.342055 -0.354833 -0.282340
v -0.358980 -0.354833 -0.278570
v -0.358980 -0.366977 -0.278570
v -0.351532 -0.354833 -0.159555
v -0.351532 -0.366977 -0.159555
v -0.368457 -0.354833 -0.155785
v -0.368457 -0.366977 -0.155785
v -0.316444 -0.354833 -0.167372
v -0.316444 -0.366977 -0.167372
v -0.333369 -0.354833 -0.163601
v -0.333369 -0.366977 -0.163601
v -0.348359 -0.354833 -0.145314
v -0.348359 -0.366977 -0.145314
v -0.365284 -0.354833 -0.141543
v -0.365284 -0.366977 -0.141543
v -0.313271 -0.354833 -0.153130
v -0.313271 -0.366977 -0.153130
v -0.330196 -0.354833 -0.149360
v -0.330196 -0.366977 -0.149360
v -0.390745 -0.366977 -0.150820
v -0.390745 -0.354833 -0.150820
v -0.294155 -0.354833 -0.172337
v -0.294155 -0.366977 -0.172337
v -0.387573 -0.366977 -0.136578
v -0.387573 -0.354833 -0.136578
v -0.290983 -0.354833 -0.158095
v -0.290983 -0.366977 -0.158095
v -0.403486 -0.366977 -0.147982
v -0.403486 -0.354833 -0.147982
v -0.281415 -0.354833 -0.175175
v -0.281415 -0.366977 -0.175175
v -0.400313 -0.366977 -0.133740
v -0.400313 -0.354833 -0.133740
v -0.278242 -0.354833 -0.160934
v -0.278242 -0.366977 -0.160934
v -0.376481 -0.366977 -0.086788
v -0.376481 -0.354833 -0.086788
v -0.279891 -0.354833 -0.108306
v -0.279891 -0.366977 -0.108306
v -0.389222 -0.366977 -0.083950
v -0.389222 -0.354833 -0.083950
v -0.267151 -0.354833 -0.111144
v -0.267151 -0.366977 -0.111144
v 0.416697 -0.351846 -0.345672
v 0.330559 -0.351846 -0.110980
v 0.416697 -0.364596 -0.345672
v 0.330559 -0.364596 -0.110980
v 0.404727 -0.351846 -0.350065
v 0.318589 -0.351846 -0.115373
v 0.404727 -0.364596 -0.350065
v 0.318589 -0.364596 -0.115373
v 0.399469 -0.351846 -0.298733
v 0.382242 -0.351846 -0.251795
v 0.365014 -0.351846 -0.204857
v 0.347787 -0.351846 -0.157918
v 0.347787 -0.364596 -0.157918
v 0.365014 -0.364596 -0.204857
v 0.382242 -0.364596 -0.251795
v 0.399469 -0.364596 -0.298733
v 0.335817 -0.364596 -0.162311
v 0.353045 -0.364596 -0.209250
v 0.370272 -0.364596 -0.256188
v 0.387500 -0.364596 -0.303126
v 0.335817 -0.351846 -0.162311
v 0.353045 -0.351846 -0.209250
v 0.370272 -0.351846 -0.256188
v 0.387500 -0.351846 -0.303126
v 0.327323 -0.355294 -0.112168
v 0.327323 -0.361149 -0.112168
v 0.321826 -0.361149 -0.114185
v 0.321826 -0.355294 -0.114185
v 0.292544 -0.354083 -0.171043
v 0.313088 -0.354083 -0.420197
v 0.292544 -0.366833 -0.171043
v 0.313088 -0.366833 -0.420197
v 0.305251 -0.354083 -0.169995
v 0.325795 -0.354083 -0.419149
v 0.305251 -0.366833 -0.169995
v 0.325795 -0.366833 -0.419149
v 0.296653 -0.354083 -0.220873
v 0.300762 -0.354083 -0.270704
v 0.304871 -0.354083 -0.320535
v 0.308979 -0.354083 -0.370366
v 0.308979 -0.366833 -0.370366
v 0.304871 -0.366833 -0.320535
v 0.300762 -0.366833 -0.270704
v 0.296653 -0.366833 -0.220873
v 0.321686 -0.366833 -0.369318
v 0.317578 -0.366833 -0.319487
v 0.313469 -0.366833 -0.269657
v 0.309360 -0.366833 -0.219826
v 0.321686 -0.354083 -0.369318
v 0.317578 -0.354083 -0.319487
v 0.313469 -0.354083 -0.269657
v 0.309360 -0.354083 -0.219826
v 0.316524 -0.357530 -0.419914
v 0.316524 -0.363385 -0.419914
v 0.322359 -0.363385 -0.419433
v 0.322359 -0.357530 -0.419433
vt 0.708333 0.625000
vt 0.708333 0.625000
vt 0.708333 0.625000
vt 0.791667 0.625000
vt 0.791667 0.500000
vt 0.791667 0.500000
vt 0.625000 0.416667
vt 0.625000 0.416667
vt 0.625000 0.416667
vt 0.791667 0.625000
vt 0.791667 0.500000
vt 0.791667 0.500000
vt 0.708333 0.500000
vt 0.708333 0.625000
vt 0.791667 0.625000
vt 0.708333 0.500000
vt 0.791667 0.625000
vt 0.625000 0.333333
vt 0.625000 0.333333
vt 0.625000 0.333333
vt 0.791667 0.625000
vt 0.791667 0.500000
vt 0.708333 0.625000
vt 0.708333 0.500000
vt 0.708333 0.500000
vt 0.708333 0.625000
vt 0.791667 0.625000
vt 0.791667 0.625000
vt 0.791667 0.625000
vt 0.708333 0.625000
vt 0.708333 0.625000
vt 0.708333 0.625000
vt 0.110288 0.534180
vt 0.043770 0.566113
vt 0.110288 0.566113
vt 0.110288 0.332258
vt 0.138342 0.300325
vt 0.138342 0.332258
vt 0.110288 0.332258
vt 0.138342 0.593223
vt 0.138342 0.332258
vt 0.138342 0.566113
vt 0.110288 0.534180
vt 0.138342 0.534180
vt 0.221867 0.566113
vt 0.221867 0.534180
vt 0.300325 0.566113
vt 0.332258 0.758647
vt 0.332258 0.566113
vt 0.138342 0.332258
vt 0.221867 0.300325
vt 0.221867 0.332258
vt 0.500000 0.332258
vt 0.249653 0.300325
vt 0.249653 0.332258
vt 0.110288 0.300325
vt 0.249653 0.566113
vt 0.500000 0.534180
vt 0.249653 0.534180
vt 0.110288 0.758647
vt 0.110288 0.566113
vt 0.138342 0.758647
vt 0.138342 0.566113
vt 0.332258 0.566113
vt 0.300325 0.758647
vt 0.300325 0.566113
vt 0.221867 0.534180
vt 0.138342 0.534180
vt 0.221867 0.566113
vt 0.221867 0.332258
vt 0.138342 0.300325
vt 0.300325 0.534180
vt 0.332258 0.368284
vt 0.332258 0.534180
vt 0.249653 0.332258
vt 0.500000 0.300325
vt 0.500000 0.332258
vt 0.249653 0.300325
vt 0.500000 0.566113
vt 0.249653 0.534180
vt 0.500000 0.534180
vt 0.249653 0.566113
vt 0.221867 0.332258
vt 0.103113 0.300325
vt 0.221867 0.300325
vt 0.249653 0.368284
vt 0.221867 0.368284
vt 0.332258 0.534180
vt 0.300325 0.368284
vt 0.300325 0.534180
vt 0.249653 0.332258
vt 0.221867 0.300325
vt 0.221867 0.332258
vt 0.249653 0.368284
vt 0.221867 0.339038
vt 0.249653 0.339038
vt 0.400127 0.368284
vt 0.221867 0.368284
vt 0.332258 0.368284
vt 0.300325 0.339038
vt 0.300325 0.368284
vt 0.103113 0.339038
vt 0.221867 0.339038
vt 0.103113 0.368284
vt 0.103113 0.332258
vt 0.400127 0.368284
vt 0.430605 0.339038
vt 0.400127 0.339038
vt 0.400127 0.300325
vt 0.249653 0.300325
vt 0.249653 0.300325
vt 0.400127 0.332258
vt 0.249653 0.332258
vt 0.249653 0.339038
vt 0.300325 0.368284
vt 0.332258 0.339038
vt 0.332258 0.368284
vt 0.400127 0.284931
vt 0.400127 0.339038
vt 0.430605 0.368284
vt 0.430605 0.284931
vt 0.430605 0.339038
vt 0.430605 0.422392
vt 0.400127 0.448880
vt 0.400127 0.422392
vt 0.332258 0.284931
vt 0.300325 0.258443
vt 0.300325 0.284931
vt 0.300325 0.368284
vt 0.332258 0.422392
vt 0.332258 0.368284
vt 0.300325 0.339038
vt 0.332258 0.284931
vt 0.430605 0.422392
vt 0.430605 0.368284
vt 0.332258 0.339038
vt 0.300325 0.339038
vt 0.300325 0.422392
vt 0.400127 0.300325
vt 0.430605 0.332258
vt 0.400127 0.332258
vt 0.400127 0.332258
vt 0.430605 0.300325
vt 0.400127 0.300325
vt 0.400127 0.422392
vt 0.430605 0.448880
vt 0.430605 0.332258
vt 0.500000 0.300325
vt 0.300325 0.422392
vt 0.332258 0.448880
vt 0.400127 0.284931
vt 0.430605 0.258443
vt 0.430605 0.284931
vt 0.400127 0.258443
vt 0.500000 0.284931
vt 0.500000 0.448880
vt 0.430605 0.448880
vt 0.430605 0.332258
vt 0.500000 0.300325
vt 0.430605 0.300325
vt 0.500000 0.258443
vt 0.430605 0.258443
vt 0.500000 0.422392
vt 0.430605 0.300325
vt 0.500000 0.332258
vt 0.430605 0.300325
vt 0.500000 0.332258
vt 0.430605 0.332258
vt 0.110288 0.593223
vt 0.138342 0.624825
vt 0.332258 0.534180
vt 0.593223 0.566113
vt 0.110288 0.593223
vt 0.110288 0.332258
vt 0.593223 0.534180
vt 0.332258 0.534180
vt 0.110288 0.566113
vt 0.138342 0.534180
vt 0.110288 0.534180
vt 0.138342 0.764694
vt 0.138342 0.566113
vt 0.138342 0.534180
vt 0.217267 0.566113
vt 0.138342 0.566113
vt 0.138342 0.593223
vt 0.217267 0.624825
vt 0.138342 0.624825
vt 0.138342 0.593223
vt 0.110288 0.624825
vt 0.110288 0.593223
vt 0.593223 0.566113
vt 0.624825 0.764694
vt 0.624825 0.566113
vt 0.110288 0.764694
vt 0.110288 0.566113
vt 0.624825 0.566113
vt 0.593223 0.764694
vt 0.031363 0.624825
vt -0.000000 0.825388
vt -0.000000 0.624825
vt 0.217267 0.624825
vt 0.248630 0.593223
vt 0.217267 0.593223
vt 0.031363 0.624825
vt 0.110288 0.624825
vt 0.031363 0.566113
vt 0.110288 0.624825
vt 0.031363 0.593223
vt 0.031363 0.534180
vt 0.110288 0.534180
vt 0.217267 0.534180
vt 0.593223 0.566113
vt 0.624825 0.534180
vt 0.593223 0.534180
vt 0.593223 0.534180
vt 0.624825 0.566113
vt 0.593223 0.566113
vt 0.217267 0.534180
vt 0.248630 0.566113
vt 0.217267 0.593223
vt 0.248630 0.624825
vt 0.031363 0.593223
vt -0.000000 0.624825
vt 0.624825 0.566113
vt 0.825388 0.534180
vt 0.624825 0.534180
vt 0.031363 0.566113
vt -0.000000 0.534180
vt -0.000000 0.593223
vt 0.217267 0.825388
vt 0.248630 0.853968
vt 0.248630 0.825388
vt -0.000000 0.825388
vt 0.031363 0.853968
vt 0.031363 0.825388
vt 0.624825 0.534180
vt 0.825388 0.566113
vt 0.217267 0.825388
vt 0.248630 0.624825
vt 0.624825 0.534180
vt 0.825388 0.566113
vt 0.624825 0.566113
vt 0.624825 0.566113
vt 0.825388 0.534180
vt 0.217267 0.566113
vt 0.248630 0.534180
vt 0.217267 0.534180
vt 0.031363 0.534180
vt -0.000000 0.566113
vt 0.031363 0.566113
vt 0.825388 0.566113
vt 0.853968 0.534180
vt 0.853968 0.566113
vt 0.825388 0.756231
vt 0.825388 0.566113
vt 0.031363 0.825388
vt -0.000000 0.853968
vt 0.248630 0.825388
vt 0.217267 0.853968
vt 0.825388 0.534180
vt 0.853968 0.566113
vt 0.138342 0.853968
vt 0.110288 0.825388
vt 0.138342 0.825388
vt 0.110288 0.853968
vt 0.138342 0.853968
vt 0.110288 0.853968
vt 0.031363 0.853968
vt 0.138342 0.566113
vt 0.217267 0.534180
vt 0.217267 0.566113
vt 0.138342 0.566113
vt 0.110288 0.566113
vt 0.138342 0.534180
vt 0.110288 0.534180
vt 0.031363 0.534180
vt 0.031363 0.566113
vt 0.110288 0.566113
vt 0.110288 0.534180
vt 0.138342 0.534180
vt 0.138342 0.825388
vt 0.110288 0.853968
vt 0.110288 0.825388
vt 0.110288 0.756231
vt 0.825388 0.566113
vt 0.853968 0.756231
vt 0.853968 0.566113
vt 0.138342 0.756231
vt 0.300325 0.566113
vt 0.332258 0.534180
vt 0.300325 0.534180
vt 0.043770 0.534180
vt 0.043770 0.300325
vt 0.110288 0.300325
vt 0.043770 0.332258
vt 0.956230 0.566113
vt 0.889711 0.534180
vt 0.889711 0.566113
vt 0.861658 0.300325
vt 0.889711 0.332258
vt 0.861658 0.332258
vt 0.861658 0.593223
vt 0.889711 0.332258
vt 0.861658 0.332258
vt 0.889711 0.534180
vt 0.861658 0.566113
vt 0.861658 0.534180
vt 0.778133 0.566113
vt 0.778133 0.534180
vt 0.332258 0.758647
vt 0.300325 0.566113
vt 0.332258 0.566113
vt 0.778133 0.300325
vt 0.861658 0.332258
vt 0.778133 0.332258
vt 0.750346 0.300325
vt 0.750346 0.332258
vt 0.889711 0.300325
vt 0.750346 0.566113
vt 0.750346 0.534180
vt 0.889711 0.758647
vt 0.889711 0.566113
vt 0.861658 0.758647
vt 0.861658 0.566113
vt 0.300325 0.758647
vt 0.332258 0.566113
vt 0.300325 0.566113
vt 0.778133 0.534180
vt 0.861658 0.534180
vt 0.778133 0.566113
vt 0.861658 0.300325
vt 0.778133 0.332258
vt 0.332258 0.368284
vt 0.300325 0.534180
vt 0.332258 0.534180
vt 0.750346 0.332258
vt 0.750346 0.300325
vt 0.750346 0.534180
vt 0.750346 0.566113
vt 0.896886 0.300325
vt 0.778133 0.332258
vt 0.778133 0.300325
vt 0.750346 0.368284
vt 0.778133 0.368284
vt 0.300325 0.368284
vt 0.332258 0.534180
vt 0.300325 0.534180
vt 0.778133 0.300325
vt 0.750346 0.332258
vt 0.778133 0.332258
vt 0.778133 0.339038
vt 0.750346 0.368284
vt 0.599872 0.368284
vt 0.750346 0.339038
vt 0.778133 0.368284
vt 0.300325 0.339038
vt 0.332258 0.368284
vt 0.300325 0.368284
vt 0.896886 0.339038
vt 0.778133 0.339038
vt 0.896886 0.368284
vt 0.896886 0.332258
vt 0.569395 0.339038
vt 0.599872 0.368284
vt 0.599872 0.339038
vt 0.599872 0.300325
vt 0.750346 0.300325
vt 0.599872 0.332258
vt 0.750346 0.300325
vt 0.750346 0.332258
vt 0.750346 0.339038
vt 0.332258 0.339038
vt 0.300325 0.368284
vt 0.332258 0.368284
vt 0.599872 0.284931
vt 0.569395 0.368284
vt 0.599872 0.339038
vt 0.569395 0.284931
vt 0.569395 0.339038
vt 0.599872 0.448880
vt 0.569395 0.422392
vt 0.599872 0.422392
vt 0.300325 0.258443
vt 0.332258 0.284931
vt 0.300325 0.284931
vt 0.332258 0.422392
vt 0.300325 0.368284
vt 0.332258 0.368284
vt 0.332258 0.284931
vt 0.300325 0.339038
vt 0.569395 0.422392
vt 0.569395 0.368284
vt 0.332258 0.339038
vt 0.300325 0.339038
vt 0.300325 0.422392
vt 0.569395 0.332258
vt 0.599872 0.300325
vt 0.599872 0.332258
vt 0.569395 0.300325
vt 0.599872 0.332258
vt 0.599872 0.300325
vt 0.569395 0.448880
vt 0.599872 0.422392
vt 0.569395 0.332258
vt 0.332258 0.448880
vt 0.300325 0.422392
vt 0.569395 0.258443
vt 0.599872 0.284931
vt 0.599872 0.258443
vt 0.569395 0.284931
vt 0.300325 0.448880
vt 0.332258 0.422392
vt 0.300325 0.422392
vt 0.332258 0.258443
vt 0.300325 0.284931
vt 0.332258 0.284931
vt 0.569395 0.448880
vt 0.569395 0.332258
vt 0.569395 0.300325
vt 0.569395 0.258443
vt 0.569395 0.300325
vt 0.569395 0.300325
vt 0.569395 0.332258
vt 0.861658 0.624825
vt 0.889711 0.593223
vt 0.593223 0.566113
vt 0.332258 0.534180
vt 0.889711 0.593223
vt 0.889711 0.332258
vt 0.593223 0.534180
vt 0.332258 0.534180
vt 0.861658 0.534180
vt 0.889711 0.566113
vt 0.889711 0.534180
vt 0.861658 0.764694
vt 0.861658 0.566113
vt 0.782733 0.566113
vt 0.861658 0.534180
vt 0.861658 0.566113
vt 0.782733 0.624825
vt 0.861658 0.593223
vt 0.861658 0.624825
vt 0.889711 0.624825
vt 0.861658 0.593223
vt 0.889711 0.593223
vt 0.624825 0.764694
vt 0.593223 0.566113
vt 0.624825 0.566113
vt 0.889711 0.764694
vt 0.889711 0.566113
vt 0.593223 0.764694
vt 0.624825 0.566113
vt 1.000000 0.825388
vt 0.968637 0.624825
vt 1.000000 0.624825
vt 0.751369 0.593223
vt 0.782733 0.624825
vt 0.782733 0.593223
vt 0.968637 0.624825
vt 0.889711 0.624825
vt 0.968637 0.566113
vt 0.968637 0.593223
vt 0.889711 0.624825
vt 0.968637 0.534180
vt 0.889711 0.534180
vt 0.782733 0.534180
vt 0.624825 0.534180
vt 0.593223 0.566113
vt 0.593223 0.534180
vt 0.624825 0.566113
vt 0.593223 0.534180
vt 0.593223 0.566113
vt 0.751369 0.566113
vt 0.782733 0.534180
vt 0.751369 0.624825
vt 0.782733 0.593223
vt 1.000000 0.624825
vt 0.968637 0.593223
vt 0.825388 0.534180
vt 0.624825 0.566113
vt 0.624825 0.534180
vt 1.000000 0.534180
vt 0.968637 0.566113
vt 1.000000 0.593223
vt 0.751369 0.853968
vt 0.782733 0.825388
vt 0.751369 0.825388
vt 0.968637 0.853968
vt 1.000000 0.825388
vt 0.968637 0.825388
vt 0.825388 0.566113
vt 0.624825 0.534180
vt 0.782733 0.825388
vt 0.751369 0.624825
vt 0.825388 0.566113
vt 0.624825 0.534180
vt 0.624825 0.566113
vt 0.825388 0.534180
vt 0.624825 0.566113
vt 0.751369 0.534180
vt 0.782733 0.566113
vt 0.782733 0.534180
vt 1.000000 0.566113
vt 0.968637 0.534180
vt 0.968637 0.566113
vt 0.853968 0.534180
vt 0.825388 0.566113
vt 0.825388 0.756231
vt 0.853968 0.566113
vt 0.825388 0.566113
vt 1.000000 0.853968
vt 0.968637 0.825388
vt 0.782733 0.853968
vt 0.751369 0.825388
vt 0.853968 0.566113
vt 0.825388 0.534180
vt 0.861658 0.853968
vt 0.889711 0.825388
vt 0.889711 0.853968
vt 0.861658 0.825388
vt 0.861658 0.853968
vt 0.889711 0.853968
vt 0.968637 0.853968
vt 0.782733 0.534180
vt 0.861658 0.566113
vt 0.782733 0.566113
vt 0.861658 0.566113
vt 0.861658 0.534180
vt 0.889711 0.566113
vt 0.889711 0.534180
vt 0.968637 0.534180
vt 0.968637 0.566113
vt 0.889711 0.566113
vt 0.889711 0.534180
vt 0.861658 0.534180
vt 0.889711 0.853968
vt 0.861658 0.825388
vt 0.889711 0.825388
vt 0.889711 0.756231
vt 0.853968 0.756231
vt 0.825388 0.566113
vt 0.853968 0.566113
vt 0.861658 0.756231
vt 0.332258 0.534180
vt 0.300325 0.566113
vt 0.300325 0.534180
vt 0.956230 0.534180
vt 0.956230 0.300325
vt 0.889711 0.300325
vt 0.956230 0.332258
vt 0.474582 0.702493
vt 0.427211 0.742353
vt 0.427211 0.702493
vt 0.427211 0.702493
vt 0.474582 0.742353
vt 0.474582 0.702493
vt 0.380709 0.483412
vt 0.702493 0.516588
vt 0.380709 0.516588
vt 0.572789 0.380709
vt 0.525418 0.702493
vt 0.525418 0.380709
vt 0.380709 0.516588
vt 0.702493 0.483412
vt 0.380709 0.483412
vt 0.380709 0.483412
vt 0.702493 0.516588
vt 0.380709 0.516588
vt 0.474582 0.380709
vt 0.380709 0.516588
vt 0.702493 0.483412
vt 0.380709 0.483412
vt 0.474582 0.380709
vt 0.427211 0.380709
vt 0.572789 0.380709
vt 0.525418 0.702493
vt 0.572789 0.702493
vt 0.427211 0.516588
vt 0.474582 0.483412
vt 0.427211 0.483412
vt 0.525418 0.516588
vt 0.572789 0.483412
vt 0.525418 0.483412
vt 0.572789 0.742353
vt 0.572789 0.702493
vt 0.525418 0.742353
vt 0.702493 0.483412
vt 0.742353 0.516588
vt 0.572789 0.516588
vt 0.635172 0.483412
vt 0.635172 0.702493
vt 0.702493 0.516588
vt 0.742353 0.483412
vt 0.364828 0.742353
vt 0.329168 0.702493
vt 0.329168 0.742353
vt 0.670832 0.742353
vt 0.670832 0.702493
vt 0.364828 0.702493
vt 0.635172 0.742353
vt 0.572789 0.742353
vt 0.427211 0.516588
vt 0.364828 0.483412
vt 0.427211 0.483412
vt 0.427211 0.742353
vt 0.572789 0.483412
vt 0.635172 0.516588
vt 0.572789 0.516588
vt 0.364828 0.516588
vt 0.702493 0.516588
vt 0.742353 0.483412
vt 0.702493 0.483412
vt 0.702493 0.483412
vt 0.742353 0.516588
vt 0.702493 0.516588
vt 0.742353 0.516588
vt 0.881709 0.483412
vt 0.635172 0.483412
vt 0.670832 0.516588
vt 0.635172 0.702493
vt 0.670832 0.742353
vt 0.364828 0.742353
vt 0.329168 0.702493
vt 0.329168 0.742353
vt 0.364828 0.881709
vt 0.329168 0.881709
vt 0.364828 0.516588
vt 0.329168 0.483412
vt 0.635172 0.516588
vt 0.670832 0.483412
vt 0.635172 0.483412
vt 0.364828 0.483412
vt 0.329168 0.516588
vt 0.364828 0.516588
vt 0.670832 0.881709
vt 0.635172 0.881709
vt 0.635172 0.742353
vt 0.670832 0.881709
vt 0.742353 0.516588
vt 0.881709 0.483412
vt 0.742353 0.483412
vt 0.742353 0.483412
vt 0.881709 0.516588
vt 0.364828 0.881709
vt 0.742353 0.483412
vt 0.881709 0.516588
vt 0.742353 0.516588
vt 0.479992 0.769785
vt 0.520008 0.612865
vt 0.479992 0.612865
vt 0.479992 0.612865
vt 0.520008 0.769785
vt 0.520008 0.612865
vt 0.479992 0.612865
vt 0.520008 0.769785
vt 0.520008 0.612865
vt 0.520008 0.520008
vt 0.479992 0.479992
vt 0.479992 0.520008
vt 0.479992 0.520008
vt 0.509188 0.509188
vt 0.520008 0.520008
vt 0.520008 0.142104
vt 0.479992 -0.014816
vt 0.520008 -0.014816
vt 0.520008 0.299024
vt 0.479992 0.455944
vt 0.479992 0.299024
vt 0.520008 0.142104
vt 0.479992 -0.014816
vt 0.520008 -0.014816
vt 0.520008 0.455944
vt 0.479992 0.299024
vt 0.520008 0.299024
vt 0.479992 0.142104
vt 0.479992 -0.014816
vt 0.479992 0.455944
vt 0.479992 0.299024
vt 0.479992 0.142104
vt 0.520008 -0.014816
vt 0.520008 0.299024
vt 0.509188 0.490812
vt 0.520008 0.479992
vt 0.490812 0.490812
vt 0.490812 0.509188
vt 0.479992 0.479992
vt 0.479992 0.769785
vt 0.520008 0.612865
vt 0.479992 0.612865
vt 0.479992 0.612865
vt 0.520008 0.769785
vt 0.520008 0.612865
vt 0.479992 0.612865
vt 0.520008 0.769785
vt 0.520008 0.612865
vt 0.520008 0.520008
vt 0.479992 0.479992
vt 0.479992 0.520008
vt 0.520008 0.520008
vt 0.490812 0.509188
vt 0.509188 0.509188
vt 0.520008 -0.014816
vt 0.479992 0.142104
vt 0.479992 -0.014816
vt 0.520008 0.455944
vt 0.479992 0.299024
vt 0.520008 0.299024
vt 0.520008 0.142104
vt 0.479992 -0.014816
vt 0.520008 -0.014816
vt 0.520008 0.455944
vt 0.479992 0.299024
vt 0.520008 0.299024
vt 0.479992 0.142104
vt 0.479992 -0.014816
vt 0.479992 0.455944
vt 0.479992 0.299024
vt 0.520008 -0.014816
vt 0.479992 0.455944
vt 0.520008 0.299024
vt 0.509188 0.490812
vt 0.520008 0.479992
vt 0.479992 0.520008
vt 0.490812 0.490812
vt 0.479992 0.479992
vt 0.791667 0.625000
vt 0.625000 0.416667
vt 0.625000 0.333333
vt 0.708333 0.500000
vt 0.043770 0.534180
vt 0.110288 0.300325
vt 0.300325 0.758647
vt 0.138342 0.300325
vt 0.500000 0.300325
vt 0.500000 0.566113
vt 0.138342 0.758647
vt 0.110288 0.758647
vt 0.332258 0.758647
vt 0.221867 0.300325
vt 0.300325 0.368284
vt 0.103113 0.332258
vt 0.332258 0.368284
vt 0.332258 0.339038
vt 0.103113 0.368284
vt 0.103113 0.339038
vt 0.103113 0.300325
vt 0.400127 0.332258
vt 0.400127 0.300325
vt 0.332258 0.258443
vt 0.300325 0.284931
vt 0.332258 0.422392
vt 0.400127 0.448880
vt 0.500000 0.332258
vt 0.300325 0.448880
vt 0.400127 0.258443
vt 0.500000 0.258443
vt 0.500000 0.422392
vt 0.500000 0.332258
vt 0.500000 0.284931
vt 0.500000 0.448880
vt 0.500000 0.300325
vt 0.500000 0.300325
vt 0.593223 0.534180
vt 0.110288 0.764694
vt 0.138342 0.624825
vt 0.593223 0.764694
vt 0.138342 0.764694
vt 0.624825 0.764694
vt 0.031363 0.534180
vt 0.217267 0.566113
vt 0.248630 0.534180
vt 0.248630 0.593223
vt -0.000000 0.593223
vt 0.825388 0.566113
vt -0.000000 0.566113
vt 0.217267 0.853968
vt -0.000000 0.853968
vt 0.825388 0.534180
vt 0.248630 0.566113
vt -0.000000 0.534180
vt 0.853968 0.566113
vt 0.853968 0.756231
vt 0.248630 0.853968
vt 0.853968 0.534180
vt 0.138342 0.825388
vt 0.110288 0.825388
vt 0.138342 0.853968
vt 0.138342 0.756231
vt 0.825388 0.756231
vt 0.110288 0.756231
vt 0.332258 0.566113
vt 0.043770 0.566113
vt 0.043770 0.332258
vt 0.043770 0.300325
vt 0.956230 0.534180
vt 0.889711 0.300325
vt 0.300325 0.758647
vt 0.861658 0.300325
vt 0.861658 0.758647
vt 0.889711 0.758647
vt 0.332258 0.758647
vt 0.778133 0.300325
vt 0.300325 0.368284
vt 0.896886 0.332258
vt 0.332258 0.368284
vt 0.332258 0.339038
vt 0.896886 0.368284
vt 0.896886 0.339038
vt 0.896886 0.300325
vt 0.599872 0.332258
vt 0.599872 0.300325
vt 0.332258 0.258443
vt 0.300325 0.284931
vt 0.332258 0.422392
vt 0.599872 0.448880
vt 0.300325 0.448880
vt 0.599872 0.258443
vt 0.332258 0.448880
vt 0.300325 0.258443
vt 0.593223 0.534180
vt 0.889711 0.764694
vt 0.861658 0.624825
vt 0.593223 0.764694
vt 0.861658 0.764694
vt 0.624825 0.764694
vt 0.968637 0.534180
vt 0.782733 0.566113
vt 0.751369 0.534180
vt 0.751369 0.593223
vt 1.000000 0.593223
vt 0.825388 0.566113
vt 1.000000 0.566113
vt 0.782733 0.853968
vt 1.000000 0.853968
vt 0.825388 0.534180
vt 0.751369 0.566113
vt 1.000000 0.534180
vt 0.853968 0.566113
vt 0.853968 0.756231
vt 0.751369 0.853968
vt 0.853968 0.534180
vt 0.861658 0.825388
vt 0.889711 0.825388
vt 0.861658 0.853968
vt 0.861658 0.756231
vt 0.825388 0.756231
vt 0.889711 0.756231
vt 0.332258 0.566113
vt 0.956230 0.566113
vt 0.956230 0.332258
vt 0.956230 0.300325
vt 0.474582 0.742353
vt 0.702493 0.516588
vt 0.702493 0.483412
vt 0.427211 0.380709
vt 0.525418 0.380709
vt 0.474582 0.516588
vt 0.525418 0.742353
vt 0.742353 0.483412
vt 0.635172 0.516588
vt 0.742353 0.516588
vt 0.364828 0.702493
vt 0.364828 0.483412
vt 0.881709 0.516588
vt 0.670832 0.483412
vt 0.670832 0.702493
vt 0.329168 0.516588
vt 0.670832 0.516588
vt 0.329168 0.483412
vt 0.635172 0.881709
vt 0.881709 0.516588
vt 0.881709 0.483412
vt 0.329168 0.881709
vt 0.881709 0.483412
vt 0.520008 0.769785
vt 0.479992 0.769785
vt 0.479992 0.769785
vt 0.520008 0.479992
vt 0.520008 0.455944
vt 0.479992 0.142104
vt 0.479992 0.455944
vt 0.520008 0.142104
vt 0.520008 0.455944
vt 0.520008 0.769785
vt 0.479992 0.769785
vt 0.479992 0.769785
vt 0.520008 0.479992
vt 0.520008 0.142104
vt 0.479992 0.142104
vt 0.479992 0.455944
vt 0.520008 0.142104
vt 0.520008 0.455944
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 1.0000 0.0000
vn -0.0000 0.0000 -1.0000
vn -0.9761 0.0000 0.2174
vn 0.9761 0.0000 -0.2174
vn 0.2174 0.0000 0.9761
vn -0.2174 0.0000 -0.9761
vn 0.9388 0.0000 0.3446
vn -0.9388 0.0000 -0.3446
vn 0.3445 0.0000 -0.9388
vn -0.3446 -0.0000 0.9388
vn -0.9966 0.0000 -0.0822
vn 0.9966 0.0000 0.0822
vn -0.0822 0.0000 0.9966
vn 0.0822 -0.0000 -0.9966
vn 0.0821 0.0000 -0.9966
vn 0.3446 0.0000 -0.9388
vn -0.3445 0.0000 0.9388
g copper_Cube.015_copper.001
usemtl copper.001
s off
f 260/345/114 273/346/114 253/347/114
f 258/348/115 267/349/115 255/350/115
f 256/351/116 259/352/116 251/353/116
f 262/354/115 265/355/115 261/356/115
f 259/357/117 264/358/117 260/345/117
f 255/350/118 266/359/118 258/348/118
f 251/360/114 260/345/114 253/347/114
f 262/354/115 276/361/115 266/359/115
f 252/362/116 265/363/116 255/364/116
f 254/365/114 261/356/114 252/366/114
f 257/367/118 263/368/118 256/369/118
f 256/369/117 269/370/117 257/367/117
f 272/371/119 275/372/119 271/373/119
f 273/346/119 278/374/119 274/375/119
f 254/365/114 275/372/114 262/354/114
f 253/347/115 274/375/115 257/367/115
f 264/358/117 277/376/117 260/345/117
f 257/367/118 278/374/118 264/358/118
f 266/359/118 272/371/118 258/348/118
f 258/348/117 271/373/117 254/365/117
f 281/377/116 394/378/116 282/379/116
f 288/380/118 290/381/118 289/382/118
f 281/383/114 337/384/114 286/385/114
f 285/386/119 279/387/119 283/388/119
f 292/389/119 283/388/119 297/390/119
f 280/391/115 288/392/115 282/393/115
f 284/394/118 292/395/118 295/396/118
f 403/397/114 298/398/114 293/399/114
f 286/385/114 279/400/114 281/383/114
f 296/401/116 403/402/116 293/403/116
f 285/386/119 287/404/119 280/405/119
f 282/379/116 289/406/116 284/407/116
f 284/408/117 290/409/117 285/410/117
f 284/407/116 294/411/116 286/412/116
f 295/413/116 293/403/116 294/411/116
f 294/414/114 283/415/114 286/385/114
f 298/416/117 299/417/117 293/418/117
f 296/419/118 406/420/118 404/421/118
f 295/396/118 291/422/118 296/419/118
f 406/423/119 298/424/119 405/425/119
f 291/426/119 297/390/119 298/424/119
f 300/427/118 308/428/118 301/429/118
f 297/390/119 302/430/119 298/424/119
f 293/403/116 300/431/116 294/411/116
f 294/432/115 301/433/115 297/434/115
f 303/435/114 305/436/114 304/437/114
f 299/438/116 304/439/116 300/431/116
f 306/440/119 312/441/119 302/430/119
f 301/442/119 306/440/119 302/430/119
f 307/443/115 310/444/115 308/445/115
f 301/442/119 310/446/119 305/447/119
f 304/439/116 307/448/116 300/431/116
f 305/436/114 309/449/114 304/437/114
f 311/450/116 317/451/116 313/452/116
f 303/435/114 314/453/114 306/454/114
f 302/455/118 311/456/118 299/457/118
f 299/438/116 313/452/116 303/458/116
f 316/459/117 317/460/117 315/461/117
f 317/451/116 321/462/116 313/452/116
f 314/463/119 316/464/119 312/441/119
f 314/463/119 326/465/119 318/466/119
f 324/467/119 328/468/119 320/469/119
f 321/470/115 330/471/115 322/472/115
f 312/473/115 319/474/115 311/475/115
f 318/476/117 325/477/117 317/460/117
f 316/464/119 320/469/119 312/441/119
f 311/450/116 323/478/116 315/479/116
f 313/480/115 322/472/115 314/481/115
f 315/461/117 324/482/117 316/459/117
f 328/483/118 331/484/118 327/485/118
f 329/486/114 334/487/114 330/488/114
f 319/489/116 331/490/116 323/478/116
f 333/491/114 462/492/114 334/487/114
f 320/493/115 327/494/115 319/474/115
f 322/495/119 334/496/119 326/465/119
f 325/497/116 329/498/116 321/462/116
f 334/496/119 458/499/119 326/465/119
f 324/467/119 460/500/119 332/501/119
f 323/502/114 456/503/114 324/504/114
f 325/497/116 461/505/116 333/506/116
f 331/490/116 455/507/116 323/478/116
f 332/508/118 459/509/118 331/484/118
f 326/510/118 457/511/118 325/512/118
f 336/513/114 341/514/114 337/384/114
f 286/515/117 338/516/117 284/408/117
f 284/394/118 335/517/118 282/518/118
f 282/393/115 336/519/115 281/520/115
f 339/521/116 341/522/116 340/523/116
f 339/521/116 346/524/116 342/525/116
f 337/526/119 349/527/119 338/528/119
f 338/529/118 353/530/118 342/531/118
f 344/532/118 345/533/118 343/534/118
f 335/535/115 345/536/115 339/537/115
f 338/528/119 343/538/119 335/539/119
f 342/540/117 344/541/117 338/516/117
f 351/542/118 367/543/118 359/544/118
f 354/545/114 358/546/114 350/547/114
f 336/513/114 352/548/114 340/549/114
f 340/523/116 351/550/116 339/521/116
f 339/551/118 347/552/118 335/517/118
f 341/514/114 350/547/114 337/384/114
f 335/539/119 348/553/119 336/554/119
f 342/525/116 354/555/116 341/522/116
f 355/556/115 360/557/115 356/558/115
f 358/559/117 361/560/117 357/561/117
f 350/562/119 357/563/119 349/527/119
f 349/564/118 361/565/118 353/530/118
f 348/566/114 360/567/114 352/548/114
f 353/568/115 366/569/115 354/570/115
f 347/571/119 356/572/119 348/553/119
f 351/542/118 355/573/118 347/552/118
f 366/574/114 378/575/114 370/576/114
f 368/577/114 372/578/114 364/579/114
f 362/580/117 369/581/117 361/560/117
f 361/565/118 365/582/118 353/530/118
f 354/545/114 370/576/114 362/583/114
f 352/584/117 363/585/117 351/586/117
f 360/567/114 364/579/114 352/548/114
f 359/587/115 368/588/115 360/557/115
f 373/589/116 378/590/116 374/591/116
f 372/592/116 375/593/116 371/594/116
f 367/595/115 376/596/115 368/588/115
f 386/597/117 387/598/117 384/599/117
f 363/600/118 375/601/118 367/543/118
f 369/602/118 373/603/118 365/582/118
f 370/604/117 377/605/117 369/581/117
f 386/606/118 365/582/118 373/603/118
f 379/607/118 372/578/118 364/579/118
f 380/608/118 381/609/118 379/607/118
f 366/574/118 382/610/118 380/608/118
f 363/600/118 385/611/118 371/612/118
f 384/613/119 366/614/119 365/615/119
f 374/591/116 386/616/116 373/589/116
f 383/617/116 380/618/116 379/619/116
f 364/620/119 383/617/119 363/621/119
f 385/622/116 372/592/116 371/594/116
f 386/616/119 381/623/119 382/624/119
f 387/625/118 389/626/118 388/627/118
f 384/613/119 388/628/119 383/617/119
f 383/629/115 389/630/115 385/631/115
f 385/622/116 390/632/116 386/616/116
f 393/633/115 391/634/115 392/635/115
f 280/405/119 392/636/119 279/387/119
f 282/518/118 393/637/118 280/638/118
f 279/400/114 391/639/114 281/383/114
f 522/640/116 397/641/116 398/642/116
f 410/643/118 408/644/118 409/645/118
f 465/646/114 397/647/114 402/648/114
f 395/649/119 401/650/119 399/651/119
f 399/651/119 412/652/119 417/653/119
f 408/654/117 396/655/117 398/656/117
f 412/657/118 400/658/118 415/659/118
f 418/660/114 403/397/114 413/661/114
f 395/662/114 402/648/114 397/647/114
f 403/402/116 416/663/116 413/664/116
f 407/665/119 401/650/119 396/666/119
f 409/667/116 398/642/116 400/668/116
f 410/669/115 400/670/115 401/671/115
f 414/672/116 400/668/116 402/673/116
f 413/664/116 415/674/116 414/672/116
f 399/675/114 414/676/114 402/648/114
f 419/677/115 418/678/115 413/679/115
f 406/420/118 416/680/118 404/421/118
f 411/681/118 415/659/118 416/680/118
f 418/682/119 406/423/119 405/425/119
f 417/653/119 411/683/119 418/682/119
f 428/684/118 420/685/118 421/686/118
f 422/687/119 417/653/119 418/682/119
f 420/688/116 413/664/116 414/672/116
f 421/689/117 414/690/117 417/691/117
f 425/692/114 423/693/114 424/694/114
f 424/695/116 419/696/116 420/688/116
f 432/697/119 426/698/119 422/687/119
f 426/698/119 421/699/119 422/687/119
f 430/700/117 427/701/117 428/702/117
f 430/703/119 421/699/119 425/704/119
f 427/705/116 424/695/116 420/688/116
f 429/706/114 425/692/114 424/694/114
f 437/707/116 431/708/116 433/709/116
f 434/710/114 423/693/114 426/711/114
f 431/712/118 422/713/118 419/714/118
f 433/709/116 419/696/116 423/715/116
f 437/716/115 436/717/115 435/718/115
f 441/719/116 437/707/116 433/709/116
f 436/720/119 434/721/119 432/697/119
f 446/722/119 434/721/119 438/723/119
f 448/724/119 444/725/119 440/726/119
f 450/727/117 441/728/117 442/729/117
f 439/730/117 432/731/117 431/732/117
f 445/733/115 438/734/115 437/716/115
f 440/726/119 436/720/119 432/697/119
f 443/735/116 431/708/116 435/736/116
f 442/729/117 433/737/117 434/738/117
f 444/739/115 435/718/115 436/717/115
f 451/740/118 448/741/118 447/742/118
f 454/743/114 449/744/114 450/745/114
f 451/746/116 439/747/116 443/735/116
f 462/492/114 453/748/114 454/743/114
f 447/749/117 440/750/117 439/730/117
f 454/751/119 442/752/119 446/722/119
f 449/753/116 445/754/116 441/719/116
f 458/499/119 454/751/119 446/722/119
f 460/755/115 455/756/115 456/757/115
f 461/758/115 458/759/115 457/760/115
f 460/500/119 444/725/119 452/761/119
f 456/503/114 443/762/114 444/763/114
f 461/505/116 445/754/116 453/764/116
f 455/507/116 451/746/116 443/735/116
f 459/509/118 452/765/118 451/740/118
f 457/511/118 446/766/118 445/767/118
f 469/768/114 464/769/114 465/646/114
f 466/770/115 402/771/115 400/670/115
f 463/772/118 400/658/118 398/773/118
f 464/774/117 398/656/117 397/775/117
f 469/776/116 467/777/116 468/778/116
f 474/779/116 467/777/116 470/780/116
f 477/781/119 465/782/119 466/783/119
f 481/784/118 466/785/118 470/786/118
f 473/787/118 472/788/118 471/789/118
f 473/790/117 463/791/117 467/792/117
f 471/793/119 466/783/119 463/794/119
f 472/795/115 470/796/115 466/770/115
f 495/797/118 479/798/118 487/799/118
f 486/800/114 482/801/114 478/802/114
f 480/803/114 464/769/114 468/804/114
f 479/805/116 468/778/116 467/777/116
f 475/806/118 467/807/118 463/772/118
f 478/802/114 469/768/114 465/646/114
f 476/808/119 463/794/119 464/809/119
f 482/810/116 470/780/116 469/776/116
f 488/811/117 483/812/117 484/813/117
f 489/814/115 486/815/115 485/816/115
f 485/817/119 478/818/119 477/781/119
f 489/819/118 477/820/118 481/784/118
f 488/821/114 476/822/114 480/803/114
f 494/823/117 481/824/117 482/825/117
f 484/826/119 475/827/119 476/808/119
f 483/828/118 479/798/118 475/806/118
f 506/829/114 494/830/114 498/831/114
f 500/832/114 496/833/114 492/834/114
f 497/835/115 490/836/115 489/814/115
f 493/837/118 489/819/118 481/784/118
f 498/831/114 482/801/114 490/838/114
f 491/839/115 480/840/115 479/841/115
f 492/834/114 488/821/114 480/803/114
f 496/842/117 487/843/117 488/811/117
f 506/844/116 501/845/116 502/846/116
f 503/847/116 500/848/116 499/849/116
f 504/850/117 495/851/117 496/842/117
f 515/852/115 514/853/115 512/854/115
f 503/855/118 491/856/118 495/797/118
f 501/857/118 497/858/118 493/837/118
f 505/859/115 498/860/115 497/835/115
f 493/837/118 514/861/118 501/857/118
f 500/832/118 507/862/118 492/834/118
f 509/863/118 508/864/118 507/862/118
f 510/865/118 494/830/118 508/864/118
f 513/866/118 491/856/118 499/867/118
f 494/868/119 512/869/119 493/870/119
f 514/871/116 502/846/116 501/845/116
f 508/872/116 511/873/116 507/874/116
f 511/873/119 492/875/119 491/876/119
f 500/848/116 513/877/116 499/849/116
f 509/878/119 514/871/119 510/879/119
f 517/880/118 515/881/118 516/882/118
f 516/883/119 512/869/119 511/873/119
f 517/884/117 511/885/117 513/886/117
f 518/887/116 513/877/116 514/871/116
f 519/888/117 521/889/117 520/890/117
f 520/891/119 396/666/119 395/649/119
f 521/892/118 398/773/118 396/893/118
f 519/894/114 395/662/114 397/647/114
f 537/895/118 543/896/118 535/897/118
f 536/898/114 546/899/114 538/900/114
f 530/901/120 537/902/120 529/903/120
f 525/904/118 531/905/118 524/906/118
f 528/907/121 536/908/121 527/909/121
f 526/910/120 533/911/120 525/912/120
f 530/913/114 536/898/114 538/900/114
f 524/914/121 532/915/121 523/916/121
f 529/917/118 535/897/118 528/918/118
f 526/919/114 532/920/114 534/921/114
f 543/922/122 546/923/122 544/924/122
f 539/925/122 542/926/122 540/927/122
f 532/920/114 542/928/114 534/921/114
f 533/929/118 539/930/118 531/905/118
f 538/931/120 545/932/120 537/902/120
f 541/933/122 551/934/122 542/926/122
f 542/928/114 547/935/114 534/921/114
f 531/936/121 540/937/121 532/915/121
f 554/938/114 558/939/114 562/940/114
f 547/935/114 559/941/114 555/942/114
f 543/896/118 549/943/118 535/897/118
f 533/929/118 552/944/118 541/945/118
f 535/946/123 550/947/123 536/948/123
f 536/898/114 554/938/114 544/949/114
f 534/950/123 548/951/123 533/952/123
f 544/924/122 553/953/122 543/922/122
f 557/954/121 562/955/121 558/956/121
f 555/957/120 560/958/120 556/959/120
f 561/960/121 570/961/121 562/955/121
f 547/962/123 556/963/123 548/951/123
f 548/964/118 560/965/118 552/944/118
f 553/966/118 557/967/118 549/943/118
f 561/968/118 565/969/118 569/970/118
f 549/971/123 558/972/123 550/947/123
f 564/973/122 567/974/122 563/975/122
f 566/976/122 569/977/122 565/978/122
f 552/944/118 568/979/118 564/980/118
f 551/981/114 567/982/114 559/941/114
f 552/983/121 563/984/121 551/985/121
f 559/986/120 568/987/120 560/958/120
f 562/940/114 566/988/114 554/938/114
f 554/989/120 565/990/120 553/991/120
f 572/992/124 583/993/124 582/994/124
f 583/995/114 578/996/114 587/997/114
f 578/996/125 591/998/125 587/997/125
f 576/999/118 582/994/118 591/1000/118
f 577/1001/126 571/1002/126 573/1003/126
f 574/1004/127 597/1005/127 578/1006/127
f 594/1007/118 571/1008/118 575/1009/118
f 593/1010/118 581/1011/118 580/1012/118
f 590/1013/125 575/1014/125 577/1015/125
f 588/1016/125 593/1017/125 589/1018/125
f 586/1019/114 577/1015/114 573/1020/114
f 584/1021/114 589/1018/114 585/1022/114
f 579/1023/124 573/1024/124 571/1008/124
f 581/1011/124 585/1025/124 580/1012/124
f 578/1006/127 598/1026/127 576/1027/127
f 574/1004/127 595/1028/127 596/1029/127
f 576/1027/127 595/1028/127 572/1030/127
f 600/1031/128 611/1032/128 610/1033/128
f 611/1034/114 606/1035/114 615/1036/114
f 606/1035/129 619/1037/129 615/1036/129
f 604/1038/118 610/1033/118 619/1039/118
f 605/1040/130 599/1041/130 601/1042/130
f 606/1043/131 624/1044/131 625/1045/131
f 603/1046/118 607/1047/118 599/1048/118
f 620/1049/118 608/1050/118 621/1051/118
f 618/1052/129 603/1053/129 605/1054/129
f 616/1055/129 621/1056/129 617/1057/129
f 614/1058/114 605/1054/114 601/1059/114
f 612/1060/114 617/1057/114 613/1061/114
f 607/1047/128 601/1062/128 599/1048/128
f 609/1063/128 613/1064/128 608/1050/128
f 606/1043/131 626/1065/131 604/1066/131
f 602/1067/132 623/1068/132 624/1044/132
f 604/1066/131 623/1068/131 600/1069/131
f 260/345/114 277/376/114 273/346/114
f 258/348/115 270/1070/115 267/349/115
f 256/351/116 263/1071/116 259/352/116
f 262/354/115 266/359/115 265/355/115
f 259/357/117 263/368/117 264/358/117
f 255/350/118 265/355/118 266/359/118
f 251/360/114 259/357/114 260/345/114
f 262/354/115 275/372/115 276/361/115
f 252/362/116 261/1072/116 265/363/116
f 254/365/114 262/354/114 261/356/114
f 257/367/118 264/358/118 263/368/118
f 256/369/117 268/1073/117 269/370/117
f 272/371/119 276/361/119 275/372/119
f 273/346/119 277/376/119 278/374/119
f 254/365/114 271/373/114 275/372/114
f 253/347/115 273/346/115 274/375/115
f 264/358/117 278/374/117 277/376/117
f 257/367/118 274/375/118 278/374/118
f 266/359/118 276/361/118 272/371/118
f 258/348/117 272/371/117 271/373/117
f 281/377/116 391/1074/116 394/378/116
f 288/380/118 287/1075/118 290/381/118
f 281/383/114 336/513/114 337/384/114
f 285/386/119 280/405/119 279/387/119
f 292/389/119 285/386/119 283/388/119
f 280/391/115 287/1076/115 288/392/115
f 284/394/118 285/1077/118 292/395/118
f 403/397/114 405/1078/114 298/398/114
f 286/385/114 283/415/114 279/400/114
f 296/401/116 404/1079/116 403/402/116
f 285/386/119 290/1080/119 287/404/119
f 282/379/116 288/1081/116 289/406/116
f 284/408/117 289/1082/117 290/409/117
f 284/407/116 295/413/116 294/411/116
f 295/413/116 296/401/116 293/403/116
f 294/414/114 297/1083/114 283/415/114
f 298/416/117 302/1084/117 299/417/117
f 296/419/118 291/422/118 406/420/118
f 295/396/118 292/395/118 291/422/118
f 406/423/119 291/426/119 298/424/119
f 291/426/119 292/389/119 297/390/119
f 300/427/118 307/1085/118 308/428/118
f 297/390/119 301/442/119 302/430/119
f 293/403/116 299/438/116 300/431/116
f 294/432/115 300/1086/115 301/433/115
f 303/435/114 306/454/114 305/436/114
f 299/438/116 303/458/116 304/439/116
f 306/440/119 314/463/119 312/441/119
f 301/442/119 305/447/119 306/440/119
f 307/443/115 309/1087/115 310/444/115
f 301/442/119 308/1088/119 310/446/119
f 304/439/116 309/1089/116 307/448/116
f 305/436/114 310/1090/114 309/449/114
f 311/450/116 315/479/116 317/451/116
f 303/435/114 313/1091/114 314/453/114
f 302/455/118 312/1092/118 311/456/118
f 299/438/116 311/450/116 313/452/116
f 316/459/117 318/476/117 317/460/117
f 317/451/116 325/497/116 321/462/116
f 314/463/119 318/466/119 316/464/119
f 314/463/119 322/495/119 326/465/119
f 324/467/119 332/501/119 328/468/119
f 321/470/115 329/1093/115 330/471/115
f 312/473/115 320/493/115 319/474/115
f 318/476/117 326/1094/117 325/477/117
f 316/464/119 324/467/119 320/469/119
f 311/450/116 319/489/116 323/478/116
f 313/480/115 321/470/115 322/472/115
f 315/461/117 323/1095/117 324/482/117
f 328/483/118 332/508/118 331/484/118
f 329/486/114 333/491/114 334/487/114
f 319/489/116 327/1096/116 331/490/116
f 333/491/114 461/1097/114 462/492/114
f 320/493/115 328/1098/115 327/494/115
f 322/495/119 330/1099/119 334/496/119
f 325/497/116 333/506/116 329/498/116
f 334/496/119 462/1100/119 458/499/119
f 324/467/119 456/1101/119 460/500/119
f 323/502/114 455/1102/114 456/503/114
f 325/497/116 457/1103/116 461/505/116
f 331/490/116 459/1104/116 455/507/116
f 332/508/118 460/1105/118 459/509/118
f 326/510/118 458/1106/118 457/511/118
f 336/513/114 340/549/114 341/514/114
f 286/515/117 337/1107/117 338/516/117
f 284/394/118 338/529/118 335/517/118
f 282/393/115 335/535/115 336/519/115
f 339/521/116 342/525/116 341/522/116
f 339/521/116 345/1108/116 346/524/116
f 337/526/119 350/562/119 349/527/119
f 338/529/118 349/564/118 353/530/118
f 344/532/118 346/1109/118 345/533/118
f 335/535/115 343/1110/115 345/536/115
f 338/528/119 344/1111/119 343/538/119
f 342/540/117 346/1112/117 344/541/117
f 351/542/118 363/600/118 367/543/118
f 354/545/114 362/583/114 358/546/114
f 336/513/114 348/566/114 352/548/114
f 340/523/116 352/1113/116 351/550/116
f 339/551/118 351/542/118 347/552/118
f 341/514/114 354/545/114 350/547/114
f 335/539/119 347/571/119 348/553/119
f 342/525/116 353/1114/116 354/555/116
f 355/556/115 359/587/115 360/557/115
f 358/559/117 362/580/117 361/560/117
f 350/562/119 358/1115/119 357/563/119
f 349/564/118 357/1116/118 361/565/118
f 348/566/114 356/1117/114 360/567/114
f 353/568/115 365/1118/115 366/569/115
f 347/571/119 355/1119/119 356/572/119
f 351/542/118 359/544/118 355/573/118
f 366/574/114 374/1120/114 378/575/114
f 368/577/114 376/1121/114 372/578/114
f 362/580/117 370/604/117 369/581/117
f 361/565/118 369/602/118 365/582/118
f 354/545/114 366/574/114 370/576/114
f 352/584/117 364/1122/117 363/585/117
f 360/567/114 368/577/114 364/579/114
f 359/587/115 367/595/115 368/588/115
f 373/589/116 377/1123/116 378/590/116
f 372/592/116 376/1124/116 375/593/116
f 367/595/115 375/1125/115 376/596/115
f 386/597/117 390/1126/117 387/598/117
f 363/600/118 371/612/118 375/601/118
f 369/602/118 377/1127/118 373/603/118
f 370/604/117 378/1128/117 377/605/117
f 386/606/118 384/1129/118 365/582/118
f 379/607/118 381/609/118 372/578/118
f 380/608/118 382/610/118 381/609/118
f 366/574/118 374/1120/118 382/610/118
f 363/600/118 383/1130/118 385/611/118
f 384/613/119 380/618/119 366/614/119
f 374/591/116 382/624/116 386/616/116
f 383/617/116 384/613/116 380/618/116
f 364/620/119 379/619/119 383/617/119
f 385/622/116 381/623/116 372/592/116
f 386/616/119 385/622/119 381/623/119
f 387/625/118 390/1131/118 389/626/118
f 384/613/119 387/1132/119 388/628/119
f 383/629/115 388/1133/115 389/630/115
f 385/622/116 389/1134/116 390/632/116
f 393/633/115 394/1135/115 391/634/115
f 280/405/119 393/1136/119 392/636/119
f 282/518/118 394/1137/118 393/637/118
f 279/400/114 392/1138/114 391/639/114
f 522/640/116 519/1139/116 397/641/116
f 410/643/118 407/1140/118 408/644/118
f 465/646/114 464/769/114 397/647/114
f 395/649/119 396/666/119 401/650/119
f 399/651/119 401/650/119 412/652/119
f 408/654/117 407/1141/117 396/655/117
f 412/657/118 401/1142/118 400/658/118
f 418/660/114 405/1078/114 403/397/114
f 395/662/114 399/675/114 402/648/114
f 403/402/116 404/1079/116 416/663/116
f 407/665/119 410/1143/119 401/650/119
f 409/667/116 408/1144/116 398/642/116
f 410/669/115 409/1145/115 400/670/115
f 414/672/116 415/674/116 400/668/116
f 413/664/116 416/663/116 415/674/116
f 399/675/114 417/1146/114 414/676/114
f 419/677/115 422/1147/115 418/678/115
f 406/420/118 411/681/118 416/680/118
f 411/681/118 412/657/118 415/659/118
f 418/682/119 411/683/119 406/423/119
f 417/653/119 412/652/119 411/683/119
f 428/684/118 427/1148/118 420/685/118
f 422/687/119 421/699/119 417/653/119
f 420/688/116 419/696/116 413/664/116
f 421/689/117 420/1149/117 414/690/117
f 425/692/114 426/711/114 423/693/114
f 424/695/116 423/715/116 419/696/116
f 432/697/119 434/721/119 426/698/119
f 426/698/119 425/704/119 421/699/119
f 430/700/117 429/1150/117 427/701/117
f 430/703/119 428/1151/119 421/699/119
f 427/705/116 429/1152/116 424/695/116
f 429/706/114 430/1153/114 425/692/114
f 437/707/116 435/736/116 431/708/116
f 434/710/114 433/1154/114 423/693/114
f 431/712/118 432/1155/118 422/713/118
f 433/709/116 431/708/116 419/696/116
f 437/716/115 438/734/115 436/717/115
f 441/719/116 445/754/116 437/707/116
f 436/720/119 438/723/119 434/721/119
f 446/722/119 442/752/119 434/721/119
f 448/724/119 452/761/119 444/725/119
f 450/727/117 449/1156/117 441/728/117
f 439/730/117 440/750/117 432/731/117
f 445/733/115 446/1157/115 438/734/115
f 440/726/119 444/725/119 436/720/119
f 443/735/116 439/747/116 431/708/116
f 442/729/117 441/728/117 433/737/117
f 444/739/115 443/1158/115 435/718/115
f 451/740/118 452/765/118 448/741/118
f 454/743/114 453/748/114 449/744/114
f 451/746/116 447/1159/116 439/747/116
f 462/492/114 461/1097/114 453/748/114
f 447/749/117 448/1160/117 440/750/117
f 454/751/119 450/1161/119 442/752/119
f 449/753/116 453/764/116 445/754/116
f 458/499/119 462/1100/119 454/751/119
f 460/755/115 459/1162/115 455/756/115
f 461/758/115 462/1163/115 458/759/115
f 460/500/119 456/1101/119 444/725/119
f 456/503/114 455/1102/114 443/762/114
f 461/505/116 457/1103/116 445/754/116
f 455/507/116 459/1104/116 451/746/116
f 459/509/118 460/1105/118 452/765/118
f 457/511/118 458/1106/118 446/766/118
f 469/768/114 468/804/114 464/769/114
f 466/770/115 465/1164/115 402/771/115
f 463/772/118 466/785/118 400/658/118
f 464/774/117 463/791/117 398/656/117
f 469/776/116 470/780/116 467/777/116
f 474/779/116 473/1165/116 467/777/116
f 477/781/119 478/818/119 465/782/119
f 481/784/118 477/820/118 466/785/118
f 473/787/118 474/1166/118 472/788/118
f 473/790/117 471/1167/117 463/791/117
f 471/793/119 472/1168/119 466/783/119
f 472/795/115 474/1169/115 470/796/115
f 495/797/118 491/856/118 479/798/118
f 486/800/114 490/838/114 482/801/114
f 480/803/114 476/822/114 464/769/114
f 479/805/116 480/1170/116 468/778/116
f 475/806/118 479/798/118 467/807/118
f 478/802/114 482/801/114 469/768/114
f 476/808/119 475/827/119 463/794/119
f 482/810/116 481/1171/116 470/780/116
f 488/811/117 487/843/117 483/812/117
f 489/814/115 490/836/115 486/815/115
f 485/817/119 486/1172/119 478/818/119
f 489/819/118 485/1173/118 477/820/118
f 488/821/114 484/1174/114 476/822/114
f 494/823/117 493/1175/117 481/824/117
f 484/826/119 483/1176/119 475/827/119
f 483/828/118 487/799/118 479/798/118
f 506/829/114 502/1177/114 494/830/114
f 500/832/114 504/1178/114 496/833/114
f 497/835/115 498/860/115 490/836/115
f 493/837/118 497/858/118 489/819/118
f 498/831/114 494/830/114 482/801/114
f 491/839/115 492/1179/115 480/840/115
f 492/834/114 496/833/114 488/821/114
f 496/842/117 495/851/117 487/843/117
f 506/844/116 505/1180/116 501/845/116
f 503/847/116 504/1181/116 500/848/116
f 504/850/117 503/1182/117 495/851/117
f 515/852/115 518/1183/115 514/853/115
f 503/855/118 499/867/118 491/856/118
f 501/857/118 505/1184/118 497/858/118
f 505/859/115 506/1185/115 498/860/115
f 493/837/118 512/1186/118 514/861/118
f 500/832/118 509/863/118 507/862/118
f 509/863/118 510/865/118 508/864/118
f 510/865/118 502/1177/118 494/830/118
f 513/866/118 511/1187/118 491/856/118
f 494/868/119 508/872/119 512/869/119
f 514/871/116 510/879/116 502/846/116
f 508/872/116 512/869/116 511/873/116
f 511/873/119 507/874/119 492/875/119
f 500/848/116 509/878/116 513/877/116
f 509/878/119 513/877/119 514/871/119
f 517/880/118 518/1188/118 515/881/118
f 516/883/119 515/1189/119 512/869/119
f 517/884/117 516/1190/117 511/885/117
f 518/887/116 517/1191/116 513/877/116
f 519/888/117 522/1192/117 521/889/117
f 520/891/119 521/1193/119 396/666/119
f 521/892/118 522/1194/118 398/773/118
f 519/894/114 520/1195/114 395/662/114
f 537/895/118 545/1196/118 543/896/118
f 536/898/114 544/949/114 546/899/114
f 530/901/120 538/931/120 537/902/120
f 525/904/118 533/929/118 531/905/118
f 528/907/121 535/1197/121 536/908/121
f 526/910/120 534/1198/120 533/911/120
f 530/913/114 527/1199/114 536/898/114
f 524/914/121 531/936/121 532/915/121
f 529/917/118 537/895/118 535/897/118
f 526/919/114 523/1200/114 532/920/114
f 543/922/122 545/1201/122 546/923/122
f 539/925/122 541/933/122 542/926/122
f 532/920/114 540/1202/114 542/928/114
f 533/929/118 541/945/118 539/930/118
f 538/931/120 546/1203/120 545/932/120
f 541/933/122 552/1204/122 551/934/122
f 542/928/114 551/981/114 547/935/114
f 531/936/121 539/1205/121 540/937/121
f 554/938/114 550/1206/114 558/939/114
f 547/935/114 551/981/114 559/941/114
f 543/896/118 553/966/118 549/943/118
f 533/929/118 548/964/118 552/944/118
f 535/946/123 549/971/123 550/947/123
f 536/898/114 550/1206/114 554/938/114
f 534/950/123 547/962/123 548/951/123
f 544/924/122 554/1207/122 553/953/122
f 557/954/121 561/960/121 562/955/121
f 555/957/120 559/986/120 560/958/120
f 561/960/121 569/1208/121 570/961/121
f 547/962/123 555/1209/123 556/963/123
f 548/964/118 556/1210/118 560/965/118
f 553/966/118 561/968/118 557/967/118
f 561/968/118 553/966/118 565/969/118
f 549/971/123 557/1211/123 558/972/123
f 564/973/122 568/1212/122 567/974/122
f 566/976/122 570/1213/122 569/977/122
f 552/944/118 560/965/118 568/979/118
f 551/981/114 563/1214/114 567/982/114
f 552/983/121 564/1215/121 563/984/121
f 559/986/120 567/1216/120 568/987/120
f 562/940/114 570/1217/114 566/988/114
f 554/989/120 566/1218/120 565/990/120
f 572/992/124 574/1219/124 583/993/124
f 583/995/114 574/1220/114 578/996/114
f 578/996/125 576/1221/125 591/998/125
f 576/999/118 572/992/118 582/994/118
f 577/1001/133 575/1222/133 571/1002/133
f 574/1004/134 596/1029/134 597/1005/134
f 594/1007/118 579/1023/118 571/1008/118
f 593/1010/118 592/1223/118 581/1011/118
f 590/1013/125 594/1224/125 575/1014/125
f 588/1016/125 592/1225/125 593/1017/125
f 586/1019/114 590/1013/114 577/1015/114
f 584/1021/114 588/1016/114 589/1018/114
f 579/1023/124 586/1226/124 573/1024/124
f 581/1011/124 584/1227/124 585/1025/124
f 578/1006/127 597/1005/127 598/1026/127
f 574/1004/134 572/1030/134 595/1028/134
f 576/1027/134 598/1026/134 595/1028/134
f 600/1031/128 602/1228/128 611/1032/128
f 611/1034/114 602/1229/114 606/1035/114
f 606/1035/129 604/1230/129 619/1037/129
f 604/1038/118 600/1031/118 610/1033/118
f 605/1040/130 603/1231/130 599/1041/130
f 606/1043/131 602/1067/131 624/1044/131
f 603/1046/118 622/1232/118 607/1047/118
f 620/1049/118 609/1063/118 608/1050/118
f 618/1052/129 622/1233/129 603/1053/129
f 616/1055/129 620/1234/129 621/1056/129
f 614/1058/114 618/1052/114 605/1054/114
f 612/1060/114 616/1055/114 617/1057/114
f 607/1047/128 614/1235/128 601/1062/128
f 609/1063/128 612/1236/128 613/1064/128
f 606/1043/131 625/1045/131 626/1065/131
f 602/1067/131 600/1069/131 623/1068/131
f 604/1066/131 626/1065/131 623/1068/131

Modified portal.lua from [78ebe4acb9] to [e011f87b11].

285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
				if vector.equals(v.pos,tune.partner) then
					partner = tune.partner
					break
				end
			end
		end

		if cap.self.minpower ~= cap.self.powerdraw then
			-- print("not enough power")
			return true
		end

		-- clean out user table
		for name,user in pairs(portal_context.users) do
			if user and vector.equals(user.portal, pos) then
				local found = false
				for _,u in pairs(dsp.users) do
					if u.object:get_player_name() == name then







|
<
<
<







285
286
287
288
289
290
291
292



293
294
295
296
297
298
299
				if vector.equals(v.pos,tune.partner) then
					partner = tune.partner
					break
				end
			end
		end

		if cap.self.minpower ~= cap.self.powerdraw then return true end




		-- clean out user table
		for name,user in pairs(portal_context.users) do
			if user and vector.equals(user.portal, pos) then
				local found = false
				for _,u in pairs(dsp.users) do
					if u.object:get_player_name() == name then

Modified potions.lua from [ed6c69759e] to [32e1f8328e].

13
14
15
16
17
18
19

20
21
22
23
24
25
26
..
51
52
53
54
55
56
57
58


59
60
61
62
63
64
65
			sorcery.lib.ui.tooltip {
				title = label;
				desc = desc;
				color = color:readable();
			}
			-- label .. (desc and ("\n" .. color:readable():fmt(desc)) or '')
		);

		drawtype = "plantlike";
		tiles = {image};
		inventory_image = image;
		paramtype = "light";
		is_ground_content = false;
		light_source = glow or 0;
		drop = 'sorcery:' .. name;
................................................................................
	sorcery.register.residue.link('sorcery:' .. name, 'xdecor:bowl')
	extra.description = label;
	extra.inventory_image = image;
	if not extra.groups then extra.groups = {} end
	minetest.register_craftitem('sorcery:' .. name, extra)
end

sorcery.register_potion('blood', 'Blood', 'A bottle of sacrificial blood, imbued\nwith stolen life force', u.color(219,19,14))


sorcery.register_potion('potion_water', 'Water Bottle', 'A bottle of plain water', u.color(43,90,162))
sorcery.register_potion('holy_water', 'Holy Water','A bottle of consecrated water',u.color(94,138,206),'sparkle',6)

local create_infusion_recipe = function(id,potion,default_basis,proto)
	if potion.infusion then
		sorcery.register.infusions.link {
			infuse = potion.infusion;







>







 







|
>
>







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
..
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
			sorcery.lib.ui.tooltip {
				title = label;
				desc = desc;
				color = color:readable();
			}
			-- label .. (desc and ("\n" .. color:readable():fmt(desc)) or '')
		);
		short_description = label;
		drawtype = "plantlike";
		tiles = {image};
		inventory_image = image;
		paramtype = "light";
		is_ground_content = false;
		light_source = glow or 0;
		drop = 'sorcery:' .. name;
................................................................................
	sorcery.register.residue.link('sorcery:' .. name, 'xdecor:bowl')
	extra.description = label;
	extra.inventory_image = image;
	if not extra.groups then extra.groups = {} end
	minetest.register_craftitem('sorcery:' .. name, extra)
end

sorcery.register_potion('blood', 'Blood', 'A bottle of sacrificial blood, imbued with stolen (or perhaps donated) life force', u.color(219,19,14), nil, nil, {
	sorcery_life_store = 4;
})
sorcery.register_potion('potion_water', 'Water Bottle', 'A bottle of plain water', u.color(43,90,162))
sorcery.register_potion('holy_water', 'Holy Water','A bottle of consecrated water',u.color(94,138,206),'sparkle',6)

local create_infusion_recipe = function(id,potion,default_basis,proto)
	if potion.infusion then
		sorcery.register.infusions.link {
			infuse = potion.infusion;

Modified recipes.lua from [ef0242a63b] to [faad05be60].

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
	};
	replacements = {
		{'sorcery:flame_oil', 'xdecor:bowl'};
		{'farming:mixing_bowl', 'farming:mixing_bowl'};
	};
}

for _,e in pairs{'flame','frost','force'} do
	minetest.register_craftitem('sorcery:essence_'..e, {
		description = sorcery.lib.str.capitalize(e) .. ' Essence';
		inventory_image = 'sorcery_essence_'..e..'.png';
		group = { sorcery_elemental_essence = 1 };





	})
end

minetest.register_craftitem('sorcery:inferno_crystal', {
	-- made with melding wand from ruby, lithium ingot, and gunpowder
	-- under sign of the wyvern or the winged serpent
	inventory_image = 'sorcery_inferno_crystal.png';
	description = 'Inferno Crystal';






})

minetest.register_craftitem('sorcery:powder_firestorm', {
	inventory_image = 'sorcery_powder_firestorm.png';
	description = 'Firestorm Powder';
})








|




>
>
>
>
>








>
>
>
>
>
>







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
	};
	replacements = {
		{'sorcery:flame_oil', 'xdecor:bowl'};
		{'farming:mixing_bowl', 'farming:mixing_bowl'};
	};
}

for i,e in ipairs{'frost','flame','force'} do
	minetest.register_craftitem('sorcery:essence_'..e, {
		description = sorcery.lib.str.capitalize(e) .. ' Essence';
		inventory_image = 'sorcery_essence_'..e..'.png';
		group = { sorcery_elemental_essence = 1 };
		_sorcery = {
			material = {
				sacrifice_value = i ^ 6;
			}
		}
	})
end

minetest.register_craftitem('sorcery:inferno_crystal', {
	-- made with melding wand from ruby, lithium ingot, and gunpowder
	-- under sign of the wyvern or the winged serpent
	inventory_image = 'sorcery_inferno_crystal.png';
	description = 'Inferno Crystal';
	_sorcery = {
		material = {
			gem = true;
			sacrifice_value = 900;
		};
	}
})

minetest.register_craftitem('sorcery:powder_firestorm', {
	inventory_image = 'sorcery_powder_firestorm.png';
	description = 'Firestorm Powder';
})

Added runeforge.lua version [b4ccf2cc5a].







































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
local constants = {
	rune_mine_interval = 90;
	-- how often a powered forge rolls for new runes

	rune_cache_max = 4;
	-- how many runes a runeforge can hold at a time
	
	rune_grades = {'Fragile', 'Shoddy', 'Ordinary', 'Pristine'};
	-- how many grades of rune quality/power there are
}
sorcery.register.runes.foreach('sorcery:generate',{},function(name,rune)
	local id = 'sorcery:rune_' .. name
	rune.image = rune.image or string.format('sorcery_rune_%s.png',name)
	rune.item = id
	minetest.register_craftitem(id, {
		description = sorcery.lib.color(rune.tone):readable():fmt(rune.name .. ' Rune');
		short_description = rune.name .. ' Rune';
		inventory_image = rune.image;
		stack_max = 1;
		groups = {
			sorcery_rune = 1;
			not_in_creative_inventory = 1;
		};
		_proto = { id = name, data = rune; };
	})
end)

local rune_set = function(stack,r)
	local m = stack:get_meta()
	local def = stack:get_definition()._proto.data
	local grade
	if r.grade then grade = r.grade
	elseif m:contains('rune_grade') then grade = m:get_int('rune_grade') end

	local qpfx = constants.rune_grades[grade]
	local title = sorcery.lib.color(def.tone):readable():fmt(string.format('%s %s Rune',qpfx,def.name))

	m:set_int('rune_grade',grade)
	m:set_string('description',title)
end

sorcery.amulet = {}
sorcery.amulet.setrune = function(stack,rune)
	local m = stack:get_meta()
	if rune then
		local rp = rune:get_definition()._proto
		local rg = rune:get_meta():get_int('rune_grade')
		m:set_string('amulet_rune', rp.id)
		m:set_int('amulet_rune_grade', rg)
		local spell = sorcery.amulet.getspell(stack)
		if not spell then return nil end

		local name = string.format('Amulet of %s', spell.name)

		m:set_string('description', sorcery.lib.ui.tooltip {
			title = name;
			color = spell.tone;
			desc = spell.desc;
		})
	else
		m:set_string('description','')
		m:set_string('amulet_rune','')
		m:set_string('amulet_rune_grade','')
	end
	return stack
end

sorcery.amulet.getrune = function(stack)
	local m = stack:get_meta()
	if not m:contains('amulet_rune') then return nil end
	local rune = m:get_string('amulet_rune')
	local grade = m:get_int('amulet_rune_grade')
	local rs = ItemStack(sorcery.data.runes[rune].item)
	rune_set(rs, {grade = grade})
	return rs
end

sorcery.amulet.getspell = function(stack)
	local m = stack:get_meta()
	local proto = stack:get_definition()._sorcery.amulet
	local rune = m:get_string('amulet_rune')
	local rd = sorcery.data.runes[rune]
	local spell = rd.amulets[proto.base]
	if not spell then return nil end
	local title,desc,cast = spell.name, spell.desc, spell.cast

	if proto.frame and spell.frame and spell.frame[proto.frame] then
		local sp = spell.frame[proto.frame]
		title = sp.name or title
		desc = sp.desc or desc
		cast = sp.desc or cast
	end
	
	return {
		rune = rune;
		spell = spell;
		name = title;
		desc = desc;
		cast = cast;
		tone = sorcery.lib.color(rd.tone);
	}
end


local runeforge_update = function(pos,time)
	local m = minetest.get_meta(pos)
	local i = m:get_inventory()
	local l = sorcery.ley.netcaps(pos,time or 1)

	local pow_min = l.self.powerdraw >= l.self.minpower
	local pow_max = l.self.powerdraw >= l.self.maxpower

	if time and pow_min then -- roll for runes
		local rolls = math.floor(time/constants.rune_mine_interval)
		local newrunes = {}
		for _=1,rolls do
			local choices = {}
			for name,rune in pairs(sorcery.data.runes) do
				if rune.minpower*time <= l.self.powerdraw and math.random(rune.rarity) == 1 then
					local n = ItemStack(rune.item)
					choices[#choices + 1] = n
				end
			end
			if #choices > 0 then newrunes[#newrunes + 1] = choices[math.random(#choices)] end
		end

		print('rolled for runes, got', dump(newrunes))
		for _,r in pairs(newrunes) do
			if i:room_for_item('cache',r) then
				local qual = math.random(#constants.rune_grades)
				rune_set(r,{grade = qual})
				i:add_item('cache',r)
			end
		end
	end

	local spec = string.format([[
		formspec_version[3] size[10.25,8] real_coordinates[true]
		list[context;cache;%f,0.25;%u,1;]
		list[context;amulet;3.40,1.50;1,1;]
		list[context;active;5.90,1.50;1,1;]
		list[current_player;main;0.25,3;8,4;]

		image[0.25,0.50;1,1;sorcery_statlamp_%s.png]
	]], (10.5 - constants.rune_cache_max*1.25)/2, constants.rune_cache_max,
	    pow_max and 'green' or (pow_min and 'yellow') or 'off')
	
	m:set_string('formspec',spec)
	return true
end

local rfbox = {
	type = 'fixed';
	fixed = {
		-0.5, -0.5, -0.5;
		 0.5,  0.1,  0.5;
	};
};
minetest.register_node('sorcery:runeforge', {
	description = 'Rune Forge';
	drawtype = 'mesh';
	mesh = 'sorcery-runeforge.obj';
	sunlight_propagates = true;
	paramtype = 'light';
	paramtype2 = 'facedir';
	selection_box = rfbox;
	collision_box = rfbox;
	groups = {
		choppy = 2;
		oddly_breakable_by_hand = 2;
		sorcery_magitech = 1;
		sorcery_tech = 1;
		sorcery_ley_device = 1;
	};
	tiles = {
		'default_diamond_block.png';
		'default_tin_block.png';
		'sorcery_metal_iridium_shiny.png';
		'sorcery_metal_vidrium_shiny.png';
		'default_copper_block.png';
	};
	_sorcery = {
		ley = {
			mode = 'consume';
			affinity = {'praxic'};
			power = function(pos,time)
				local max,min = 0
				for _,r in pairs(sorcery.data.runes) do
					if r.minpower > max then max = r.minpower end
					if min == nil or r.minpower < min then min = r.minpower end
				end
				return min*time,max*time
			end;
		};
		on_leychange = runeforge_update;
		recipe = {
			note = 'Periodically creates runes when sufficiently powered and can be used to imbue them into an amulet, giving it a powerful magical effect';
		};
	};
	on_construct = function(pos)
		local m = minetest.get_meta(pos)
		local i = m:get_inventory()
		i:set_size('cache',constants.rune_cache_max)
		i:set_size('amulet',1)
		i:set_size('active',1)
		m:set_string('infotext','Rune Forge')
		runeforge_update(pos)
		minetest.get_node_timer(pos):start(constants.rune_mine_interval)
	end;
	after_dig_node = sorcery.lib.node.purge_only {'amulet'};
	on_timer = runeforge_update;
	on_metadata_inventory_move = function(pos, fl,fi, tl,ti, count, user)
		local inv = minetest.get_meta(pos):get_inventory()
		if fl == 'active' then
			inv:set_stack('amulet',1,sorcery.amulet.setrune(inv:get_stack('amulet',1)))
		elseif tl == 'active' then
			inv:set_stack('amulet',1,sorcery.amulet.setrune(inv:get_stack('amulet',1), inv:get_stack(tl,ti)))
		end
	end;
	on_metadata_inventory_put = function(pos, list, idx, stack, user)
		if list == 'amulet' then
			local inv = minetest.get_meta(pos):get_inventory()
			inv:set_stack('active',1,ItemStack(sorcery.amulet.getrune(stack)))
		end
	end;
	on_metadata_inventory_take = function(pos, list, idx, stack, user)
		if list == 'amulet' then
			minetest.get_meta(pos):get_inventory():set_stack('active',1,ItemStack())
		end
	end;
	allow_metadata_inventory_put = function(pos,list,idx,stack,user)
		if list == 'amulet' then
			if minetest.get_item_group(stack:get_name(), 'sorcery_amulet') ~= 0 then
				return 1
			end
		end
		return 0
	end;
	allow_metadata_inventory_take = function(pos,list,idx,stack,user)
		if list == 'amulet' then return 1 end
		return 0
	end;
	allow_metadata_inventory_move = function(pos, fl,fi, tl,ti, count, user)
		if fl == 'cache' then
			if tl == 'cache' then return 1 end
			if tl == 'active' then
				local inv = minetest.get_meta(pos):get_inventory()
				if not inv:is_empty('amulet') then
					local amulet = inv:get_stack('amulet',1)
					local rune = inv:get_stack(fl,fi)
					if sorcery.data.runes[rune:get_definition()._proto.id].amulets[amulet:get_definition()._sorcery.amulet.base] then
						return 1
					end
				end
			end
		end
		if fl == 'active' then
			if tl == 'cache' then return 1 end
		end
		return 0
	end;
})

do local m = sorcery.data.metals
	-- temporary recipe until a fancier multi-part crafting path can be come up with
	-- TODO: better than this
	minetest.register_craft {
		output = 'sorcery:runeforge';
		recipe = {
			{'default:copper_ingot',m.vidrium.parts.block,'default:copper_ingot'};
			{'default:diamond',m.iridium.parts.ingot,'default:diamond'};
			{'default:tin_ingot','sorcery:core_syncretic','default:tin_ingot'};
		};
	}
end

Added textures/sorcery_amulet_frame_cobalt.png version [6fbe72d151].

cannot compute difference between binary files

Added textures/sorcery_amulet_frame_gold.png version [89ee3cc793].

cannot compute difference between binary files

Added textures/sorcery_amulet_frame_iridium.png version [24acb71aad].

cannot compute difference between binary files

Added textures/sorcery_amulet_frame_tungsten.png version [0f1d4c4eba].

cannot compute difference between binary files

Added textures/sorcery_amulet_sparkle.png version [060f589cac].

cannot compute difference between binary files

Modified textures/sorcery_core_syncretic.png from [086b79dff1] to [e7d1b92a14].

cannot compute difference between binary files

Added textures/sorcery_metal_iridium.png version [0232c814fa].

cannot compute difference between binary files

Added textures/sorcery_metal_iridium_shiny.png version [f46801542e].

cannot compute difference between binary files

Added textures/sorcery_metal_vidrium.png version [59842011f5].

cannot compute difference between binary files

Added textures/sorcery_metal_vidrium_shiny.png version [5b59bab96d].

cannot compute difference between binary files

Added textures/sorcery_rune_disjoin.png version [a7f795bf63].

cannot compute difference between binary files

Added textures/sorcery_rune_dominate.png version [d2ed48d357].

cannot compute difference between binary files

Added textures/sorcery_rune_excavate.png version [916ec7193a].

cannot compute difference between binary files

Added textures/sorcery_rune_genesis.png version [7091d5d260].

cannot compute difference between binary files

Added textures/sorcery_rune_luminate.png version [2fa0002e5a].

cannot compute difference between binary files

Added textures/sorcery_rune_obliterate.png version [1d8576869e].

cannot compute difference between binary files

Added textures/sorcery_rune_repulse.png version [821db474a1].

cannot compute difference between binary files

Added textures/sorcery_rune_translocate.png version [662d2c9a2c].

cannot compute difference between binary files

Added util/mrq.sh version [7d7de45517].





















>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh
if test $# -ne 1; then
	echo "usage: util/mrq.sh <branch>"
	exit 64
fi

file=$(mktemp)
fossil bundle export $file --branch $2
curl 0x0.st -Ffile=@"$file"
rm $file