Skip to content

Instantly share code, notes, and snippets.

@aEnigmatic
Created April 30, 2020 10:26
Show Gist options
  • Save aEnigmatic/a71ddf8fe347a9a23ed33300fb4d001a to your computer and use it in GitHub Desktop.
Save aEnigmatic/a71ddf8fe347a9a23ed33300fb4d001a to your computer and use it in GitHub Desktop.
SBB - FF7 - Sephiroth
##
# Mission 'セーファ・セフィロス' (9091118)
#
# Battles
# * セーファ・セフィロス
##
##
# Monster Info
##
#
# Monster セーファ・セフィロス (305781000)
# Race Human
# Level 99
# Actions 8-8
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 356000000
# MP 155000
# ATK 2800
# DEF 2000
# MAG 2800
# SPR 2250
#
#
# Damage resist
# physical 0%
# magical 0%
#
#
# Element resist
# Fire -50%
# Ice 0%
# Lightning 0%
# Water 0%
# Wind 0%
# Earth 0%
# Light 50%
# Dark 50%
# Non-Elemental 30%
#
#
# 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
###
#
# Dispelga (110200) [Magic]
#
# Remove all buffs and debuffs from all enemies
#
# Sealable + Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ウィーガ (219253) [Magic]
#
# Reduce resistance to all elements by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable + Unknown1 +
# Reflect + Unknown2 -
#
##
#
# フレア (219254) [Magic]
#
# Magic fire damage (2.5x, MAG) to all enemies
#
# Sealable + Unknown1 +
# Reflect + Unknown2 -
#
##
#
# デイン (219255) [Magic]
#
# Magic damage (2.5x, MAG) to all enemies
# Inflict Silence and Confusion (100%) on all enemies
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 闇の翼 (219256) [Physical]
#
# Physical damage (1.5x, ATK) to one enemy
# Inflict Blind and Paralyze (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 浮上 (219257) [None]
#
# Dodge 1 physical attacks for one turn to caster
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# 浮上している (219258) [None]
#
# Dodge 1 physical attacks for one turn to caster
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ペイルホース (219259) [None]
#
# 300% HP damage to all enemies
# Unknown parameters: [300,100]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# スーパーノヴァ (219260) [Magic]
#
# Magic damage (6x, MAG) to all enemies
# Inflict Silence and Confusion (100%) on all enemies
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ブレイク (219261) [Magic]
#
# Magic earth damage (3x, MAG) to one enemy
# Inflict Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable + Unknown1 +
# Reflect + Unknown2 -
#
##
#
# デス (219262) [Magic]
#
# [Death]
# Instant KO (100%) to one enemy
#
# Sealable + Unknown1 +
# Reflect + Unknown2 -
#
##
#
# 降下 (219263) [None]
#
# No effect
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# デスペガ (219304) [Magic]
#
# No effect
# Unused parameters: [1]
# Remove all buffs and debuffs from all enemies
#
# Sealable + Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif honey == False and green == 2 and berry == False:
useSkill(6, 'random') # 浮上 (219257): Dodge 1 physical attacks for one turn to caster
green = 0
apple = True # reset next turn
honey = True # persistent
elif sushi == True and berry == False:
useSkill(11, 'random') # デス (219262): [Death], Instant KO (100%) to one enemy
berry = True # reset next turn
elif sushi == True and peach == False:
useSkill(9, 'random') # スーパーノヴァ (219260): Magic damage (6x, MAG) to all enemies, Inflict Silence and Confusion (100%) on all enemies
peach = True # reset next turn
elif sushi == True:
useSkill(12, 'random') # 降下 (219263): No effect
apple = True # reset next turn
sushi = False # persistent
ramen = False # persistent
honey = False # persistent
elif honey == True and berry == False:
useSkill(7, 'random') # 浮上している (219258): Dodge 1 physical attacks for one turn to caster
berry = True # reset next turn
elif ramen == True and olive == False:
useSkill(8, 'random') # ペイルホース (219259): 300% HP damage to all enemies
olive = True # reset next turn
elif ramen == True and mango == False:
useSkill(13, 'random') # デスペガ (219304): No effect, Remove all buffs and debuffs from all enemies
apple = True # reset next turn
sushi = True # persistent
ramen = False # persistent
honey = False # persistent
elif honey == True and peach == False:
useSkill(4, 'random') # デイン (219255): Magic damage (2.5x, MAG) to all enemies, Inflict Silence and Confusion (100%) on all enemies
peach = True # reset next turn
elif honey == True and olive == False:
useSkill(4, 'random') # デイン (219255): Magic damage (2.5x, MAG) to all enemies, Inflict Silence and Confusion (100%) on all enemies
olive = True # reset next turn
elif honey == True and mango == False:
useSkill(4, 'random') # デイン (219255): Magic damage (2.5x, MAG) to all enemies, Inflict Silence and Confusion (100%) on all enemies
mango = True # reset next turn
apple = True # reset next turn
ramen = True # persistent
elif honey == False and peach == False:
useSkill(3, 'random') # フレア (219254): Magic fire damage (2.5x, MAG) to all enemies
peach = True # reset next turn
elif honey == False and olive == False:
useSkill(3, 'random') # フレア (219254): Magic fire damage (2.5x, MAG) to all enemies
olive = True # reset next turn
elif bacon == False and mango == False:
useSkill(1, 'random') # Dispelga (110200): Remove all buffs and debuffs from all enemies
lemon = True # reset next turn
mango = True # reset next turn
bacon = True # persistent
elif bacon == True and mango == False:
useSkill(3, 'random') # フレア (219254): Magic fire damage (2.5x, MAG) to all enemies
green += 1
mango = True # reset next turn
elif bacon == True and lemon == False:
useSkill(2, 'random') # ウィーガ (219253): Reduce resistance to all elements by 50% for 3 turns to all enemies
green += 1
lemon = True # reset next turn
bacon = False # persistent
elif random() <= 0.40:
useSkill(10, 'random') # ブレイク (219261): Magic earth damage (3x, MAG) to one enemy, Inflict Petrify (100%) on one enemy
else:
useSkill(5, 'random') # 闇の翼 (219256): Physical damage (1.5x, ATK) to one enemy, Inflict Blind and Paralyze (100%) on one enemy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment