Last active
December 1, 2018 01:54
-
-
Save aEnigmatic/52621fc6bd722e8acc280a071ee5eff2 to your computer and use it in GitHub Desktop.
Neo Exdeath
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 'エクスデス' (9091101) | |
# BattleScript: 909110101 | |
# | |
# Battles | |
# * エクスデス | |
# * ネオエクスデス | |
## | |
## | |
# Monster Info | |
## | |
# | |
# Monster エクスデス (401151000) | |
# Race Human, Plant | |
# Level 99 | |
# Actions 30-30 | |
# | |
# | |
# Stats | |
# HP 115000000 | |
# MP 100000 | |
# ATK 1100 | |
# DEF 1000 | |
# MAG 720 | |
# SPR 700 | |
# | |
# | |
# 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 | |
### | |
# | |
# フレア (215145) [Magic] | |
# | |
# Magic fire damage (12.1x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# ホーリー (215146) [Magic] | |
# | |
# Magic light damage (10.7x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# メテオ (215147) [Magic] | |
# | |
# Magic damage (9.5x * 1.33 = 12.67x, MAG) to all enemies (ignore reflect) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# フレア (215148) [Magic] | |
# | |
# Reduce resistance to Fire by 50% for 3 turns to one enemy | |
# Magic fire damage (13.1x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# ホーリー (215149) [Magic] | |
# | |
# Reduce resistance to Light by 50% for 3 turns to one enemy | |
# Magic light damage (11.7x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# メテオ (215150) [Magic] | |
# | |
# Magic damage (10x * 1.33 = 13.33x, MAG) to all enemies (ignore reflect) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# 空間がゆがみ始めた! (215151) [None] | |
# | |
# No effect | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ホワイトホール (215152) [None] | |
# | |
# [Death] | |
# Instant KO (100%) to one enemy | |
# Inflict Petrify (100%) on one enemy | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ネオブラックホール (215153) [None] | |
# | |
# Remove all buffs and debuffs from one enemy | |
# Instant KO (100%) to one enemy (ignores death resist) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# 無の力 (215154) [None] | |
# | |
# Remove all buffs and debuffs from all enemies | |
# Instant KO (100%) to all enemies (ignores death resist) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
### | |
# AI | |
### | |
if honey == True: | |
endTurn() | |
green = 0 | |
honey = False # persistent | |
elif green >= 11: | |
wait() # No action | |
bacon = False # persistent | |
sushi = False # persistent | |
ramen = False # persistent | |
honey = True # persistent | |
elif fries == True: | |
useSkill(10, 'random') # 無の力 (215154): Remove all buffs and debuffs from all enemies, Instant KO (100%) to all enemies (ignores death resist) | |
green += 1 | |
elif isTurnMod(10): | |
useSkill(10, 'random') # 無の力 (215154): Remove all buffs and debuffs from all enemies, Instant KO (100%) to all enemies (ignores death resist) | |
fries = True # persistent | |
honey = True # persistent | |
elif isTurnMod(1) and once(): | |
useSkill(7, 'random') # 空間がゆがみ始めた! (215151): No effect | |
green += 1 | |
ramen = True # persistent | |
elif isTurnMod(4) and once(): | |
useSkill(7, 'random') # 空間がゆがみ始めた! (215151): No effect | |
green += 1 | |
ramen = True # persistent | |
elif isTurnMod(7) and once(): | |
useSkill(7, 'random') # 空間がゆがみ始めた! (215151): No effect | |
green += 1 | |
ramen = True # persistent | |
elif isTurnMod(2) and once(): | |
wait() # No action | |
sushi = True # persistent | |
elif isTurnMod(5) and once(): | |
wait() # No action | |
sushi = True # persistent | |
elif isTurnMod(8) and once(): | |
wait() # No action | |
sushi = True # persistent | |
elif isTurnMod(3) and once(): | |
wait() # No action | |
bacon = True # persistent | |
elif isTurnMod(6) and once(): | |
wait() # No action | |
steak = True # persistent | |
bacon = True # persistent | |
elif isTurnMod(9) and once(): | |
wait() # No action | |
salad = True # persistent | |
bacon = True # persistent | |
elif random() <= 0.50 and ramen == True and apple == False: | |
useSkill(8, 'slot #1') # ホワイトホール (215152): [Death], Instant KO (100%) to one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif ramen == True and apple == False: | |
useSkill(8, 'slot #6') # ホワイトホール (215152): [Death], Instant KO (100%) to one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif ramen == True and berry == False: | |
useSkill(3, 'random') # メテオ (215147): Magic damage (9.5x * 1.33 = 12.67x, MAG) to all enemies (ignore reflect) | |
green += 1 | |
berry = True # reset next turn | |
elif ramen == True and peach == False: | |
useSkill(2, 'random') # ホーリー (215146): Magic light damage (10.7x, MAG) to one enemy | |
green += 1 | |
peach = True # reset next turn | |
elif ramen == True and olive == False: | |
useSkill(1, 'random') # フレア (215145): Magic fire damage (12.1x, MAG) to one enemy | |
green += 1 | |
olive = True # reset next turn | |
elif random() <= 0.50 and sushi == True and apple == False: | |
useSkill(8, 'slot #5') # ホワイトホール (215152): [Death], Instant KO (100%) to one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif sushi == True and apple == False: | |
useSkill(8, 'slot #6') # ホワイトホール (215152): [Death], Instant KO (100%) to one enemy, Inflict Petrify (100%) on one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif sushi == True and berry == False: | |
useSkill(6, 'random') # メテオ (215150): Magic damage (10x * 1.33 = 13.33x, MAG) to all enemies (ignore reflect) | |
green += 1 | |
berry = True # reset next turn | |
elif sushi == True and peach == False: | |
useSkill(5, 'random') # ホーリー (215149): Reduce resistance to Light by 50% for 3 turns to one enemy, Magic light damage (11.7x, MAG) to one enemy | |
green += 1 | |
peach = True # reset next turn | |
elif sushi == True and olive == False: | |
useSkill(5, 'random') # ホーリー (215149): Reduce resistance to Light by 50% for 3 turns to one enemy, Magic light damage (11.7x, MAG) to one enemy | |
green += 1 | |
olive = True # reset next turn | |
elif sushi == True and mango == False: | |
useSkill(4, 'random') # フレア (215148): Reduce resistance to Fire by 50% for 3 turns to one enemy, Magic fire damage (13.1x, MAG) to one enemy | |
green += 1 | |
mango = True # reset next turn | |
elif sushi == True and lemon == False: | |
useSkill(4, 'random') # フレア (215148): Reduce resistance to Fire by 50% for 3 turns to one enemy, Magic fire damage (13.1x, MAG) to one enemy | |
green += 1 | |
lemon = True # reset next turn | |
elif bacon == True and once() and apple == False: | |
useSkill(9, 'slot #4') # ネオブラックホール (215153): Remove all buffs and debuffs from one enemy, Instant KO (100%) to one enemy (ignores death resist) | |
green += 1 | |
apple = True # reset next turn | |
elif bacon == True and steak == True and apple == False: | |
useSkill(9, 'slot #1') # ネオブラックホール (215153): Remove all buffs and debuffs from one enemy, Instant KO (100%) to one enemy (ignores death resist) | |
green += 1 | |
apple = True # reset next turn | |
steak = False # persistent | |
elif bacon == True and salad == True and apple == False: | |
useSkill(9, 'slot #6') # ネオブラックホール (215153): Remove all buffs and debuffs from one enemy, Instant KO (100%) to one enemy (ignores death resist) | |
green += 1 | |
apple = True # reset next turn | |
elif bacon == True and salad == True and berry == False: | |
useSkill(9, 'random') # ネオブラックホール (215153): Remove all buffs and debuffs from one enemy, Instant KO (100%) to one enemy (ignores death resist) | |
green += 1 | |
berry = True # reset next turn | |
salad = False # persistent | |
elif bacon == True and berry == False: | |
useSkill(2, 'random') # ホーリー (215146): Magic light damage (10.7x, MAG) to one enemy | |
green += 1 | |
berry = True # reset next turn | |
elif bacon == True and peach == False: | |
useSkill(1, 'random') # フレア (215145): Magic fire damage (12.1x, MAG) to one enemy | |
green += 1 | |
peach = True # reset next turn | |
elif random() <= 0.04 and bacon == True and olive == False: | |
useSkill(2, 'random') # ホーリー (215146): Magic light damage (10.7x, MAG) to one enemy | |
green += 1 | |
olive = True # reset next turn | |
elif random() <= 0.04 and bacon == True and mango == False: | |
useSkill(1, 'random') # フレア (215145): Magic fire damage (12.1x, MAG) to one enemy | |
green += 1 | |
mango = True # reset next turn | |
else: | |
attack('random') | |
green += 1 | |
## | |
# Monster Info | |
## | |
# | |
# Monster ネオエクスデス (401161000) | |
# Race Beast | |
# Level 99 | |
# Actions 30-30 | |
# | |
# | |
# Stats | |
# HP 290000000 | |
# MP 150000 | |
# ATK 1200 | |
# DEF 850 | |
# MAG 780 | |
# SPR 780 | |
# | |
# | |
# 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 | |
### | |
# | |
# 宇宙の 法則が 乱れる! (215166) [None] | |
# | |
# No effect | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# グランドクロス (215167) [None] | |
# | |
# Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns | |
# Inflict one random status effect (Poison, Blind, Sleep, Silence, Paralyze and Disease 100%) to all enemies | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ディスペル (215156) [None] | |
# | |
# Remove all buffs and debuffs from one enemy | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# メテオ (215168) [Magic] | |
# | |
# Magic damage (10.2x * 1.33 = 13.6x, MAG) to all enemies (ignore reflect) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# アルマゲスト (215169) [Magic] | |
# | |
# Reduce resistance to Light by 170% for 3 turns to all enemies | |
# Magic light damage (14x, MAG) to all enemies | |
# Magic light damage (7x, SPR) per turn to all enemies for 3 turns | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# 無への回帰 (215170) [None] | |
# | |
# Reduce ATK and MAG by 40% for 3 turns to all enemies | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# 法則崩壊 (215171) [None] | |
# | |
# Increase ATK, DEF, MAG and SPR by 30% for 99999 turns to caster | |
# Reduce physical damage taken by 40% to caster for 99999 turns (can not be removed) | |
# Reduce magic damage taken by 40% to caster for 99999 turns (can not be removed) | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# 無の暴走 (215172) [None] | |
# | |
# Physical* damage (7.5x, ATK) to one enemy | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# しんくうは (215173) [None] | |
# | |
# Physical* damage (13.5x, ATK) to one enemy | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ダブルアタック (215174) [Physical] | |
# | |
# Physical damage (6.5x, ATK) to one enemy | |
# Physical damage (6.5x, ATK) to one enemy | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# エアロガ (215175) [Magic] | |
# | |
# Magic wind damage (10.5x, MAG) to all enemies | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# デルタアタック (215176) [Magic] | |
# | |
# Magic damage (10x, MAG) to all enemies | |
# Inflict Petrify (100%) on all enemies | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
# | |
# ブリザガ (215177) [Magic] | |
# | |
# Magic ice damage (10.5x, MAG) to all enemies | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# ファイガ (215178) [Magic] | |
# | |
# Magic fire damage (10.5x, MAG) to all enemies | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# フレア (215181) [Magic] | |
# | |
# Magic fire damage (12.5x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# サンダガ (215179) [Magic] | |
# | |
# Magic lightning damage (10.5x, MAG) to all enemies | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# ホーリー (215182) [Magic] | |
# | |
# Magic light damage (11.7x, MAG) to one enemy | |
# | |
# Sealable + Unknown1 + | |
# Reflect + Unknown2 - | |
# | |
## | |
# | |
# グランドクロス (215180) [None] | |
# | |
# Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns | |
# Inflict one random status effect (100%) to all enemies | |
# | |
# Sealable - Unknown1 + | |
# Reflect - Unknown2 - | |
# | |
## | |
### | |
# AI | |
### | |
if honey == True: | |
endTurn() | |
green = 0 | |
honey = False # persistent | |
elif white >= 6: | |
wait() # No action | |
white = 0 | |
honey = True # persistent | |
elif green >= 15: | |
wait() # No action | |
green = 0 | |
honey = True # persistent | |
elif self.HP < 0.2 and once(): | |
useSkill(7, 'random') # 法則崩壊 (215171): Increase ATK, DEF, MAG and SPR by 30% for 99999 turns to caster, Reduce physical damage taken by 40% to caster for 99999 turns (can not be removed), Reduce magic damage taken by 40% to caster for 99999 turns (can not be removed) | |
green = 0 | |
ramen = True # persistent | |
honey = True # persistent | |
elif ramen == True: | |
useSkill(8, 'random') # 無の暴走 (215172): Physical* damage (7.5x, ATK) to one enemy | |
white += 1 | |
elif sushi == True and green >= 14: | |
useSkill(1, 'random') # 宇宙の 法則が 乱れる! (215166): No effect | |
green += 1 | |
sushi = False # persistent | |
elif steak == True and salad == False and once(): | |
useSkill(3, 'highest SPR') # ディスペル (215156): Remove all buffs and debuffs from one enemy | |
green += 1 | |
elif steak == True and salad == False and once(): | |
useSkill(18, 'random') # グランドクロス (215180): Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns, Inflict one random status effect (100%) to all enemies | |
black = 0 | |
green += 1 | |
elif steak == True and salad == False and once(): | |
wait() # No action | |
black += 1 | |
green = 0 | |
steak = False # persistent | |
honey = True # persistent | |
elif salad == True and once(): | |
useSkill(3, 'highest SPR') # ディスペル (215156): Remove all buffs and debuffs from one enemy | |
green += 1 | |
elif salad == True and once(): | |
useSkill(3, 'highest DEF') # ディスペル (215156): Remove all buffs and debuffs from one enemy | |
green += 1 | |
elif salad == True and once(): | |
useSkill(18, 'random') # グランドクロス (215180): Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns, Inflict one random status effect (100%) to all enemies | |
black = 0 | |
green += 1 | |
elif salad == True and once(): | |
wait() # No action | |
black += 1 | |
green = 0 | |
salad = False # persistent | |
honey = True # persistent | |
elif once() and apple == False and lemon == False: | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif once() and berry == False and lemon == False: | |
useSkill(11, 'random') # エアロガ (215175): Magic wind damage (10.5x, MAG) to all enemies | |
green += 1 | |
berry = True # reset next turn | |
elif once() and peach == False and lemon == False: | |
useSkill(12, 'random') # デルタアタック (215176): Magic damage (10x, MAG) to all enemies, Inflict Petrify (100%) on all enemies | |
black += 1 | |
green += 1 | |
lemon = True # reset next turn | |
peach = True # reset next turn | |
elif black >= 4 and apple == False and lemon == False: | |
useSkill(2, 'random') # グランドクロス (215167): Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns, Inflict one random status effect (Poison, Blind, Sleep, Silence, Paralyze and Disease 100%) to all enemies | |
green += 1 | |
apple = True # reset next turn | |
elif black >= 4 and berry == False and lemon == False: | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
berry = True # reset next turn | |
elif black >= 4 and peach == False and lemon == False: | |
useSkill(11, 'random') # エアロガ (215175): Magic wind damage (10.5x, MAG) to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif black >= 4 and olive == False and lemon == False: | |
useSkill(12, 'random') # デルタアタック (215176): Magic damage (10x, MAG) to all enemies, Inflict Petrify (100%) on all enemies | |
black = 0 | |
green += 1 | |
lemon = True # reset next turn | |
olive = True # reset next turn | |
bacon = True # persistent | |
elif black >= 3 and apple == False and lemon == False: | |
useSkill(10, 'random') # ダブルアタック (215174): Physical damage (6.5x, ATK) to one enemy, Physical damage (6.5x, ATK) to one enemy | |
green += 1 | |
apple = True # reset next turn | |
elif black >= 3 and berry == False and lemon == False: | |
useSkill(5, 'random') # アルマゲスト (215169): Reduce resistance to Light by 170% for 3 turns to all enemies, Magic light damage (14x, MAG) to all enemies, Magic light damage (7x, SPR) per turn to all enemies for 3 turns | |
green += 1 | |
berry = True # reset next turn | |
elif black >= 3 and peach == False and lemon == False: | |
useSkill(16, 'random') # サンダガ (215179): Magic lightning damage (10.5x, MAG) to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif black >= 3 and olive == False and lemon == False: | |
useSkill(17, 'random') # ホーリー (215182): Magic light damage (11.7x, MAG) to one enemy | |
black += 1 | |
green += 1 | |
lemon = True # reset next turn | |
olive = True # reset next turn | |
sushi = True # persistent | |
elif black >= 2 and apple == False and lemon == False: | |
useSkill(2, 'random') # グランドクロス (215167): Remove resistances to Poison, Blind, Sleep, Silence, Paralyze, Confusion, Disease and Petrify from all enemies for 3 turns, Inflict one random status effect (Poison, Blind, Sleep, Silence, Paralyze and Disease 100%) to all enemies | |
green += 1 | |
apple = True # reset next turn | |
elif black >= 2 and berry == False and lemon == False: | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
berry = True # reset next turn | |
elif black >= 2 and peach == False and lemon == False: | |
useSkill(14, 'random') # ファイガ (215178): Magic fire damage (10.5x, MAG) to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif black >= 2 and olive == False and lemon == False: | |
useSkill(15, 'random') # フレア (215181): Magic fire damage (12.5x, MAG) to one enemy | |
black += 1 | |
green += 1 | |
lemon = True # reset next turn | |
olive = True # reset next turn | |
elif black >= 1 and apple == False and lemon == False: | |
useSkill(6, 'random') # 無への回帰 (215170): Reduce ATK and MAG by 40% for 3 turns to all enemies | |
green += 1 | |
apple = True # reset next turn | |
elif black >= 1 and berry == False and lemon == False: | |
useSkill(10, 'random') # ダブルアタック (215174): Physical damage (6.5x, ATK) to one enemy, Physical damage (6.5x, ATK) to one enemy | |
green += 1 | |
berry = True # reset next turn | |
elif black >= 1 and peach == False and lemon == False: | |
useSkill(13, 'random') # ブリザガ (215177): Magic ice damage (10.5x, MAG) to all enemies | |
green += 1 | |
peach = True # reset next turn | |
elif black >= 1 and olive == False and lemon == False: | |
useSkill(3, 'random') # ディスペル (215156): Remove all buffs and debuffs from one enemy | |
black += 1 | |
green += 1 | |
lemon = True # reset next turn | |
olive = True # reset next turn | |
sushi = True # persistent | |
elif bacon == True and grape == False: | |
attack('random') | |
black += 1 | |
green += 1 | |
grape = True # reset next turn | |
bacon = False # persistent | |
elif self.HP < 0.6 and once(): | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
elif self.HP < 0.6 and once(): | |
useSkill(1, 'random') # 宇宙の 法則が 乱れる! (215166): No effect | |
green += 1 | |
steak = True # persistent | |
honey = True # persistent | |
elif self.HP < 0.3 and once(): | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
elif self.HP < 0.3 and once(): | |
useSkill(9, 'random') # しんくうは (215173): Physical* damage (13.5x, ATK) to one enemy | |
green += 1 | |
elif self.HP < 0.3 and once(): | |
useSkill(1, 'random') # 宇宙の 法則が 乱れる! (215166): No effect | |
green += 1 | |
salad = True # persistent | |
honey = True # persistent | |
else: | |
attack('random') | |
green += 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment