Add: Inverted Orthant B3

This commit is contained in:
whoamikyo 2020-12-30 20:16:32 -03:00
parent 29298e0db4
commit 5efc08d655
6 changed files with 82 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,81 @@
from module.campaign.campaign_base import CampaignBase
from module.map.map_base import CampaignMap
from module.map.map_grids import SelectedGrids, RoadGrids
from module.logger import logger
from .b1 import Config as ConfigBase
MAP = CampaignMap('B3')
MAP.shape = 'J10'
MAP.camera_data = ['D2', 'D6', 'D8', 'G2', 'G6', 'G8']
MAP.camera_data_spawn_point = ['D8', 'G8']
MAP.map_data = """
++ -- -- ME -- -- ME -- -- ++
-- -- ++ -- MB MB -- ++ -- --
++ -- -- ME -- -- ME -- -- ++
-- ++ ++ ME -- -- ME ++ ++ --
++ ++ MS -- __ __ -- MS ++ ++
++ ME -- -- ++ ++ -- -- ME ++
-- ME -- Me ++ ++ Me -- ME --
++ ++ -- -- Me Me -- -- ++ ++
-- ++ MS -- -- -- -- MS ++ --
-- ++ ++ ++ SP SP ++ ++ ++ --
"""
MAP.weight_data = """
50 50 50 50 50 50 50 50 50 50
50 50 50 50 50 50 50 50 50 50
50 50 50 50 50 50 50 50 50 50
50 50 50 50 50 50 50 50 50 50
50 50 50 10 10 10 10 50 50 50
50 50 50 10 90 90 10 50 50 50
50 50 50 10 90 90 10 50 50 50
50 50 50 10 10 10 10 50 50 50
50 50 50 50 50 50 50 50 50 50
50 50 50 50 50 50 50 50 50 50
"""
MAP.spawn_data = [
{'battle': 0, 'enemy': 4, 'siren': 2},
{'battle': 1, 'enemy': 1},
{'battle': 2, 'enemy': 1},
{'battle': 3, 'enemy': 1},
{'battle': 4, 'enemy': 1},
{'battle': 5, 'enemy': 1, 'boss': 1},
]
A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, \
A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, \
A3, B3, C3, D3, E3, F3, G3, H3, I3, J3, \
A4, B4, C4, D4, E4, F4, G4, H4, I4, J4, \
A5, B5, C5, D5, E5, F5, G5, H5, I5, J5, \
A6, B6, C6, D6, E6, F6, G6, H6, I6, J6, \
A7, B7, C7, D7, E7, F7, G7, H7, I7, J7, \
A8, B8, C8, D8, E8, F8, G8, H8, I8, J8, \
A9, B9, C9, D9, E9, F9, G9, H9, I9, J9, \
A10, B10, C10, D10, E10, F10, G10, H10, I10, J10, \
= MAP.flatten()
class Config(ConfigBase):
# ===== Start of generated config =====
MAP_SIREN_TEMPLATE = ['DD', 'CL', 'Intruder']
MOVABLE_ENEMY_TURN = (2,)
MAP_HAS_SIREN = True
MAP_HAS_MOVABLE_ENEMY = True
MAP_HAS_MAP_STORY = True
MAP_HAS_FLEET_STEP = True
MAP_HAS_AMBUSH = False
# ===== End of generated config =====
class Campaign(CampaignBase):
MAP = MAP
def battle_0(self):
if self.fleet_2_protect():
return True
if self.clear_siren():
return True
return self.battle_default()
def battle_5(self):
return self.fleet_boss.clear_boss()

View File

@ -52,6 +52,7 @@ TEMPLATE_SIREN_ELpurple = Template(file={'cn': './assets/cn/template/TEMPLATE_SI
TEMPLATE_SIREN_Gneisenau = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_Gneisenau.gif', 'en': './assets/en/template/TEMPLATE_SIREN_Gneisenau.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_Gneisenau.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_Gneisenau.gif'})
TEMPLATE_SIREN_HipperIdol = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_HipperIdol.gif', 'en': './assets/en/template/TEMPLATE_SIREN_HipperIdol.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_HipperIdol.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_HipperIdol.gif'})
TEMPLATE_SIREN_IllustriousIdol = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_IllustriousIdol.gif', 'en': './assets/en/template/TEMPLATE_SIREN_IllustriousIdol.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_IllustriousIdol.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_IllustriousIdol.gif'})
TEMPLATE_SIREN_Intruder = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_Intruder.gif', 'en': './assets/en/template/TEMPLATE_SIREN_Intruder.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_Intruder.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_Intruder.gif'})
TEMPLATE_SIREN_KasumiDOA = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_KasumiDOA.gif', 'en': './assets/en/template/TEMPLATE_SIREN_KasumiDOA.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_KasumiDOA.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_KasumiDOA.gif'})
TEMPLATE_SIREN_Kongo = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_Kongo.gif', 'en': './assets/en/template/TEMPLATE_SIREN_Kongo.gif', 'jp': './assets/jp/template/TEMPLATE_SIREN_Kongo.gif', 'tw': './assets/tw/template/TEMPLATE_SIREN_Kongo.gif'})
TEMPLATE_SIREN_LaGalissonniere = Template(file={'cn': './assets/cn/template/TEMPLATE_SIREN_LaGalissonniere.png', 'en': './assets/en/template/TEMPLATE_SIREN_LaGalissonniere.png', 'jp': './assets/jp/template/TEMPLATE_SIREN_LaGalissonniere.png', 'tw': './assets/tw/template/TEMPLATE_SIREN_LaGalissonniere.png'})