forked from Conga0/Apotheosis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
2080 lines (1806 loc) · 187 KB
/
Copy pathinit.lua
File metadata and controls
2080 lines (1806 loc) · 187 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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
dofile_once("data/scripts/lib/utilities.lua")
--local modCompatibilityConjurer = ModSettingGet( "Apotheosis.mod_compat_mode_conjurer" )
local modCompatibilitySpellEvolutions = ModSettingGet("Apotheosis.mod_compat_mode_spell_evolution")
local motdSetting = ModSettingGet("Apotheosis.motd_setting")
local seasonalSetting = ModSettingGet("Apotheosis.seasonal_events")
local spoopyGFXSetting = ModSettingGet("Apotheosis.spoopy_graphics")
local seasonalForced_AprilFools = ModSettingGet("Apotheosis.seasonal_events_forced_april_fools")
local seasonalForced_Birthday = ModSettingGet("Apotheosis.seasonal_events_forced_birthday")
local seasonalForced_Halloween = ModSettingGet("Apotheosis.seasonal_events_forced_halloween")
local seasonalForced_Smissmass = ModSettingGet("Apotheosis.seasonal_events_forced_smissmass")
local experimental_biomemap = ModSettingGet("Apotheosis.exp_biomemap")
local capeSetting = ModSettingGet("Apotheosis.secret_golden_cape")
--Debug flag removals, be sure to remove before release!!!
--RemoveFlagPersistent( "apotheosis_card_unlocked_secret_knowledge_of_kings" )
--RemoveFlagPersistent( "apotheosis_card_unlocked_secret_knowledge_of_kings_spell" )
--Spawn Bosses
--This was a coding marathon and a half, huge shoutouts to Horscht for the help on this one.
--And Zathers for making this lua file
--Note: This has been moved lower down for cleaner organisation & implementing mod compatibility
--Note: 16/06/2023 Some boss spawns may be moved into biome files as well
if not GameIsBetaBuild() then -- Beta file creation, see apotheosis/betatemp/folder_desc.txt for more details
local files = {
{
"meat.lua",
"data/scripts/biomes/meat.lua"
},
{
"meat.xml",
"data/biome/meat.xml"
},
{
"miner_hell.xml",
"data/entities/animals/miner_hell.xml"
},
{
"shotgunner_hell.xml",
"data/entities/animals/shotgunner_hell.xml"
},
{
"sniper_hell.xml",
"data/entities/animals/sniper_hell.xml"
},
{
"gfx/miner_hell.xml",
"data/enemies_gfx/miner_hell.xml"
},
{
"gfx/shotgunner_hell.xml",
"data/enemies_gfx/shotgunner_hell.xml"
},
{
"gfx/sniper_hell.xml",
"data/enemies_gfx/sniper_hell.xml"
},
{
"gfx/sniper_hell_overlay.xml",
"data/enemies_gfx/sniper_hell_overlay.xml"
},
{
"sniperbullet_hell.xml",
"data/entities/projectiles/sniperbullet_hell.xml"
},
{
"tnt_hell.xml",
"data/entities/projectiles/tnt_hell.xml"
}
}
for k = 1, #files do
local content = ModTextFileGetContent(table.concat({ "mods/apotheosis/betatemp/", files[k][1] }))
ModTextFileSetContent(files[k][2], content)
end
--Adds in meat biome materials
ModMaterialsFileAdd("mods/Apotheosis/betatemp/materials.xml")
end
-- Spell Unlock Fixes
-- If someone attains a spell through another mod, twitch integration, etc, this is just to make sure they aren't getting unlocks they shouldn't.
-- They'll still get the spell, it just won't be added to their permanent record
-- Rat bite isn't "verified" because it's a funny spell
-- Protect spell progress in case of accidental unlocks
do
for _, entry in ipairs({
"divinebeing",
"boss_toxic_worm",
"musical_boss",
"blob_boss",
"fire_lukki",
"boss_flesh_monster",
"cat_secret",
"orb_12",
"orb_14",
"orb_15",
"orb_16",
"lost_alchemy",
"omega_cross",
}) do
local progressflag = "apotheosis_card_unlocked_" .. entry
if HasFlagPersistent( progressflag ) then
AddFlagPersistent( progressflag .. "_spell" )
else
RemoveFlagPersistent( progressflag .. "_spell" )
end
end
end
--Ending Reward
if HasFlagPersistent("apotheosis_card_unlocked_ending_apotheosis_02") then
AddFlagPersistent("apotheosis_card_unlocked_ending_apotheosis_02_spell")
else
RemoveFlagPersistent("apotheosis_card_unlocked_ending_apotheosis_02_spell")
end
--Ensure this flag is never enabled, so spells can properly be disabled in hardcore mode while still appearing in the progress log
RemoveFlagPersistent("this_should_never_spawn")
--Description fix for Ghostly Vision Perk
--Wow, I've come a long way since then.
--Thankyou for all the help, gamers!
local content = ModTextFileGetContent("data/translations/common.csv")
ModTextFileSetContent("data/translations/common.csv", content .. [[
perk_apotheosis_ghostly_vision,Ghostly Vision,Призрачное зрение,,,,,,,,霊感,,,,
perk_apotheosis_ghostly_vision_description,You can see things which aren't there.. Without assistance.,"Вы можете видеть вещи, которых тут нет... Без посторонней помощи.",,,,,,,,見えないものが見えるようになる,,,,
perk_apotheosis_ghostly_vision,Ghostly Vision,Призрачное зрение,,,,,,,,霊感,,,,
perk_apotheosis_ghostly_vision_description,You can see things which aren't there.. Without assistance.,"Вы можете видеть вещи, которых тут нет... Без посторонней помощи.",,,,,,,,見えないものが見えるようになる,,,,
perk_apotheosis_rage_aura,Enraging Aura,Раздражающая аура,,,,,,,,オラオラオーラ,,,,
perk_apotheosis_rage_aura_description,Creatures are sent into a blind rage by your presence.,От вашего присутствия существа впадают в слепую ярость.,,,,,,,,周囲の生物が激しく怒り出す,,,,
book_apotheosis_divine_liquid,Tablet of Apotheosis,Скрижаль Апофеоза,,,,,,,,神性の碑文,,,,
book_apotheosis_divine_liquid_description,"Long have been the days since the universe was in union. \nWhen Slime was no different from above and below was no different from slime. \nSome species have adapted to these changes however, excessively, and became attuned to the pinnacles and depths of this world. \nThey must distance themselves with truly divine purpose.","Давно прошли те дни, когда вселенная была в единстве. \nКогда слизь не отличалась от верха, а низ не отличался от слизи. \nНекоторые виды, однако, чрезмерно приспособились к этим изменениям и стали сонастроены с вершинами и глубинами этого мира. \nОни должны отдаляться с истинно божественной целью.",,,,,,,,,,,,
book_apotheosis_materia_conversion_description,"Transmutation.. Materia Conversion. \nFor years I've dedicated my life to this art, only to foolishly trick myself. \nFor years I thought Materia Conversion could only be used on solid matter, \nBut only now in my last few days I've come to learn it can be harnessed on magic as well. \nI can only hope the fruits of my labour will not be forgotten.","Трансмутация. Превращение материи. \nГодами я посвящал свою жизнь этому искусству, но только для того, чтобы обмануть самого себя. \nДолгие годы я думал, что преобразование материи можно использовать только в твёрдой материи, \nНо только теперь, в последние дни, я узнал, что его можно использовать и в магии. \nОстаётся надеяться, что плоды моего труда не будут забыты.",,,,,,,,,,,,
book_apotheosis_trophy_room,Alchemist's Notes,Записи алхимика,,,,,,,,錬金術師のメモ,,,,
book_apotheosis_trophy_room_description,"I have come to learn this Tree was deemed unfitting of.. certain.. accomplishments by the gods. \nCross the lava, descend where you would not normal. \nThere they will humour you.","Я узнал, что боги сочли это Дерево непригодным для... определённых... свершений. \nПересеките лаву, спуститесь туда, куда обычно не спускаются. \nТам они будут над вами насмехаться.",,,,,,,,,,,,
book_apotheosis_trophy_room_description_purgatory,"I have come to learn this Tree was deemed unfitting of.. certain.. accomplishments by the gods. \nSpelunk east before you visit their place of worship, cross the fungus, holding the ceiling dear. \nThere they will humour you.","Я узнал, что боги сочли это Дерево непригодным для... определённых... свершений. \nСпешите на Восток, прежде чем посетить место их поклонения, перейдите по грибку, держась за потолок. \nТам они будут над вами насмехаться.",,,,,,,,,,,,
mat_cloth,Cloth,Ткань,,,,,,,,布,,,,
book_apotheosis_cat_rat,Cat Lover's Notes,Записи любителя кошек,,,,,,,,ネコ愛好家のメモ,,,,
book_apotheosis_cat_rat_description,My cats seem scared of normal rats.. \nBut have an irresistible hate towards magical rats for some reason. \nIt's kind of cute.. But I can't brush away the feeling they distance themselves with truly divine purpose...,"Мои кошки боятся обычных крыс... \nНо почему-то испытывают непреодолимую ненависть к магическим крысам. \nЭто даже мило... Но я не могу избавиться от ощущения, что они отдаляются от меня с поистине божественной целью...",,,,,,,,,,,,
item_apotheosis_chest_cursed,Pandora's Chest,Сундук Пандоры,,,,,,,,パンドラの箱,,,,
status_apotheosis_magicwet_ui,Magical Wetness,Магическая влажность,,,,,,,,魔法の水濡れ,,,,
statusdesc_apotheosis_magicwet_ui,Wet clothes protect you from fire.,Мокрая одежда защищает вас от огня.,,,,,,,,服がずぶ濡れだ。火には強そう。,,,,
status_apotheosis_magicfire_ui,Magical Fire,Волшебный огонь,,,,,,,,魔法の炎,,,,
statusdesc_apotheosis_magicfire_ui,You're on fire! Find water quickly!,Вы горите! Быстро найдите воду!,,,,,,,,服に火が付いた!水を被らなくては!,,,,
status_apotheosis_magicurine_ui,Magical Jarate,Волшебный Банкате,,,,,,,,魔法の尿濡れ,,,,
statusdesc_apotheosis_magicurine_ui,Wet clothes protect you from fire. \nYou sense an increased chance of receiving critical strikes.,Мокрая одежда защищает вас от огня. \nВы чувствуете повышенную вероятность получения критических попаданий по себе.,,,,,,,,服がずぶ濡れだ。火には強そう。敵の攻撃がクリティカルヒットする確率が上昇している。,,,,
status_apotheosis_magicpolymorph_ui,Magical Polymorph,Волшебный полиморфизм,,,,,,,,魔法の多形濡れ,,,,
statusdesc_apotheosis_magicpolymorph_ui,You have been polymorphed into a vulnerable sheep!,Вы превратились в беззащитную овцу!,,,,,,,,か弱い子羊になってしまった。,,,,
log_apotheosis_reality_mutation_00,YOU SENSE THE REALITY HAS SHIFTED,"ВЫ ЧУВСТВУЕТЕ, ЧТО В РЕАЛЬНОСТИ ЧТО-ТО СМЕСТИЛОСЬ",,,,,,,,世界が転移した!,,,,
log_apotheosis_reality_mutation_01,YOU FEEL THE WORLD'S CREATURES HAVE CHANGED,"ВЫ ЧУВСТВУЕТЕ, ЧТО СУЩЕСТВА МИРА ИЗМЕНИЛИСЬ",,,,,,,,数多の生命がその姿を変えていく!,,,,
log_apotheosis_reality_mutation_02,THE WORLD'S LIFE HAS BEEN SHAKEN,ЖИЗНЬ МИРА ПОШАТНУЛАСЬ,,,,,,,,生命たちの存在が揺らいでいる!,,,,
log_apotheosis_reality_mutation_03,YOU SENSE THE PATH OF EVOLUTION HAS CHANGED,"ВЫ ЧУВСТВУЕТЕ, ЧТО ПУТЬ ЭВОЛЮЦИИ ИЗМЕНИЛСЯ",,,,,,,,進化の道筋が変わっていく!,,,,
log_apotheosis_reality_mutation_04,YOU FEEL REALITY HAS BEEN ALTERED,"ВЫ ЧУВСТВУЕТЕ, ЧТО В РЕАЛЬНОСТИ ЧТО-ТО ИЗМЕНИЛОСЬ",,,,,,,,世界が姿を変えてしまった!,,,,
log_apotheosis_reality_mutation_05,YOU FEEL LIFE IN THE COSMOS HAS SHIFTED,"ВЫ ЧУВСТВУЕТЕ, ЧТО ЖИЗНЬ В КОСМОСЕ СДВИНУЛАСЬ",,,,,,,,宇宙の法則が乱れる!,,,,
material_apotheosis_meat_irritating,Irritating Meat,Раздражающее мясо,,,,,,,,イライラ肉,,,,
material_apotheosis_meat_decaying,Decaying Meat,Разлагающееся мясо,,,,,,,,腐食の肉,,,,
material_apotheosis_meat_feathery,Feathery Meat,Пернатое мясо,,,,,,,,フワフワ肉,,,,
material_apotheosis_meat_centipede,Centipede Meat,Мясо сороконожки,,,,,,,,ムカデの肉,,,,
material_apotheosis_sand_pink,Pink Sand,Розовый песок,,,,,,,,ピンクの粉末,,,,
material_apotheosis_sand_red,Red Sand,Синий песок,,,,,,,,赤い粉末,,,,
material_apotheosis_sand_insect_husk,Insect Husk,Шелуха насекомого,,,,,,,,甲虫の殻,,,,
material_apotheosis_mist_poison,Poisonous Mist,Ядовитый туман,,,,,,,,ポイズンミート,,,,
material_apotheosis_gem_green,Green Gem,Зелёный самоцвет,,,,,,,,緑の宝玉,,,,
material_apotheosis_magic_divine_liquid,Divine Liquid,Божественная жидкость,,,,,,,,聖なる液体,,,,
material_apotheosis_spark_orange,Orange Spark,Оранжевая искра,,,,,,,,オレンジの火花,,,,
material_apotheosis_blood_centipede,Centipede Blood,Кровь сороконожки,,,,,,,,ムカデの血,,,,
spell_apotheosis_thrower_disc_name,Giga Disc Projectile Thrower,Метатель гигантских дисков,,,,,,,,ギガディスクスローワー,,,,
spell_apotheosis_thrower_disc_desc,Makes a projectile cast Giga Disc Projectiles in random directions,Снаряд испускает гигантские дисковые снаряды в случайном направлении,,,,,,,,放射物が周囲にギガディスクを発射するようになる。,,,,
spell_apotheosis_thrower_cursed_orb_name,Cursed Orb Thrower,Метатель проклятых сфер,,,,,,,,呪われたオーブスローワー,,,,
spell_apotheosis_thrower_cursed_orb_desc,Makes a projectile cast Cursed Orbs in random directions,Снаряд испускает проклятые шары в случайном направлении,,,,,,,,放射物が周囲に呪われたオーブを発射するようになる。,,,,
spell_apotheosis_thrower_tnt_name,Dynamite Thrower,Метатель динамита,,,,,,,,TNTスローワー,,,,
spell_apotheosis_thrower_tnt_desc,Makes a projectile cast Dynamite in random directions,Снаряд испускает динамит в случайном направлении,,,,,,,,放射物が周囲にTNTを発射するようになる。,,,,
spell_apotheosis_thrower_ice_ball_name,Ice Ball Thrower,Метатель ледяных шариков,,,,,,,,氷の玉スローワー,,,,
spell_apotheosis_thrower_ice_ball_desc,Makes a projectile cast Ice Balls in random directions,Снаряд испускает ледяные шарики в случайном направлении,,,,,,,,放射物が周囲に氷の玉を発射するようになる。,,,,
spell_apotheosis_thrower_nuke_name,Nuke Thrower,Метатель ядерного оружия,,,,,,,,核爆弾スローワー,,,,
spell_apotheosis_thrower_nuke_desc,Are you sure? ,Вы уверены? ,,,,,,,,これ撃つの?マジ? ,,,,
spell_apotheosis_thrower_disc_enemy_name,Personal Giga Disc Projectile Thrower,Личный метатель гигантских дисков,,,,,,,,パーソナルギガディスクスローワー,,,,
spell_apotheosis_thrower_disc_enemy_desc,Makes a projectile turn the creatures it hits into living Sawblade throwers,"Снаряд превращает существ, с которыми сталкивается, в метателей пил",,,,,,,,放射物の当たった敵が周囲にギガディスクを発射するようになる。,,,,
spell_apotheosis_thrower_cursed_orb_enemy_name,Personal Cursed Orb Thrower,Личный метатель проклятых сфер,,,,,,,,パーソナル呪われたオーブスローワー,,,,
spell_apotheosis_thrower_cursed_orb_enemy_desc,Makes a projectile turn the creatures it hits into living Cursed Orb throwers,"Снаряд превращает существ, с которыми сталкивается, в метателей проклятых сфер",,,,,,,,放射物の当たった敵が周囲に呪われたオーブを発射するようになる。,,,,
spell_apotheosis_thrower_ice_ball_enemy_name,Personal Ice Ball Thrower,Личный метатель ледяных шариков,,,,,,,,パーソナル氷の玉スローワー,,,,
spell_apotheosis_thrower_ice_ball_enemy_desc,Makes a projectile turn the creatures it hits into living Ice Ball throwers,"Снаряд превращает существ, с которыми сталкивается, в метателей ледяных шариков",,,,,,,,放射物の当たった敵が周囲に呪われたオーブを発射するようになる。,,,,
spell_apotheosis_thrower_tnt_enemy_name,Personal Dynamite Thrower,Личный метатель динамита,,,,,,,,パーソナルTNTスローワー,,,,
spell_apotheosis_thrower_tnt_enemy_desc,Makes a projectile turn the creatures it hits into living Dynamite throwers,"Снаряд превращает существ, с которыми сталкивается, в метателей динамита",,,,,,,,放射物の当たった敵が周囲にTNTを発射するようになる。,,,,
spell_apotheosis_thrower_nuke_enemy_name,Personal Nuke Thrower,Личный метатель ядерного оружия,,,,,,,,パーソナル核爆弾スローワー,,,,
spell_apotheosis_thrower_nuke_enemy_desc,Makes a projectile turn the creatures it hits into living... Nuke throwers?!?!!,"Снаряд превращает существ, с которыми сталкивается, в... метателей ядерного оружия?!?!!",,,,,,,,放射物の当たった敵が発射するようになる……核爆弾を!?,,,,
spell_apotheosis_holy_orb_barrage_name,Holy Orb Barrage,Шквал священных сфер,,,,,,,,聖なる弾幕,,,,
spell_apotheosis_holy_orb_barrage_desc,Casts a barrage of 7 holy orbs. Also has some magical properties...,Вызывает шквал из 7 святых шаров. Также обладает некоторыми магическими свойствами...,,,,,,,,7発の聖なる弾を発射する。若干の魔法特性もある。,,,,
spell_apotheosis_cursed_orb_barrage_name,Cursed Orb Barrage,Шквал проклятых сфер,,,,,,,,邪悪な弾幕,,,,
spell_apotheosis_cursed_orb_barrage_desc,Casts a barrage of 7 cursed orbs. Has some noticeably destructive properties.,Вызывает шквал из 7 проклятых шаров. Обладает заметными разрушительными свойствами.,,,,,,,,7発の邪悪な弾を発射する。強力な破壊の力を秘めている。,,,,
spell_apotheosis_giga_bomb_name,Giga Bomb,Большая бомба,,,,,,,,ギガボム,,,,
spell_apotheosis_giga_bomb_desc,Explosion!!,Бум!!,,,,,,,,エクスプロージョン!!,,,,
spell_apotheosis_aqua_mine_name,Aqua Mine,Водяная мина,,,,,,,,機雷,,,,
spell_apotheosis_aqua_mine_desc,Creates an explosive Aquamine with subtle homing properties.,Создёет взрывоопасную водяную мину с тонкими свойствами самонаведения.,,,,,,,,浮遊する機雷を設置する。ホーミング性能が少しある。,,,,
spell_apotheosis_mass_materia_conversion_name,Mass Materia Conversion,Массовое преобразование материалов,,,,,,,,マテリア変換,,,,
spell_apotheosis_mass_materia_conversion_desc,Cave quid volunt,Cave quid volunt,,,,,,,,Cave quid volunt(欲望に流されるべからず),,,,
spell_apotheosis_bungal_shift_name,Fungal Shift,Грибковое смещение,,,,,,,,きのこシフト,,,,
spell_apotheosis_bungal_shift_desc,Cave quid volunt ,Cave quid volunt ,,,,,,,,Cave quid volunt(欲望に流されるべからず),,,,
spell_apotheosis_musical_proj_name,Musical Strike,Музыкальный удар,,,,,,,,ミュージックストライク,,,,
spell_apotheosis_musical_proj_desc,"Fires a powerful musical attack, careful not to lose your creativity","Стреляет мощной музыкальной атакой, стараясь не потерять свой творческий потенциал",,,,,,,,音楽のパワーで攻撃する。芸術は爆発だ!,,,,
spell_apotheosis_musical_proj_trig_name,Musical Strike with trigger,Музыкальный удар с активацией,,,,,,,,トリガー付きミュージックストライク,,,,
spell_apotheosis_musical_proj_trig_desc,"Fires a powerful musical attack, casts another spell upon collision","Стреляет мощной музыкальной атакой, при столкновении вызывает другое заклинание",,,,,,,,音楽のパワーで攻撃する。着弾時に後ろの魔法を発動する。,,,,
spell_apotheosis_reverberation_name,Reverberation,Реверберация,,,,,,,,エコー,,,,
spell_apotheosis_reverberation_desc,"Creates a reverberating sound in the air, slicing anything nearby to pieces.","Создаёт отзвук в воздухе, разрывая на куски всё, что находится поблизости.",,,,,,,,激しく反響する音を鳴らす。周囲のすべてを切断する力を持つ。,,,,
spell_apotheosis_bite_name,Bite,Укус,,,,,,,,かみつき,,,,
spell_apotheosis_bite_desc,...Magic?,...Волшебство?,,,,,,,,魔法とは?,,,,
spell_apotheosis_bungal_shift_hyper_name,Hyper Fungal Shift,Супергрибковое смещение,,,,,,,,スーパーきのこシフト,,,,
spell_apotheosis_bungal_shift_hyper_desc,Insane.... ,Безумие.... ,,,,,,,,やばい。,,,,
spell_apotheosis_summon_worm_name,Summon Jättimato,Призыв яттимато,,,,,,,,ヤッティマト召喚,,,,
spell_apotheosis_summon_worm_desc,Dangerous.... ,Опасно.... ,,,,,,,,あぶない,,,,
spell_apotheosis_bite_crit_name,Bloody Bite,Кровавый укус,,,,,,,,ブラッディーかみつき,,,,
spell_apotheosis_bite_crit_desc,Magic...............................? ,Волшебство...............................? ,,,,,,,,魔法とは????,,,,
spell_apotheosis_spells_to_sorako_name,Spells to Cats,Превращение в кошек,,,,,,,,呪文からネコへ,,,,
spell_apotheosis_spells_to_sorako_desc,Transforms every projectile currently in the air into Cats; a cute idea,"Превращает каждый снаряд, находящийся в воздухе, в кошку. Милая идея",,,,,,,,周囲の放射物をネコに変換する。かしこい!,,,,
spell_apotheosis_split_shot_name,Split Shot,Разделяющийся выстрел,,,,,,,,分裂ショット,,,,
spell_apotheosis_split_shot_desc,50% chance to duplicate the next cast,50% шанс на удвоение при следующем заклинании,,,,,,,,次に詠唱される魔法が50%の確率で複製される。,,,,
spell_apotheosis_status_drunk_name,Mass Drunk,Массовое пьянство,,,,,,,,ほろ酔いフィールド,,,,
spell_apotheosis_status_drunk_desc,Affects every creature in a large radius with a drunken curse,Проклятие пьянства действует на каждое существо в большом радиусе,,,,,,,,周囲のすべての生物が特殊な酔っ払い状態になる。,,,,
spell_apotheosis_status_wet_name,Mass Wet,Массовая влага,,,,,,,,ずぶ濡れフィールド,,,,
spell_apotheosis_status_wet_desc,Soaks every creature in a large radius with a magical wetness,Пропитывает волшебной влагой всех существ в большом радиусе,,,,,,,,周囲のすべての生物が特殊な水濡れ状態になる。,,,,
spell_apotheosis_status_fire_name,Mass Fire,Массовый огонь,,,,,,,,炎上フィールド,,,,
spell_apotheosis_status_fire_desc,Burns every creature in a large radius with a magical fire,Сжигает волшебным огнём всех существ в большом радиусе,,,,,,,,周囲のすべての生物が特殊な炎上状態になる。,,,,
spell_apotheosis_status_urine_name,Mass Jarate,Массовое Банкате,,,,,,,,尿フィールド,,,,
spell_apotheosis_status_urine_desc,Douses every creature in a large radius with a magical jarate.,Обливает всех существ в большом радиусе волшебным Банкате,,,,,,,,周囲のすべての生物が特殊な尿濡れ状態になる。,,,,
spell_apotheosis_status_polymorph_name,Mass Polymorph,Массовый полиморфизм,,,,,,,,変身フィールド,,,,
spell_apotheosis_status_polymorph_desc,Afflicts every creature in a large radius with a magical polymorphine,Поражает всех существ в большом радиусе волшебным полиморфизмом,,,,,,,,周囲のすべての生物が変身する。,,,,
setting_apotheosis_catimmortality_name,Cat immortality,Бессмертие кошек,,,,,,,,ネコの当たり判定無効化,,,,
setting_apotheosis_catimmortality_desc,Are cats immortal?,Являются ли кошки бессмертными?,,,,,,,,オンにすると、ネコが無敵になります。,,,,
setting_apotheosis_fairyimmortality_name,Fairy immortality,Бессмертие фей,,,,,,,,妖精の当たり判定無効化,,,,
setting_apotheosis_fairyimmortality_desc,Are Keiju immortal?,Являются ли Кейдзю бессмертными?,,,,,,,,オンにすると、妖精が無敵になります。,,,,
setting_apotheosis_motd_name,Message of the Day,Сообщение дня,,,,,,,,今日のひとこと,,,,
setting_apotheosis_motd_desc,Will a MOTD be displayed at the start of each run? \nMay contain bonus hints for various secrets.,Будет ли сообщение дня отображаться в начале каждого забега? \nМожет содержать бонусные подсказки с различными секретами.,,,,,,,,オンにすると、スタート地点に今日のひとことが書かれた看板が配置されます。\n隠し要素のヒントが書いてあることも?,,,,
setting_apotheosis_seasonal_name,Seasonal Events,Сезонные события,,,,,,,,季節イベント,,,,
setting_apotheosis_seasonal_desc,"Are seasonal events enabled? \nFor example, Halloween, More Creep's Birthday, etc.","Включены ли сезонные события? \nНапример, Хэллоуин, день рождения мода More Creep и т.д.",,,,,,,,季節イベントを有効にしますか?\nハロウィンやMODのリリース記念日など、追加イベントがたくさん!,,,,
setting_apotheosis_bosshealthmultiplier_name,Boss Health Multiplier,Множитель здоровья босса,,,,,,,,ボスのHP増加,,,,
setting_apotheosis_bosshealthmultiplier_desc,"Multiply all Bosses health by this much. \nFor those who seek extra durable opponents. \nDoes not affect Kolmisilma \nMinibosses will also have their health boosted by a partial amount. \nThis can be changed mid-run but may not update for all bosses, remember to restart after updating the multiplier.\n \nFor Modders: \nIf your mod isn't listed in the compatibility section of the mod page, \nthis likely won't boost it, you'll need to add a lua component to your bosses. \nDo not hesitate to contact me for instructions or help if needed. \nIt would be easiest for me to respond to you on discord, Conga Lyne#2452","Умножает здоровье всех боссов на это количество. \nДля тех, кто ищет особо стойких противников. \nНе влияет на Колмисильмяна \nМини-боссы также будут иметь частичное увеличение здоровья. \nЭто можно изменить в середине игры, но не для всех боссов, не забудьте перезапустить игру после обновления множителя.\n \nДля создателей модов: \nЕсли ваш мод не указан в разделе совместимости на странице модов, \nэто скорее всего не поможет, вам придётся добавить lua компонент к вашим боссам. \nНе стесняйтесь обращаться ко мне за инструкциями или помощью, если это необходимо. \nМне будет проще всего ответить вам в discord, Conga Lyne#2452.",,,,,,,,ボスのHPに倍率補正をかける上級者向けの設定です。\nコルミシルマには効果がありません。\nまた、ピットボスなどの中ボスにも一定程度効果が適用されます。\nプレイ中に設定を変更することも可能ですが、変更時はゲームを再起動してください。\nなお、ワークショップの対応MOD欄に記載されていないMODのボスには効果が適用されません。\nMOD製作者の方へ:適用させるためには専用のスクリプトが必要です。\n詳しくはDiscordでConga Lyne#2452にDMしてください。,,,,
setting_apotheosis_compatmode_conjurer_name,Conjurer extra Compatibility mode,Режим совместимости: Conjurer,,,,,,,,Conjurer連携,,,,
setting_apotheosis_compatmode_conjurer_desc,"Some people may have issues with this mod not loading into Conjurer properly. \nIf this happens, try enabling this option and loading conjurer again. \n \nThis option is on by default but can be turned off if you wish to \nhave the pixel scenes & bosses appear in conjurer worlds. \n \nIf Conjurer still fails to load despite having this turned on, although unlikely, \nit may be a mod compatibility issue with something else, \nperhaps try disabling mods to find the troublesome one. \n \nIf nothing else works please let me know to by filing a bug report to me. \nIt would be easiest for me to reach & investigate your report at the discord link below: \nhttps://discord.gg/gtyGnv8Pxk","У некоторых людей могут возникнуть проблемы с тем, что этот мод не загружается вместе с модом Conjurer должным образом. \nЕсли это произошло, попробуйте включить этот параметр и загрузить Conjurer снова. \n \nЭта опция включена по умолчанию, но может быть выключена, если вы хотите, чтобы пиксельные сцены и боссы появлялись в мирах Conjurer. \n \nЕсли Conjurer всё ещё не загружается, несмотря на включение этого параметра, хотя это маловероятно, \nможет быть проблема совместимости мода с чем-то другим, \nвозможно, попробуйте отключить все моды поочерёдно, чтобы найти проблемный. \nЕсли ничего не помогает, пожалуйста, сообщите мне об этом, написав сообщение об ошибке. \nМне будет проще всего связаться и изучить ваше сообщение по ссылке на discord: \nhttps://discord.gg/gtyGnv8Pxk",,,,,,,,Conjurerと同時導入時に発生する不具合が報告されています。\n不具合が発生する場合は、この設定をオンにした上でConjurerを再読み込みしてください。\n \nこの設定は初期状態でオンになっていますが、\nピクセルシーン、ボスなどの要素をConjurer環境でも楽しみたい場合はオフにしてください。\n \nこの設定をオンにしても不具合が直らない場合は、別の原因が考えられます。\nその場合は、MOD一覧から原因となっているMODを無効にしてください。\n \nそれでも回復しない場合は、こちらまで連絡してください。→https://discord.gg/gtyGnv8Pxk,,,,
setting_apotheosis_compatmode_spell_evolution_name,Spell Evolution Compatibility Mode,Режим совместимости: Spell Evolution,,,,,,,,Spell Evolution連携,,,,
setting_apotheosis_compatmode_spell_evolution_desc,"Turn this setting on if you're playing with the Spell Evolution mod to fix it.\n \nAs far as I can tell, a bug in Spell Evolutions causes it to break if a modded spell \n Uses translation keys for their name and/or description. \n \nUnfortunately there's nothing I can do about this as it's not my mod, \nand I have no intention to remove the translation keys \nas I hope to use them one day in the event \nI'm offered a translation for the mod to another language. \nHowever, I can put a setting in to optionally let you use the spells without \ntranslation keys to get around the issue.","Включите этот параметр, если вы играете с модом Spell Evolution, чтобы исправить ошибки.\n \nНасколько я могу судить, ошибка в Spell Evolutions приводит к тому, что он ломается, если модифицированное заклинание \n использует ключи перевода для своего имени и/или описания. \n \nК сожалению, я ничего не могу с этим поделать, поскольку это не мой мод, \n и у меня нет намерения удалять ключи перевода, \n поскольку я надеюсь использовать их однажды в случае, если мне предложат перевести мод на другие языки. \Однако, я могу сделать настройку, которая позволит вам использовать заклинания без ключей перевода, чтобы обойти эту проблему.",,,,,,,,このMODはSpell Evolutionのスペル強化機能に対応しています。\n \nただし、Spell Evolutionには翻訳キーを用いる魔法を強化した際に\n呪文の名前、説明文がおかしくなる不具合が存在します。\n \nこれに関しては作者の側では対応できませんでした。\nかといって、せっかく作って頂いた翻訳キーを消してしまう訳にもいきません。\n \nこの設定は、該当する翻訳キーを用いないようにすることで、\nSpell Evolution側の不具合を回避するためのものです。,,,,
status_apotheosis_duckcurse_name,Duck Curse,Утиное проклятие,,,,,,,,アヒルの呪い,,,,
status_apotheosis_duckcurse_desc,Their Quacky visions haunt you,Их утиные взгляды преследуют вас,,,,,,,,アヒルの幻影があなたを襲う!,,,,
status_apotheosis_manadrain_name,Mana Degradation,Разложение маны,,,,,,,,マナドレイン,,,,
status_apotheosis_manadrain_desc,You are losing Mana Rapidly!!,Вы стремительно теряете ману!!!,,,,,,,,マナが吸い尽くされていく!,,,,
status_apotheosis_transmute_name,Unstable Transmutation,Нестабильная трансмутация,,,,,,,,不安定物質変換,,,,
status_apotheosis_transmute_desc,Your being is transmuting nearby matter uncontrollably!,Ваша сущность бесконтрольно превращается близлежащую материю!,,,,,,,,周囲の物質が姿を変えていく!,,,,
1.1.0 content below,"=====================================================================================================================================================================================================================================================Below here are 1.1.0 translation keys",,,,,,,,,,,,,
item_apotheosis_essence_fungus_name,Essence of Fungus,Эссенция грибка,,,,,,,,キノコのエッセンス,,,,
item_apotheosis_essence_fungus_desc,Your very being is infecting the environment around it!,Сама ваша сущность заражает окружающую среду!,,,,,,,,周囲の環境が姿を変えていく!,,,,
sign_apotheosis_welcome_hint,"Hello and Welcome to Apotheosis! \nAlthough this may seem inconvenient, please take a moment to view the mod settings page in Options > Mod Settings. \nSome mods need compatibility modes enabled, I did I my best but some things are outside my control sadly. Other than that, go nuts and have fun <3","Здравствуйте и добро пожаловать в мод Apotheosis \nХотя это может показаться неубедительным, пожалуйста, уделите время просмотру страницы настроек мода в «Параметры» > «Модификации». \nНекоторые моды требуют включения модов совместимости, я сделал всё возможное, но некоторые вещи, к сожалению, находятся вне моего контроля. В остальном, не сомневайтесь и получайте удовольствие <3",,,,,,,,Apotheosis MODへようこそ!\nプレイする前に、まずMOD設定を確認してください。\n他MODとの連携要素は、設定から有効化しないと使えない場合があります。,,,,
sign_apotheosis_aprilfools_intro,Happy April Fools <3,Счастливого дня смеха <3,,,,,,,,エイプリルフール!,,,,
status_apotheosis_trip_red_00_name,Blazed,Ломка,,,,,,,,酩酊,,,,
status_apotheosis_trip_red_00_desc,You feel dizzy.,Вы чувствуете головокружение.,,,,,,,,頭がフワフワしてきた。,,,,
status_apotheosis_trip_red_01_name,Somewhat Blazed,Небольшая ломка,,,,,,,,ちょっとトリップ,,,,
status_apotheosis_trip_red_01_desc,You feel interlinked with Yggdrasil.,Вы чувствуете связь с Иггдрасилем.,,,,,,,,ユグドラシルとの繋がりを感じる。,,,,
status_apotheosis_trip_red_02_name,Really Blazed,Сильная ломка,,,,,,,,スーパートリップ,,,,
status_apotheosis_trip_red_02_desc,You feel a pleasant burning sensation build up inside you.,"Вы чувствуете, как внутри вас нарастает приятное жжение.",,,,,,,,身体の中が熱く燃え盛るように感じる。,,,,
status_apotheosis_trip_red_03_name,Blazed as Hell,Чертовски сильная ломка,,,,,,,,ハイパートリップ,,,,
status_apotheosis_trip_red_03_desc,Usual concepts don't apply.,Обычные понятия неприменимы.,,,,,,,,宇宙の法則が乱れる!,,,,
item_apotheosis_fungus_stone_name,Sienenkivi,Сененкиви,,,,,,,,シエネンキヴィ,,,,
item_apotheosis_fungus_stone_desc,You feel the world transforming in the palm of your hand.,"Вы чувствуете, как мир преображается у вас на ладони.",,,,,,,,腕の中で世界が作り替えられていくような感覚がする。,,,,
item_apotheosis_chest_portals,Dimensional Chest,Пространственный сундук,,,,,,,,高次元チェスト,,,,
item_apotheosis_chest_volcanic,Volcanic Chest,Вулканический сундук,,,,,,,,火山のチェスト,,,,
status_apotheosis_haste_name,Haste,Спешка,,,,,,,,電光石火,,,,
status_apotheosis_haste_desc,You feel faster,Вы чувствуете себя быстрее,,,,,,,,スピードが上がっている。,,,,
material_apotheosis_meat_mana,Enchanting Meat,Очаровательное мясо,,,,,,,,魔法の肉,,,,
material_apotheosis_smoke_static_slowburn_name,Dense Smoke,Плотный дым,,,,,,,,厚い煙,,,,
material_apotheosis_meat_fire_lukki,Infernal Meat,Адское мясо,,,,,,,,地獄の肉,,,,
material_apotheosis_meat_fire_lukki_rock,Brimstone,Сера,,,,,,,,硫黄,,,,
material_apotheosis_mudman_mud,Magical Mud,Волшебный ил,,,,,,,,魔法の泥,,,,
material_apotheosis_knowledge_of_kings,"Yggdrasil's Knowledge","Знания Иггдрасиля",,,,,,,,ユグドラシルの智慧,,,,
spell_apotheosis_targetter_name,"Targetter","Целеуказатель",,,,,,,,ロックオン,,,,
spell_apotheosis_targetter_desc,"Fire a projectile which causes irresistible hatred towards anything it hits","Выпускает снаряд, который вызывает непреодолимую ненависть ко всему, во что попадает",,,,,,,,この放射物に当たった敵は、周囲の生物全てから敵対される。,,,,
spell_apotheosis_firecharge_name,Fire Charge,Огненный заряд,,,,,,,,ファイアーチャージ,,,,
spell_apotheosis_firecharge_desc,"Imbues a projectile with a fiery charge, that it will release on impact","Наделяет снаряд огненным зарядом, который он выпустит при ударе",,,,,,,,炎の力を放射物に込める。着弾すると力が解放される。,,,,
spell_apotheosis_knowledge_of_kings_name,The Knowledge of Kings,Знание королей,,,,,,,,王たちの智慧,,,,
spell_apotheosis_knowledge_of_kings_desc,Casting this spell causes something irreversibly permanent to occur,Использовании этого заклинания происходит нечто необратимо постоянное,,,,,,,,非可逆的な何かが起きる。,,,,
spell_apotheosis_portal_lukki_red_portal_name,Summon Red Portal,Призыв красного портала,,,,,,,,赤いポータルの召喚,,,,
spell_apotheosis_portal_lukki_red_portal_desc,"Summons a red tinted portal to where it is focused, Right Click to mark a location for the portal to focus on.","Призыв портала с красным оттенком. Щёлкните правой кнопкой мыши, чтобы отметить место, на котором будет сфокусирован портал.",,,,,,,,指定した地点へと続くポータルを召喚する。右クリックで行き先を指定できる。,,,,
spell_apotheosis_portal_lukki_blue_portal_name,Summon Blue Portal,Призыв синего портала,,,,,,,,青いポータルの召喚,,,,
spell_apotheosis_portal_lukki_blue_portal_desc,"Summons a blue tinted portal to where it is focused, Right Click to mark a location for the portal to focus on.","Призыв портала с синим оттенком. Щёлкните правой кнопкой мыши, чтобы отметить место, на котором будет сфокусирован портал.",,,,,,,,指定した地点へと続くポータルを召喚する。右クリックで行き先を指定できる。,,,,
spell_apotheosis_portal_lukki_green_portal_name,Summon Green Portal,Призыв зелёного портала,,,,,,,,緑色のポータルの召喚,,,,
spell_apotheosis_portal_lukki_green_portal_desc,"Summons a green tinted portal to where it is focused, Right Click to mark a location for the portal to focus on.","Призыв портала с зелёным оттенком. Щёлкните правой кнопкой мыши, чтобы отметить место, на котором будет сфокусирован портал.",,,,,,,,指定した地点へと続くポータルを召喚する。右クリックで行き先を指定できる。,,,,
spell_apotheosis_alt_fire_teleport_name,"Alt Fire Teleport Bolt",Телепортирующая молния (ПКМ),,,,,,,,テレポートボルト(ALT),,,,
spell_apotheosis_alt_fire_teleport_desc,"Right Click to fire a magical bolt that moves you wherever it ends up flying","Щёлкните правой кнопкой мыши, чтобы запустить телепортационную молнию.",,,,,,,,右クリックすると、テレポートボルトが発射される。,,,,
spell_apotheosis_alt_fire_teleport_short_name,"Alt Fire Small Teleport Bolt",Малая телепортирующая молния (ПКМ),,,,,,,,小型テレポートボルト(ALT),,,,
spell_apotheosis_alt_fire_teleport_short_desc,"Right Click to fire a shortlived magical bolt that moves you wherever it ends up flying","Щёлкните правой кнопкой мыши, чтобы запустить малую телепортационную молнию.",,,,,,,,右クリックすると、小型テレポートボルトが発射される。,,,,
misc_apotheosis_energy_nova,Energy Nova,Энергия Новы,,,,,,,,エナジーノヴァ,,,,
log_apotheosis_moon_altar_fungus,AN IRREVERSIBLE CORRUPTION HAS OCCURRED,ПРОИЗОШЛА НЕОБРАТИМАЯ ПОРЧА,,,,,,,,すさまじい汚染が発生している!,,,,
logdesc_apotheosis_moon_altar_fungus,WHAT HAVE YOU DONE!?,ЧТО ВЫ НАДЕЛАЛИ!?,,,,,,,,何が起こったんだ!?,,,,
log_apotheosis_toxicnest_secret_name,I TOLD YOU NOT TO VISIT THE WORM NEST AT 3AM,Я ЖЕ ГОВОРИЛ ВАМ НЕ ПОСЕЩАТЬ ГНЕЗДО ЧЕРВЕЙ В 3 ЧАСА НОЧИ,,,,,,,,どうして夜中に毒虫の巣に入ったんですか?????,,,,
status_apotheosis_protection_lava_name,Lava Immunity,Стойкость к лаве,,,,,,,,溶岩免疫,,,,
status_apotheosis_protection_lava_desc,You take no direct damage from lava or fire.,Вы не получаете прямого урона от лавы или огня.,,,,,,,,溶岩と炎によるダメージが無効化される。,,,,
status_apotheosis_explosive_orb_name,Explosive,Взрывчатка,,,,,,,,爆発,,,,
status_apotheosis_explosive_orb_desc,You're transmuting magic into explosives!,Вы превращаете магию во взрывчатку!,,,,,,,,魔法が爆発に変わっている!,,,,
creep_apotheosis_boss_fire_lukki_name,"Tulen Esteetikko",,,,,,,,,ラーモン・エステーティッコ,,,,
integration_apotheosis_RANDOM_CATS_name,Kitty Cats!!,Кошечки!!!,,,,,,,,ねこ!,,,,
integration_apotheosis_RANDOM_CATS_desc,Cat! I'm a kitty cat! And I dance dance dance! And I dance dance dance!!,Кошка!! Я кошечка!! И я танцую туц-туц!! И я танцую танцую танцую танцую!!!,,,,,,,,ねこです。ねこはいます。,,,,
integration_apotheosis_RANDOM_CREEPS_name,Random Creeps & Weirdos,Случайные твари и чудики,,,,,,,,ランダム生物召喚,,,,
integration_apotheosis_RANDOM_CREEPS_desc,Random Creeps & Weirdos will appear in 5 seconds.,Случайные твари и чудики появятся через 5 секунд.,,,,,,,,5秒後にランダムな生物が出現する。,,,,
integration_apotheosis_WAND_WONDERS_name,Spawn Wand of Wonders,Создать Жезл чудес,,,,,,,,フシギな杖の召喚,,,,
integration_apotheosis_WAND_WONDERS_desc,A wonderful wand capable of anything. Cast it!,"Чудесный жезл, способный на всё. Колдуйте!!",,,,,,,,最強の杖を召喚する。撃ってみよう!,,,,
integration_apotheosis_PANDORA_CHEST_name,Pandora's Chest,Сундук Пандоры,,,,,,,,パンドラの箱,,,,
integration_apotheosis_PANDORA_CHEST_desc,Do you dare open?,Осмелитесь ли вы открыть?,,,,,,,,本当に開けてしまうのか?,,,,
integration_apotheosis_RANDOM_CREEPS_BOSS_name,Random Weirdo Boss,Случайный босс-чудик,,,,,,,,ランダムボス召喚,,,,
integration_apotheosis_RANDOM_CREEPS_BOSS_desc,A random Apotheosis boss will appear after 10 seconds.,Через 10 секунд появится случайный босс мода Apotheosis.,,,,,,,,ランダムなボスが10秒後に出現する。,,,,
integration_apotheosis_STONE_FUNGUS_name,Sienenkivi,Сененкиви,,,,,,,,シエネンキヴィ,,,,
integration_apotheosis_STONE_FUNGUS_desc,Fungus Stone,Грибковый камень,,,,,,,,きのこストーン,,,,
integration_apotheosis_CREATURE_SHIFT_name,Creature Shift,Сдвиг существ,,,,,,,,生物シフト,,,,
integration_apotheosis_CREATURE_SHIFT_desc,Causes a creature to randomly be shifted with another.,Вызывает случайное смещение одного существа с другим.,,,,,,,,生物が別のものに姿を変える。,,,,
integration_apotheosis_TRANSFORM_WORMS_name,Spells to Worms,Превращение в червяков,,,,,,,,呪文からワームへ,,,,
integration_apotheosis_TRANSFORM_WORMS_desc,All projectiles currently in the air turn into worms!,"Все снаряды, находящиеся в воздухе, превращаются в червей!!",,,,,,,,すべての放射物がワームに変化する。,,,,
integration_apotheosis_MUD_MEN_name,Summon Mud Men,Призыв грязевика,,,,,,,,マッドマン召喚,,,,
integration_apotheosis_MUD_MEN_desc,MUD MEN are here to save the day!!,"ГРЯЗЕВИК пришёл, чтобы помочь вам!!!",,,,,,,,情け無用の男、マッドマン!,,,,
integration_apotheosis_HUNGRY_ORB_name,Hungry Orb,Голодный шар,,,,,,,,はらぺこオーブ,,,,
integration_apotheosis_HUNGRY_ORB_desc,???,???,,,,,,,,これ is なに?,,,,
integration_apotheosis_DELUSIONAL_name,Delusional Streamer,Стример-шизик,,,,,,,,まぼろしストリーマー,,,,
integration_apotheosis_DELUSIONAL_desc,Your senses deceive you.,Ваши чувства обманывают вас.,,,,,,,,幻覚が見えるようになる。,,,,
integration_apotheosis_CLOWNS_name,CLOWNS,КЛОУНЫ,,,,,,,,からくりピエロ,,,,
integration_apotheosis_CLOWNS_desc,"You're not a clown, you're the entire circus!!","Вы не клоун, вы целый цирк!!!",,,,,,,,俺自身がサーカスになることだ,,,,
integration_apotheosis_SWAPPER_CURSE_name,Curse of Swapping,Проклятие подмены,,,,,,,,スワッパーの呪い,,,,
integration_apotheosis_SWAPPER_CURSE_desc,You feel the blood of Swapper Mages runs through you,"Вы чувствуете, как в вас течёт кровь магов-подменщиков.",,,,,,,,スワップ魔術師の血が体内を駆け巡る。,,,,
secretmessage_apotheosis_herobrine_01,"I see you.","Я тебя вижу.",,,,,,,,ミ テ イ ル ゾ,,,,
secretmessage_apotheosis_divineorb_name,"You discovered an orb of divine knowledge","Вы обнаружили шар божественных знаний",,,,,,,,神聖な智慧のオーブを発見した,,,,
secretmessage_apotheosis_divineorb_desc,"Secrets of otherworldly royalty have been unlocked to you.","Вам стали открыты секреты потусторонней королевской власти.",,,,,,,,異界の力が解き放たれた。,,,,
secretmessage_apotheosis_kingly_alreadydone,"You feel the secrets of otherworldly royalty have already been unleashed...","Вы чувствуете, что секреты потусторонней королевской власти уже раскрыты...",,,,,,,,異界の力はすでに解き放たれている。,,,,
secretmessage_apotheosis_kingly_cheater,"You feel the magic is incomplete...","Вы чувствуете, что волшебство не завершено...",,,,,,,,この力はまだ完成されていない?,,,,
secretmessage_apotheosis_capeget_name,"You feel more.. pretty..?","Вы чувствуете себя более.. симпатичными..?",,,,,,,,なんだか自分が……可愛くなった?。,,,,
secretmessage_apotheosis_capeget_desc,"Truly befitting.","Очень удовлетворительно.",,,,,,,,とても似合っている気がする。,,,,
secretmessage_apotheosis_divineorb_heart_name,"You found a familiar orb of divine knowledge","Вы нашли знакомый шар божественных знаний",,,,,,,,神聖な智慧のオーブを拾った,,,,
book_apotheosis_symbol_centipede_blood,Tuhatjalkainen Veri,Тухатьялкайнен Вери,,,,,,,,,,,,
book_apotheosis_symbol_centipede_blood_description,"Half a circle, and a spine connected to it. \nThree legs on each side, and the centipede's inner liquid is born.","Половина круга, и к нему присоединяется позвоночник. \nТри ноги с каждой стороны, и рождается внутренняя жидкость сороконожки.",,,,,,,,,,,,
book_apotheosis_symbol_redsand,Punainen Hiekka,Пунайнен Хиекка,,,,,,,,,,,,
book_apotheosis_symbol_redsand_description,"Three lines. One Horizonal, two more starting at the edges of the first line which converge upwards to touch each other at their ends. \nWithin this new shape, circles lay. \none. two. and three. \nThese three circles represent the specks of dust, and thus a blazing red powder is born.","Три линии. Одна горизонтальная, две другие, начинающиеся от краёв первой линии, которые сходятся вверх и касаются друг друга своими концами. \nВ этой новой форме лежат круги. \nОдин. два. и три. \nЭти три круга представляют собой пылинки, и таким образом рождается пылающий красный порошок.",,,,,,,,,,,,
book_apotheosis_symbol_insecthusk,Hyönteisten Kuori,Хьонтейстен Куори,,,,,,,,,,,,
book_apotheosis_symbol_insecthusk_description,"One triangle, and another below facing the other way. \nDraw a line to connect these two formations. \nStart from the center of the first, and draw down until it pierces through the second triangle. \nFrom this new symbol, the husk of insects is born.","Один треугольник, а другой внизу обращён в другую сторону. \nНарисуйте линию, соединяющую эти два образования. \nНачните с центра первого треугольника и проведите линию вниз, пока она не пронзит второй треугольник. \nИз этого нового символа рождается шелуха насекомых.",,,,,,,,,,,,
book_apotheosis_symbol_divineliquid,Jumalallinen Neste,Джумалаллинен Несте,,,,,,,,,,,,
book_apotheosis_symbol_divineliquid_description,"Place down your brush, and draw nothing less than a perfect circle. \n \nWithin this circle, draw the four elements. \nOne line for Fire \nOne for Water \nOne for Earth \nand One for Air. \n \nWhere the elements converge, make another perfect circle, fill it in with purpose. \nWith this, a divine drink is born.","Положите кисть и нарисуйте не менее чем идеальный круг. \n \nВ этом круге нарисуйте четыре элемента. \nОдна линия для огня \nОдна для воды \nОдна для земли \nи одна для воздуха. \nТам, где элементы сходятся, сделайте ещё один идеальный круг, заполните его. \nПосле этого рождается божественный напиток.",,,,,,,,,,,,
book_apotheosis_symbol_pinksand,Vaaleanpunainen Hiekka,Ваалеанпунайнен Хиекка,,,,,,,,,,,,
book_apotheosis_symbol_pinksand_description,"A triangle. Within this, create a line piercing through it's purpose. \nInside this triangle near it's peak, a circle sits. \nThe circle is pierced by the line, and is ready to change shape. \nWith this symbol, the pinkest sand will be born.","Треугольник. Внутри него проведите линию, пронизывающую его насквозь. \nВнутри этого треугольника, около его вершины, сидит круг. \nКруг пронзён линией и готов изменить форму. \nС этим символом родится самый розовый песок.",,,,,,,,,,,,
book_apotheosis_symbol_fungus,Sieni,Сиени,,,,,,,,,,,,
book_apotheosis_symbol_fungus_description,"Two circles, these are specks of dust. \nBetween these specks, draw a line moving upwards. \nWhere the line stops draw two more moving towards the circles. \nConnect the ends of those lines together with one final line, and a fungal infection is born.","Два круга - это пылинки. \nМежду ними проведите линию, двигающуюся вверх. \nВ месте остановки линии нарисуйте ещё две, двигаясь по направлению к кругам. \nСоедините концы этих линий вместе последней линией, и таким образом родится грибковая инфекция.",,,,,,,,,,,,
book_apotheosis_fire_lukki,"Scorched Notes","Опалённые записки",,,,,,,,,,,,
book_apotheosis_fire_lukki_description,"I remember finding a stone, blazing with fire but nothing more than a gentle touch in my hand. \nIt belonged to those fire cretins who hunted me I bet. \n \nWanting to get back at them I threw the stone into the deepest body of lava I could find in those wretched mines.. \nBut that was my fatal mistake. \n \nThe stone seemed to attract... something. \nI dared not look back after hearing the lava stir violently behind me, I feel lucky to be alive. \n \nMy robes were scorched by it's mere presence. \nMy pride reduced to burn marks of what it once was. \nI hope I need never return to that place.","Я помню, как нашёл камень, пылающий огнём, но не более чем легкое прикосновение моей руки. \nНаверняка он принадлежал тем огненным кретинам, которые охотились на меня. \nЖелая отомстить им, я бросил камень в самую глубокую лаву, которую смог найти в этих жалких шахтах. \nНо это была моя роковая ошибка. \n \n Камень, казалось, притягивал... что-то. \nЯ не смел оглянуться, когда услышал, как за спиной яростно зашипела лава. Мне повезло, что я остался жив. \nМоя одежда опалилась от одного его присутствия. \nМоя гордость превратилась в ожоги от того, чем она когда-то была. Надеюсь, я никогда не вернусь в это место.",,,,,,,,,,,,
status_apotheosis_plagiarize_swapper_name,Curse of Swapping,Проклятие подмены,,,,,,,,スワッパーの呪い,,,,
status_apotheosis_plagiarize_swapper_desc,"Taking damage makes you swap places with the attacker",,,,,,,,,ダメージを受けると、攻撃してきた敵の位置にワープする。,,,,
status_apotheosis_delusional_name,Delusional,Галлюцинации,,,,,,,,幻覚,,,,
status_apotheosis_delusional_desc,Your senses deceive you.,Ваши чувства обманывают вас.,,,,,,,,自分の感覚がアテにならない。,,,,
status_apotheosis_creatureshift_cd_name,Unshiftable,Несдвигаемый,,,,,,,,きのこシフト無効化,,,,
status_apotheosis_creatureshift_cd_desc,The path of evolution is set in stone... For now.,Путь эволюции предначертан... Пока что.,,,,,,,,進化の流れが足を止めた……今は。,,,,
perk_apotheosis_revenge_reflective,Revenge Reflection,Отражение мести,,,,,,,,反射,,,,
perk_apotheosis_revenge_reflective_description,"Reflect copies of enemy projectiles upon taking damage, with a steep damage boost as payback.",Отражение копий вражеских снарядов при получении урона с резким увеличением урона в качестве расплаты.,,,,,,,,敵の放射物を反射する。反射した放射物は威力が上がる。,,,,
biomemod_apotheosis_smoke_dense,The air feels unusually dense,Воздух кажется необычайно плотным,,,,,,,,空気がとても重い。,,,,
credits_apotheosis_line_01,a mod made by,"мод, созданный",,,,,,,,,,,,
credits_apotheosis_line_04,Lead Developer of Apotheosis,Главный разработчик Apotheosis,,,,,,,,,,,,
credits_apotheosis_line_07,Voice Actor of the Cats,Актёр озвучивания кошек,,,,,,,,,,,,
credits_apotheosis_line_14,Creator of the Mana Drain Script,Создатель скрипта расхода маны,,,,,,,,,,,,
credits_apotheosis_line_17,Russian Translator,Перевод на русский,,,,,,,,,,,,
credits_apotheosis_line_20,"Helped with some creature design & mod direction, also helped with alt-fire spells.","Помогал с дизайном существ и направлением мода, также помогал с заклинаниями на ПКМ.",,,,,,,,,,,,
credits_apotheosis_line_22,Special Thanks to,Особая благодарность,,,,,,,,,,,,
credits_apotheosis_line_39,And many modders of the Noita Discord,И многим создателям модов из Discord-сервера Noita,,,,,,,,,,,,
credits_apotheosis_line_43,"And finally.. you, for giving Apotheosis a try and making it this far into the mod!","И наконец.. вам, за то, что попробовали Apotheosis и зашли так далеко в этом моде!",,,,,,,,,,,,
credits_apotheosis_line_44,I hope you enjoyed playing it as much as I enjoyed making it <3,"Надеюсь, вам понравилось играть в него так же, как мне понравилось его создавать <3",,,,,,,,,,,,
credits_apotheosis_line_45,Best of luck in your future adventures - Conga Lyne,Желаю удачи в ваших будущих приключениях - Conga Lyne,,,,,,,,,,,,
credits_apotheosis_line_horscht,Provided a ton of help in the mod support channel during development and let me use his credits script.,Оказал тонну помощи в канале поддержки мода во время разработки и позволил мне использовать его скрипт для этого меню.,,,,,,,,,,,,
Apotheosis content below,"=====================================================================================================================================================================================================================================================Below here are Apotheosis translation keys",,,,,,,,,,,,,
teleport_portal_alternate,"Portal Elsewhere",,,,,,,,,彼方へのポータル,,,,
biome_slime_hell,"Virulent Caverns",,,,,,,,,猛毒洞窟,,,,
biome_toxic_worm_cave,"Toxic Nest",,,,,,,,,毒虫の巣穴,,,,
biome_abandoned_assembly,"Sandy Assembly",,,,,,,,,砂の遺跡,,,,
biome_esoteric_den,"Abyssum",,,,,,,,,アビス,,,,
biome_underground_forest,"Subterrain Woodland",,,,,,,,,地底の森林,,,,
biome_evil_temple,"Temple of Sacrilegious Remains",,,,,,,,,冒涜的な祭壇の跡地,,,,
biome_desert_pit,"Sinkhole",,,,,,,,,砂漠の大穴,,,,
biome_lava_excavation,"Core Mines",,,,,,,,,地底鉱山,,,,
biome_abyssal_depths,"Forgotten Depths",,,,,,,,,忘れられた空間,,,,
biome_mueseum,"Marble Halls",,,,,,,,,大理石の大部屋,,,,
biome_ant_hell,"Ant Nest",,,,,,,,,アリの巣,,,,
biome_plane_yggdrasil,"Plane of Yggdrasil",,,,,,,,,世界樹の大地,,,,
biome_plane_yggdrasil_border,"Outer Plane of Yggdrasil",,,,,,,,,世界樹の大地との境界,,,,
biome_plane_magic,"Plane of Soul",,,,,,,,,魂の在処,,,,
biome_plane_technology,"Plane of Experimentation",,,,,,,,,実験者の住処,,,,
biome_empyrean,"Empyrean",,,,,,,,,天界,,,,
biomemod_esoteric_presence,"You feel an indescribable aura...",,,,,,,,,言葉に表せないような力を感じる,,,,
biomemod_magmatic,"The air is burning",,,,,,,,,空気が燃えるように熱い,,,,
biomemod_necromancy,"The Dead are Restless",,,,,,,,,死霊が騒ぐ声が聞こえる,,,,
biomemod_esoteric_den,"You feel the world has indescribable shapes...",,,,,,,,,眼前に奇妙な世界が広がる,,,,
biomemod_alchemic,"You feel an alchemical mist in the air",,,,,,,,,魔法の霧が辺りを覆っている,,,,
biomemod_plane_yggdrasil,"A dense jungle with endless life, filled with monsters foreign",,,,,,,,,深林には異界の生物が暮らしている,,,,
biomemod_plane_magic,"Your soul feels heavy, wild magic is in the air",,,,,,,,,むき出しの魔力があなたの魂にのしかかる,,,,
biomemod_plane_mechanical,"A scorched wasteland, unfit for biological life",,,,,,,,,生命の息吹を感じられない,,,,
biomemod_slime_hell,"You feel strangely warm",,,,,,,,,奇妙な温もりを感じる,,,,
biomemod_heretical,"You feel a malicious presence",,,,,,,,,,,,,
material_apotheosis_bloodystone,"Bloody Stonework",,,,,,,,,血染めの石細工,,,,
material_apotheosis_corruptflesh,"Vacillating Flesh",,,,,,,,,揺らぐ肉,,,,
material_apotheosis_blood_infectous,"Infectious Blood",,,,,,,,,汚染された血,,,,
material_apotheosis_volcanicrock_static_dense,"Dense Volcanic Rock",,,,,,,,,非常に硬い火山岩,,,,
material_apotheosis_volcanicrock_superhot,"Burning Rock",,,,,,,,,焼け石,,,,
material_apotheosis_cursed_liquid,"Cursed Liquid",,,,,,,,,呪われた液体,,,,
material_apotheosis_magic_liquid_infinite_flight,"Soarium",,,,,,,,,飛行の魔薬,,,,
material_apotheosis_magic_liquid_nukes,"Nukium",,,,,,,,,核爆弾の魔薬,,,,
material_apotheosis_magic_liquid_escapium,"Escium",,,,,,,,,逃亡の魔薬,,,,
material_apotheosis_magic_liquid_attunium,"Attunium",,,,,,,,,調律の魔薬,,,,
material_apotheosis_magic_liquid_attunium_cloud,"Attunium Mist",,,,,,,,,調律の魔薬のミスト,,,,
material_apotheosis_magic_liquid_pure_light,"Pure Light",,,,,,,,,液化した光,,,,
material_apotheosis_magic_liquid_pure_light_cloud,"Pure Light Mist",,,,,,,,,液化した光のミスト,,,,
material_apotheosis_magic_liquid_suffocatium,"Suffocatium",,,,,,,,,窒息の魔薬,,,,
material_apotheosis_magic_liquid_velocium,"Veloium",,,,,,,,,速度の魔薬,,,,
material_apotheosis_magic_liquid_mimic,"Mimicium",,,,,,,,,ミミックの魔薬,,,,
material_apotheosis_magic_liquid_rideshare,"Portalium",,,,,,,,,ポータルの魔薬,,,,
material_apotheosis_hidden_liquid_magic_catalyst,"Magic Catalyst",,,,,,,,,魔法の結晶体,,,,
material_apotheosis_hidden_liquid_wand_essence,"Magus Elixir",,,,,,,,,エリクサー,,,,
material_apotheosis_sunkenrock,"Sunken Rock",,,,,,,,,水底の岩,,,,
material_apotheosis_sunkenrock_sandy,"Sandy Rock",,,,,,,,,砂状の岩,,,,
material_apotheosis_ambrosia_dull,"Infected Ambrosia",,,,,,,,,汚染されたアンブロシア,,,,
material_apotheosis_meat_slime_blue,"Blue Slimy Meat",,,,,,,,,青いスライムの肉,,,,
material_apotheosis_meat_homing,"Writhing Meat",,,,,,,,,苦悶の肉,,,,
material_apotheosis_malicious_powder,"Volcanic Powder",,,,,,,,,恐ろしい粉末,,,,
material_apotheosis_milk,"Milk",,,,,,,,,ミルク,,,,
material_apotheosis_unholy_concoction,"Unholy Concoction",,,,,,,,,邪悪な調合薬,,,,
material_apotheosis_esoteric_stone,"Esoteric Stone",,,,,,,,,深遠な力のこもった石,,,,
material_apotheosis_esoteric_stone_glowing,"Luminescent Rock",,,,,,,,,謎の光を放つ石,,,,
material_apotheosis_crystal_glow,"Glowing Crystal",,,,,,,,,光るクリスタル,,,,
material_apotheosis_cursed_rock_hard,"Sacred Rock",,,,,,,,,聖なる岩,,,,
material_apotheosis_radioactive_liquid_strong,"Noxious Sludge",,,,,,,,,激毒ヘドロ,,,,
material_apotheosis_radioactive_mud,"Defiled Mud",,,,,,,,,汚染された泥,,,,
material_apotheosis_milk_powder,"Powdered Milk",,,,,,,,,粉ミルク,,,,
magic_liquid_berserk_cloud_name,"Berserkium Mist",,,,,,,,,バーサキアムのミスト,,,,
magic_liquid_charm_cloud_name,"Pheromone Mist",,,,,,,,,フェロモンのミスト,,,,
spell_apotheosis_spells_to_cursor_name,"Redirect",,,,,,,,,繰気弾,,,,
spell_apotheosis_spells_to_cursor_desc,"Redirects all airborne projectiles towards your mouse cursor at a high speed",,,,,,,,,空中にある全ての放射物をマウスカーソルのある方向に飛ばす。,,,,
spell_apotheosis_status_drunk_intense_name,Intense Mass Drunk,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_drunk_intense_desc,Affects every creature in a large radius a short but intense curse of endless spirits.,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_wet_intense_name,Intense Mass Wet,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_wet_intense_desc,Soaks every creature in a large radius with a short but intense curse of magical wetness.,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_fire_intense_name,Intense Mass Fire,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_fire_intense_desc,Burns every creature in a large radius with a dying but more damaging magical fire.,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_urine_intense_name,Intense Mass Jarate,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_urine_intense_desc,Douses every creature in a large radius with a short but intense curse of magical jarate.,,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_status_polymorph_intense_name,Mass Chaotic Polymorph,,,,,,,,カオス変身フィールド,,,,
spell_apotheosis_status_polymorph_intense_desc,"Afflicts every creature in a large radius with a magical chaotic polymorphine",,,,,,,,,周囲の生物を別の生物に変身させる。,,,,
spell_apotheosis_mass_burrow_name,"Kaivossade",,,,,,,,Kaivossade,,,,
spell_apotheosis_mass_burrow_desc,"Rapidly excavate a large amount of terrain",,,,,,,,,広範囲の地形を破壊する。,,,,
spell_apotheosis_status_dry_name,"Mass Infiltration",,,,,,,,,浸潤フィールド,,,,
spell_apotheosis_status_dry_desc,"Freezes the stains on every creature in a large radius with a magical spell",,,,,,,,,周囲の生物の濡れ状態を現在の状態で固定する。,,,,
spell_apotheosis_autofire_name,"Auto-Fire",,,,,,,,,Aimbot,,,,
spell_apotheosis_autofire_desc,"Causes the wand to automatically shoot if there's nearby enemies",,,,,,,,,杖が近くの生物を自動で攻撃する。,,,,
spell_apotheosis_upgrade_alwayscast_name,"Spell Infusion",,,,,,,,,常時詠唱化,,,,
spell_apotheosis_upgrade_alwayscast_desc,"The first spell slotted in your wand will be applied to the wand as an always cast. Spell is voided upon use!",,,,,,,,,1番目のスロットにセットされた魔法が常時詠唱になる。このスペル自身は1度使うと消滅する。,,,,
spell_apotheosis_alt_fire_swapper_name,"Alt Fire Swapper Bolt",,,,,,,,,スワッパーボルト(ALT),,,,
spell_apotheosis_alt_fire_swapper_desc,"Right Click to fire a projectile that swaps your position with the target's",,,,,,,,,右クリックするとスワッパーボルトを発射する。,,,,
spell_apotheosis_alt_fire_cov_name,"Alt Fire Circle of Vigour",,,,,,,,,気力の輪(ALT),,,,
spell_apotheosis_alt_fire_cov_desc,"Right Click to cast a field of regenerative magic",,,,,,,,,右クリックすると気力の輪を発射する。,,,,
spell_apotheosis_alt_fire_cov_hardcore_desc,"Right Click to cast a field of regenerative magic; Uncopyable.",,,,,,,,,右クリックすると気力の輪を発射する。文字呪文でコピーできない。,,,,
spell_apotheosis_alt_fire_targetter_name,"Alt Fire Targetter",,,,,,,,,ロックオン(ALT),,,,
spell_apotheosis_alt_fire_targetter_desc,"Right Click to fire a projectile which causes irresistible hatred towards anything it hits",,,,,,,,,右クリックするとロックオンが発射される。,,,,
spell_apotheosis_alt_fire_alpha_name,"Alt Fire Alpha",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_alt_fire_alpha_desc,"Right Click to cast a copy of the first spell in your wand for 40 mana",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_critical_drunk_name,"Critical on Drunk",,,,,,,,,酩酊クリティカル,,,,
spell_apotheosis_critical_drunk_desc,"Make a projectile always do a critical hit on drunk enemies",,,,,,,,,酔っぱらった状態の敵に確定クリティカルが発生する。,,,,
spell_apotheosis_affluence_name,"Affluence",,,,,,,,,大富豪,,,,
spell_apotheosis_affluence_desc,"Creatures hit by your projectiles drop extra gold",,,,,,,,,放射物に当たった敵が追加でゴールドを落とす。,,,,
spell_apotheosis_liquidsphere_acid_name,"Sphere of Acid",,,,,,,,,アシッドスフィア,,,,
spell_apotheosis_liquidsphere_acid_desc,"Cast a powerful sphere of acid, melting everything in its path",,,,,,,,,触れたものを溶かす、強力な酸の玉を撃ち出す。,,,,
spell_apotheosis_liquidsphere_water_name,"Sphere of Water",,,,,,,,,ウォータースフィア,,,,
spell_apotheosis_liquidsphere_water_desc,"Cast an enduring sphere of water, soaking everything in its path",,,,,,,,,触れたものをずぶ濡れにする、水の玉を撃ち出す。,,,,
spell_apotheosis_liquidsphere_teleportatium_name,"Sphere of Teleportatium",,,,,,,,,テレポートスフィア,,,,
spell_apotheosis_liquidsphere_teleportatium_desc,"Cast a malicious sphere of teleportatium, relocating everything in its path",,,,,,,,,触れたものをどこかへと転送する、テレポータチアムの輪を撃ち出す。,,,,
spell_apotheosis_star_shot_name,"Star Shot",,,,,,,,,シューティングスター,,,,
spell_apotheosis_star_shot_desc,"Fire two starry projectiles with a bright light",,,,,,,,,輝く2発の星を撃ち出す。,,,,
spell_apotheosis_hex_water_name,"Vulnerability Hex - Water",,,,,,,,,弱る呪い - 水,,,,
spell_apotheosis_hex_water_desc,"Creatures hit by your projectiles take damage from water and other wet substances",,,,,,,,,放射物に当たった敵が水でダメージを受けるようになる。,,,,
spell_apotheosis_hex_oil_name,"Vulnerability Hex - Oil",,,,,,,,,弱る呪い - オイル,,,,
spell_apotheosis_hex_oil_desc,"Creatures hit by your projectiles take damage from oil and other oily substances",,,,,,,,,放射物に当たった敵がオイルでダメージを受けるようになる。,,,,
spell_apotheosis_hex_blood_name,"Vulnerability Hex - Blood",,,,,,,,,弱る呪い - 血,,,,
spell_apotheosis_hex_blood_desc,"Creatures hit by your projectiles take damage from blood and other bloody substances",,,,,,,,,放射物に当たった敵が血でダメージを受けるようになる。,,,,
spell_apotheosis_mist_attunium_name,"Attunium Mist",,,,,,,,,調律の霊薬のミスト,,,,
spell_apotheosis_mist_attunium_desc,"A cloud of attunium mist",,,,,,,,,霧状になった調律の霊薬。,,,,
spell_apotheosis_homing_delayed_name,"Delayed Homing",,,,,,,,,遅延ホーミング,,,,
spell_apotheosis_homing_delayed_desc,"Makes a projectile accelerate towards your foes after a short delay",,,,,,,,,放射物が少し時間を置いてから敵にホーミングする。,,,,
spell_apotheosis_material_slime_name,"Slime",,,,,,,,,スライム,,,,
spell_apotheosis_material_slime_desc,"Transmute globs of slime out of nothing!",,,,,,,,,スライムの液体を召喚する!,,,,
spell_apotheosis_material_alcohol_name,"Whiskey",,,,,,,,,ウィスキー,,,,
spell_apotheosis_material_alcohol_desc,"Transmute drops of whiskey out of nothing!",,,,,,,,,ウィスキーを召喚する!,,,,
spell_apotheosis_material_confuse_name,"Flummoxium",,,,,,,,,フルモキシウム,,,,
spell_apotheosis_material_confuse_desc,"Transmute drops of flummoxium out of nothing!",,,,,,,,,フルモキシウムを召喚する!,,,,
spell_apotheosis_material_copper_name,"Copper",,,,,,,,,銅,,,,
spell_apotheosis_material_copper_desc,"Transmute grains of copper out of nothing!",,,,,,,,,銅の粉末を召喚する!,,,,
spell_apotheosis_material_fungi_name,"Fungus",,,,,,,,,きのこ,,,,
spell_apotheosis_material_fungi_desc,"Transmute fungal sprouts out of nothing!",,,,,,,,,きのこの胞子を召喚する!,,,,
spell_apotheosis_death_cross_omega_name,"Omega Death Cross",,,,,,,,,オメガ死の十字架,,,,
spell_apotheosis_death_cross_omega_desc,"A violent, giant, deadly energy cross that explodes after a short time",,,,,,,,,一定時間後に爆発する、十字架状の巨大な高エネルギー体。,,,,
spell_apotheosis_mudman_slimy_name,"Transmute into Mutamies on Slimy Enemies",,,,,,,,,スライミー変身,,,,
spell_apotheosis_mudman_slimy_desc,"Make a projectile transmute a creature into Mutamies upon collision if it's covered in slime",,,,,,,,,放射物に当たった敵がスライム濡れ状態の時、その生物を変身させる。,,,,
spell_apotheosis_cloud_gunpowder_name,"Gunpowder Cloud",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_cloud_gunpowder_desc,"Creates a rain of gunpowder",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_cloud_volcanic_name,"Volcanic Cloud",,,,,,,,,火山の雲,,,,
spell_apotheosis_cloud_volcanic_desc,"Creates a volcanic rain of lava and ash",,,,,,,,,溶岩や灰を降らせる雲。,,,,
spell_apotheosis_noragdoll_name,"Corpse Sublimation",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_noragdoll_desc,"Magically converts an enemy's corpse to smoke on death",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_trail_enhancer_name,"Trail Enhancer",,,,,,,,,痕跡エンハンサー,,,,
spell_apotheosis_trail_enhancer_desc,"Significantly increase the amount of material produced by other trail spells in the wand",,,,,,,,,痕跡魔法で発生する物質の量を増加させる。,,,,
spell_apotheosis_trail_reducer_name,"Trail Reducer",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_trail_reducer_desc,"Significantly reduce the amount of material produced by other trail spells in the wand",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_larpa_delayed_name,"Burst Larpa",,,,,,,,,バースト幼生,,,,
spell_apotheosis_larpa_delayed_desc,"Make a projectile cast a burst of copies after a short delay",,,,,,,,,少し時間を置いてから、放射物のコピーを大量に発生させる。,,,,
spell_apotheosis_random_homing_name,"Random Homing",,,,,,,,,ランダムホーミング,,,,
spell_apotheosis_random_homing_desc,"Cast one random homing spell ",,,,,,,,,いずれかのホーミング系スペルの効果が放射物に付与される。,,,,
spell_apotheosis_lua_sharing_name,"Magic Inebriation",,,,,,,,,魔法効果シェア,,,,
spell_apotheosis_lua_sharing_desc,"Wildly diffuses the magical properties of different projectiles amongst each other",,,,,,,,,同時詠唱した全ての放射物が、それぞれの持つ特性を共有する。,,,,
spell_apotheosis_gluecharge_name,"Glue Charge",,,,,,,,,のりチャージ,,,,
spell_apotheosis_gluecharge_desc,"Imbues a projectile with a sticky charge, that it will release on impact",,,,,,,,,のりの力を放射物に込める。力は着弾地点で解放される。,,,,
spell_apotheosis_electrosphere_name,"Bolt Orb",,,,,,,,,ボルトオーブ,,,,
spell_apotheosis_electrosphere_desc,"Cast a slow orb which zaps nearby creatures periodically",,,,,,,,,一定時間ごとに周囲の生物を攻撃するオーブ。,,,,
spell_apotheosis_sea_berserk_name,"Sea of Berserkium",,,,,,,,,バーサキアムの海,,,,
spell_apotheosis_sea_berserk_desc,"Summons a large body of Berserkium below the caster",,,,,,,,,詠唱者の真下にバーサキアムの海を作り出す。,,,,
spell_apotheosis_kindness_to_power_name,"Kindness to Power",,,,,,,,,友情パワー,,,,
spell_apotheosis_kindness_to_power_desc,"Increase critical hit chance proportional to how many charmed creatures are nearby",,,,,,,,,周囲にいる魅了状態の敵の数に応じ、クリティカル確率が上昇する。,,,,
spell_apotheosis_mind_vision_name,"Mind Vision",,,,,,,,,マインドビジョン,,,,
spell_apotheosis_mind_vision_desc,"Creatures hit by a projectile are temporarily revealed through fog of war",,,,,,,,,放射物に当たった敵の姿が暗闇の中でも見えるようになる。,,,,
spell_apotheosis_water_power_name,"Hydromancy",,,,,,,,,水魔法,,,,
spell_apotheosis_water_power_desc,"Reduce mana cost by 30 and increase fire rate when wet",,,,,,,,,詠唱者が水濡れ状態の時、消費マナと魔法の発射レートが上昇する。,,,,
spell_apotheosis_fire_power_name,"Pyromancy",,,,,,,,,火魔法,,,,
spell_apotheosis_fire_power_desc,"Amplify and convert all damage to fire damage when burning",,,,,,,,,詠唱者が炎上状態の時、消費マナと魔法の発射レートが上昇する。,,,,
spell_apotheosis_blood_power_name,"Hemomancy",,,,,,,,,血魔術,,,,
spell_apotheosis_blood_power_desc,"Projectiles will pierce 5 times when bloody",,,,,,,,,詠唱者が血濡れ状態の時、呪文が5ヒットするようになる。,,,,
spell_apotheosis_shape_wall_name,"Formation - Wall",,,,,,,,,編隊 - 壁,,,,
spell_apotheosis_shape_wall_desc,"Casts 5 spells in a wall-shaped pattern",,,,,,,,,5つの魔法を壁状の編隊で発射する。,,,,
spell_apotheosis_shot_wall_name,"Wallplicate",,,,,,,,,複製 - 壁,,,,
spell_apotheosis_shot_wall_desc,"Casts 5 copies of a projectile in a wall-shaped pattern, but the copies still cost mana",,,,,,,,,呪文を5つに複製し、壁状の編隊で発射する。コピーされた魔法もマナを消費する。,,,,
spell_apotheosis_summon_star_child_name,"Summon Star Child",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_summon_star_child_desc,"Summons a celestial familiar",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
spell_apotheosis_fire_wall_name,"Wall of Fire",,,,,,,,,ファイアーウォール,,,,
spell_apotheosis_fire_wall_desc,"Summons a wall of fire to ward off foes",,,,,,,,,炎の壁が敵を焼き尽くす。,,,,
spell_apotheosis_random_burst_name,"Random Cast",,,,,,,,,ランダム同時詠唱,,,,
spell_apotheosis_random_burst_desc,"Multicasts between 4 to 8 random spells ",,,,,,,,,4-8個の魔法を同時に詠唱する。,,,,
spell_apotheosis_jumper_cables_name,"Summon Jumper Cables",,,,,,,,,電線の召喚,,,,
spell_apotheosis_jumper_cables_desc,"Summon a pair of electrifying vices to shock your victims",,,,,,,,,触れたものを感電させる線を召喚する。,,,,
spell_apotheosis_chi_name,"Chi",,,,,,,,,カイ,,,,
spell_apotheosis_chi_desc,"Copies every utility-type spell in the wand when cast",,,,,,,,,杖にあるすべてのユーティリティ系魔法のコピーを詠唱する。,,,,
spell_apotheosis_kappa_name,"Kappa",,,,,,,,,Kappa,,,,
spell_apotheosis_kappa_desc,"Copies every alt fire-type spell in the wand when cast",,,,,,,,,杖にあるすべてのALT系魔法のコピーを詠唱する。,,,,
spell_apotheosis_pollen_trigger_name,"Pollen with Trigger",,,,,,,,,トリガー付き花粉,,,,
spell_apotheosis_pollen_trigger_desc,"A small, floating projectile that casts another spell upon collision",,,,,,,,,着弾時に後ろの魔法を詠唱する花粉。,,,,
spell_apotheosis_rubberball_trigger_name,"Bouncing Burst with Expiration Trigger",,,,,,,,,消滅トリガー付きバウンドバースト,,,,
spell_apotheosis_rubberball_trigger_desc,"A very bouncy projectile that casts another spell upon expiration",,,,,,,,,消滅時に後ろの魔法を詠唱するバウンドバースト,,,,
spell_apotheosis_potion_to_sea_name,"Potion to Sea",,,,,,,,,ポーションの海,,,,
spell_apotheosis_potion_to_sea_desc,"The first flask in your inventory is shattered and converted into a sea of the same material",,,,,,,,,インベントリの最も左側にあるポーション瓶を消滅させ、中に入っていた物質の海を出現させる。,,,,
actiondesc_mana_reduce,Adds 30 mana to the wand ,Добавляет жезлу 30 ед . маны,Adiciona 30 de mana à varinha ,Añade 30 maná a la varita ,Fügt dem Zauberstab 30 Mana hinzu ,Ajoute 30 points de mana à la baguette ,Aggiunge 30 punti mana alla bacchetta. ,Dodaje do różdżki 30 pkt. many ,向魔杖增加 30 法力 ,30マナを杖に追加する,완드에 마나 30을 추가합니다. ,,,
spell_apotheosis_cov_desc,"A field of regenerative magic; Uncopyable.",,,,,,,,,回復魔法のフィールド。文字呪文でコピーできない。,,,,
spell_apotheosis_healing_bolt_desc,"A magical bolt that heals other beings; Uncopyable.",,,,,,,,,触れた者を回復する魔法弾。文字呪文でコピーできない。,,,,
spell_apotheosis_piercing_shot_desc,"Makes a projectile penetrate 5 times, but become harmful to the caster",,,,,,,,,放射物が敵に5ヒットするが、自傷効果を持つようになる。,,,,
spell_apotheosis_locked_spell_name,"Faulty Magic",,,,,,,,,封印されたスペル,,,,
spell_apotheosis_locked_spell_desc,"It seems this magic is unusable after being afflicted by a curse.",,,,,,,,,このスペルは呪いによって使用できない。,,,,
orb_apotheosis_12_desc,"Secrets of controlling the arcane have been unlocked to you.",,,,,,,,,アルカナを操る技が解放された。,,,,
orb_apotheosis_14_desc,"Secrets of the drowning depths have been unlocked to you.",,,,,,,,,水に沈んだ知識が解放された。,,,,
orb_apotheosis_15_desc,"Secrets of unworldly transmutation have been unlocked to you.",,,,,,,,,世界を作りかえる力が解放された。,,,,
orb_apotheosis_16_desc,"Secrets of wild magic have been unlocked to you.",,,,,,,,,ワイルドな魔法の力が解放された。,,,,
book_apotheosis_orbbook_12_name,"Emerald Tablet - Volume XI",,,,,,,,,,,,,
book_apotheosis_orbbook_12_description,"The world shook asunder and cried in neither fear nor joy. \nnor anger nor sadness, nor any \nnor the tears flew above or below, but to the east and west. \nThe world birth itself anew as it grew and took on new forms \nSome creatures were weary \nSome intrigued \nOthers excited \nMany unaware.",,,,,,,,,,,,,
book_apotheosis_orbbook_13_name,"Emerald Tablet - Volume XII",,,,,,,,,,,,,
book_apotheosis_orbbook_13_description,"There once was a time the world froze to a halt.\nThe water didn't flow, the heart didn't beat and the box didn't fall.\nAfter a moment time flowed again as it always did, however,\nsomething was missing afterwards.\nLook around you, do you not sense it?\nIt is our pursuit to discover what that thing was.",,,,,,,,,,,,,
book_apotheosis_orbbook_14_name,"Emerald Tablet - Volume XIII",,,,,,,,,,,,,
book_apotheosis_orbbook_14_description,"The bird cackled and sang\nWhat good is one's time if it is without encouragement?\nTo those who dream when they feel, they know not the encouragement\nof knowing what to do before their dream and how much.\nTo those who plan their dream ahead of time, when and where,\nthey know what they can do and what time they have to do it.\nThe bird cackled once more before it flew off.\nIt's wisdom soaked into the minds of those who heard it, \nas water soaked into glass.",,,,,,,,,,,,,
book_apotheosis_orbbook_15_name,"Emerald Tablet - Volume XIV",,,,,,,,,,,,,
book_apotheosis_orbbook_15_description,"If only you knew how the mountains were made.\nHow the rivers flowed,\nWhy the emeralds were heavy,\nWhat creature made the eternal fire.\nOur art is not wrapped in layers of secrecy because we hide it.\nYou can know, but choose not to, and so are left with nothing to do but pray to your gods for salvation.",,,,,,,,,,,,,
book_apotheosis_orbbook_stone_workinprogress_description,"Seeker of knowledge, your nose is on the right path \nyet some secrets are yet to be revealed.",,,,,,,,,,,,,
book_apotheosis_orbbook_stone_12_description,"Evolution is forever changing.",,,,,,,,,,,,,
book_apotheosis_orbbook_stone_13_description,"Bring your friends along when you travel.",,,,,,,,,,,,,
book_apotheosis_orbbook_stone_14_description,"To gain true knowledge, one must remain pure and unintoxicated.",,,,,,,,,,,,,
book_apotheosis_orbbook_stone_15_description,"Attune with and home in on your goals;\nDo so and your arrow shall move faster.",,,,,,,,,,,,,
book_apotheosis_playerghost_name,"A Message From Beyond",,,,,,,,,彼方からのメッセージ,,,,
book_apotheosis_playerghost_description,"To those who seek knowledge not true, but divine.\nOne should stand at the altar alone.",,,,,,,,,,,,,
book_apotheosis_playerghost_description_temp,"To those who seek knowledge not true, but divine.\nOne should turn emerald knowledge to stone.",,,,,,,,,,,,,
book_apotheosis_materia_conversion_spell_description_new,"Conversion.. \nRemember these words.... \nFungus \nWorm \nRat \nSpark \nMass \nLetter \nLifetime","Превращение... \nЗапомните эти слова.... \nГрибок \nЧервь \nКрыса \nИскровая \nМассовая \nБуква \nВремя",,,,,,,,,"Kono kotoba wo oboete oku youni...\nKinoko \nWorm \nNezumi \nHibana \nフィールド",,,,
book_apotheosis_material_spells_name,"Lost Alchemy",,,,,,,,,失われた秘術,,,,
book_apotheosis_material_spells_description,"I used to commit alchemy here a long time ago, it was a safe hideaway where my brothers wouldn't bother me. \nHowever.. it seems these ants have taking a liking to it. \n..Never the matter, to my future self, the master of alchemy, \nturn this metal into a material which aids with flight, and your vault will be unlocked to you. \nIf you're someone who isn't me and you found this place, please leave what you found untouched.",,,,,,,,,,,,,
book_apotheosis_omegadeath_name,"Death",,,,,,,,,死神の言葉,,,,
book_apotheosis_omegadeath_description,"Follow my exact path only. I detailed it in the land containing the diamond. \nOnly the uninitiated will bare usefulness to this knowledge to avoid corruption among our ranks, \nso teach the right way to teleport only to those pure. \nThose who have strayed from my pathway will not be rewarded with death.",,,,,,,,,,,,,
book_apotheosis_realquest_name,"Day 7",,,,,,,,,,,,,
book_apotheosis_realquest_description,"I've come here in search of the legendary Red Fish, I remember its name on the tip of my tongue..\nSomething starting with H.. yet I can't recall it\nNo matter, I'll name it after myself after I become the first to discover it.\nThen I'll never forget its name again!",,,,,,,,,,,,,
book_apotheosis_realquest_alt_name,"Day 297",,,,,,,,,,,,,
book_apotheosis_realquest_alt_description,"Remember.\nThe red fish is real.\nThe red fish is real.\nThe red fish is real.\nThe red fish is real.\nThe red fish is real\nThe red fish is reall\nThe red f",,,,,,,,,,,,,
book_apotheosis_realquest_tale_name,"Gone Fishing",,,,,,,,,釣りの書,,,,
book_apotheosis_realquest_tale_description,"The grand red fish is divine bait, only with it will one catch \nthe grandest of beasts lying at the ocean's trench.\nFinding such a specimen often requires one's entire life however, \nand those who have tried often return without fruit or holding defeat.\nTales speak of the red fish coming to those who wait patiently at the water, \nbut only if your palm holds the right blessing.",,,,,,,,,,,,,
book_apotheosis_materia_conversion,"Materialist's Notes",,,,,,,,,マテリアについてのメモ,,,,
perk_apotheosis_shield_oversized_name,"Oversized Shield",,,,,,,,,メガシールド,,,,
perk_apotheosis_shield_oversized_description,"You gain a very large, permanent shield.",,,,,,,,,巨大な永久シールドが出現する。,,,,
perk_apotheosis_haste_name,"Haste",,,,,,,,,電光石火,,,,
perk_apotheosis_haste_description,"You move faster and levitate quicker.",,,,,,,,,全方向への移動が速くなる。,,,,
perk_apotheosis_contactdamage_description,"You take no damage from close-range enemy attacks but enemies near you take damage.",,,,,,,,,敵の近接攻撃を無力化し、近くの敵にダメージを与える。,,,,
perk_apotheosis_alcohol_immunity,"Alcohol Immunity",,,,,,,,,ウワバミ,,,,
perk_apotheosis_alcohol_immunity_description,"You take no effect to being drunk.",,,,,,,,,酔いによるデメリットがなくなる。,,,,
perk_apotheosis_trip_immunity,"Shift Immunity",,,,,,,,,シフト耐性,,,,
perk_apotheosis_trip_immunity_description,"The world is set in stone and can not be shifted so long as you live.",,,,,,,,,世界の物質が固定化され、きのこシフトが使えなくなる。,,,,
perk_apotheosis_no_recoil,"No Recoil",,,,,,,,,反動無効化,,,,
perk_apotheosis_no_recoil_description,"Your spells have no recoil.",,,,,,,,,スペルによる反動がなくなる。,,,,
perk_apotheosis_void,"Void",,,,,,,,,無,,,,
perk_apotheosis_void_description,"Gain immense power, but the void grows jealous of your options.",,,,,,,,,強力な力を得られるが、無があなたの選択を徐々に狭めてゆく。,,,,
perk_apotheosis_infinite_flight,"Our Gift",,,,,,,,,恩寵,,,,
perk_apotheosis_infinite_flight_description,"A divine blessing grants you infinite flight.",,,,,,,,,天からの恩寵により、無限に空を飛ぶ力を得る。,,,,
perk_apotheosis_infinite_flight_description_2,"A divine blessing grants you infinite flight.\nSo long, and thanks for all the fish!",,,,,,,,,天からの恩寵により、無限に空を飛ぶ力を得る。,,,,
perk_apotheosis_copy_spells,"Copy Spells",,,,,,,,,呪文複製,,,,
perk_apotheosis_copy_spells_description,"Copy the Uncopyable.",,,,,,,,,複製不可属性の付いた魔法が複製可能になる。,,,,
perk_apotheosis_curse_mana,"Endless Mana",,,,,,,,,無限のマナ,,,,
perk_apotheosis_curse_mana_reveal,"Curse of Mana",,,,,,,,,マナの呪い,,,,
perk_apotheosis_curse_mana_description,"Your wands feel terribly unstable.. but have infinite mana!",,,,,,,,,無限のマナを得られるが、杖が不安定になる。,,,,
perk_apotheosis_curse_mana_description_reveal,"You have infinite mana.. but feel horribly sick...",,,,,,,,,無限のマナを得たが、ひどく気分が悪い。,,,,
perk_apotheosis_curse_mana_disrupt,"Disrupted Mana",,,,,,,,,マナ詰まり,,,,
perk_apotheosis_curse_mana_disrupt_description,"Your wands are unable to cast!",,,,,,,,,この杖はもう使い物にならない。,,,,
perk_apotheosis_no_blood,"Smoked Corpses",,,,,,,,,ケムリ死体,,,,
perk_apotheosis_no_blood_description,"Enemies leave behind no corpse, and bleed no blood.",,,,,,,,,敵が死体を残さず、血も流さなくなる。,,,,
perk_apotheosis_god_ti,"Divine Intervention",,,,,,,,,神々の試練,,,,
perk_apotheosis_god_ti_description,"The gods will cause something sporadic to occur every 3-4 minutes.",,,,,,,,,3-4分ごとに神々が様々な試練をあなたに課す。,,,,
perk_apotheosis_plane_radar,"Divine Radar",,,,,,,,,神通力,,,,
perk_apotheosis_plane_radar_description,"You can sense otherworldy energy somewhere in the world.",,,,,,,,,世界のどこかに流れる、異界の力を感じられるようになる。,,,,
status_apotheosis_nohealing_name,"Wounded",,,,,,,,,負傷,,,,
status_apotheosis_nohealing_desc,"You can not be healed.",,,,,,,,,回復魔法の効果がない。,,,,
status_apotheosis_teleport_cancel_name,"Teleport Nullification",,,,,,,,,テレポート無効化,,,,
status_apotheosis_teleport_cancel_desc,"You can no longer teleport",,,,,,,,,テレポートできない。,,,,
status_apotheosis_magicwet_intense_ui,"Intense Wetness",,,,,,,,,強烈な湿気,,,,
status_drunk_intense_ui,"Aura of Spirits",,,,,,,,,スピリッツのオーラ,,,,
status_apotheosis_magicurine_intense_ui,"Magic Incontinence",,,,,,,,,きたない魔力,,,,
status_apotheosis_magicfire_intense_ui,"Cursed Flames",,,,,,,,,邪悪な炎,,,,
status_apotheosis_dry_spell_name,"Infiltrated",,,,,,,,,浸潤,,,,
status_apotheosis_dry_spell_desc,"Your stains are set in stone, nothing can be removed and nothing can be added.",,,,,,,,,濡れ状態が固定化されている。,,,,
status_apotheosis_dry_spell_cooldown_name,"Exfiltrated",,,,,,,,,乾燥,,,,
status_apotheosis_dry_spell_cooldown_desc,"Your skin feels spongy, your stains can temporarily not be set in stone.",,,,,,,,,肌の状態が元通りに戻った。濡れ状態の固定化が解除された。,,,,
status_apotheosis_infinite_flight_name,"Limitless Flight",,,,,,,,,無限飛行,,,,
status_apotheosis_infinite_flight_desc,"You can fly forever.",,,,,,,,,無限に空を飛べるようになった。,,,,
status_apotheosis_escapium_name,"Safe Escape",,,,,,,,,逃げの達人,,,,
status_apotheosis_escapium_desc,"A protective barrier shields you, and you feel faster.",,,,,,,,,バリアが出現し、さらに移動速度が上昇している。,,,,
status_apotheosis_projectile_immunity_name,"Projectile Assimilation",,,,,,,,,放射物エネルギー吸収,,,,
status_apotheosis_projectile_immunity_desc,"You heal from projectiles.",,,,,,,,,放射物で回復できるようになった。,,,,
status_apotheosis_homing_name,"Projectile Attunement",,,,,,,,,魔法調律,,,,
status_apotheosis_homing_desc,"Your spells seek targets automatically.",,,,,,,,,スペルがひとりでに敵を狙うようになった。,,,,
status_apotheosis_light_reflect_name,"Magical Light",,,,,,,,,魔法の光,,,,
status_apotheosis_light_reflect_desc,"Taking damage causes you to retaliate with a beam of light.",,,,,,,,,ダメージを負うと、ビームを放って反撃する。,,,,
status_apotheosis_breath_drain_name,"Suffocating",,,,,,,,,窒息,,,,
status_apotheosis_breath_drain_desc,"You are rapidly loosing oxygen!!",,,,,,,,,酸素が急激に失われていく。,,,,
status_apotheosis_speedup_name,"Accelerated Velocity",,,,,,,,,超加速,,,,
status_apotheosis_speedup_desc,"Your spells feel significantly faster.",,,,,,,,,とても速く動けるようになった。,,,,
status_apotheosis_clear_status_name,"Pure Stomach",,,,,,,,,ピュアな胃袋,,,,
status_apotheosis_clear_status_desc,"Your stomach is clear from negative effects you've ingested.",,,,,,,,,食べ物によるマイナス効果がなくなる。,,,,
status_apotheosis_rideshare_name,"Portalic Rideshare",,,,,,,,,いっしょにテレポート,,,,
status_apotheosis_rideshare_desc,"You feel nearby creatures will follow you through portals.",,,,,,,,,テレポートした時、周囲の敵もついて来るようになる。,,,,
status_apotheosis_hex_water_name,"Abyssal Hex",,,,,,,,,アビスの呪い,,,,
status_apotheosis_hex_water_desc,"You take damage from water and other wet substances.",,,,,,,,,水でダメージを受けるようになった。,,,,
status_apotheosis_hex_oil_name,"Industrious Hex",,,,,,,,,機械の呪い,,,,
status_apotheosis_hex_oil_desc,"You take damage from oil and other oily substances.",,,,,,,,,オイルでダメージを受けるようになった。,,,,
status_apotheosis_hex_blood_name,"Lively Hex",,,,,,,,,生命の呪い,,,,
status_apotheosis_hex_blood_desc,"You take damage from blood and other bloody substances.",,,,,,,,,血でダメージを受けるようになった。,,,,
status_apotheosis_protection_all_dull_name,"Shattered Protection",,,,,,,,,無防備状態,,,,
status_apotheosis_protection_all_dull_desc,"Provides no protection, spreads to nearby ambrosia.",,,,,,,,,防御系の効果が無効化される。周囲のアンブロシアも効果がなくなる。,,,,
status_apotheosis_infusion_vulnerability_name,"Vulnerable Infusion",,,,,,,,,弱体化属性,,,,
status_apotheosis_infusion_vulnerability_desc,"Your attacks inflict vulnerability.",,,,,,,,,あなたの攻撃が、敵に弱体化の効果を与えるようになる。,,,,
status_apotheosis_infusion_hex_water_name,"Water Hex Infusion",,,,,,,,,水呪い属性,,,,
status_apotheosis_infusion_hex_water_desc,"Your attacks inflict Abyssal Hex.",,,,,,,,,あなたの攻撃が、敵に水の呪いを与えるようになる。,,,,
status_apotheosis_infusion_freeze_name,"Freezing Infusion",,,,,,,,,凍結属性,,,,
status_apotheosis_infusion_freeze_desc,"Your attacks inflict Freeze.",,,,,,,,,あなたの攻撃に凍結効果が付与される。,,,,
status_apotheosis_no_flight_name,"Grounded",,,,,,,,,飛行禁止,,,,
status_apotheosis_no_flight_desc,"You are unable to levitate.",,,,,,,,,空を飛べなくなる。,,,,
status_apotheosis_creature_shifted_name,"The evolution has shifted",,,,,,,,,生命の姿が変化した,,,,
status_apotheosis_creature_shifted_desc,"You sense life is no longer what it used to be.",,,,,,,,,生命の歴史が書き換わっていく。,,,,
status_apotheosis_shielddrain_name,"Shield Instability",,,,,,,,,シールド無効化,,,,
status_apotheosis_shielddrain_desc,"Your plasma shields are neutralized and unable to defend you.",,,,,,,,,エネルギーシールドの効果がなくなる。,,,,
status_apotheosis_mindvision_name,"Mind Vision",,,,,,,,,心眼,,,,
status_apotheosis_mindvision_desc,"You can see... yourself. Well done.",,,,,,,,,あなた自身の姿が見えるようになる。終わり!,,,,
status_apotheosis_anthatching_name,"Ant Pheromones",,,,,,,,,アリのフェロモン,,,,
status_apotheosis_anthatching_desc,"Ant eggs will prematurely hatch in your presence.",,,,,,,,,周囲にあるアリの卵がひとりでにふ化する。,,,,
status_apotheosis_brain_damage_00_name,"Brain Rot",,,,,,,,,脳障害,,,,
status_apotheosis_brain_damage_00_desc,"You feel your mind ceasing to function.\nFurther consumption may be a mistake.",,,,,,,,,精神に異常が起きている。\nこれ以上摂取しない方がよさそうだ。,,,,
status_apotheosis_brain_damage_01_name,"Brain Rot",,,,,,,,,脳障害,,,,
status_apotheosis_brain_damage_01_desc,"You suffer permanent brain damage.\nFurther consumption may prove lethal.",,,,,,,,,脳が激しいダメージを受けている。\nこれ以上摂取すると、致命的な影響を受けそうだ。,,,,
status_apotheosis_brain_damage_02_name,"Brain Rot",,,,,,,,,脳障害,,,,
status_apotheosis_brain_damage_02_desc,"The last of your neurons will soon cease to be.",,,,,,,,,脳が破壊されていく。,,,,
status_apotheosis_brain_damage_perma_name,"Brain Damage",,,,,,,,,脳障害,,,,
status_apotheosis_brain_damage_perma_desc,"You suffer permanent brain damage.\nAim is irreversibly disturbed.",,,,,,,,,脳機能に不可逆的な障害を負ってしまった。\n照準がうまく合わせられない。,,,,
creep_apotheosis_boss_flesh_monster_name,"Kerettiläinenhirviö",,,,,,,,,ケレッティレイネンヒルヴィオ,,,,
log_apotheosis_fish,"The red fish is real",,,,,,,,,あかいさかな,,,,
log_apotheosis_shift_blocked_name,"Shift Blocked",,,,,,,,,きのこシフトが無効化された,,,,
log_apotheosis_shift_blocked_desc,"The world is set in stone.",,,,,,,,,世界が進化の足を止めた。,,,,
log_apotheosis_upgrade_alwayscast_cheater_name,"You cannot cheat the gods!",,,,,,,,,神の目は騙せない!,,,,
log_apotheosis_upgrade_alwayscast_cheater_desc,"Always cast upgrade can only be used once",,,,,,,,,常時詠唱アップグレードは1度しか使えない。,,,,
log_apotheosis_upgrade_alwayscast_success_name,"A permanent enchantment sinks into your wand",,,,,,,,,杖に魔法のアップグレードが施された。,,,,
log_apotheosis_upgrade_alwayscast_success_desc,"Some things can never be undone...",,,,,,,,,元に戻せないものもある。,,,,
log_apotheosis_flesh_boss_warning,"Something wicked this way comes...",,,,,,,,,異様な気配を感じる……,,,,
log_apotheosis_fishing_caught_name,"You caught a fish!",,,,,,,,,魚をゲットした!,,,,
log_apotheosis_fishing_caught_desc,"Rarity: ",,,,,,,,,レア度: ,,,,
item_apotheosis_egg_fire_lukki_name,"Volcanic Egg",,,,,,,,,熱い卵,,,,
item_apotheosis_egg_fire_lukki_desc,"It feels warm to the touch.\nYou feel it yerns for a new home.",,,,,,,,,触れると温かい卵。\n新たな巣を探しているようだ。,,,,
item_apotheosis_chest_death_cross,"Deathly Chest",,,,,,,,,死神のチェスト,,,,
item_apotheosis_egg_fairy_name,"Glowing Egg",,,,,,,,,光る卵,,,,
item_apotheosis_egg_fairy_desc,"The egg looks luminescent",,,,,,,,,光を放っている。,,,,
item_apotheosis_egg_robot_name,"Robotic Egg",,,,,,,,,金属の卵,,,,
item_apotheosis_egg_robot_desc,"The egg feels like it's moving",,,,,,,,,今にも動き出しそうだ。,,,,
item_apotheosis_egg_mud_name,"Muddy Egg",,,,,,,,,ドロドロの卵,,,,
item_apotheosis_egg_mud_desc,"The egg feels amorphous",,,,,,,,,ドロドロしている。,,,,
item_apotheosis_money_1,Gold nugget (1),Золотой самородок (1),Pepita de ouro (1),Pepita de oro (1),Goldklumpen (1),Pépite d'or (1),Pepita d'oro (1),Grudka złota (1),金块 (1),金塊 (1),황금 덩어리(1),,,
item_apotheosis_bloodmoney_1,Bloody gold nugget (1),Кровавый золотой самородок (1),Pepita de ouro ensanguentada (1),Pepita de oro sangrienta (1),Blutiger Goldklumpen (1),Pépite d'or ensanglantée (1),Pepita d'oro insanguinata (1),Krwaw grudka złota (1),染血金块 (1),ブラッディー金塊 (1),피투성이 황금 덩어리(1),,,
item_apotheosis_heretical_eye_name,"Heretical Eye",,,,,,,,,ヘレティックアイ,,,,
item_apotheosis_heretical_eye_desc,"It's watching you.",,,,,,,,,視線を感じる。,,,,
item_apotheosis_stone_heretic_name,"Korruptoitunutkivi",,,,,,,,,コルップトイトゥヌトキヴィ,,,,
item_apotheosis_stone_heretic_desc,"It feels drenched in blood.",,,,,,,,,血に染まっている。,,,,
item_apotheosis_stone_radar_name,"Opastavakivi",,,,,,,,,オパスタヴァキヴィ,,,,
item_apotheosis_stone_radar_desc,"It pulses strangely.",,,,,,,,,謎の振動を感じる。,,,,
item_apotheosis_potion_reinforced_name,"Large Potion",,,,,,,,,メガポーション,,,,
item_apotheosis_potion_reinforced_name_with_material,"Large $0 Potion",,,,,,,,,$0 のメガポーション,,,,
item_apotheosis_orb_mattereater_name,"Hungry Orb","Голодный шар",,,,,,,,はらぺこオーブ,,,,
item_apotheosis_orb_mattereater_desc,"You feel the matter around it being sucked in. What happens if you kick it, you wonder...",,,,,,,,,周囲の物質が吸われている。蹴ったらどうなるのだろうか。,,,,
item_apotheosis_orb_affluence_name,"Affluent Orb",,,,,,,,,大富豪のオーブ,,,,
item_apotheosis_orb_affluence_desc,"You can see reflections of endless treasure within it. What happens if you kick it, you wonder...",,,,,,,,,莫大な富が中に眠っていそうだ。蹴ったらどうなるのだろうか。,,,,
item_apotheosis_orb_cirno_name,"Freezing Orb",,,,,,,,,カチコチオーブ,,,,
item_apotheosis_orb_cirno_desc,"Holding it makes you feel stupid. What happens if you kick it, you wonder...",,,,,,,,,妙な感覚がある。蹴ったらどうなるのだろうか。,,,,
item_apotheosis_fishing_rod_name,"Fishing Rod",,,,,,,,,釣り竿,,,,
item_apotheosis_fishing_rod_desc,"Go fish..?\nLeft click to cast a line.\nLeft click again when a fish bites to reel it in.",,,,,,,,,釣り具だ。\n左クリックで仕掛けを投げる。\n魚が食いついたら、もう1度左クリック。,,,,
item_apotheosis_sampo_33_name,"Heretical Knowledge",,,,,,,,,異教の知識,,,,
item_apotheosis_sampo_34_name,"Our Gift",,,,,,,,,神の恩寵,,,,
item_apotheosis_runestone_alchemy_name,"Runestone of Alchemy",,,,,,,,,錬金術師のルーンストーン,,,,
item_apotheosis_skill_angler_name,"Angler Skill",,,,,,,,,釣り名人のギフト,,,,
item_apotheosis_skill_angler_desc,"Increase your fishing skill level by 1.",,,,,,,,,釣りレベルが1上昇する。,,,,
sign_apotheosis_custom_seed,"Custom Seed successfully set",,,,,,,,,カスタムシードを取得した。,,,,
sign_apotheosis_heretic_hint_name,"Sealed Note",,,,,,,,,封印されたメモ,,,,
sign_apotheosis_heretic_hint_desc_01,"To those who seek knowledge not true, but divine.\nOne must have corruption purified by the gods.",,,,,,,,,,,,,
sign_apotheosis_heretic_hint_desc_02,"To those who seek knowledge not true, but divine.\nOne must not enter lands which do not contain our salt.",,,,,,,,,,,,,
sign_apotheosis_heretic_hint_desc_03,"To those who seek knowledge not true, but divine.\nOne must offer that which brings excessive wealth, and the gate will come to life.",,,,,,,,,,,,,
sign_apotheosis_heretic_hint_desc_04,"To those who seek knowledge not true, but divine.\nOne must hold Kingly knowledge for proper ascension, lest they ruin their form.",,,,,,,,,,,,,
wand_apotheosis_deck_of_cards_name,"Korttipakka",,,,,,,,,,,,"DOESN'T NEED TO BE TRANSLATED",
wand_apotheosis_aimbot_name,"Wand of Aiming",,,,,,,,,照準の杖,,,,
wand_apotheosis_rat_name,"Rat",,,,,,,,,ロッタ,,,,
wand_apotheosis_cat_name,"Cat",,,,,,,,,ねこ,,,,
wand_apotheosis_mana_battery_name,"Mana Battery",,,,,,,,,マナバッテリー,,,,
wand_apotheosis_wand_of_wonders_name,"Wand of Wonders",,,,,,,,,ワンダーワンド,,,,
damage_apotheosis_reverberation,"Sound Waves",,,,,,,,,音波,,,,
damage_apotheosis_toxic_sphere,"Toxic Sphere",,,,,,,,,猛毒スフィア,,,,
damage_apotheosis_addiction,"Addiction",,,,,,,,,薬物,,,,
curse_apotheosis_yggdrasil_name,"Yggdrasil's Curse",,,,,,,,,ユグドラシルの呪い,,,,
curse_apotheosis_yggdrasil_desc,"You can no longer teleport.\nYou are unable to levitate.",,,,,,,,,飛行とテレポートが不可能になる。,,,,
curse_apotheosis_magic_name,"Wild Magic Curse",,,,,,,,,野生の呪い,,,,
curse_apotheosis_magic_desc,"Your resistances and protective perks are disabled.",,,,,,,,,防御系パークの効果がなくなる。,,,,
curse_apotheosis_technology_name,"Ground Zero",,,,,,,,,グラウンドゼロ,,,,
curse_apotheosis_technology_desc,"Experimental magic will periodically be detonated around your being.",,,,,,,,,一部の魔法があなたの周囲で爆発するようになる。,,,,
curse_apotheosis_glassed_name,"Glassed Curse",,,,,,,,,ガラスの呪い,,,,
curse_apotheosis_glassed_desc,"All creatures have glass cannon.",,,,,,,,,全ての生物がガラスキャノンの効果を得る。,,,,
curse_apotheosis_hardcore_name,"Hardcore",,,,,,,,,ハードコア,,,,
curse_apotheosis_hardcore_desc,"Healing Spells are uncopyable.\nMost enemies have additional health depending on the biome.\nSome creatures from late game biomes may have additional attack speed.\nMost bosses have significantly increased health.\nEnemies drop 50% less gold.\nAlt-Fire teleport bolt replaces normal teleport bolt.\nEnemies spawn 1 NG+ level earlier.",,,,,,,,,回復系スペルが複製不可になる。\n敵HPにバイオームに応じた補正が乗る。\n後半に登場する一部の敵は攻撃速度が上昇する。\nボスのHPが上昇する。\n敵がドロップするゴールドの量が半分になる。\nテレポートボルトがALT仕様になる。\n1つ先のNG+の敵が出現する。,,,,
curse_apotheosis_nightcore_name,"Nightcore",,,,,,,,,ルナティック,,,,
curse_apotheosis_nightcore_desc,"Healing Spells are uncopyable.\nMost enemies have additional health depending on the biome.\nSome creatures from late game biomes may have additional attack speed.\nMost bosses have significantly increased health.\nEnemies drop 50% less gold.\nAlt-Fire teleport bolt replaces normal teleport bolt.\nEnemies spawn 1 NG+ level earlier.\nPlayer suffers from nightmare damage increases.",,,,,,,,,回復系スペルが複製不可になる。\n敵HPにバイオームに応じた補正が乗る。\n後半に登場する一部の敵は攻撃速度が上昇する。\nボスのHPが上昇する。\n敵がドロップするゴールドの量が半分になる。\nテレポートボルトがALT仕様になる。\n1つ先のNG+の敵が出現する。\n受けるダメージにナイトメア補正が乗る。,,,,
curse_apotheosis_missingspells_name,"Missing Spells",,,,,,,,,魔法消滅,,,,
curse_apotheosis_missingspells_desc,"Half of all spells are removed from reality.",,,,,,,,,全魔法のうち半分が使えなくなる。,,,,
curse_apotheosis_towerclimb_name,"Towerclimb",,,,,,,,,タワーの呪い,,,,
curse_apotheosis_towerclimb_desc,"All biomes can spawn any creature.",,,,,,,,,あらゆる敵が出現するようになる。,,,,
curse_apotheosis_alchemistdream_name,"Alchemist's Dream",,,,,,,,錬金術師の夢,,,,,
curse_apotheosis_alchemistdream_desc,"All potions are replaced with Large Potions.\nAll liquid bubbles are blessed with glass cannon.\nAlchemists & Liquid bubble appear much more frequently.\nNew Liquid Bubbles appear.",,,,,,,,,全ポーションがメガポーションになる。\n泡系モブがガラスキャノンパークの効果を得る。\nアルケミスティと泡系の敵の出現頻度が上がる。\n新たな種類の泡系モブが出現する。,,,,
curse_apotheosis_addict_name,"Addict",,,,,,,,,薬物依存,,,,
curse_apotheosis_addict_desc,"20 Fungal & Creature shifts occur at the start of the run.",,,,,,,,,20個のシフト効果がゲーム開始時から発動する。,,,,
curse_apotheosis_weaken_name,"Sunken Curse",,,,,,,,,水底の呪い,,,,
curse_apotheosis_weaken_desc,"Your resistances and protective perks are disabled.",,,,,,,,,防御系パークの効果がなくなる。,,,,
building_apotheosis_interact,"Press $0 to undergo apotheosis.",,,,,,,,,$0 を押して効果を得る。,,,,
building_portal_interact,"Press $0 to enter.",,,,,,,,,$0 を押して入る,,,,
building_portal_activate,"Press $0 to complete the key.",,,,,,,,,$0 を押して鍵を完成させる。,,,,
building_portal_use,"You feel you are no longer in the world you came from.",,,,,,,,,知らない世界に辿りついた。,,,,
credits_apotheosis_line_spoop,"Various Enemy Sprites & Biome graphical design",,,,,,,,,,,,,
credits_apotheosis_line_sosig,"Various Sprites for biome background & structures",,,,,,,,,,,,,
credits_apotheosis_line_20_new,"Helped with programming, creature design & mod direction",,,,,,,,,,,,,
credits_apotheosis_line_slack,"Japanese Translator",,,,,,,,,,,,,
credits_apotheosis_line_extrahelp,"And additional contributions from",,,,,,,,,,,,,
motd_apotheosis,"Message of the Day","Сообщение дня",,,,,,,,,,,,
motd_apotheosis_description,"Message of the Day \nYou shouldn't be reading this.","Сообщение дня \nВы не должны были это прочесть.",,,,,,,,今日のひとこと\nここに メッセージは ないはずだよ\nみたら おしえてね,,,,
motd_apotheosis_description_birthday,"Message of the Day \nHappy Birthday Apotheosis","Сообщение дня \nПоздравлем с днём рождения, Apotheosis",,,,,,,,今日のひとこと\nリリース記念日!ハッピーバースデー!,,,,
motd_apotheosis_description_halloween,"Message of the Day \nHappy Halloween!","Сообщение дня \nСчастливого Хэллоуина!",,,,,,,,今日のひとこと\nハッピーハロウィン!,,,,
motd_apotheosis_description_smissmass,"Message of the Day \nHappy Noitmass!","Сообщение дня \nСчастливого Нойтждества!",,,,,,,,今日のひとこと\nnHappy Noitmass!,,,,
motd_apotheosis_description_new_year,"Happy new year! \nThankyou for playing, although you'll only read this once a year, I mean it every time you play. \nI'm happy seeing people enjoy my projects, and I'm happy making them myself, so sincerely, thankyou. - Conga Lyne.",,,,,,,,,,,,,
motd_apotheosis_description_red_fish,"Message of the Day \nThe Red Fish is real.",,,,,,,,,今日のひとこと\n赤いさかなはいます,,,,
motd_apotheosis_description_001,"Message of the Day \nAlso try Worse Enemies!","Сообщение дня \nТакже попробуйте мод Worse Enemies!",,,,,,,,今日のひとこと\nWorse Enemiesもプレイしてね。,,,,
motd_apotheosis_description_002,"Message of the Day \nHomeless Hiisi love Material Donations","Сообщение дня \nБродяги любят пожертвования в виде денег",,,,,,,,今日のひとこと\n顔色が悪い人にお金をあげると、いいことがあるかも。,,,,
motd_apotheosis_description_003,"Message of the Day \nBlood is Fuel.","Сообщение дня \nКровь - это топливо.",,,,,,,,今日のひとこと\n血は力なり。,,,,
motd_apotheosis_description_004,"Message of the Day \nAlso try Copis Things!","Сообщение дня \nТакже попробуйте мод Copis Things!",,,,,,,,今日のひとこと\n今日のおすすめMOD: Copis Things,,,,
motd_apotheosis_description_005,"Message of the Day \nMeow. Meow. Meow. Meow. Meow.","Сообщение дня \nМяу. Мяу. Мяу. Мяу. Мяу.",,,,,,,,今日のひとこと\nにゃーん,,,,
motd_apotheosis_description_006,"Message of the Day \nGo outside.",,,,,,,,,今日のひとこと\n外に出よう。,,,,
motd_apotheosis_description_007,"Message of the Day \nApotheosis successfully initialised.",,,,,,,,,今日のひとこと\nApotheosis Mod が インストールされました。,,,,
motd_apotheosis_description_008,"Message of the Day \nHey? Can you hear me?! Get out while you still can!! HURRY.","Сообщение дня \nЭй? Вы меня слышите?! Уходите, пока ещё не поздно!!! СКОРЕЕ.",,,,,,,,今日のひとこと\nここは俺に任せろ、お前は先に行け!早く!,,,,
motd_apotheosis_description_009,"Message of the Day \nAlso try Chemical Curiosities!","Сообщение дня \nТакже попробуйте мод Chemical Curiosities!",,,,,,,,今日のひとこと\n今日のおすすめMOD: Chemical Curiosities,,,,
motd_apotheosis_description_010,"Message of the Day \nEat crayons for divine knowledge.",,,,,,,,,今日のひとこと\nクレヨンを食べると、神々の智慧が得られるらしい。,,,,
motd_apotheosis_description_011,"Message of the Day \nRemember to check your wand before firing!",,,,,,,,,今日のひとこと\nだから、撃つ前に杖の中身を確認する必要が、あったんですね(n敗),,,,
motd_apotheosis_description_012,"Message of the Day \nI have 7 very important lore related questions.",,,,,,,,,今日のひとこと\n7つ、質問があります。このゲームの考察について。,,,,
motd_apotheosis_description_013,"Message of the Day \nToday's magic numbers are: 78 40 28 59 20 13",,,,,,,,,今日のラッキーナンバー\n78 40 28 59 20 13,,,,
motd_apotheosis_description_014,"Message of the Day \nThis sign will never lie to you.\nEspecially about matters concerning fish.",,,,,,,,,今日のひとこと\nここに嘘は書いてないよ。ホントダヨ。魚とか。,,,,
motd_apotheosis_description_015,"Message of the Day \nCan you hear ghosts? \nWithout assistance?",,,,,,,,,今日のひとこと\n霊感はある?おばけは見える?,,,,
motd_apotheosis_description_016,"Message of the Day \nMasters of Trolling like red outlines. \nThey'll fit right in","Сообщение дня \nМастера троллинга любят красные контуры. \nОни отлично впишутся",,,,,,,,今日のひとこと\n茶色い魔術師の線は赤の方がよかったかも。,,,,
motd_apotheosis_description_017,"Message of the Day \nMusical Beings fear more than just stones....","Сообщение дня \nМузыкальные существа боятся больше, чем просто камней....",,,,,,,,今日のひとこと\n音楽系の敵に特殊な石を使うと……?,,,,
motd_apotheosis_description_018,"Message of the Day \nKnowledge is scattered around the world.. find it.","Сообщение дня \nЗнания разбросаны по всему миру... найдите их.",,,,,,,,今日のひとこと\n隠し要素を探してみよう。,,,,
motd_apotheosis_description_019,"Message of the Day \nTry as you might, some creatures take all but a single chip from your attacks.",,,,,,,,,今日のひとこと\n攻撃が通らない相手には、別の属性で攻めてみよう。,,,,
motd_apotheosis_description_020,"Message of the Day \nIt's someone's birthday today! Happy Birthday!",,,,,,,,,今日のひとこと\n今日も世界のどこかで新しい命が生まれています。ハッピーバースデー!,,,,
motd_apotheosis_description_021,"Message of the Day \nRed sand is delicious!",,,,,,,,,今日のひとこと\n赤い粉を食べてみると?,,,,
motd_apotheosis_description_022,"Message of the Day \nApotheosis, played by many, including yourself!",,,,,,,,,今日のひとこと\nApotheosis Modをプレイしていますか?\nはい いいえ,,,,
motd_apotheosis_description_023,"Message of the Day \nPerhaps not every creep is a hostile. \nPerhaps not every crystal is a threat.","Сообщение дня \nПожалуй, не каждый гад - враг. \Возможно, не каждый кристалл является угрозой.",,,,,,,,今日のひとこと\n敵じゃない生物もいるし、いい効果のクリスタルもあるかも。,,,,
motd_apotheosis_description_024,"Message of the Day \nAlso try Conga's Cats!",,,,,,,,,今日のひとこと\n今日のおすすめMOD: Conga's Cats,,,,
motd_apotheosis_description_025,"Message of the Day \nDescend into the drowning depths, the water awaits.",,,,,,,,,,,,,今日のひとこと\n沈んだ洞窟の先には、水の力が待つ。
motd_apotheosis_description_026,"Message of the Day \nGoodluck and have fun!. \nIf you're feeling frustrated or stressed, remember to take a break.","Сообщение дня \nУдачи и веселья! \nЕсли вы чувствуете разочарование или стресс, не забудьте сделать перерыв.",,,,,,,,今日のひとこと\nイライラしたり、疲れてきたら、ちょっと休憩を取ろう。,,,,
motd_apotheosis_description_027,"Message of the Day \nI believe in you.","Сообщение дня \nЯ верю в вас.",,,,,,,,今日のひとこと\nやればできる。,,,,
motd_apotheosis_description_028,"Message of the Day \nFor a fun time: pour the densest liquid in the overgrowth",,,,,,,,,今日のひとこと\n最も重い液体を生い茂った洞窟で流すと……,,,,
motd_apotheosis_description_029,"Message of the Day \nVenture into the desert. \nThere I will humour you.",,,,,,,,,今日のひとこと\n砂漠を探索してみよう。面白いものがあるかも?,,,,
motd_apotheosis_description_030,"Message of the Day \nHappy today! Good Now, be happy you're still here!","Сообщение дня \nСчастливый день! Счастливо, будьте счастливы, что вы ещё здесь!",,,,,,,,今日のひとこと\n今日はハッピーデー!生きててえらい!,,,,
motd_apotheosis_description_031,"Message of the Day \nDon't visit the Toxic Worm Nest at 3 am.","Сообщение дня \nНе посещайте гнездо токсичных червей в 3 часа ночи.",,,,,,,,今日のひとこと\n夜中の3時に行かない方がいい場所:毒虫の巣,,,,
motd_apotheosis_description_alt_001,"Message of the Day \nAlso try Grahams Things!",,,,,,,,,今日のひとこと\n今日のおすすめMOD: Grahams Things,,,,
motd_apotheosis_description_alt_002,"Message of the Day \nBe weary when travelling to other worlds.",,,,,,,,,今日のひとこと\n異世界に行くときは注意しよう。,,,,
motd_apotheosis_description_alt_003,"Message of the Day \nStay inside.",,,,,,,,,今日のひとこと\n今日は外に出ない方がいいかも。,,,,
motd_apotheosis_description_alt_004,"Message of the Day \nDid you eat your powerballs today?",,,,,,,,,今日のひとこと\nガチャは悪い文明,,,,
motd_apotheosis_description_alt_005,"Message of the Day \nSour cream with Polish Sausage is delicious.",,,,,,,,,今日のひとこと\nキルバサソーセージ + サワークリーム = 神,,,,
motd_apotheosis_description_alt_006,"Message of the Day \nEver have one of those days?",,,,,,,,,今日のひとこと\nツイてない日もある。,,,,
motd_apotheosis_description_alt_007,"Message of the Day \nApotheosis\nMade by Conga & Friends.",,,,,,,,,今日のひとこと\nこのMODはCongaとみんなの力で製作されています。,,,,
motd_apotheosis_description_alt_008,"Message of the Day \nWelcome Back\nI'm sure your wand seemed more intuitive in the design docs.",,,,,,,,,今日のひとこと\nおかえりなさい!\nその杖、もしかして思ってたのと違う?,,,,
motd_apotheosis_description_alt_009,"Message of the Day \nWan Wan!",,,,,,,,,今日のひとこと\nワンワン!,,,,
motd_apotheosis_description_alt_010,"Message of the Day \nRobin was a fool.",,,,,,,,,今日のひとこと\n(翻訳できなかったネタ),,,,
motd_apotheosis_description_alt_011,"Message of the Day \nBe honest with your feelings.\nBe honest with yourself.",,,,,,,,,今日のひとこと\nフィーリングを信じよう。,,,,
motd_apotheosis_description_alt_012,"Message of the Day \nYou are not a clown, you are the entire circus.",,,,,,,,,今日のひとこと\n俺自身がサーカスになることだ。,,,,
motd_apotheosis_description_alt_013,"Message of the Day \nFriendship is a step on the path to success.",,,,,,,,,今日のひとこと\n友情パワーは大事。,,,,
motd_apotheosis_description_alt_014,"Message of the Day \nPortalium is my favourite liquid.\nWhat's yours?",,,,,,,,,今日のひとこと\n作者のお気に入りはポータル液。キミはどう?,,,,
motd_apotheosis_description_alt_015,"Message of the Day \nAlso try More Stuff!",,,,,,,,,今日のひとこと\n今日のおすすめMOD: More Stuff,,,,
motd_apotheosis_description_alt_016,"Message of the Day \n1432",,,,,,,,,今日のひとこと\n1432,,,,
motd_apotheosis_description_alt_017,"Message of the Day \nIf fighting is sure to result in victory,\nthen you must FIGHT!",,,,,,,,,今日のひとこと\n勝てる戦いをしよう。,,,,
motd_apotheosis_description_alt_018,"Message of the Day \nBlue fire doesn't always mean cold fire...",,,,,,,,,今日のひとこと\n青い炎は冷たいわけじゃない。,,,,
motd_apotheosis_description_alt_019,"Message of the Day \nBe careful of sewer mermaids.",,,,,,,,,今日のひとこと\nきたない人魚に気を付けよう,,,,
motd_apotheosis_description_alt_020,"Message of the Day \nHello, Deranged Maniac.",,,,,,,,,今日のひとこと\nキミの常識、世界の非常識?,,,,
motd_apotheosis_description_alt_021,"Message of the Day \nApotheosis, founded 21/07/2022.",,,,,,,,,今日のひとこと\n22年7月21日は、このMODの誕生日。,,,,
motd_apotheosis_description_alt_022,"Message of the Day \nThat chest is a spy!",,,,,,,,,今日のひとこと\nそのチェストはニセモノ?,,,,
motd_apotheosis_description_alt_023,"Message of the Day \nMagic Inebriation is ambivalently akin to Chaotic Transmutation.",,,,,,,,,今日のひとこと\n「魔力のかく乱」はカオス変異とちょっと似てるかも?。,,,,
motd_apotheosis_description_alt_024,"Message of the Day \nAlways remember to eat healthy, you can't buy your health back.",,,,,,,,,今日のひとこと\nHPには気を付けよう。このゲームで回復はなかなかできない。,,,,
motd_apotheosis_description_alt_025,"Message of the Day \nDo you remember games coming in boxes as a kid? \nIt was sick as hell having physical memorabilia.",,,,,,,,,今日のひとこと\nゲームが箱に入ってた頃って懐かしいよね。,,,,
motd_apotheosis_description_alt_026,"Message of the Day \n3DS street pass was so damn cool. \nYou can still use it today if you know how.",,,,,,,,,今日のひとこと\n「すれちがいMii広場」って楽しかったよね。\nまだ家に3DSはある?,,,,
motd_apotheosis_description_alt_027,"Message of the Day \nRemember to exercise. \nHow about 5 pushups right now?",,,,,,,,,今日のひとこと\n運動は大事。今すぐやろう、とりあえず腕立て5回!,,,,
motd_apotheosis_description_alt_028,"Message of the Day \nSome creatures drop loot extremely rarely. \nfeeling lucky?",,,,,,,,,今日のひとこと\nドロップアイテムがある敵もいる。出たらラッキーかも?,,,,
motd_apotheosis_description_alt_029,"Message of the Day \nThe dragon is an awesome boss, especially when he's draggon dez nuts.",,,,,,,,,今日のひとこと\n(翻訳不能なダジャレ),,,,
motd_apotheosis_description_alt_030,"Message of the Day \nThere's worms inside the walls who bare heavy armor. \nCareful not to awaken them unprepared, they're very hungry.",,,,,,,,,今日のひとこと\nめちゃくちゃ硬いワームがいるから気を付けよう。\nすっごく強いぞ!,,,,
motd_apotheosis_description_alt_031,"Message of the Day \nDon't visit the Toxic Worm Nest at 3 am.","Сообщение дня \nНе посещайте гнездо токсичных червей в 3 часа ночи.",,,,,,,,今日のひとこと\n夜中の3時に行かない方がいい場所:毒虫の巣,,,,
]])
--Yggdrasil's Knowledge (The knowledge of life)
--
--Custom Spell Border for one-off spells would be sick
--
--Previous contact damage description
--perk_apotheosis_contactdamage_description,"You take no damage from close-range enemy attacks but enemies near you take damage; the damage is higher the lower your health gets.",,,,,,,,,,,,,
--Regular Spawns
ModLuaFileAppend("data/scripts/biomes/wizardcave.lua", "mods/Apotheosis/files/scripts/biomes/wizardcave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/tower_end.lua", "mods/Apotheosis/files/scripts/biomes/tower_end_populator.lua")
ModLuaFileAppend("data/scripts/biomes/coalmine.lua", "mods/Apotheosis/files/scripts/biomes/coalmine_populator.lua")
ModLuaFileAppend("data/scripts/biomes/the_end.lua", "mods/Apotheosis/files/scripts/biomes/the_end_populator.lua")
ModLuaFileAppend("data/scripts/biomes/desert.lua", "mods/Apotheosis/files/scripts/biomes/desert_populator.lua")
ModLuaFileAppend("data/scripts/biomes/crypt.lua", "mods/Apotheosis/files/scripts/biomes/crypt_populator.lua")
ModLuaFileAppend("data/scripts/biomes/pyramid.lua", "mods/Apotheosis/files/scripts/biomes/pyramid_populator.lua")
ModLuaFileAppend("data/scripts/biomes/fungicave.lua", "mods/Apotheosis/files/scripts/biomes/fungicave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/coalmine_alt.lua","mods/Apotheosis/files/scripts/biomes/coalmine_alt_populator.lua")
ModLuaFileAppend("data/scripts/biomes/pyramid_hallway.lua","mods/Apotheosis/files/scripts/biomes/pyramid_hallway_populator.lua")
ModLuaFileAppend("data/scripts/biomes/liquidcave.lua", "mods/Apotheosis/files/scripts/biomes/liquidcave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/snowcastle_cavern.lua", "mods/Apotheosis/files/scripts/biomes/hiisi_shop_populator.lua")
ModLuaFileAppend("data/scripts/biomes/excavationsite.lua","mods/Apotheosis/files/scripts/biomes/excavationsite_populator.lua")
ModLuaFileAppend("data/scripts/biomes/vault_frozen.lua","mods/Apotheosis/files/scripts/biomes/vault_frozen_populator.lua")
ModLuaFileAppend("data/scripts/biomes/fungiforest.lua", "mods/Apotheosis/files/scripts/biomes/fungiforest_populator.lua")
ModLuaFileAppend("data/scripts/biomes/snowcastle.lua", "mods/Apotheosis/files/scripts/biomes/snowcastle_populator.lua")
ModLuaFileAppend("data/scripts/biomes/snowcave.lua", "mods/Apotheosis/files/scripts/biomes/snowcave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/wandcave.lua", "mods/Apotheosis/files/scripts/biomes/wandcave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/meat.lua", "mods/Apotheosis/files/scripts/biomes/meat_populator.lua")
ModLuaFileAppend("data/scripts/biomes/sandcave.lua", "mods/Apotheosis/files/scripts/biomes/sandcave_populator.lua")
ModLuaFileAppend("data/scripts/biomes/vault.lua", "mods/Apotheosis/files/scripts/biomes/vault_populator.lua")
--ModLuaFileAppend( "data/scripts/biomes/tower.lua", "mods/Apotheosis/files/scripts/biomes/tower_populator.lua" )
ModLuaFileAppend("data/scripts/biomes/rainforest.lua", "mods/Apotheosis/files/scripts/biomes/rainforest_populator.lua") --Jungle
ModLuaFileAppend("data/scripts/biomes/rainforest_dark.lua","mods/Apotheosis/files/scripts/biomes/rainforest_dark_populator.lua") --Lukki Lair
ModLuaFileAppend("data/scripts/biomes/winter.lua", "mods/Apotheosis/files/scripts/biomes/winter_populator.lua") --Snow Chasm
ModLuaFileAppend("data/scripts/biomes/clouds.lua", "mods/Apotheosis/files/scripts/biomes/clouds_populator.lua") --Cloud Scape, for example coral chest area & essence of air area
ModLuaFileAppend("data/scripts/biomes/robobase.lua", "mods/Apotheosis/files/scripts/biomes/robobase_populator.lua") --Power Plant
ModLuaFileAppend("data/scripts/biomes/lake_statue.lua", "mods/Apotheosis/files/scripts/biomes/lake_statue_populator.lua") --Lake Island
ModLuaFileAppend("data/scripts/biomes/hills.lua", "mods/Apotheosis/files/scripts/biomes/hills_populator.lua") --Hills and shallow caves
ModLuaFileAppend("data/scripts/biomes/robot_egg.lua", "mods/Apotheosis/files/scripts/biomes/robot_egg_populator.lua") --End of Everything Robotic Egg
--Not looking quite as good as the statues, might need a different art approach
--ModLuaFileAppend( "data/scripts/biomes/mountain_tree.lua", "mods/Apotheosis/files/scripts/biomes/mountain_tree_populator.lua" ) --Treechievements
ModLuaFileAppend("data/scripts/gun/gun_actions.lua", "mods/Apotheosis/files/actions.lua")
-- Could this be gsubbed?
ModLuaFileAppend("data/scripts/gun/gun.lua", "mods/Apotheosis/files/gun.lua")
dofile_once("mods/apotheosis/lib/injection.lua")
inject(args.StringFile, modes.PREPEND, "data/shaders/post_final.frag", "// liquid distortion",
"mods/apotheosis/files/scripts/shader/trip_red_pre.frag")
inject(args.StringFile, modes.PREPEND, "data/shaders/post_final.frag", "gl_FragColor",
"mods/apotheosis/files/scripts/shader/trip_red_post.frag")
inject(args.StringFile, modes.PREPEND, "data/shaders/post_final.frag", "varying vec2 tex_coord_fogofwar;",
"mods/apotheosis/files/scripts/shader/trip_red_global.frag")
GameSetPostFxParameter("conga_red_sand_effect_amount", 0, 0, 0, 0)
--Appends Global Spawns to vanilla biome
do -- Global Spawns
--DO NOT INCLUDE ANYTHING TOWER RELATED HERE, they're... "special" and need to be done in their own unique way
for _, append in ipairs({
{ -- General
script = "global_populator",
biomes = {
"wizardcave", --Wizard's Den, aside from the darkness it's pretty habitable. Polymorph liquid is scarier, I can't shield that.
"coalmine", --Coal Mine, first area, goodluck on your run
"desert", --Desert above ground, careful not to die to any Stendari
"crypt", --Temple of the Arts.. who died here?
"pyramid", --Presumably everything below the entrance to the pyramid
"fungicave", --BUNGUS!! cave, west side of area 2 for example
"coalmine_alt", --Coalmine but to the west side near damp cave
"pyramid_hallway", --Pyramid entrance, presumably
"excavationsite", --Coal Pits, area 2
"fungiforest", --Overgrowth
"snowcave", --Snowy Depths
"wandcave", --Magical temple.. huh
"sandcave", --Desert sand cave, I don't think it includes desert chasm
"winter", --Winter appears to be the snow chasm... terrifying. Also line 69!
"rainforest", --Jungle
"rainforest_dark", --Lukki Lair.. creepy
"liquidcave", --Abandoned Alchemy Lab
}
},
{ -- No Magic
script = "global_populator_no_magic",
biomes = {
"the_end", --Heaven, or Hell, your choice. Either are The Work.
"vault", --The Vault
"robot_egg", --I'm sure you can guess
"vault_frozen", --Like the vault, but way colder, worse, more hisii and with a really rude welcoming
"snowcastle", --Hisii Base... Interesting name.. I won't judge.. too much, I've used some really weird inengine names myself in the past
"robobase", --Power Plant
}
},
{ -- Small Only
script = "global_populator_smallonly",
biomes = {
"clouds", --Cloudscapes
"hills", --Hills, aka forest.
}
},
}) do
-- Generate append script file path
local appendpath = table.concat({ "mods/apotheosis/files/scripts/biomes/", append.script, ".lua" })
-- Iterate over all biomes for the path
for _, biome in ipairs(append.biomes) do
-- Generate biome file path
local biomepath = table.concat({ "data/scripts/biomes/", biome, ".lua" })
-- Add the stuff
ModLuaFileAppend(biomepath, appendpath)
end
end
end
--Appends Global Spawns to new biome files
do -- Global Spawns
--DO NOT INCLUDE ANYTHING TOWER RELATED HERE, they're... "special" and need to be done in their own unique way
for _, append in ipairs({
{ -- General
script = "global_populator",
biomes = {
"lava_excavation", --Core Mines, Volcanic lava filled land in the desert with plenty of loot but plenty of death
"evil_temple", --Temple of Sacriligious Remains
}
},
}) do
-- Generate append script file path
local appendpath = table.concat({ "mods/apotheosis/files/scripts/biomes/", append.script, ".lua" })