-
Notifications
You must be signed in to change notification settings - Fork 0
/
magic.html
1222 lines (1219 loc) · 70.7 KB
/
magic.html
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
<!doctype html>
<html lang="ja">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XNXG282YVT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XNXG282YVT');
</script>
<meta charset="UTF-8">
<meta name="description" content="MOD×経済のサーバー!">
<meta name="viewport" content="width=device-width">
<title>魔術MOD</title>
<link rel="stylesheet" media="all" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="js/script.js"></script>
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:300" rel="stylesheet">
<link rel="apple-touch-icon" sizes="57x57" href="icon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="icon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="icon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="icon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="icon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="icon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="icon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="icon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="icon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
<link rel="manifest" href="icon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="icon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body id="top">
<div id="wrapper">
<div id="sidebar">
<div id="sidebarWrap">
<h1><a href="index.html" class="logo"><img src="images/logo.png" width="100%" alt="logo"></a></h1>
<nav id="mainnav">
<p id="menuWrap"><a id="menu"><span id="menuBtn"></span></a></p>
<div class="panel">
<div class="border-wrap">
<ul class="rotateY">
<li><a href="index.html">トップ</a></li>
<li class="modslist1"><a>導入MOD▼</a></li>
</ul>
<ul class="modslist">
<li><a href="tech.html">工業MOD</a></li>
<li><a href="magic.html">魔術MOD</a></li>
<li><a href="farming.html">農業MOD</a></li>
<li><a href="exploration.html">探検MOD</a></li>
<li><a href="building.html">建築MOD</a></li>
<li><a href="othermods.html">その他MOD</a></li>
</ul>
<ul>
<li><a href="sns.html">鯖民の動画</a></li>
<li><a href="join.html">参加方法</a></li>
<li><a href="event.html">イベント</a></li>
<li><a href="donate.html">寄付</a></li>
<li class="infotab1"><a>情報▼</a></li>
</ul>
<ul class="infotab"><li><a href="rule.html">ルール </a></li>
<li><a href="tutorial.html">㊙情報</a></li>
<li><a href="hobby.html">娯楽施設</a></li>
<li><a href="dev.html">開発陣一覧</a></li>
<li><a href="stats.html">ムスカリ統計局</a></li>
<li><a href="command.html">コマンド一覧</a></li>
<li><a href="calender.html">予定表</a></li>
<li><a href="faq.html">よくある質問</a></li>
<li><a href="bug.html">既知のバグ</a></li>
<li><a href="spec.html">サーバースペック</a></li>
<li><a href="memory.html">記録</a></li>
</ul>
<ul>
<li><a href="rct.html">開発陣募集</a></li>
<li><a href="link.html">リンク集</a></li>
<li><a href="http://muscari.fun:8123/">Dynmap</a></li>
</ul>
</div>
<ul id="sns">
<li><a href="https://twitter.com/taisa_ism" target="_blank" class="twitter"><img src="images/iconTw.png" width="20" height="20" alt="twitter"></a></li>
<li><a href="https://monocraft.net/servers/kypYX49aMGbHh1i47yH5/photos" target="_blank" class="monostagram"><img src="images/iconInsta.png" width="20" height="20" alt="Instagram"></a></li>
</ul>
<iframe class="discord" src="https://discord.com/widget?id=419146900441137173&theme=dark" width="350" height="420" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</nav>
</div>
</div>
<div id="content">
<p id="join" class="join1"><img src="images/top/magic.png" alt="" class="toppimg"><img src="images/top/gr.png" class="gr"></p><div class="content2">
<div class="background2">
<header class="center"><b><p class="vw2">魔術MOD</p></b></header>
<ul class="jump">
<li class="border_slide_btn">・<a href="#bota">Botania</a></li><br>
<li class="border_slide_btn">・<a href="#tc">Thaumcraft</a></li><br>
<li class="border_slide_btn">・<a href="#psi">Psi</a></li><br>
<li class="border_slide_btn">・<a href="#ebw">Blood Magic</a></li>
</ul>
<img src="images/bota.png" class="modimg" id="bota">
<ul class="border1">
<li><p class="bluebox">MOD名</p><p class="graybox">Botania</p></li>
<li><p class="bluebox">解説サイト</p><p class="graybox"><a href="https://w.atwiki.jp/minecraft/pages/1410.html" target="blank">https://w.atwiki.jp/minecraft/pages/1410.html</a>(Minecraft Japan Wiki)<br>
</p></li>
</ul>
<img src="images/tc.png" class="modimg" id="tc">
<ul class="border1">
<li><p class="bluebox">MOD名</p><p class="graybox">Thaumcraft</p></li>
<li><p class="bluebox">アドオン</p><p class="graybox">Crimson Revelations<br>Thaumic Augmentation</p></li>
<li><p class="bluebox">解説サイト</p><p class="graybox"><a href="https://w.atwiki.jp/minecraft/pages/1733.html" target="blank">https://w.atwiki.jp/minecraft/pages/1733.html</a>(Minecraft Japan Wiki)(情報少なめ)<br>
<a href="https://lilygamelife.com/sitemap/minecraft/thaumcraft6/" target="blank">https://lilygamelife.com/sitemap/minecraft/thaumcraft6/</a>(おすすめ攻略サイト)<br>サイト内解説
</p></li>
</ul>
<p class="recipe">・Crimson Revelations</p>
<p class="introtitle"><label class="pointer" for="checkmod7"><span><img src="images/plus.png" width=18></span><span>追加アイテム・ブロック一覧</span></label class="pointer" ></p>
<input type="checkbox" id="checkmod7" class="checkmod7">
<table border=1 class="recipe cmod7">
<tr class="tr">
<th><p class="itemname">Crimson Cult Banner</p></th>
<th width="700">説明</th>
</tr>
<tr>
<td class="recipeimage"><img src="images/tc/7.png"></td>
<td class="modexp"><b>【神秘の作業台で作成】<br>【消費Vis:10】赤色の羊毛2+棒2+オークのハーフブロック+Redstone Inlay<br></td>
</tr>
<tr class="tr">
<th><p class="itemname">Crimson Cult装備</p></th>
<th width="700">説明</th>
</tr>
<tr>
<td class="recipeimage"><img src="images/tc/4.gif"></td>
<td class="modexp"><b>【神秘の作業台で作成】<br>【消費Vis:25】Ignis Vis Crystal+Brass Plate+Iron Plate4:Crimson Cult Helm<br>【消費Vis:25】Ignis Vis Crystal+Iron Plate4+赤色の羊毛2+Crimson Cult Banner:Crimson Cult Chestplate<br>【消費Vis:25】Ignis Vis Crystal+Iron Plate4+赤色の羊毛2+Crimson Cult Banner:Crimson Cult Greaves</b><br>何の効果もない装備。防御力は鉄と同程度。</td>
</tr>
<tr class="tr">
<th><p class="itemname">Crimson Cult装備</p></th>
<th width="700">説明</th>
</tr>
<tr>
<td class="recipeimage"><img src="images/tc/5.gif"></td>
<td class="modexp"><b>【神秘の作業台で作成】<br>【消費Vis:50】Ignis Vis Crystal+Aer Vis Crystal+Perditio Vis Crystal+Crimson Cult Banner+Enchanted Fabric4:Crimson Cult Hood<br>【消費Vis:50】Ignis Vis Crystal+Aer Vis Crystal+Perditio Vis Crystal+Enchanted Fabric4+Iron Plate2+赤色の羊毛+Crimson Cult Banner:Crimson Cult Robe<br>【消費Vis:50】Ignis Vis Crystal+Aer Vis Crystal+Perditio Vis Crystal+Enchanted Fabric4+赤色の羊毛2+Crimson Cult Banner:Crimson Cult Leggings<br>【消費Vis:50】Ignis Vis Crystal+Aer Vis Crystal+Perditio Vis Crystal+Iron Plate2+赤色の羊毛2:Crimson Cult Boots</b><br>防御力はチェーン装備程度。着ると歪みとVis使用削減を得られる。</td>
</tr>
<tr class="tr">
<th><p class="itemname">Crimson Praetor装備</p></th>
<th width="700">説明</th>
</tr>
<tr>
<td class="recipeimage"><img src="images/tc/3.gif"></td>
<td class="modexp"><b>【神秘の祭壇で作成】<br>【エッセンシア:Metallum50+Alienis25+Praemunio20】Brass Plate2+Iron Plate2+Crimson Cult Banner+Crimson Cult Helm:Crimson Praetor Helm<br>【エッセンシア:Metallum50+Alienis30+Praemunio25】Brass Plate+Iron Plate5+Crimson Cult Banner+Crimson Cult Banner+Crimson Praetor Chestplate:Crimson Cult Robe<br>【エッセンシア:Metallum50+Alienis25+Praemunio25】Brass Plate+Iron Plate3+Crimson Cult Banner+Crimson Cult Greaves:Crimson Praetor Greaves</b><br>防御力鉄以上ダイヤ以下。効果はない。</td>
</tr>
<tr class="tr">
<th><p class="itemname">Crimson Blade</p></th>
<th width="700">説明</th>
</tr>
<tr>
<td class="recipeimage"><img src="images/tc/6.png"></td>
<td class="modexp"><b>【神秘の祭壇で作成】<br>【エッセンシア:Aversio75+Mortuus75+Vinculum25+Desiderium25】Mortuus Vis Crystal+Aversio Vis Crystal+Crimson Cult Banner+Void Metal Plate+Void Sword</b><br>攻撃力:15(<span class="heart"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/hearthalf.png"></span>)<br>耐久力が自動回復する。</td>
</tr>
</table>
<p class="recipe">・Thaumic Augmentation</p>
<p class="introtitle"><label class="pointer" for="checkmod8"><span><img src="images/plus.png" width=18></span><span>追加アイテム・ブロック一・Mob・ディメンション覧</span></label class="pointer" ></p>
<input type="checkbox" id="checkmod8" class="checkmod8">
<div class="cmod8">
<p>・中間素材</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Vis Regeneration Lattice</td>
<td class="recipeimage"><img src="images/ta/44.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>AerのVis結晶:1</p>
<p>AquaのVis結晶:1</p></div>
<br>シルバーウッドの木材*4<br>シルバーウッドの葉*4<br>エッセンシアフィルター*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Warding Sigil</td>
<td class="recipeimage"><img src="images/ta/16.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:10</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>魔法の樹脂*2<br>紫色の染料*2<br>ゾンビの脳*1</td>
<td>各種保護ブロックに使用する。</td>
</tr>
<tr>
<td class="vertical">Harness Base</td>
<td class="recipeimage"><img src="images/ta/88.png"></td>
<td class="modexp">
<br>真鍮板*1<br>革のチェストプレート*1<br>ただのベルト*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Impetus jewel</td>
<td class="recipeimage"><img src="images/ta/57.png"></td>
<td class="modexp"><p>【るつぼで作成】</p>
<div class=bd>
<p>Ordo:25</p>
<p>Potentia:10</p></div>
<br>虚無の種*1</td>
<td></td>
</tr>
</table>
<p>・装飾ブロック</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Ancient Bricks</td>
<td class="recipeimage"><img src="images/ta/77.png"></td>
<td class="modexp">いにしえの石*4</td>
<td></td>
</tr>
<tr>
<td class="vertical">Ancient Stone Stairs</td>
<td class="recipeimage"><img src="images/ta/82.png"><img src="images/ta/83.png"></td>
<td class="modexp">いにしえの石*6<br>or<br>いにしえの石ハーフブロック*6</td>
<td></td>
</tr>
<tr>
<td class="vertical">Ancient Pillar</td>
<td class="recipeimage"><img src="images/ta/82.png"></td>
<td class="modexp">いにしえの石ハーフブロック*2</td>
<td></td>
</tr>
<tr>
<td class="vertical">Smooth Ancient Brick</td>
<td class="recipeimage"><img src="images/ta/80.png"></td>
<td class="modexp">いにしえの石タイル*4</td>
<td></td>
</tr>
<tr>
<td class="vertical">Ancient Stone Tile Slab</td>
<td class="recipeimage"><img src="images/ta/84.png"></td>
<td class="modexp">いにしえの石タイル*3</td>
<td></td>
</tr>
<tr>
<td class="vertical">Void Stone</td>
<td class="recipeimage"><img src="images/ta/90.png"></td>
<td class="modexp"></td>
<td>ネザーに出現するDimensional Fractureの周辺に生成される。</td>
</tr>
<tr>
<td class="vertical">エルドリッチの石</td>
<td class="recipeimage"><img src="images/ta/91.png"></td>
<td class="modexp">【るつぼで作成】<br><span class=bd>Aliens:8</span><br>Void Stone*1</td>
<td>Thaumcraftで追加されるブロックだが、Thaumic Augmentationよりレシピが追加された。</td>
</tr>
<tr>
<td class="vertical">Eldritch Stone Stairs</td>
<td class="recipeimage"><img src="images/ta/85.png"><img src="images/ta/86.png"></td>
<td class="modexp">エルドリッチの石*6<br>or<br>エルドリッチの石ハーフブロック*6</td>
<td></td>
</tr>
<tr>
<td class="vertical">Ancient Lantern</td>
<td class="recipeimage"><img src="images/ta/81.png"></td>
<td class="modexp">いにしえの石*4<br>Impetus Jewel*1</td>
<td>明るさレベル15の光を発する。</td>
</tr>
<tr>
<td class="vertical">Fortified Glass</td>
<td class="recipeimage"><img src="images/ta/28.png"></td>
<td class="modexp">
<p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:20</p>
<p>OrdoのVis結晶:1</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p></div>
<br>ガラス*8<br>Warding Sigil*1</td>
<td>耐爆、耐汚染性能が非常に高いガラス。<br>Thaumcraftの保護ガラスのような見た目をしているが、ウィザーの体当たりは防げない。</td>
</tr>
<tr>
<td class="vertical">Fortified Glass Pane</td>
<td class="recipeimage"><img src="images/ta/87.png"></td>
<td class="modexp">Fortified Glass*6</td>
<td>耐爆、耐汚染性能が非常に高い板ガラス。</td>
</tr>
<tr>
<td class="vertical">Starfield Glass(Rift)</td>
<td class="recipeimage"><img src="images/ta/29.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:30</p>
<p>AerのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>Fortified Glass*8<br>エンダーパール*1</td>
<td>耐爆、耐汚染性能が非常に高いブロック。設置者以外には破壊できない。</td>
</tr>
<tr>
<td class="vertical">Starfield Glass(Dimensional Fracture)</td>
<td class="recipeimage"><img src="images/ta/30.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:30</p>
<p>AerのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>Fortified Glass*8<br>Void Stone*1</td>
<td>耐爆、耐汚染性能が非常に高いブロック。設置者以外には破壊できない。</td>
</tr>
<tr>
<td class="vertical">Starfield Glass(Magic Mirror)</td>
<td class="recipeimage"><img src="images/ta/31.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:30</p>
<p>AerのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>Fortified Glass*8<br>鏡板ガラス*1</td>
<td>耐爆、耐汚染性能が非常に高いブロック。設置者以外には破壊できない。</td>
</tr>
<tr>
<td class="vertical">Greatwood Arcane Door</td>
<td class="recipeimage"><img src="images/ta/45.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>グレートウッドの木材*6<br>真鍮板*2<br>Warding Sigil*1</td>
<td>設置者のみ開けることができるドア。<br>籠手を持った状態でドアの下部をシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Thaumium Arcane Door</td>
<td class="recipeimage"><img src="images/ta/46.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>魔導金属板*6<br>鉄板*2<br>Warding Sigil*1</td>
<td>設置者のみ開けることができるドア。<br>籠手を持った状態でドアの下部をシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Silverwood Arcane Door</td>
<td class="recipeimage"><img src="images/ta/47.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>シルバーウッドの木材*6<br>鉄板*2<br>Warding Sigil*1</td>
<td>設置者のみ開けることができるドア。<br>籠手を持った状態でドアの下部をシフト+右クリックすると撤去できる。</td>
</tr>
</table>
<p>・その他ブロック</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Greatwood Button</td>
<td class="recipeimage"><img src="images/ta/32.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>グレートウッドの木材*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Silverwood Button</td>
<td class="recipeimage"><img src="images/ta/33.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>シルバーウッドの木材*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Arcane Stone Button</td>
<td class="recipeimage"><img src="images/ta/34.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>神秘の石*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Greatwood Arcane Button</td>
<td class="recipeimage"><img src="images/ta/35.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>グレートウッドの木材*1<br>Warding Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Silverwood Arcane Button</td>
<td class="recipeimage"><img src="images/ta/36.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>シルバーウッドの木材*1<br>Warding Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Arcane Stone Arcane Button</td>
<td class="recipeimage"><img src="images/ta/37.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>神秘の石*1<br>Warding Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Greatwood Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/38.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>グレートウッドの木材*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Silverwood Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/39.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>シルバーウッドの木材*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Arcane Stone Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/40.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>神秘の石*1</td>
<td></td>
</tr>
<tr>
<td class="vertical">Greatwood Arcane Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/41.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>Greatwood Pressure Plate*1<br>Warding Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Silverwood Arcane Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/42.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>Silverwood Pressure Plate*1<br>Warding Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Arcane Stone Arcane Pressure Plate</td>
<td class="recipeimage"><img src="images/ta/43.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:5</p>
</div>
<br>Arcane Stone Pressure Plate<br>Warded Sigil*1</td>
<td>設置者以外破壊、押すことができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Greatwood Arcane Trapdoor</td>
<td class="recipeimage"><img src="images/ta/18.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>グレートウッドの木材*6<br>真鍮板*2<br>Warded Sigil*1</td>
<td>設置者以外破壊、開けることができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Silverwood Arcane Trapdoor</td>
<td class="recipeimage"><img src="images/ta/20.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>シルバーウッドの木材*6<br>鉄板*2<br>Warded Sigil*1</td>
<td>設置者以外破壊、開けることができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
<tr>
<td class="vertical">Arcane Stone Arcane Trapdoor</td>
<td class="recipeimage"><img src="images/ta/19.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>魔導金属板*6<br>鉄板*2<br>Warded Sigil*1</td>
<td>設置者以外破壊、開けることができない。<br>籠手を持った状態でシフト+右クリックすると撤去できる。</td>
</tr>
</table>
<p>・基本アイテム</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Seal Copier</td>
<td class="recipeimage"><img src="images/ta/62.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Cognitio:25</p>
<p>Machina:10</p></div>
<br>ゴーレム術師の鐘*1<br>空白の印章*1<br>ゾンビの脳*2</td>
<td>設置された印章に対して右クリックで印章の情報をコピーできる。<br>他の同種の印章に再び右クリックすると最初にコピーした情報をペーストできる。<br>シフト+右クリックで情報をリセットできる。</td>
</tr>
<tr>
<td class="vertical">Flux Seed(Flux: 100)</td>
<td class="recipeimage"><img src="images/ta/73.png"></td>
<td class="modexp"><p>【るつぼで作成】</p>
<div class=bd>
<p>Vitium:50</p></div>
<br>虚無の種*1</td>
<td>右クリックしたチャンクのフラックス値を100増加させる。</td>
</tr>
<tr>
<td class="vertical">Flux Seed(Flux: 200)</td>
<td class="recipeimage"><img src="images/ta/74.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Vitium:50</p></div>
<br>Flux Seed(Flux: 100)*1<br>VitiumのVis結晶*1</td>
<td>右クリックしたチャンクのフラックス値を200増加させる。</td>
</tr>
<tr>
<td class="vertical">Flux Seed(Flux: 300)</td>
<td class="recipeimage"><img src="images/ta/75.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Vitium:100</p></div>
<br>Flux Seed(Flux: 100)*1<br>VitiumのVis結晶*2</td>
<td>右クリックしたチャンクのフラックス値を300増加させる。</td>
</tr>
<tr>
<td class="vertical">Flux Seed(Flux: 1000)</td>
<td class="recipeimage"><img src="images/ta/76.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Vitium:500</p></div>
<br>Flux Seed(Flux: 100)*1<br>VitiumのVis結晶*9</td>
<td>右クリックしたチャンクのフラックス値を1000増加させる。</td>
</tr>
<tr>
<td class="vertical">Fracture Locator</td>
<td class="recipeimage"><img src="images/ta/4.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>AerのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>真鍮板*4<br>VacuosのVis結晶:4<br>レアアース*1</td>
<td>ネザーでDimensional Fractureを見つけるための道具。<br>Dimensional Fractureの方角を向くと紫色に変わっていく。</td>
</tr>
<tr>
<td class="vertical">Primal Cutter</td>
<td class="recipeimage"><img src="images/ta/64.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Terra*75</p>
<p>Aversio*75</p>
<p>Instrumentum*50</p>
<p>Praecantatio*50</p>
<p>Vacuos*50</p>
<p>Alienis*50</p>
<p>Desiderium*5</p></div>
<br>始原の真珠*1<br>ゼファーの剣:1<br>虚無の斧*1<br>虚無の剣*1<br>流水の斧*1</td>
<td>攻撃力10(<span class="heart"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png"></span>)<br>歪み促進2が付いている。<br>複数体敵がいると攻撃されたモブ以外の2体のモブに攻撃が入る。<br>流水の斧と同じ効果を持ち、木を上の方から切り始める。<br>攻撃されたモブは弱体化Ⅱを付与される。<br>右クリックを長押しすると周囲のMobを引き寄せる。<br>耐久力が自動回復する。</td>
</tr>
<tr>
<td class="vertical">Elytra Harness</td>
<td class="recipeimage"><img src="images/ta/68.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Motus*75</p>
<p>Potentia*50</p>
<p>Volatus*50</p></div>
<br>ただのベルト*1<br>虚無鋼板:2<br>Impetus Cell*1<br>AlienisのVis結晶*1<br>VacuosのVis結晶*1</td>
<td>制限付きエリトラ。<br>Bauble枠に装備できる。<br>飛行中に耐久力が1秒に1減っていく。<br>Visを50まで充填でき、耐久力の前にVisを消費する。<br>耐久力が1になった段階で羽が閉じ、壊れることはないが落下死に注意。<br>地上にいる間は耐久力が自然回復する。</td>
</tr>
<tr>
<td class="vertical">Impetus Thruster Upgrade</td>
<td class="recipeimage"><img src="images/ta/69.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Motus*75</p>
<p>Potentia*50</p>
<p>Volatus*45</p>
<p>Alienis*25</p></div>
<br>ただのベルト*1<br>金インゴット:2<br>羽*2<br>VolatusのVis結晶*1<br>Impetus Jewel*1<br>AerのVis結晶*1</td>
<td>Elytra Harnessとクラフトするとアップグレードができる。<br>推進力充填でき、それを消費して飛行中にスペースを押すと上昇できるようになる。<br>アップグレード後のElytra Harnessは単体クラフトで分離させることができる。</td>
</tr>
<tr>
<td class="vertical">Thaumostatic Harness</td>
<td class="recipeimage"><img src="images/ta/65.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Machina*50</p>
<p>Potentia*50</p>
<p>Volatus*50</p>
<p>Motus*25</p></div>
<br>形態共鳴器*1<br>AerのVis結晶:2<br>神秘の浮遊器*1<br>グレートウッドの木材*2</td>
<td>Visを消費してクリエ飛行ができる。<br>Bauble枠に装備できる。<br>Visを最大まで充填すると5分間連続で飛行できる。</td>
</tr>
<tr>
<td class="vertical">Gyroscope Upgrade</td>
<td class="recipeimage"><img src="images/ta/66.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Vinculum*35</p>
<p>Aer*25</p>
<p>Volatus*25</p></div>
<br>ただのベルト*1<br>魔導金属板:2<br>レッドストーン*1<br>VinculumのVis結晶*1</td>
<td>Thaumostatic Harnessとクラフトするとアップグレードができる。<br>飛行速度はやや落ちるが、最大充填で7分半連続飛行できる。<br>アップグレード後のThaumostatic Harnessは単体クラフトで分離させることができる。</td>
</tr>
<tr>
<td class="vertical">Girdle Upgrade</td>
<td class="recipeimage"><img src="images/ta/67.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Aer*50</p>
<p>Motus*25</p>
<p>Volatus*25</p></div>
<br>ただのベルト*1<br>金インゴット:2<br>羽*2<br>VolatusのVis結晶*1<br>AerのVis結晶*1</td>
<td>Thaumostatic Harnessとクラフトするとアップグレードができる。<br>飛行中にスプリントができるようになるが、最大連続飛行時間が4分9秒にまで落ちる。<br>アップグレード後のThaumostatic Harnessは単体クラフトで分離させることができる。</td>
</tr>
<tr>
<td class="vertical">Impulse Cannon</td>
<td class="recipeimage"><img src="images/ta/71.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Alienis*75</p>
<p>Aversio*75</p>
<p>Potentia*75</p>
<p>Machina*50</p>
<p>Mortuus*50</p>
<p>Vacuos*30</p>
<p>Tenebrae*25</p></div>
<br>Impetus Cell*1<br>虚無鋼板:2<br>安定器*1<br>真鍮板*1<br>形態共鳴器*1<br>Redstone Inlay*1<br>Impetus Jewel*1<br>精密神秘機巧*1<br>魔導金属板*1</td>
<td>充填した推進力を消費してビームを放つ。<br>秒間1連射でき、射撃ダメージは一発6(<span class="heart"><img src="images/heart.png"><img src="images/heart.png"><img src="images/heart.png">)。<br>射程範囲は33ブロック。</td>
</tr>
</table>
<p>・裂け目関連</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Flux Inducer</td>
<td class="recipeimage"><img src="images/ta/59.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Machina:50</p>
<p>Vitium:30</p>
<p>Alienis:10</p>
<p>Vacuos:5</p></div>
<br>組み入れ型エッセンシア輸液器*1<br>エッセンシア管*2<br>簡易神秘機巧*1<br>真鍮板*1<br>形態共鳴器*1<br>グレートウッドの木材*1</td>
<td>Vitiumのエッセンシアを裂け目に注入することで裂け目を成長させる装置。<br>紫色の面が裂け目に面していてかつ裂け目から12ブロック以内にある必要がある。<br>エッセンシアは注入面以外の5面からエッセンシア管を繋げられる。<br>最大2倍にまで成長する。</td>
</tr>
<tr>
<td class="vertical">Metaspatial Accumulator</td>
<td class="recipeimage"><img src="images/ta/60.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Vinculum:50</p>
<p>Machina:30</p>
<p>Vacuos:30</p>
<p>Vitium:25</p>
<p>Alienis:20</p>
<p>Permutatio:10</p></div>
<br>琥珀ブロックor琥珀レンガ*1<br>虚無の種*1<br>鉄板*1<br>神秘の石*2<br>虚無鋼板*2<br>真鍮板*1</td>
<td>裂け目をReinforced Jarに閉じ込める装置。<br>裂け目の真下にある必要があり、Metaspatial Accumulatorの下にReinforced Jarを設置する。<br>籠手で右クリックすると動作する。<br>Reinforced Jarは動作が終わるとRift in a Jarになる。</td>
</tr>
<tr>
<td class="vertical">Metaspatial Extruder</td>
<td class="recipeimage"><img src="images/ta/61.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Perditio:50</p>
<p>Machina:30</p>
<p>Vacuos:30</p>
<p>Vitium:25</p>
<p>Alienis:20</p>
<p>Permutatio:10</p></div>
<br>アルメンタム*1<br>虚無の種*1<br>簡易神秘機巧*1<br>虚無鋼板*2<br>エルドリッチの石*1<br>真鍮板*1</td>
<td>裂け目をRift in a Jarにから開放する装置。<br>Metaspatial Accumulatorの下にRift in a Jarを設置し、籠手で右クリックすると動作する。</td>
</tr>
<tr>
<td class="vertical">Reinforced Jar</td>
<td class="recipeimage"><img src="images/ta/12.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>OrdoのVis結晶:1</p></div>
<br>Warded Sigil*1<br>保護瓶*1<br>鉄板*1</td>
<td>裂け目を収納するための瓶。</td>
</tr>
<tr>
<td class="vertical">Extradimentional Monitor</td>
<td class="recipeimage"><img src="images/ta/14.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:50</p>
<p>AerのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>PerditioのVis結晶:1</p>
<p>IgnisのVis結晶:1</p>
<p>OrdoのVis結晶:1</p>
<p>AquaのVis結晶:1</p></div>
<br>エルドリッチの石*3<br>ソーモメーター*1<br>エルドリッチの石*3</td>
<td>近くの裂け目をモニターできる。右クリックでモード変更ができる。</td>
</tr>
<tr>
<td class="vertical">Stability Field Generator</td>
<td class="recipeimage"><img src="images/ta/13.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:250</p>
<p>TerraのVis結晶:1</p>
<p>AerのVis結晶:1</p>
<p>OrdoのVis結晶:1</p></div>
<br>真鍮板*2<br>琥珀ブロック*1<br>神秘の石ハーフブロック*2<br>簡易神秘機巧*1<br>神秘の石*2<br>レッドストーン</td>
<td>5RF/t消費することで周囲の裂け目を安定させる装置。</td>
</tr>
</table>
<p>・推進力関連</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Impetus Drainer</td>
<td class="recipeimage"><img src="images/ta/23.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:50</p>
<p>IgnisのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>虚無鋼板*4<br>虚無鋼ブロック*1<br>Impetus Jewel*1<br>エルドリッチの石*2<br>鉄格子*1</td>
<td>裂け目から推進力を生成する装置。<br>裂け目に隣接して設置する必要がある。</td>
</tr>
<tr>
<td class="vertical">Impetus Relay</td>
<td class="recipeimage"><img src="images/ta/22.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>IgnisのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>Impetus Jewel*1<br>虚無鋼板*1</td>
<td>推進力を上限距離以上に輸送するために使う。</td>
</tr>
<tr>
<td class="vertical">Impetus Gate</td>
<td class="recipeimage"><img src="images/ta/27.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:50</p>
<p>TerraのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>Warded Sigil*1<br>虚無鋼板2<br>Impetes Relay*1<br>レッドストンリピーター*1</td>
<td>Impetus Relayの上位版。レッドストーン信号でON/OFFができる。</td>
</tr>
<tr>
<td class="vertical">Impetus Diffuser</td>
<td class="recipeimage"><img src="images/ta/24.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:50</p>
<p>IgnisのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>鉄板<br>虚無鋼板*3<br>Impetus Jewel*1<br>神秘の石*2</td>
<td>推進力を周囲8ブロックのプレイヤーのアイテムに充電させる装置。</td>
</tr>
<tr>
<td class="vertical">Void Recharge Pedestal</td>
<td class="recipeimage"><img src="images/ta/25.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:75</p>
<p>IgnisのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>AlienisのVis結晶*2<br>Impetus Jewel*1<br>簡虚無鋼板*2<br>水銀*1<br>エルドリッチの石*3</td>
<td>推進力をチャージできるアイテムに推進力をチャージする装置。</td>
</tr>
<tr>
<td class="vertical">Impetus Generator</td>
<td class="recipeimage"><img src="images/ta/26.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:100</p>
<p>IgnisのVis結晶</p>
<p>AerのVis結晶</p>
<p>OrdoのVis結晶</p>
<p>PerditioのVis結晶</p></div>
<br>エルドリッチの石*4<br>レッドストーン*1<br>レアアース*2<br>ピストン*1<br>Impetus Jewel*1</td>
<td>推進力を消費して50RF/t発電する。</td>
</tr>
<tr>
<td class="vertical">Impetus Matrix</td>
<td class="recipeimage"><img src="images/ta/93.png"><img src="images/ta/94.png"></td>
<td class="modexp">エルドリッチの台座*2<br>ルーンのマトリックス*1</td>
<td>推進力を溜めておける構造物。<br>ブロックを並べたら、サリス・ムンドゥスをルーンのマトリックスに右クリックで活性化できる。<br>Impetus Cellを上下の台座4面計8個付けることができ、これが蓄電池の役割をする。<br>もし不安定な状態になってImpetus Cellが外れてしまった場合、溜めてあった推進力は消失する。<br>神秘の祭壇と同様の方法で安定化できる。<br>推進力が溜まっている量でImpetus Matrixの色が変わり、赤→黄色に変わっていき、最終的に緑になると満タンになった証拠。</td>
</tr>
<tr>
<td class="vertical">Impetus Mirror</td>
<td class="recipeimage"><img src="images/ta/72.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Motus:25</p>
<p>Permutatio:25</p>
<p>Potentia:25</p></div>
<br>鏡板ガラス*1<br>虚無鋼板*2<br>エンダーパール*1<br>Impetus Jewel*1</td>
<td>推進力をテレポートできる鏡。<br>設置することができ、入力側を置いたら出力側で使うImpetus Mirrorで右クリックして2つの鏡をリンクさせることができる。</td>
</tr>
<tr>
<td class="vertical">Impetus Resonator</td>
<td class="recipeimage"><img src="images/ta/58.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:125</p>
<p>OrdoのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>虚無鋼板*3<br>Impetus Jewel*1<br>棒1</td>
<td>装置から装置へと推進力を流すためにリンクさせる道具。<br>送る側にImpetus Resonatorを持った状態でシフト+右クリックし、受け取り側を右クリックするとリンクできる。<br>リンクに成功するとブロックに色のついたボックスが現れるが、これは推進力の方向を示している。<br>青→緑→赤の順に推進力が流れている。</td>
</tr>
<tr>
<td class="vertical">Biome Focus</td>
<td class="recipeimage"><img src="images/ta/51.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>AerのVis結晶:1</p>
<p>OrdoのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>真鍮板*3<br>魔導金属板*4<br>水銀*1</td>
<td>現在立っている場所のバイオームを記録できる。<br>単体クラフトで記録をリセットできる。</td>
</tr>
<tr>
<td class="vertical">Arcane Teraformer</td>
<td class="recipeimage"><img src="images/ta/17.png"><img src="images/ta/95.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:150</p>
<p>IgnisのVis結晶:1</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p>
<p>AerのVis結晶:1</p>
<p>OrdoのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>魔導金属板*3<br>ポーション噴霧器*1<br>エッセンシア管*3<br>Impetus Jewel*1</td>
<td>周囲のバイオームをBiome Focusで記録したバイオームに変換する装置。<br>変更したいバイオームのBiome FocusをArcane TeraformerのGUIに置くと左側にエッセンシアが要求される。<br>右側は範囲や形状を設定できる。<br>バイオームを変更するには要求されたエッセンシア、空気中のオーラ、推進力が必要。<br>エッセンシアはPermutatioが必ず要求され、下面から供給できる。<br>籠手でArcane Teraformerを右クリックすると変更が開始される。<br>再びクリックすると中断されるが、既に置き換わったバイオームはArcane Teraformerで変更する以外に戻す方法はない。<br>大気中のオーラを消費し続けるので、大規模な変更の際はVis Regeneratorを設置しておくことをお勧めする。</td>
</tr>
</table>
<p>・籠手関連</p>
<hr width="1320">
<table border=1 class="recipe ta">
<tr class="tr">
<th width="80">名前</th>
<th width="250">画像</th>
<th width="350">作り方</th>
<th>説明</th>
</tr>
<tr>
<td class="vertical">Thaumium Caster's Gauntlet</td>
<td class="recipeimage"><img src="images/ta/1.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:250</p>
<p>AerのVis結晶:2</p>
<p>TerraのVis結晶:2</p>
<p>PerditioのVis結晶:2</p>
<p>IgnisのVis結晶:2</p>
<p>OrdoのVis結晶:2</p>
<p>AquaのVis結晶:2</p></div>
<br>魔導金属板*3<br>魔法の布*4<br>Vis共鳴器*1<br>ソーモメーター*1</td>
<td>消費Visを10%軽減、魔法のクールタイムを僅かに減少させる。<br>また、このアドオンで追加されるオーグメントを最大3つまで付与できる。</td>
</tr>
<tr>
<td class="vertical">Voidseer Caster's Gauntlet</td>
<td class="recipeimage"><img src="images/ta/92.png"></td>
<td class="modexp"><p>【神秘の祭壇で作成】</p>
<div class=bd>
<p>Alienis:75</p>
<p>Vacuos:75</p>
<p>Potentia:50</p></div>
<br>虚無覗きの真珠*1<br>サリス・ムンドゥス*1<br>魔法の布*1<br>虚無鋼板*4</td>
<td>消費Visを30%軽減、魔法のクールタイムを減少させ、周囲3x3からオーラを吸収する。<br>歪み促進2が付いている。<br>また、このアドオンで追加されるオーグメントを最大3つまで付与できる。</td>
</tr>
<tr>
<td class="vertical">Impetus Conductor</td>
<td class="recipeimage"><img src="images/ta/2.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:25</p>
<p>AerのVis結晶:1</p>
<p>IgnisのVis結晶:1</p>
<p>PerditioのVis結晶:1</p></div>
<br>魔導金属板*1<br>Impetus Cell*1</td>
<td>Impetus Power(推進力)を溜めて使うことができる。<br>推進力はVoid Recharge Pedestalでチャージできる。</td>
</tr>
<tr>
<td class="vertical">Effect Crystal: Focus Power</td>
<td class="recipeimage"><img src="images/ta/55.png"></td>
<td class="modexp"><p>【るつぼで作成】</p>
<div class=bd>
<p>Aversio:15</p>
<p>Vitreus:10</p>
<p>Praecantatio:5</p></div>
<br>OrdoのVis結晶*1</td>
<td>各種Modifierとクラフトして籠手にセットして使うことができる。<br>魔法をより強力にする効果がある。</td>
</tr>
<tr>
<td class="vertical">Effect Crystal: Cast Speed</td>
<td class="recipeimage"><img src="images/ta/56.png"></td>
<td class="modexp"><p>【るつぼで作成】</p>
<div class=bd>
<p>Potentia:15</p>
<p>Vitreus:10</p>
<p>Praecantatio:5</p></div>
<br>OrdoのVis結晶*1</td>
<td>各種Modifierとクラフトして籠手にセットして使うことができる。<br>魔法のクールタイムを削減する効果がある。</td>
</tr>
<tr>
<td class="vertical">Effect Crystal: Vis Discount</td>
<td class="recipeimage"><img src="images/ta/54.png"></td>
<td class="modexp"><p>【るつぼで作成】</p>
<div class=bd>
<p>Auram:15</p>
<p>Vitreus:10</p>
<p>Praecantatio:5</p></div>
<br>OrdoのVis結晶*1</td>
<td>各種Modifierとクラフトして籠手にセットして使うことができる。<br>魔法使用時のVisを削減する効果がある。</td>
</tr>
<tr>
<td class="vertical">Modifier: Experience</td>
<td class="recipeimage"><img src="images/ta/6.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:15</p>
<p>OrdoのVis結晶:1</p></div>
<br>Vis共鳴器*1<br>エメラルド*2<br>ラピスラズリ*1
<td>Effect Crystalとクラフトして籠手にセットして使うことができる。<br>現在の経験値が多い程、魔法が強力になる。</td>
</tr>
<tr>
<td class="vertical">Vis Battery Augment</td>
<td class="recipeimage"><img src="images/ta/7.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:50</p>
<p>AerのVis結晶:2</p>
<p>IgnisのVis結晶:2</p>
<p>OrdoのVis結晶:2</p>
<p>PerditioのVis結晶:2</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p></div>
<br>神秘の石*4<br>Vis電池*4<br>形態共鳴器*1
<td>籠手にセットして使うことができる。<br>チャンクの最大Vis量が90%以上の時にVisを40まで吸収できる。<br>Vis Battery Argument内のVisはチャンク内のVisが不足した時のみ使われる。</td>
</tr>
<tr>
<td class="vertical">Modifier: Overworld</td>
<td class="recipeimage"><img src="images/ta/3.png"></td>
<td class="modexp"><p>【神秘の作業台で作成】</p>
<div class=bd><p>消費Vis:15</p>
<p>AquaのVis結晶:1</p>
<p>TerraのVis結晶:1</p></div>