Skip to content

Instantly share code, notes, and snippets.

@aEnigmatic
Last active March 29, 2018 12:05
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/0d7b97ed88ba7fbaaae642de9b3b5f4e to your computer and use it in GitHub Desktop.
Save aEnigmatic/0d7b97ed88ba7fbaaae642de9b3b5f4e to your computer and use it in GitHub Desktop.
Elafikeras - ELT
##
# Mission 'The Legendary Stag - ELT' (8995103)
##
##
# Monster Info
##
#
# Monster Elafikeras (410001002)
# Race Beast, Stone
# Level 99
# Actions 5-5
#
#
# Stats
# HP 80000000
# MP 10000
# ATK 600
# DEF 45
# MAG 500
# SPR 15
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire 0%
# Ice 0%
# Lightning 0%
# Water 0%
# Wind -50%
# Earth 300%
# Light 0%
# Dark 0%
# Non-Elemental 0%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 50%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 100%
# MAG 0%
# SPR 100%
# Stop 100%
# Charm 0%
# Berserk? 0%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Skills
###
#
# Sparkling Horn (171600) [Magic]
#
# Restore 7200 (+1x, Heal) MP split over 8 turns to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# The giant horn drains all! (171610) [Magic]
#
# Magic damage (5x) as MP drain (500%) to all enemies
# Fixed* damage (99999) to all enemies
# Restore 100% HP to caster
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Supersonic Thanatos (171620) [None]
#
# Instant KO (100%) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Multi Horn (171870) [Physical]
#
# Physical damage (6x, ATK) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Demon's Stone (171890) [Magic]
#
# Magic damage (6x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Menacing Stampede (171900) [None]
#
# Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Charge (171920) [Physical]
#
# Physical damage (3x, ATK) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
end_turn()
elif once():
useSkill(1, 'random') # Sparkling Horn (171600): Restore 7200 (+1x, Heal) MP split over 8 turns to all enemies
apple = True # reset next turn
green += 1
elif green > 7 and mango == False:
useSkill(3, 'random') # Supersonic Thanatos (171620): Instant KO (100%) to all enemies
mango = True # reset next turn
honey = True # persistent
green += 1
elif honey == True and berry == False:
useSkill(2, 'random') # The giant horn drains all! (171610): Magic damage (5x) as MP drain (500%) to all enemies, Fixed* damage (99999) to all enemies, Restore 100% HP to caster
berry = True # reset next turn
elif honey == True and peach == False:
useSkill(2, 'random') # The giant horn drains all! (171610): Magic damage (5x) as MP drain (500%) to all enemies, Fixed* damage (99999) to all enemies, Restore 100% HP to caster
peach = True # reset next turn
apple = True # reset next turn
elif self.HP < 0.75 and ramen == False and self.lastTurnHitBy('spell'):
useSkill(4, 'random') # Multi Horn (171870): Physical damage (6x, ATK) to all enemies
ramen = True # persistent
elif self.HP < 0.5 and sushi == False and self.lastTurnHitBy('spell'):
useSkill(4, 'random') # Multi Horn (171870): Physical damage (6x, ATK) to all enemies
sushi = True # persistent
elif self.HP < 0.75 and ramen == False:
useSkill(5, 'random') # Demon's Stone (171890): Magic damage (6x, MAG) to all enemies
ramen = True # persistent
elif self.HP < 0.5 and sushi == False:
useSkill(5, 'random') # Demon's Stone (171890): Magic damage (6x, MAG) to all enemies
sushi = True # persistent
elif self.HP < 0.3 and bacon == False:
useSkill(6, 'random') # Menacing Stampede (171900): Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
bacon = True # persistent
else:
useSkill(7, 'random') # Charge (171920): Physical damage (3x, ATK) to all enemies
apple = True # reset next turn
green += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment