Skip to content

Instantly share code, notes, and snippets.

@aEnigmatic
Created October 21, 2019 08:43
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/d6132bbf4e3c6157505d5d7e42bd8a4d to your computer and use it in GitHub Desktop.
Save aEnigmatic/d6132bbf4e3c6157505d5d7e42bd8a4d to your computer and use it in GitHub Desktop.
Scorn of the Mad Doll
##
# Mission '嗤い踊る人形 真降臨' (8995604)
#
# Battles
# * カルコ, カルコ, カルコ, ブリーナ, ブリーナ, ブリーナ
# * カルコブリーナ [+ カルコ, カルコ, カルコ, ブリーナ, ブリーナ, ブリーナ, カルコブリーナ]
##
##
# Monster Info
##
#
# Monster カルコ (104151006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 2200
# DEF 4600
# MAG 1800
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコ (104152006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 2200
# DEF 4600
# MAG 1800
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコ (104153006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 2200
# DEF 4600
# MAG 1800
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104161006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 1800
# DEF 4600
# MAG 2200
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104162006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 1800
# DEF 4600
# MAG 2200
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104163006, 104151001)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 45000000
# MP 50000
# ATK 1800
# DEF 4600
# MAG 2200
# SPR 2800
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコブリーナ (404031006, 404031002)
# Race Demon, Fairy
# Level 99
# Actions 8-8
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 300000000
# MP 100000
# ATK 1600
# DEF 2500
# MAG 1600
# SPR 1000
#
#
# 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 50%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100083) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217361) to the attacker
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100084) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217362) to the attacker
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# ホールド (217367) [None]
#
# Inflict Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ひとみ (217368) [None]
#
# Inflict Poison and Confusion (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ほのお (217369) [Magic]
#
# Magic fire damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# つなみ (217370) [Magic]
#
# Magic water damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみなり (217371) [Magic]
#
# Magic lightning damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいほのお (217372) [Magic]
#
# Magic fire damage (13x, MAG) to all enemies
# Reduce resistance to Fire by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいつなみ (217373) [Magic]
#
# Magic water damage (13x, MAG) to all enemies
# Reduce resistance to Water by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいかみなり (217374) [Magic]
#
# Magic lightning damage (13x, MAG) to all enemies
# Reduce resistance to Lightning by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ホラータッチ (217375) [Magic]
#
# Magic damage (8x, MAG) to all enemies
# Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies
# Unused parameters: [1]
# Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# にぎりつぶす (217376) [Physical]
#
# Physical damage (15x, ATK) to one enemy
# Reduce DEF and SPR by 50% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ぶきみなさけび (217377) [Magic]
#
# Magic damage (18x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217361) [Physical]
#
# Physical damage (10x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217362) [Magic]
#
# Magic damage (10x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Pressure (193440) [None]
#
# 99% HP damage to all enemies
# Unknown parameters: [99,100]
# Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193450) [None]
#
# Summon カルコ (104152006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193460) [None]
#
# Summon カルコ (104153006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193470) [None]
#
# Summon ブリーナ (104161006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193480) [None]
#
# Summon ブリーナ (104162006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193490) [None]
#
# Summon ブリーナ (104163006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193500) [None]
#
# Summon カルコブリーナ (404031006)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# It curled up. (193510) [None]
#
# Increase DEF and SPR by 200% for 2 turns to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif self.HP < 0.45 and once():
useSkill(15, 'random') # Mitosis (193450): Summon カルコ (104152006)
elif self.HP < 0.45 and once():
useSkill(16, 'random') # Mitosis (193460): Summon カルコ (104153006)
elif self.HP < 0.45 and once():
useSkill(17, 'random') # Mitosis (193470): Summon ブリーナ (104161006)
elif self.HP < 0.45 and once():
useSkill(18, 'random') # Mitosis (193480): Summon ブリーナ (104162006)
elif self.HP < 0.45 and once():
useSkill(19, 'random') # Mitosis (193490): Summon ブリーナ (104163006)
elif self.HP < 0.45 and once():
useSkill(20, 'random') # Mitosis (193500): Summon カルコブリーナ (404031006), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif self.HP < 0.8 and once():
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
berry = True # reset next turn
elif self.HP < 0.6 and once():
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
berry = True # reset next turn
elif self.HP < 0.3 and once():
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
elif self.HP < 0.3 and once():
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
berry = True # reset next turn
elif berry == True:
useSkill(21, 'random') # It curled up. (193510): Increase DEF and SPR by 200% for 2 turns to one ally
apple = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'ice') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'ice') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'aero') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'aero') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'quake') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'quake') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'light') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'light') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'dark') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'dark') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'fire') and peach == False:
useSkill(6, 'random') # はげしいほのお (217372): Magic fire damage (13x, MAG) to all enemies, Reduce resistance to Fire by 50% for 3 turns to all enemies
peach = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'fire') and peach == False:
useSkill(6, 'random') # はげしいほのお (217372): Magic fire damage (13x, MAG) to all enemies, Reduce resistance to Fire by 50% for 3 turns to all enemies
peach = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'water') and olive == False:
useSkill(7, 'random') # はげしいつなみ (217373): Magic water damage (13x, MAG) to all enemies, Reduce resistance to Water by 50% for 3 turns to all enemies
olive = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'water') and olive == False:
useSkill(7, 'random') # はげしいつなみ (217373): Magic water damage (13x, MAG) to all enemies, Reduce resistance to Water by 50% for 3 turns to all enemies
olive = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'thunder') and mango == False:
useSkill(8, 'random') # はげしいかみなり (217374): Magic lightning damage (13x, MAG) to all enemies, Reduce resistance to Lightning by 50% for 3 turns to all enemies
mango = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'thunder') and mango == False:
useSkill(8, 'random') # はげしいかみなり (217374): Magic lightning damage (13x, MAG) to all enemies, Reduce resistance to Lightning by 50% for 3 turns to all enemies
mango = True # reset next turn
elif isTurnMod(5) and var_63 == False:
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
var_63 = True # unknown flag type
elif self.HP > 0.8 and var_61 == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
var_61 = True # unknown flag type
elif self.HP < 0.8 and guava == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
guava = True # reset next turn
elif self.HP < 0.6 and gourd == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
gourd = True # reset next turn
elif peach == False:
useSkill(3, 'random') # ほのお (217369): Magic fire damage (9x, MAG) to all enemies
peach = True # reset next turn
elif olive == False:
useSkill(4, 'random') # つなみ (217370): Magic water damage (9x, MAG) to all enemies
olive = True # reset next turn
elif mango == False:
useSkill(5, 'random') # かみなり (217371): Magic lightning damage (9x, MAG) to all enemies
mango = True # reset next turn
elif random() <= 0.50 and var_62 == False:
useSkill(1, 'random') # ホールド (217367): Inflict Paralyze and Petrify (100%) on one enemy
var_62 = True # unknown flag type
elif var_62 == False:
useSkill(2, 'random') # ひとみ (217368): Inflict Poison and Confusion (100%) on one enemy
var_62 = True # unknown flag type
elif isTurnMod(4) and melon == False:
useSkill(21, 'random') # It curled up. (193510): Increase DEF and SPR by 200% for 2 turns to one ally
melon = True # reset next turn
elif random() <= 0.30:
useSkill(11, 'random') # ぶきみなさけび (217377): Magic damage (18x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
elif random() <= 0.30:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
else:
attack('random')
##
# Monster Info
##
#
# Monster カルコ (104151007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1900
# DEF 5000
# MAG 1500
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコ (104152007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1900
# DEF 5000
# MAG 1500
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコ (104153007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1900
# DEF 5000
# MAG 1500
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104161007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1500
# DEF 5000
# MAG 1900
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104162007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1500
# DEF 5000
# MAG 1900
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster ブリーナ (104163007, 104151000)
# Race Demon, Fairy
# Level 99
# Actions 4-4
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 40000000
# MP 50000
# ATK 1500
# DEF 5000
# MAG 1900
# SPR 3200
#
#
# 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 50%
#
#
# Status resist (+25% / application)
# Poison 100%
# Blind 50%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100085) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217363) to the attacker (max 2 / turn)
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100086) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217364) to the attacker (max 2 / turn)
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# Cursed Dance (193520) [None]
#
# Inflict Silence, Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Kya ho ho! (193530) [None]
#
# Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみつき (217365) [Physical]
#
# Physical damage (4x, ATK) to one enemy
# Reduce DEF by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# クルクルまわる (217366) [Magic]
#
# Magic damage (4x, MAG) to one enemy
# Reduce SPR by 25% for 2 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Combination (193560) [None]
#
# Summon カルコ (104151007)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Eerie Scream (193410) [Magic]
#
# Magic damage (5x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217363) [Physical]
#
# Physical damage (2.3x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217364) [Magic]
#
# Magic damage (2.3x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
green = 0
elif once():
endTurn()
elif isTurnMod(4) and green == 2:
useSkill(2, 'random') # Kya ho ho! (193530): Increase ATK, DEF, MAG and SPR by 200% for one turn to one ally
apple = True # reset next turn
elif green == 2:
attack('random')
apple = True # reset next turn
elif white == 8 and once():
useSkill(5, 'random') # Combination (193560): Summon カルコ (104151007), Instant KO (100%) to caster (ignores death resist)
apple = True # reset next turn
elif random() <= 0.50 and isTurnMod(2) and berry == False:
useSkill(1, 'random') # Cursed Dance (193520): Inflict Silence, Paralyze and Petrify (100%) on one enemy
white += 1
green += 1
berry = True # reset next turn
elif random() <= 0.50 and peach == False:
useSkill(3, 'random') # かみつき (217365): Physical damage (4x, ATK) to one enemy, Reduce DEF by 25% for 2 turns to one enemy
white += 1
green += 1
peach = True # reset next turn
elif olive == False:
useSkill(6, 'random') # Eerie Scream (193410): Magic damage (5x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
white += 1
green += 1
olive = True # reset next turn
else:
useSkill(4, 'random') # クルクルまわる (217366): Magic damage (4x, MAG) to one enemy, Reduce SPR by 25% for 2 turns to one enemy
white += 1
green += 1
##
# Monster Info
##
#
# Monster カルコブリーナ (404031008, 404031001)
# Race Demon, Fairy
# Level 99
# Actions 8-8
#
# NEW DAMAGE FORMULA! (5, 25, 185)
#
#
# Stats
# HP 150000000
# MP 100000
# ATK 1670
# DEF 2000
# MAG 1670
# SPR 850
#
#
# 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 50%
#
#
# Status resist (+100% / application)
# Poison 100%
# Blind 100%
# Sleep 100%
# Silence 100%
# Paralyze 100%
# Confusion 100%
# Disease 100%
# Petrify 100%
#
#
# Debuff resist
# ATK 0%
# DEF 0%
# MAG 0%
# SPR 0%
# Stop 100%
# Charm 100%
# Berserk 100%
#
#
# Immunity
# Death +
# Gravity +
#
###
###
# Passives
###
#
# 物理カウンター(こうげきはんしゃ強) (100083) [Passive]
#
# 100% chance to counter physical attacks with こうげきはんしゃ (217361) to the attacker
#
##
#
# 魔法カウンター(まほうはんしゃ強) (100084) [Passive]
#
# 100% chance to counter magic attacks with まほうはんしゃ (217362) to the attacker
#
##
#
# 全ステ50% (100015) [Passive]
#
# Increase ATK, DEF, MAG and SPR by 50%
#
##
###
# Skills
###
#
# ホールド (217367) [None]
#
# Inflict Paralyze and Petrify (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ひとみ (217368) [None]
#
# Inflict Poison and Confusion (100%) on one enemy
# Unknown parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ほのお (217369) [Magic]
#
# Magic fire damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# つなみ (217370) [Magic]
#
# Magic water damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# かみなり (217371) [Magic]
#
# Magic lightning damage (9x, MAG) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいほのお (217372) [Magic]
#
# Magic fire damage (13x, MAG) to all enemies
# Reduce resistance to Fire by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいつなみ (217373) [Magic]
#
# Magic water damage (13x, MAG) to all enemies
# Reduce resistance to Water by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# はげしいかみなり (217374) [Magic]
#
# Magic lightning damage (13x, MAG) to all enemies
# Reduce resistance to Lightning by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ホラータッチ (217375) [Magic]
#
# Magic damage (8x, MAG) to all enemies
# Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies
# Unused parameters: [1]
# Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# にぎりつぶす (217376) [Physical]
#
# Physical damage (15x, ATK) to one enemy
# Reduce DEF and SPR by 50% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# ぶきみなさけび (217377) [Magic]
#
# Magic damage (18x, MAG) to one enemy
# Reduce ATK and MAG by 25% for 3 turns to one enemy
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# こうげきはんしゃ (217361) [Physical]
#
# Physical damage (10x, ATK) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# まほうはんしゃ (217362) [Magic]
#
# Magic damage (10x, MAG) to one enemy
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Pressure (193440) [None]
#
# 99% HP damage to all enemies
# Unknown parameters: [99,100]
# Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193450) [None]
#
# Summon カルコ (104152006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193460) [None]
#
# Summon カルコ (104153006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193470) [None]
#
# Summon ブリーナ (104161006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193480) [None]
#
# Summon ブリーナ (104162006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193490) [None]
#
# Summon ブリーナ (104163006)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# Mitosis (193500) [None]
#
# Summon カルコブリーナ (404031006)
# Instant KO (100%) to caster (ignores death resist)
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
#
# It curled up. (193510) [None]
#
# Increase DEF and SPR by 200% for 2 turns to one ally
# Unused parameters: [1]
#
# Sealable - Unknown1 +
# Reflect - Unknown2 -
#
##
###
# AI
###
if apple == True:
endTurn()
elif once():
endTurn()
elif self.HP < 0.8 and once():
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
berry = True # reset next turn
elif self.HP < 0.6 and once():
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
berry = True # reset next turn
elif self.HP < 0.3 and once():
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
elif self.HP < 0.3 and once():
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
berry = True # reset next turn
elif berry == True:
useSkill(21, 'random') # It curled up. (193510): Increase DEF and SPR by 200% for 2 turns to one ally
apple = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'ice') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'ice') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'aero') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'aero') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'quake') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'quake') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'light') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'light') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'dark') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'dark') and lemon == False:
useSkill(9, 'random') # ホラータッチ (217375): Magic damage (8x, MAG) to all enemies, Reduce resistance to Fire, Lightning and Water by 50% for 3 turns to all enemies, Magic damage (0.05x, MAG) as MP drain (8%) to all enemies
lemon = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'fire') and peach == False:
useSkill(6, 'random') # はげしいほのお (217372): Magic fire damage (13x, MAG) to all enemies, Reduce resistance to Fire by 50% for 3 turns to all enemies
peach = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'fire') and peach == False:
useSkill(6, 'random') # はげしいほのお (217372): Magic fire damage (13x, MAG) to all enemies, Reduce resistance to Fire by 50% for 3 turns to all enemies
peach = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'water') and olive == False:
useSkill(7, 'random') # はげしいつなみ (217373): Magic water damage (13x, MAG) to all enemies, Reduce resistance to Water by 50% for 3 turns to all enemies
olive = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'water') and olive == False:
useSkill(7, 'random') # はげしいつなみ (217373): Magic water damage (13x, MAG) to all enemies, Reduce resistance to Water by 50% for 3 turns to all enemies
olive = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('physical', 'thunder') and mango == False:
useSkill(8, 'random') # はげしいかみなり (217374): Magic lightning damage (13x, MAG) to all enemies, Reduce resistance to Lightning by 50% for 3 turns to all enemies
mango = True # reset next turn
elif unit('1:ally:any').sufferedDamageLastTurn('magical', 'thunder') and mango == False:
useSkill(8, 'random') # はげしいかみなり (217374): Magic lightning damage (13x, MAG) to all enemies, Reduce resistance to Lightning by 50% for 3 turns to all enemies
mango = True # reset next turn
elif isTurnMod(5) and var_63 == False:
useSkill(14, 'random') # Pressure (193440): 99% HP damage to all enemies, Reduce ATK, DEF, MAG and SPR by 50% for 3 turns to all enemies
var_63 = True # unknown flag type
elif self.HP > 0.8 and var_61 == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
var_61 = True # unknown flag type
elif self.HP < 0.8 and guava == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
guava = True # reset next turn
elif self.HP < 0.6 and gourd == False:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
gourd = True # reset next turn
elif peach == False:
useSkill(3, 'random') # ほのお (217369): Magic fire damage (9x, MAG) to all enemies
peach = True # reset next turn
elif olive == False:
useSkill(4, 'random') # つなみ (217370): Magic water damage (9x, MAG) to all enemies
olive = True # reset next turn
elif mango == False:
useSkill(5, 'random') # かみなり (217371): Magic lightning damage (9x, MAG) to all enemies
mango = True # reset next turn
elif random() <= 0.50 and var_62 == False:
useSkill(1, 'random') # ホールド (217367): Inflict Paralyze and Petrify (100%) on one enemy
var_62 = True # unknown flag type
elif var_62 == False:
useSkill(2, 'random') # ひとみ (217368): Inflict Poison and Confusion (100%) on one enemy
var_62 = True # unknown flag type
elif isTurnMod(4) and melon == False:
useSkill(21, 'random') # It curled up. (193510): Increase DEF and SPR by 200% for 2 turns to one ally
melon = True # reset next turn
elif random() <= 0.30:
useSkill(11, 'random') # ぶきみなさけび (217377): Magic damage (18x, MAG) to one enemy, Reduce ATK and MAG by 25% for 3 turns to one enemy
elif random() <= 0.30:
useSkill(10, 'random') # にぎりつぶす (217376): Physical damage (15x, ATK) to one enemy, Reduce DEF and SPR by 50% for 3 turns to one enemy
else:
attack('random')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment