Skip to content

Instantly share code, notes, and snippets.

@aEnigmatic
Created August 28, 2020 23:54
Show Gist options
  • Save aEnigmatic/43496b2f500cf8f2cf5dbaa0649cd29f to your computer and use it in GitHub Desktop.
Save aEnigmatic/43496b2f500cf8f2cf5dbaa0649cd29f to your computer and use it in GitHub Desktop.
Omega
##
# Mission 'Ancient Hellbringer - ELT' (8995403)
# Enemy has first strike!
#
# Battles
# * Omega
##
##
# Monster Info
##
#
# Monster Omega (406151002, 406151000)
# Race Machina
# Level 99
# Actions 11-11
#
#
# Stats
# HP 90000000
# MP 10000
# ATK 2400
# DEF 250
# MAG 2000
# SPR 150
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 0%
# Ice 0%
# Lightning -300%
# Water 0%
# Wind 0%
# Earth 0%
# Light 0%
# Dark 0%
# Non-Elemental 0%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(ロケットパンチ) (100019) [Passive]
#
# 100% chance to counter physical attacks with Rocket Punch (184930) to the attacker
#
##
#
# 魔法カウンター強(マスタードボム) (100022) [Passive]
#
# 100% chance to counter magic attacks with Mustard Bomb (185040) to the attacker
#
##
#
# 雷以外属性吸収 (100018) [Passive]
#
# Absorb Fire, Ice, Water, Wind, Earth, Light and Dark elemental attacks
#
##
###
# Skills
###
#
# Wave Cannon (185010) [Magic]
#
# Magic damage (20x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Atomic Ray (185020) [Magic]
#
# Magic fire damage (6x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Flame Burst (185030) [Magic]
#
# Magic fire damage (8x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Recoil (184900) [None]
#
# [Death]
# Instant KO (100%) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Encircle (184910) [None]
#
# Remove one enemy from the fight
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mustard Bomb (185040) [Magic]
#
# Magic fire damage (8x, MAG) to one enemy
# Inflict Paralyze (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Rocket Punch (184930) [Physical]
#
# 50% HP damage to one enemy
# Unknown parameters: [50,100,0]
# Inflict Confusion (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Earthquake (185050) [Physical]
#
# Physical damage (6x, ATK) to all enemies
# Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Rainbow Wind (184950) [None]
#
# Inflict Blind and Silence (100%) on one enemy
# Unknown parameters: [1]
# Inflict Stop (100%) for 3 turns on one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Reflect (185060) [Magic]
#
# Reflect all spell(s) for 3 turns to caster
#
# Sealable + Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif self.HP > 0.5 and white == 8:
endTurn()
white = 0
elif lemon == False:
useSkill(10, 'random') # Reflect (185060): Reflect all spell(s) for 3 turns to caster
white += 1
lemon = True # reset next turn
elif green == 0 and once():
useSkill(2, 'random') # Atomic Ray (185020): Magic fire damage (6x, MAG) to all enemies
green += 1
apple = True # reset next turn
elif green == 0 and peach == False:
useSkill(2, 'random') # Atomic Ray (185020): Magic fire damage (6x, MAG) to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 1 and peach == False:
useSkill(4, 'random') # Recoil (184900): [Death], Instant KO (100%) to one enemy
white += 1
green += 1
peach = True # reset next turn
elif green == 2 and peach == False:
useSkill(8, 'random') # Earthquake (185050): Physical damage (6x, ATK) to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 3 and peach == False:
useSkill(1, 'random') # Wave Cannon (185010): Magic damage (20x, MAG) to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 4 and peach == False:
useSkill(5, 'highest ATK') # Encircle (184910): Remove one enemy from the fight
white += 1
green += 1
peach = True # reset next turn
elif green == 5 and peach == False:
useSkill(4, 'random') # Recoil (184900): [Death], Instant KO (100%) to one enemy
white += 1
green += 1
peach = True # reset next turn
elif green == 6 and peach == False:
useSkill(1, 'random') # Wave Cannon (185010): Magic damage (20x, MAG) to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 7 and peach == False:
useSkill(2, 'random') # Atomic Ray (185020): Magic fire damage (6x, MAG) to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 8 and peach == False:
useSkill(8, 'random') # Earthquake (185050): Physical damage (6x, ATK) to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
white += 1
green += 1
peach = True # reset next turn
elif green == 9 and peach == False:
useSkill(5, 'highest ATK') # Encircle (184910): Remove one enemy from the fight
white += 1
green = 0
peach = True # reset next turn
elif isTurnMod(3) and berry == False:
useSkill(9, 'random') # Rainbow Wind (184950): Inflict Blind and Silence (100%) on one enemy, Inflict Stop (100%) for 3 turns on one enemy
white += 1
berry = True # reset next turn
elif self.HP < 0.5 and isTurnMod(3) and olive == False:
useSkill(8, 'random') # Earthquake (185050): Physical damage (6x, ATK) to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
white += 1
olive = True # reset next turn
elif mango == False:
useSkill(3, 'random') # Flame Burst (185030): Magic fire damage (8x, MAG) to one enemy
white += 1
mango = True # reset next turn
else:
attack('random')
white += 1
##
# Mission '最凶の古代兵器 真降臨・中級' (8995404)
# Enemy has first strike!
#
# Battles
# * オメガ, サーチャー
##
##
# Monster Info
##
#
# Monster オメガ (406151004, 406151001)
# Race Machina
# Level 99
# Actions 20-20
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 200000000
# MP 10000
# ATK 1500
# DEF 1500
# MAG 1500
# SPR 2200
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 50%
# Ice 50%
# Lightning -50%
# Water 50%
# Wind 50%
# Earth 50%
# Light 0%
# Dark 50%
# Non-Elemental 0%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 全ステ50% (100065) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# はどうほう (220346) [Magic]
#
# Magic damage (400x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# アトミックレイ (220347) [Magic]
#
# Magic fire damage (10x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かえんほうしゃ (220348) [Magic]
#
# Reduce resistance to Fire by 150% for 2 turns to all enemies
# Unused parameters: [1]
# Magic fire damage (8x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークル (220349) [None]
#
# Remove one enemy from the fight for 2 turns
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 虹色の風 (220350) [None]
#
# Inflict Blind and Silence (100%) on one enemy
# Unknown parameters: [1]
# Inflict Stop (100%) for 3 turns on one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ふぶき (220351) [Magic]
#
# Magic ice damage (6x, MAG) to all enemies
# Reduce resistance to Ice by 150% for 2 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# デスペル (220352) [Magic]
#
# Remove all buffs and debuffs from one enemy
#
# Sealable + Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークルの反動で麻痺耐性ダウン (220353) [None]
#
# Remove resistances to Paralyze from caster for 3 turns
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガの麻痺耐性がダウンしている! (220354) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークル準備 (220355) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 1ターン飛ばされた! (220356) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はどうほう・物魔 (220358) [Hybrid]
#
# Hybrid damage (2x, ATK & MAG) to all enemies (+95% accuracy)
# Unused parameters: [95]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif honey == True and grape == False:
useSkill(11, 'random') # 1ターン飛ばされた! (220356): No effect
grape = True # reset next turn
elif honey == True and melon == False:
useSkill(8, 'random') # サークルの反動で麻痺耐性ダウン (220353): Remove resistances to Paralyze from caster for 3 turns
melon = True # reset next turn
elif melon == True:
useSkill(9, 'random') # オメガの麻痺耐性がダウンしている! (220354): No effect
melon = False # reset next turn
honey = False # persistent
elif once():
useSkill(2, 'random') # アトミックレイ (220347): Magic fire damage (10x, MAG) to all enemies
apple = True # reset next turn
elif green == 0 and berry == False:
useSkill(3, 'random') # かえんほうしゃ (220348): Reduce resistance to Fire by 150% for 2 turns to all enemies, Magic fire damage (8x, MAG) to one enemy
berry = True # reset next turn
elif green == 0 and peach == False:
useSkill(6, 'random') # ふぶき (220351): Magic ice damage (6x, MAG) to all enemies, Reduce resistance to Ice by 150% for 2 turns to all enemies
peach = True # reset next turn
elif green == 0 and olive == False:
useSkill(5, 'random') # 虹色の風 (220350): Inflict Blind and Silence (100%) on one enemy, Inflict Stop (100%) for 3 turns on one enemy
olive = True # reset next turn
elif green == 0 and guava == False:
wait() # No action
var_61 = True # reset next turn
gourd = True # reset next turn
guava = True # reset next turn
elif green == 1 and berry == False:
useSkill(12, 'random') # はどうほう・物魔 (220358): Hybrid damage (2x, ATK & MAG) to all enemies (+95% accuracy)
berry = True # reset next turn
elif green == 1 and guava == False:
useSkill(12, 'random') # はどうほう・物魔 (220358): Hybrid damage (2x, ATK & MAG) to all enemies (+95% accuracy)
guava = True # reset next turn
elif green == 1 and gourd == False:
useSkill(12, 'random') # はどうほう・物魔 (220358): Hybrid damage (2x, ATK & MAG) to all enemies (+95% accuracy)
gourd = True # reset next turn
elif green == 1 and var_61 == False:
useSkill(12, 'random') # はどうほう・物魔 (220358): Hybrid damage (2x, ATK & MAG) to all enemies (+95% accuracy)
var_61 = True # reset next turn
elif green == 1 and peach == False:
useSkill(6, 'random') # ふぶき (220351): Magic ice damage (6x, MAG) to all enemies, Reduce resistance to Ice by 150% for 2 turns to all enemies
peach = True # reset next turn
elif green == 1 and olive == False:
useSkill(5, 'random') # 虹色の風 (220350): Inflict Blind and Silence (100%) on one enemy, Inflict Stop (100%) for 3 turns on one enemy
olive = True # reset next turn
elif green == 2 and berry == False:
useSkill(2, 'random') # アトミックレイ (220347): Magic fire damage (10x, MAG) to all enemies
berry = True # reset next turn
elif green == 2 and peach == False:
useSkill(1, 'random') # はどうほう (220346): Magic damage (400x, MAG) to all enemies
peach = True # reset next turn
elif green == 2 and olive == False:
useSkill(7, 'random') # デスペル (220352): Remove all buffs and debuffs from one enemy
olive = True # reset next turn
elif green == 2 and mango == False:
wait() # No action
green = 0
mango = True # reset next turn
elif mango == False:
wait() # No action
green += 1
mango = True # reset next turn
elif white == 3 and lemon == False:
useSkill(10, 'random') # サークル準備 (220355): No effect
white += 1
lemon = True # reset next turn
elif white == 4 and lemon == False:
useSkill(4, 'highest ATK') # サークル (220349): Remove one enemy from the fight for 2 turns
white = 0
lemon = True # reset next turn
honey = True # persistent
elif lemon == False:
wait() # No action
white += 1
lemon = True # reset next turn
else:
wait() # No action
apple = True # reset next turn
##
# Monster Info
##
#
# Monster サーチャー (106002052)
# Race Machina
# Level 99
# Actions 10-10
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 1000000000
# MP 100
# ATK 150
# DEF 2500
# MAG 150
# SPR 2500
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 0%
# Ice 0%
# Lightning 0%
# Water 0%
# Wind 0%
# Earth 0%
# Light 0%
# Dark 0%
# Non-Elemental 0%
#
#
# Status resist (+10% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 回避50%(オメガ真降臨サーチャー) (100107) [Passive]
#
# 50% chance of evading physical attacks
#
##
###
# Skills
###
#
# オメガをかばう【2ターン】 (220359) [None]
#
# Intercept physical damage to allies for 2 turns, reducing damage by 30%
# Reduce magic damage taken by 100% to caster for 99 turns (can not be removed)
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばっている (220360) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 機能停止中 (220361) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばうことができなくなった (220362) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 自爆 (220363) [None]
#
# 101% HP damage to caster
# Unknown parameters: [101,100,1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばっている (220364) [None]
#
# Reduce physical damage taken by 100% to one ally for 2 turns (can not be removed)
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif mango == False:
wait() # No action
mango = True # reset next turn
elif lemon == False:
wait() # No action
lemon = True # reset next turn
elif unit('3:ally:1:オメガ').is('dead') and once():
useSkill(5, 'random') # 自爆 (220363): 101% HP damage to caster
apple = True # reset next turn
elif green == 0 and berry == False:
useSkill(1, 'random') # オメガをかばう【2ターン】 (220359): Intercept physical damage to allies for 2 turns, reducing damage by 30%, Reduce magic damage taken by 100% to caster for 99 turns (can not be removed)
green += 1
grape = True # reset next turn
berry = True # reset next turn
honey = True # persistent
elif unit('3:ally:1:オメガ').is('alive') and honey == True and olive == False and grape == True:
useSkill(6, 'random') # オメガをかばっている (220364): Reduce physical damage taken by 100% to one ally for 2 turns (can not be removed)
grape = False # reset next turn
olive = True # reset next turn
elif green == 1 and berry == False:
useSkill(2, 'random') # オメガをかばっている (220360): No effect
green += 1
olive = True # reset next turn
berry = True # reset next turn
elif green == 2 and berry == False:
useSkill(3, 'random') # 機能停止中 (220361): No effect
peach = True # reset next turn
berry = True # reset next turn
elif peach == True:
useSkill(4, 'random') # オメガをかばうことができなくなった (220362): No effect
green = 0
peach = False # reset next turn
honey = False # persistent
elif honey == True and olive == False:
useSkill(2, 'random') # オメガをかばっている (220360): No effect
olive = True # reset next turn
else:
wait() # No action
apple = True # reset next turn
##
# Mission '最凶の古代兵器 真降臨・上級' (8995405)
# Enemy has first strike!
#
# Battles
# * オメガ, サーチャー
##
##
# Monster Info
##
#
# Monster オメガ (406151005, 406151001)
# Race Machina
# Level 99
# Actions 20-20
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 2100000000
# MP 10000
# ATK 2400
# DEF 2500
# MAG 3200
# SPR 5000
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 50%
# Ice 50%
# Lightning -50%
# Water 50%
# Wind 50%
# Earth 50%
# Light 0%
# Dark 50%
# Non-Elemental 0%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 全ステ50% (100065) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
#
# 回避25%(オメガ真降臨上級) (100108) [Passive]
#
# 25% chance of evading physical attacks
#
##
###
# Skills
###
#
# はどうほう (220346) [Magic]
#
# Magic damage (400x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# アトミックレイ (220347) [Magic]
#
# Magic fire damage (10x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かえんほうしゃ (220348) [Magic]
#
# Reduce resistance to Fire by 150% for 2 turns to all enemies
# Unused parameters: [1]
# Magic fire damage (8x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークル (220349) [None]
#
# Remove one enemy from the fight for 2 turns
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 虹色の風 (220350) [None]
#
# Inflict Blind and Silence (100%) on one enemy
# Unknown parameters: [1]
# Inflict Stop (100%) for 3 turns on one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ふぶき (220351) [Magic]
#
# Magic ice damage (6x, MAG) to all enemies
# Reduce resistance to Ice by 150% for 2 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# デスペル (220352) [Magic]
#
# Remove all buffs and debuffs from one enemy
#
# Sealable + Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークルの反動で麻痺耐性ダウン (220353) [None]
#
# Remove resistances to Paralyze from caster for 3 turns
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガの麻痺耐性がダウンしている! (220354) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# サークル準備 (220355) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 1ターン飛ばされた! (220356) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はどうほう・物魔 (220357) [Hybrid]
#
# Hybrid damage (8x, ATK & MAG) to all enemies (+95% accuracy)
# Unused parameters: [95]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif honey == True and grape == False:
useSkill(11, 'random') # 1ターン飛ばされた! (220356): No effect
grape = True # reset next turn
elif honey == True and melon == False:
useSkill(8, 'random') # サークルの反動で麻痺耐性ダウン (220353): Remove resistances to Paralyze from caster for 3 turns
melon = True # reset next turn
elif melon == True:
useSkill(9, 'random') # オメガの麻痺耐性がダウンしている! (220354): No effect
melon = False # reset next turn
honey = False # persistent
elif once():
useSkill(2, 'random') # アトミックレイ (220347): Magic fire damage (10x, MAG) to all enemies
apple = True # reset next turn
elif green == 0 and berry == False:
useSkill(3, 'random') # かえんほうしゃ (220348): Reduce resistance to Fire by 150% for 2 turns to all enemies, Magic fire damage (8x, MAG) to one enemy
berry = True # reset next turn
elif green == 0 and peach == False:
useSkill(6, 'random') # ふぶき (220351): Magic ice damage (6x, MAG) to all enemies, Reduce resistance to Ice by 150% for 2 turns to all enemies
peach = True # reset next turn
elif green == 0 and olive == False:
useSkill(5, 'random') # 虹色の風 (220350): Inflict Blind and Silence (100%) on one enemy, Inflict Stop (100%) for 3 turns on one enemy
olive = True # reset next turn
elif green == 0 and guava == False:
wait() # No action
var_61 = True # reset next turn
gourd = True # reset next turn
guava = True # reset next turn
elif green == 1 and berry == False:
useSkill(12, 'random') # はどうほう・物魔 (220357): Hybrid damage (8x, ATK & MAG) to all enemies (+95% accuracy)
berry = True # reset next turn
elif green == 1 and guava == False:
useSkill(12, 'random') # はどうほう・物魔 (220357): Hybrid damage (8x, ATK & MAG) to all enemies (+95% accuracy)
guava = True # reset next turn
elif green == 1 and gourd == False:
useSkill(12, 'random') # はどうほう・物魔 (220357): Hybrid damage (8x, ATK & MAG) to all enemies (+95% accuracy)
gourd = True # reset next turn
elif green == 1 and var_61 == False:
useSkill(12, 'random') # はどうほう・物魔 (220357): Hybrid damage (8x, ATK & MAG) to all enemies (+95% accuracy)
var_61 = True # reset next turn
elif green == 1 and peach == False:
useSkill(6, 'random') # ふぶき (220351): Magic ice damage (6x, MAG) to all enemies, Reduce resistance to Ice by 150% for 2 turns to all enemies
peach = True # reset next turn
elif green == 1 and olive == False:
useSkill(5, 'random') # 虹色の風 (220350): Inflict Blind and Silence (100%) on one enemy, Inflict Stop (100%) for 3 turns on one enemy
olive = True # reset next turn
elif green == 2 and berry == False:
useSkill(2, 'random') # アトミックレイ (220347): Magic fire damage (10x, MAG) to all enemies
berry = True # reset next turn
elif green == 2 and peach == False:
useSkill(1, 'random') # はどうほう (220346): Magic damage (400x, MAG) to all enemies
peach = True # reset next turn
elif green == 2 and olive == False:
useSkill(7, 'random') # デスペル (220352): Remove all buffs and debuffs from one enemy
olive = True # reset next turn
elif green == 2 and mango == False:
wait() # No action
green = 0
mango = True # reset next turn
elif mango == False:
wait() # No action
green += 1
mango = True # reset next turn
elif white == 3 and lemon == False:
useSkill(10, 'random') # サークル準備 (220355): No effect
white += 1
lemon = True # reset next turn
elif white == 4 and lemon == False:
useSkill(4, 'highest ATK') # サークル (220349): Remove one enemy from the fight for 2 turns
white = 0
lemon = True # reset next turn
honey = True # persistent
elif lemon == False:
wait() # No action
white += 1
lemon = True # reset next turn
else:
wait() # No action
apple = True # reset next turn
##
# Monster Info
##
#
# Monster サーチャー (106002053, 106002052)
# Race Machina
# Level 99
# Actions 10-10
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 2000000000
# MP 100
# ATK 150
# DEF 4000
# MAG 150
# SPR 2500
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 0%
# Ice 0%
# Lightning 0%
# Water 0%
# Wind 0%
# Earth 0%
# Light 0%
# Dark 0%
# Non-Elemental 0%
#
#
# Status resist (+10% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 回避50%(オメガ真降臨サーチャー) (100107) [Passive]
#
# 50% chance of evading physical attacks
#
##
###
# Skills
###
#
# オメガをかばう【2ターン】 (220359) [None]
#
# Intercept physical damage to allies for 2 turns, reducing damage by 30%
# Reduce magic damage taken by 100% to caster for 99 turns (can not be removed)
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばっている (220360) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 機能停止中 (220361) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばうことができなくなった (220362) [None]
#
# No effect
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 自爆 (220363) [None]
#
# 101% HP damage to caster
# Unknown parameters: [101,100,1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# オメガをかばっている (220364) [None]
#
# Reduce physical damage taken by 100% to one ally for 2 turns (can not be removed)
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif mango == False:
wait() # No action
mango = True # reset next turn
elif lemon == False:
wait() # No action
lemon = True # reset next turn
elif unit('3:ally:1:オメガ').is('dead') and once():
useSkill(5, 'random') # 自爆 (220363): 101% HP damage to caster
apple = True # reset next turn
elif green == 0 and berry == False:
useSkill(1, 'random') # オメガをかばう【2ターン】 (220359): Intercept physical damage to allies for 2 turns, reducing damage by 30%, Reduce magic damage taken by 100% to caster for 99 turns (can not be removed)
green += 1
grape = True # reset next turn
berry = True # reset next turn
honey = True # persistent
elif unit('3:ally:1:オメガ').is('alive') and honey == True and olive == False and grape == True:
useSkill(6, 'random') # オメガをかばっている (220364): Reduce physical damage taken by 100% to one ally for 2 turns (can not be removed)
grape = False # reset next turn
olive = True # reset next turn
elif green == 1 and berry == False:
useSkill(2, 'random') # オメガをかばっている (220360): No effect
green += 1
olive = True # reset next turn
berry = True # reset next turn
elif green == 2 and berry == False:
useSkill(3, 'random') # 機能停止中 (220361): No effect
peach = True # reset next turn
berry = True # reset next turn
elif peach == True:
useSkill(4, 'random') # オメガをかばうことができなくなった (220362): No effect
green = 0
peach = False # reset next turn
honey = False # persistent
elif honey == True and olive == False:
useSkill(2, 'random') # オメガをかばっている (220360): No effect
olive = True # reset next turn
else:
wait() # No action
apple = True # reset next turn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment