Skip to content

Instantly share code, notes, and snippets.

@aEnigmatic
Created June 28, 2019 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aEnigmatic/59290ca012b7027f36c8971cab46b818 to your computer and use it in GitHub Desktop.
Save aEnigmatic/59290ca012b7027f36c8971cab46b818 to your computer and use it in GitHub Desktop.
Scorn of the Moon Runes
##
# Mission 'ゼロムス' (9091108)
# Enemy has first strike!
#
# Battles
# * ゼロムス
##
##
# Monster Info
##
#
# Monster ゼロムス (504061000)
# Race Demon
# Level 99
# Actions 5-5
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 356000000
# MP 155000
# ATK 2200
# DEF 2000
# MAG 1550
# SPR 2040
#
#
# 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 (+80% / 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% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# ビッグバーン (216855) [Magic]
#
# Magic damage (35x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ブラックホール (216856) [None]
#
# Remove all buffs and debuffs from all units
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 全体フレア (216857) [Magic]
#
# Magic fire damage (14x, MAG) to all enemies
# Reduce resistance to Fire by 100% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 全体アスピル (216858) [Magic]
#
# Magic damage (0.3x, MAG) as MP drain (30%) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ワール (216859) [None]
#
# 99% HP damage to all enemies
# Unknown parameters: [99,100]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# メテオ (216860) [Magic]
#
# Magic damage (14x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif isTurn(1) and once():
useSkill(5, 'random') # ワール (216859): 99% HP damage to all enemies
apple = True # reset next turn
elif self.HP < 0.5 and once():
useSkill(5, 'random') # ワール (216859): 99% HP damage to all enemies
honey = True # persistent
elif honey == True and once():
useSkill(2, 'random') # ブラックホール (216856): Remove all buffs and debuffs from all units
apple = True # reset next turn
elif honey == True and isTurnMod(7) and berry == False:
useSkill(1, 'random') # ビッグバーン (216855): Magic damage (35x, MAG) to all enemies
berry = True # reset next turn
elif honey == True and isTurnMod(4) and peach == False:
useSkill(4, 'random') # 全体アスピル (216858): Magic damage (0.3x, MAG) as MP drain (30%) to all enemies
peach = True # reset next turn
elif green == 7 and berry == False:
useSkill(2, 'random') # ブラックホール (216856): Remove all buffs and debuffs from all units
green = 0
berry = True # reset next turn
elif green == 6 and peach == False:
useSkill(1, 'random') # ビッグバーン (216855): Magic damage (35x, MAG) to all enemies
green += 1
peach = True # reset next turn
elif green == 5 and berry == False:
useSkill(3, 'random') # 全体フレア (216857): Magic fire damage (14x, MAG) to all enemies, Reduce resistance to Fire by 100% for 3 turns to all enemies
green += 1
berry = True # reset next turn
elif green == 4 and peach == False:
useSkill(3, 'random') # 全体フレア (216857): Magic fire damage (14x, MAG) to all enemies, Reduce resistance to Fire by 100% for 3 turns to all enemies
green += 1
peach = True # reset next turn
elif green == 3 and berry == False:
useSkill(6, 'random') # メテオ (216860): Magic damage (14x, MAG) to all enemies
green += 1
berry = True # reset next turn
elif green == 2 and peach == False:
useSkill(3, 'random') # 全体フレア (216857): Magic fire damage (14x, MAG) to all enemies, Reduce resistance to Fire by 100% for 3 turns to all enemies
green += 1
peach = True # reset next turn
elif green == 1 and berry == False:
useSkill(5, 'random') # ワール (216859): 99% HP damage to all enemies
green += 1
berry = True # reset next turn
elif green == 0 and peach == False:
useSkill(3, 'random') # 全体フレア (216857): Magic fire damage (14x, MAG) to all enemies, Reduce resistance to Fire by 100% for 3 turns to all enemies
green += 1
peach = True # reset next turn
else:
attack('random')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment