forked from vyneras/tprando_vyneras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogic.lua
1134 lines (868 loc) · 34.3 KB
/
logic.lua
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
-- General
function has(item, amount)
local count = Tracker:ProviderCountForCode(item)
amount = tonumber(amount)
if not amount then
return count > 0
else
return count >= amount
end
end
function accessibility_normal(accessibility)
return accessibility == AccessibilityLevel.Normal
end
-- Items
function bugs_held()
local bugs = Tracker:FindObjectForCode("bugs")
local location = Tracker:FindObjectForCode("@Agitha's Castle/Agitha's Rewards")
return bugs.CurrentStage > (MAX_BUGS - location.AvailableChestCount)
end
function burn_webs()
return has("lantern") or use_bombs() or has("ball_and_chain")
end
function castle_painting()
return use_bow() and use_bombs()
end
function damage()
return has("sword") or has("ball_and_chain") or use_bow() or use_bombs() or has("boots") or has("wolf") or has("spinner")
end
function dominion_rod_level()
local dominion_rod = Tracker:FindObjectForCode("dominion_rod")
return dominion_rod.CurrentStage
end
function free_all_monkeys()
return free_monkey() and (has("lantern") or (SMALL_KEYS_REMOVED and (use_bombs() or has("boots")))) and burn_webs() and has("boomerang") and bokoblin() and (forest_small_keys() >= 4)
end
function free_monkey()
return has("sword") or has("boots") or has("spinner") or has("ball_and_chain") or has("wolf") or use_bow() or has("clawshot")
end
function hanging_baba()
return use_bow() or has("clawshot") or has("boomerang")
end
function hanging_web()
return has("clawshot") or use_bow() or has("boomerang") or has("ball_and_chain")
end
function heavy()
if has("boots") then
return true, AccessibilityLevel.Normal
elseif has("magic") then
return true, AccessibilityLevel.SequenceBreak
else
return false
end
end
function launch_bombs()
return use_bombs() and (has("boomerang") or use_bow())
end
function mines_switch()
if has("boots") then
return true, AccessibilityLevel.Normal
elseif has("ball_and_chain") or has("magic") then
return true, AccessibilityLevel.SequenceBreak
else
return false
end
end
function poe_souls()
local poe_souls = Tracker:FindObjectForCode("poe_souls")
return poe_souls.CurrentStage
end
function ending_blow()
local skills = Tracker:FindObjectForCode("skills")
return skills.CurrentStage < 1
end
function ranged()
return has("ball_and_chain") or has("slingshot") or use_bow() or has("clawshot") or has("boomerang")
end
function smash()
return use_bombs() or has("ball_and_chain")
end
function use_bombs()
return has("bombs") and faron_field()
end
function use_bow()
return has("bow") and (forest_open() or sacred_grove())
end
function use_water_bombs()
return has("bombs") and faron_field()
end
function wooden_door()
return has("wolf") or has("sword") or smash()
end
-- Enemies
function aeralfos()
return has("clawshot") and (has("sword") or has("ball_and_chain") or has("wolf"))
end
function argorok()
local heavy, accessibility = heavy()
return has("double_clawshot") and heavy and has("ordon_sword"), accessibility
end
function armogohma()
return use_bow() and (dominion_rod_level() >= 1)
end
function armos()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf") or has("clawshot") or use_bombs() or has("spinner")
end
function baba_serpent()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf") or use_bombs()
end
function baby_gohma()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("clawshot") and use_bombs()
end
function beamos()
return has("ball_and_chain") or use_bow() or use_bombs()
end
function big_baba()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf") or has("spinner") or use_bombs()
end
function blizzeta()
return has("ball_and_chain")
end
function bokoblin()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("wolf") or use_bombs()
end
function bomskit()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function bubble()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function bulblin()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function chilfos()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function chu()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf") or has("clawshot") or use_bombs()
end
function chu_worm()
return (has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")) and (use_bombs() or has("clawshot"))
end
function dangoro()
return has("boots") and (has("sword") or has("ball_and_chain") or has("wolf"))
end
function darkhammer()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function darknut()
return has("sword")
end
function death_sword()
return has("wolf") and (has("sword") or has("ball_and_chain") or has("boots")) and (has("boomerang") or use_bow() or has("clawshot"))
end
function deku_toad()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function diababa()
return (has("boomerang") or (use_bombs() and use_bow())) and (has("sword") or has("ball_and_chain") or has("boots") or has("wolf"))
end
function dinalfos()
return has("sword") or has("ball_and_chain") or has("wolf")
end
function dodongo()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function fire_bubble()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function fire_keese()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("wolf")
end
function freezard()
return has("ball_and_chain")
end
function fyrus()
return use_bow() and has("boots") and has("sword")
end
function ganondorf()
local skills = Tracker:FindObjectForCode("skills")
return has("wolf") and has("master_sword") and (skills.CurrentStage >= 1)
end
function ghoul_rat()
return has("wolf")
end
function goron()
local skills = Tracker:FindObjectForCode("skills")
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or (has("shield") and (skills.CurrentStage >= 2)) or has("slingshot") or has("lantern") or has("clawshot")
end
function helmasaur()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function ice_bubble()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function ice_keese()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("wolf")
end
function kargarok()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function keese()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("wolf")
end
function king_bulblin_castle()
return has("sword") or has("ball_and_chain") or has("wolf")
end
function king_bulblin_desert()
return has("sword") or has("ball_and_chain") or has("wolf")
end
function leever()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function lizalfos()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function mini_freezard()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function morpheel()
local heavy, accessibility = heavy()
return has("zora") and heavy and has("sword") and has("clawshot"), accessibility
end
function ook()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function phantom_zant()
return has("wolf") or has("sword")
end
function poe()
return has("wolf")
end
function rat()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("slingshot") or has("wolf")
end
function redead_knight()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("wolf")
end
function shadow_beast()
return has("sword") or (has("wolf") and midna_desperate_hour())
end
function shell_blade()
return use_water_bombs() or (has("sword") and has("boots"))
end
function skull_kid()
return use_bow()
end
function skulltula()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function stalchild()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function stalfos()
return smash()
end
function stalhound()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function stallord()
return has("spinner") and has("sword")
end
function tektite()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function tile_worm()
return has("boomerang") and (has("sword") or has("ball_and_chain") or use_bow() or has("wolf"))
end
function toadpoli()
return has("sword") or has("ball_and_chain") or use_bow()
end
function torch_slug()
return has("sword") or has("ball_and_chain") or use_bow() or has("wolf")
end
function walltula()
return has("ball_and_chain") or has("slingshot") or use_bow() or has("boomerang") or has("clawshot")
end
function young_gohma()
return has("sword") or has("ball_and_chain") or use_bow() or has("boots") or has("spinner") or has("wolf")
end
function zant()
return has("master_sword") and has("boomerang") and has("clawshot") and has("boots") and has("zora") and has("ball_and_chain")
end
function zant_head()
return has("wolf") or has("sword")
end
-- Golden Wolves
function gerudo_desert_wolf()
local howling_stone = Tracker:FindObjectForCode("@Lake Hylia South Ledges/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
function kakariko_graveyard_wolf()
local howling_stone = Tracker:FindObjectForCode("@Snowpeak Climb/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
function north_castle_town_wolf()
local howling_stone = Tracker:FindObjectForCode("@Hidden Village/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
function ordon_spring_wolf()
local howling_stone = Tracker:FindObjectForCode("@Death Mountain Trail/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
function south_hyrule_field_wolf()
local howling_stone = Tracker:FindObjectForCode("@North Faron Woods/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
function west_hyrule_field_wolf()
local howling_stone = Tracker:FindObjectForCode("@Upper Zora's River/Howling Stone")
return howling_stone.AvailableChestCount == 0
end
-- Events
function complete_intro()
return has("prologue_skipped") or (has("sword") and has("slingshot") and has("fishing_rod"))
end
function forest_open()
return complete_intro() and (has("forest") or has("faron_open"))
end
function midna_desperate_hour()
return has("lakebed") or has("midna_skipped")
end
-- Areas
function arbiters_grounds()
local bulblin_camp, accessibility = gerudo_desert_bulblin_camp()
return bulblin_camp and (has("grounds_skipped") or (king_bulblin_desert() and desert_key())), accessibility
end
function arbiters_grounds_boss_room()
local poe_gate, accessibility = arbiters_grounds_poe_gate()
return poe_gate and has("spinner") and grounds_big_key(), accessibility
end
function arbiters_grounds_lobby()
local arbiters_grounds, accessibility = arbiters_grounds()
return arbiters_grounds and (grounds_small_keys() >= 1) and has("lantern"), accessibility
end
function arbiters_grounds_poe_gate()
local lobby, accessibility = arbiters_grounds_lobby()
return lobby and poe() and has("wolf") and has("clawshot") and redead_knight() and stalchild() and bubble() and ghoul_rat() and stalfos() and (grounds_small_keys() >= 4), accessibility
end
function cave_of_ordeals_floor_1()
return gerudo_desert() and shadow_beast() and has("clawshot")
end
function cave_of_ordeals_floor_12()
return cave_of_ordeals_floor_1() and bokoblin() and keese() and rat() and baba_serpent() and skulltula() and bulblin() and torch_slug() and fire_keese() and dodongo() and tektite() and lizalfos()
end
function cave_of_ordeals_floor_22()
return cave_of_ordeals_floor_12() and helmasaur() and rat() and has("spinner") and chu() and chu_worm() and bubble() and bulblin() and keese() and stalhound() and poe() and leever()
end
function cave_of_ordeals_floor_32()
return cave_of_ordeals_floor_22() and bokoblin() and ice_keese() and has("ball_and_chain") and keese() and rat() and ghoul_rat() and stalchild() and redead_knight() and bulblin() and stalfos() and skulltula() and bubble() and lizalfos() and fire_bubble()
end
function cave_of_ordeals_floor_42()
return cave_of_ordeals_floor_32() and beamos() and keese() and (dominion_rod_level() >= 2) and torch_slug() and fire_keese() and dodongo() and fire_bubble() and redead_knight() and poe() and ghoul_rat() and chu() and ice_keese() and freezard() and chilfos() and ice_bubble() and leever() and darknut()
end
function city_in_the_sky()
local skybook = Tracker:FindObjectForCode("skybook")
return lanayru_field() and has("clawshot") and ((skybook.CurrentStage >= 7) or has("cannon_skipped"))
end
function city_in_the_sky_boss_room()
local north_wing, accessibility = city_in_the_sky_north_wing()
return north_wing and has("double_clawshot") and aeralfos() and sky_big_key(), accessibility
end
function city_in_the_sky_east_wing()
return city_in_the_sky() and has("clawshot") and has("spinner") and sky_small_key()
end
function city_in_the_sky_north_wing()
local heavy, accessibility = heavy()
return city_in_the_sky() and has("double_clawshot") and baba_serpent() and kargarok() and has("wolf") and heavy, accessibility
end
function city_in_the_sky_west_wing()
return city_in_the_sky() and has("double_clawshot")
end
function eldin_field_bombfish_grotto()
return faron_field() and has("wolf")
end
function eldin_field_bomskit_grotto()
return faron_field() and has("wolf")
end
function eldin_province_stalfos_grotto()
return has("wolf") and has("spinner") and (smash() or ((has("lanyru_skipped") or has("wolf")) and gate_keys()))
end
function eldin_province_stockcave()
return faron_field() and has("clawshot")
end
function faron_field()
return forest_open()
end
function faron_field_corner_grotto()
return has("wolf")
end
function faron_woods_mist_cave()
return south_faron_woods() and has("lantern")
end
function forest_temple()
return north_faron_woods()
end
function forest_temple_boss_room()
return forest_temple_lobby() and forest_big_key() and has("boomerang") and (free_all_monkeys() or has("clawshot"))
end
function forest_temple_lobby()
return forest_temple() and walltula() and bokoblin() and free_monkey()
end
function forest_temple_ook_room()
local west_wing, accessibility = forest_temple_west_wing()
if (forest_temple_lobby() and has("lantern") and (forest_small_keys() >= 4)) or (west_wing and accessibility_normal(accessibility) and has("boomerang")) then
return true, AccessibilityLevel.Normal
elseif (forest_temple_lobby() and has("lantern") and (forest_small_keys() >= 3)) or (west_wing and has("boomerang")) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function forest_temple_west_wing()
if forest_temple_lobby() and burn_webs() and (has("clawshot") or ((forest_small_keys() >= 2) and bokoblin())) then
return true, AccessibilityLevel.Normal
elseif forest_temple_lobby() and burn_webs() and ((forest_small_keys() >= 1) and bokoblin()) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function ganondorf_castle()
return hyrule_castle_third_floor_balcony() and (castle_small_keys() >= 2) and has("spinner") and has("double_clawshot") and darknut() and lizalfos() and castle_big_key() and ganondorf()
end
function gerudo_desert()
return lanayru_field() and has("memo")
end
function gerudo_desert_bulblin_camp()
if gerudo_desert() and bulblin() then
return true, AccessibilityLevel.Normal
elseif gerudo_desert() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function gerudo_desert_rock_grotto()
return gerudo_desert() and has("wolf") and has("clawshot")
end
function gerudo_desert_skulltula_grotto()
return gerudo_desert() and has("wolf")
end
function goron_mines()
if faron_field() and has("boots") and goron() then
return true, AccessibilityLevel.Normal
elseif faron_field() and goron() and (has("shield") or has("magic")) and has("wrestling_skipped") then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function goron_mines_boss_room()
local north_wing, accessibility = goron_mines_north_wing()
return north_wing and use_bow() and has("boots") and bulblin() and goron_big_key(), accessibility
end
function goron_mines_crystal_switch_room()
local lower_west_wing, accessibility = goron_mines_lower_west_wing()
return lower_west_wing and has("boots"), accessibility
end
function goron_mines_lower_west_wing()
local magnet_room, accessibility = goron_mines_magnet_room()
return magnet_room and (goron_small_keys() >= 1), accessibility
end
function goron_mines_magnet_room()
local entrance, accessibility = goron_mines()
return entrance and has("boots") and wooden_door(), accessibility
end
function goron_mines_north_wing()
local crystal_switch_room, accessibility = goron_mines_crystal_switch_room()
return crystal_switch_room and ((has("boots") and has("sword")) or use_bow()) and (goron_small_keys() >= 2), accessibility
end
function goron_mines_upper_east_wing()
local north_wing, accessibility = goron_mines_north_wing()
return north_wing and (goron_small_keys() >= 3), accessibility
end
function hidden_village()
return lanayru_field() and has("statue")
end
function hyrule_castle()
local requirement = false
local shadows = Tracker:ProviderCountForCode("shadow")
local mirrors = Tracker:ProviderCountForCode("mirror")
if has("hc_open") then
requirement = true
elseif has("hc_shadow") then
requirement = (shadows >= 3)
elseif has("hc_mirror") then
requirement = (mirrors >= 3)
elseif has("hc_ad") then
requirement = has("forest") and has("mines") and has("lakebed") and has("grounds") and has("ruins") and has("time") and has("sky") and has("palace")
elseif has("hc_vanilla") then
requirement = has("palace")
end
return lanayru_field() and requirement and midna_desperate_hour()
end
function hyrule_castle_graveyard()
return hyrule_castle_outside_east_wing() and has("wolf")
end
function hyrule_castle_main_hall()
return hyrule_castle() and (castle_small_keys() >= 1)
end
function hyrule_castle_outside_east_wing()
return hyrule_castle() and bokoblin() and kargarok()
end
function hyrule_castle_outside_west_wing()
return hyrule_castle() and bokoblin() and kargarok()
end
function hyrule_castle_third_floor_balcony()
return hyrule_castle_main_hall() and bokoblin() and lizalfos() and has("double_clawshot") and darknut() and has("boomerang") and ((has("lantern") and dinalfos()) or castle_painting())
end
function hyrule_castle_treasure_room()
return hyrule_castle_third_floor_balcony() and (castle_small_keys() >= 3) and has("spinner") and has("double_clawshot") and darknut() and lizalfos()
end
function kakariko_gorge_lantern_cave()
return faron_field() and smash()
end
function lake_hylia_bridge_bubble_grotto()
return lanayru_field() and has("wolf") and launch_bombs() and has("clawshot")
end
function lake_hylia_lantern_cave()
return lanayru_field() and smash()
end
function lake_hylia_shell_blade_grotto()
return lanayru_field() and has("wolf")
end
function lake_hylia_toadpoli_grotto()
return lanayru_field() and has("wolf")
end
function lakebed_temple()
local heavy, accessibility = heavy()
if lanayru_field() and has("zora") and (has("lakebed_skipped") or (heavy and accessibility_normal(accessibility) and use_water_bombs())) then
return true, AccessibilityLevel.Normal
elseif lanayru_field() and has("zora") and heavy and use_water_bombs() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function lakebed_temple_boss_room()
local central_room, accessibility = lakebed_temple_central_room()
if central_room and accessibility_normal(accessibility) and (lakebed_small_keys() >= 3) and launch_bombs() and has("clawshot") and lakebed_big_key() then
return true, AccessibilityLevel.Normal
elseif central_room and (lakebed_small_keys() >= 2) and launch_bombs() and has("clawshot") and lakebed_big_key() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function lakebed_temple_central_room()
local lakebed_temple, accessibility = lakebed_temple()
if lakebed_temple and accessibility_normal(accessibility) and launch_bombs() then
return true, AccessibilityLevel.Normal
elseif lakebed_temple and (launch_bombs() or has("wolf")) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function lakebed_temple_east_wing_second_floor()
local central_room, accessibility = lakebed_temple_central_room()
return central_room and (lakebed_small_keys() >= 1), accessibility
end
function lakebed_temple_west_wing()
local central_room, accessibility = lakebed_temple_central_room()
if central_room and accessibility_normal(accessibility) and (lakebed_small_keys() >= 3) and smash() and has("clawshot") then
return true, AccessibilityLevel.Normal
elseif central_room and (lakebed_small_keys() >= 2) and smash() and has("clawshot") then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function lanayru_field()
return faron_field() and (smash() or (gate_keys() and (has("lanayru_skipped") or has("wolf"))))
end
function lanayru_field_helmasaur_grotto()
return lanayru_field() and has("wolf") and has("clawshot")
end
function lanayru_field_ice_cave()
return lanayru_field() and smash()
end
function lanayru_field_poe_grotto()
return lanayru_field() and has("wolf")
end
function lanayru_field_skulltula_grotto()
return lanayru_field() and has("wolf")
end
function lanayru_field_tektite_grotto()
return lanayru_field() and has("wolf")
end
function north_faron_woods()
return south_faron_woods() and complete_intro() and (has("lantern") or has("wolf"))
end
function ordon_ranch_grotto()
return complete_intro() and has("wolf")
end
function palace_of_twilight()
local arbiters_grounds_boss_room, accessibility = arbiters_grounds_boss_room()
local requirement = false
local shadows = Tracker:ProviderCountForCode("shadow")
local mirrors = Tracker:ProviderCountForCode("mirror")
if has("palace_open") then
requirement = true
elseif has("palace_shadow") then
requirement = (shadows >= 3)
elseif has("palace_mirror") then
requirement = (mirrors >= 3)
elseif has("palace_vanilla") then
requirement = has("sky")
end
return arbiters_grounds_boss_room and stallord() and requirement, accessibility
end
function palace_of_twilight_boss_room()
return palace_of_twilight_north_tower() and (palace_small_keys() >= 7) and zant_head() and has("light_sword") and palace_big_key() and shadow_beast()
end
function palace_of_twilight_east_wing()
return palace_of_twilight() and phantom_zant() and has("clawshot") and zant_head() and (palace_small_keys() >= 2)
end
function palace_of_twilight_north_tower()
return palace_of_twilight() and has("light_sword") and phantom_zant() and has("clawshot") and zant_head() and (palace_small_keys() >= 4) and shadow_beast()
end
function sacred_grove()
return north_faron_woods() and has("wolf")
end
function sacred_grove_arena()
return sacred_grove() and (has("grove_skipped") or (skull_kid() and has("wolf")))
end
function sacred_grove_baba_serpent_grotto()
return smash() and has("wolf")
end
function snowpeak_freezard_grotto()
return zora_domain() and has("wolf") and (has("coral_earring") or has("ruins_skipped"))
end
function snowpeak_ruins()
return snowpeak_summit() and shadow_beast()
end
function snowpeak_ruins_boss_room()
local west_courtyard, accessibility = snowpeak_ruins_west_courtyard()
if west_courtyard and accessibility_normal(accessibility) and (ruins_small_keys() >= 4) and ruins_cheese() and has("ball_and_chain") and use_bombs() and ruins_big_key() then
return true, AccessibilityLevel.Normal
elseif west_courtyard and (ruins_small_keys() >= 2) and ruins_cheese() and has("ball_and_chain") and use_bombs() and ruins_big_key() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_caged_freezard_room()
return snowpeak_ruins() and ruins_cheese()
end
function snowpeak_ruins_chapel()
local west_courtyard, accessibility = snowpeak_ruins_west_courtyard()
if west_courtyard and accessibility_normal(accessibility) and (ruins_small_keys() >= 4) and ruins_cheese() and has("ball_and_chain") and use_bombs() then
return true, AccessibilityLevel.Normal
elseif west_courtyard and (ruins_small_keys() >= 2) and ruins_cheese() and has("ball_and_chain") and use_bombs() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_chilfos_room_first_floor()
if snowpeak_ruins_east_courtyard() and (((ruins_small_keys() >= 4) and mini_freezard()) or (ruins_small_keys() >= 2 and has("clawshot") and mini_freezard())) then
return true, AccessibilityLevel.Normal
elseif snowpeak_ruins_east_courtyard() and (ruins_small_keys() >= 1) and mini_freezard() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_chilfos_room_second_floor()
local mini_freezard_room, accessibility = snowpeak_ruins_mini_freezard_room()
return mini_freezard_room and has("ball_and_chain") and has("clawshot") and chilfos(), accessibility
end
function snowpeak_ruins_darkhammer_room()
local west_courtyard, accessibility = snowpeak_ruins_west_courtyard()
if west_courtyard and accessibility_normal(accessibility) and (has("ball_and_chain") or (((ruins_small_keys() >= 2) or ruins_cheese()) and use_bombs())) then
return true, AccessibilityLevel.Normal
elseif west_courtyard and (has("ball_and_chain") or (((ruins_small_keys() >= 1) or ruins_cheese()) and use_bombs())) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_east_courtyard()
return snowpeak_ruins() and (has("wolf") or has("ball_and_chain"))
end
function snowpeak_ruins_mini_freezard_room()
if snowpeak_ruins_caged_freezard_room() and has("ball_and_chain") and (ruins_small_keys() >= 3) then
return true, AccessibilityLevel.Normal
elseif snowpeak_ruins_caged_freezard_room() and has("ball_and_chain") and (ruins_small_keys() >= 1) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_west_cannon_room()
local west_courtyard, accessibility = snowpeak_ruins_west_courtyard()
if (west_courtyard and accessibility_normal(accessibility)) or (snowpeak_ruins_caged_freezard_room() and has("ball_and_chain")) then
return true, AccessibilityLevel.Normal
elseif west_courtyard then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_west_courtyard()
if snowpeak_ruins() and (ruins_pumpkin() or has("ball_and_chain") or (ruins_cheese() and (ruins_small_keys() >= 2))) then
return true, AccessibilityLevel.Normal
elseif snowpeak_ruins() and ruins_cheese() and (ruins_small_keys() >= 1) then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_ruins_wooden_beam_room()
local west_cannon_room, accessibility = snowpeak_ruins_west_cannon_room()
if (west_cannon_room and accessibility_normal(accessibility) and smash()) or (snowpeak_ruins_caged_freezard_room() and has("ball_and_chain")) then
return true, AccessibilityLevel.Normal
elseif west_cannon_room and smash() then
return true, AccessibilityLevel.SequenceBreak
else
return false, AccessibilityLevel.None
end
end
function snowpeak_summit()
return zora_domain() and has("wolf") and (has("coral_earring") or has("ruins_skipped"))
end
function south_faron_woods()
return has("prologue_skipped") or (has("sword") and has("slingshot"))
end
function temple_of_time()
return sacred_grove_arena() and (has("grove_skipped") or (shadow_beast() and has("master_sword")))
end
function temple_of_time_armos_antechamber()
return temple_of_time_central_mechanical_platform() and has("spinner")
end
function temple_of_time_boss_room()
return temple_of_time_crumbling_corridor() and (dominion_rod_level() >= 1) and time_big_key()
end
function temple_of_time_central_mechanical_platform()
return temple_of_time_connecting_corridors() and ranged() and young_gohma() and lizalfos()
end
function temple_of_time_connecting_corridors()
return temple_of_time() and (time_small_keys() >= 1)
end
function temple_of_time_crumbling_corridor()
return temple_of_time() and (dominion_rod_level() >= 1) and use_bow() and has("spinner") and lizalfos() and dinalfos() and darknut() and (time_small_keys() >= 3)
end
function temple_of_time_darknut_arena()
return temple_of_time_scales_of_time() and lizalfos() and baby_gohma() and young_gohma() and armos() and (time_small_keys() >= 3)
end
function temple_of_time_floor_switch_puzzle_room()
return temple_of_time_scales_of_time() and has("clawshot") and has("spinner")
end
function temple_of_time_moving_wall_hallways()
return temple_of_time_central_mechanical_platform() and has("spinner") and (time_small_keys() >= 2)
end
function temple_of_time_scales_of_time()
return temple_of_time_moving_wall_hallways() and use_bow() and lizalfos() and dinalfos()
end
function zora_domain()
return lanayru_field() and (smash() or has("wolf"))
end
-- Keys
function castle_big_key()
return BIG_KEYS_REMOVED or has("castle_big_key")
end