We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e677ed5 commit 5c60246Copy full SHA for 5c60246
battle/boss.py
@@ -738,8 +738,16 @@ def spherimorph():
738
FFXC.set_neutral()
739
740
spell_num = 0
741
+ # We know what the weakness is from RNG2 Manip
742
+ if memory.main.get_char_weakness(20) == 1:
743
+ spell_num = 4 # Ice
744
+ elif memory.main.get_char_weakness(20) == 2:
745
+ spell_num = 1 # Fire
746
+ elif memory.main.get_char_weakness(20) == 4:
747
+ spell_num = 3 # Water
748
+ elif memory.main.get_char_weakness(20) == 8:
749
+ spell_num = 2 # Thunder
750
tidus_turns = 0
- rikku_turns = 0
751
yuna_turn = False
752
kim_turn = False
753
while not memory.main.turn_ready():
0 commit comments