Last active
July 29, 2019 11:49
-
-
Save aEnigmatic/4ef8df643b7529ec9693ebfc7fb58628 to your computer and use it in GitHub Desktop.
SBB Braska's Ultimate Summon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Mission 'ブラスカの究極召喚' (9091111) | |
# | |
# Battles | |
# * ブラスカの究極召喚 | |
## | |
## | |
# Monster Info | |
## | |
# | |
# Monster ブラスカの究極召喚 (508011000) | |
# Race Fairy | |
# Level 99 | |
# Actions 8-8 | |
# | |
# NEW DAMAGE FORMULA! (5, 25, 185) | |
# | |
# | |
# Stats | |
# HP 356000000 | |
# MP 155000 | |
# ATK 1700 | |
# DEF 1400 | |
# MAG 1550 | |
# SPR 1400 | |
# | |
# | |
# Damage resist | |
# physical 0% | |
# magical 0% | |
# | |
# | |
# Element resist | |
# Fire 0% | |
# Ice 0% | |
# Lightning 0% | |
# Water -50% | |
# 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 | |
### | |
# | |
# Wパワースラッシュ (216934) [Physical] | |
# | |
# Physical damage (64x, ATK) to all enemies (+999% accuracy) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# パワーがさらに上がった! (216935) [None] | |
# | |
# Increase ATK by 200% for 2 turns to caster | |
# Unused parameters: [1] | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# パワーが上がった! (216936) [None] | |
# | |
# Increase ATK by 50% for 2 turns to caster | |
# Unused parameters: [1] | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# パワースラッシュ (216937) [Physical] | |
# | |
# Physical damage (1.5x, ATK) to all enemies (+80% accuracy) | |
# Reduce DEF by 10% for 3 turns to all enemies | |
# Unused parameters: [1] | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# アスピラ (216938) [Magic] | |
# | |
# Magic damage (1x, MAG) as MP drain (100%) to all enemies | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# カージュ (216939) [None] | |
# | |
# Inflict Blind, Sleep and Silence (100%) on all enemies | |
# Unknown parameters: [1] | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ジェクトビーム (216940) [None] | |
# | |
# Remove all buffs and debuffs from one enemy | |
# Inflict Petrify (100%) on one enemy | |
# Unknown parameters: [1] | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
### | |
# AI | |
### | |
if apple == True: | |
endTurn() | |
elif green == 6 and ramen == True: | |
useSkill(2, 'random') # パワーがさらに上がった! (216935): Increase ATK by 200% for 2 turns to caster | |
green = 0 | |
apple = True # reset next turn | |
sushi = True # persistent | |
ramen = False # persistent | |
elif green == 6: | |
useSkill(3, 'random') # パワーが上がった! (216936): Increase ATK by 50% for 2 turns to caster | |
green = 0 | |
apple = True # reset next turn | |
ramen = True # persistent | |
elif sushi == True and berry == False: | |
useSkill(6, 'random') # カージュ (216939): Inflict Blind, Sleep and Silence (100%) on all enemies | |
berry = True # reset next turn | |
elif sushi == True and berry == True: | |
useSkill(1, 'random') # Wパワースラッシュ (216934): Physical damage (64x, ATK) to all enemies (+999% accuracy) | |
apple = True # reset next turn | |
sushi = False # persistent | |
elif self.HP < 0.5 and once(): | |
useSkill(4, 'random') # パワースラッシュ (216937): Physical damage (1.5x, ATK) to all enemies (+80% accuracy), Reduce DEF by 10% for 3 turns to all enemies | |
green += 1 | |
berry = True # reset next turn | |
honey = True # persistent | |
elif honey == True and berry == False: | |
useSkill(4, 'random') # パワースラッシュ (216937): Physical damage (1.5x, ATK) to all enemies (+80% accuracy), Reduce DEF by 10% for 3 turns to all enemies | |
green += 1 | |
berry = True # reset next turn | |
elif isTurnMod(7) and peach == False: | |
useSkill(5, 'random') # アスピラ (216938): Magic damage (1x, MAG) as MP drain (100%) to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif peach == False: | |
useSkill(4, 'random') # パワースラッシュ (216937): Physical damage (1.5x, ATK) to all enemies (+80% accuracy), Reduce DEF by 10% for 3 turns to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif olive == False: | |
useSkill(4, 'random') # パワースラッシュ (216937): Physical damage (1.5x, ATK) to all enemies (+80% accuracy), Reduce DEF by 10% for 3 turns to all enemies | |
green += 1 | |
olive = True # reset next turn | |
elif isTurnMod(2) and mango == False: | |
useSkill(7, 'random') # ジェクトビーム (216940): Remove all buffs and debuffs from one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
mango = True # reset next turn | |
elif isTurnMod(3) and lemon == False: | |
useSkill(7, 'random') # ジェクトビーム (216940): Remove all buffs and debuffs from one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
lemon = True # reset next turn | |
elif mango == False: | |
useSkill(6, 'random') # カージュ (216939): Inflict Blind, Sleep and Silence (100%) on all enemies | |
green += 1 | |
mango = True # reset next turn | |
else: | |
attack('random') | |
green += 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment