From 24e6f9f87132208d91c298735e87322cb4ab6fce Mon Sep 17 00:00:00 2001 From: Zebartin <16185081+Zebartin@users.noreply.github.com> Date: Thu, 19 Oct 2023 00:23:34 +0800 Subject: [PATCH] Opt: Clean rogue event options (#168) --- dev_tools/keyword_extract.py | 99 +- tasks/rogue/event/event.py | 9 +- tasks/rogue/event/preset.py | 55 +- tasks/rogue/keywords/event_option.py | 2063 ++++++-------------------- tasks/rogue/keywords/event_title.py | 228 +-- 5 files changed, 660 insertions(+), 1794 deletions(-) diff --git a/dev_tools/keyword_extract.py b/dev_tools/keyword_extract.py index a89e481e9..1f105b086 100644 --- a/dev_tools/keyword_extract.py +++ b/dev_tools/keyword_extract.py @@ -3,7 +3,8 @@ import os import re import typing as t from collections import defaultdict -from functools import cached_property +from functools import cache, cached_property +from hashlib import md5 from module.base.code_generator import CodeGenerator from module.config.utils import deep_get, read_file @@ -429,7 +430,7 @@ class KeywordExtract: text_convert=blessing_name, extra_attrs=extra_attrs) def generate_rogue_events(self): - # A talk contains several options + # An event contains several options event_title_file = os.path.join( TextMap.DATA_FOLDER, 'ExcelOutput', 'RogueTalkNameConfig.json' @@ -452,8 +453,18 @@ class KeywordExtract: id_: deep_get(data, 'EventTitle.Hash') for id_, data in read_file(option_file).items() } - # Key: event name id, value: list of option id/hash + # Key: event name hash, value: list of option id/hash options_grouped = dict() + # Key: option md5, value: option text hash in StarRailData + option_md5s = dict() + + @cache + def get_option_md5(option_hash): + m = md5() + for lang in UI_LANGUAGES: + option_text = self.find_keyword(option_hash, lang=lang)[1] + m.update(option_text.encode()) + return m.hexdigest() # Drop invalid or duplicate options def clean_options(options): @@ -462,11 +473,14 @@ class KeywordExtract: option_hash = option_ids[str(i)] if option_hash not in self.text_map['en']: continue - _, option_text = self.find_keyword(option_hash, lang='en') - if option_text in visited: + option_md5 = get_option_md5(option_hash) + if option_md5 in visited: continue - visited.add(option_text) - yield option_hash + if option_md5 not in option_md5s: + option_md5s[option_md5] = option_hash + visited.add(option_md5) + yield option_md5s[option_md5] + for group_title_ids in event_title_texts.values(): group_option_ids = [] for title_id in group_title_ids: @@ -475,10 +489,10 @@ class KeywordExtract: if title_id == '13501': group_option_ids.append(13506) option_id = title_id - # Name ids in Swarm Disaster (寰宇蝗灾) have a "1" prefix + # title ids in Swarm Disaster (寰宇蝗灾) have a "1" prefix if option_id not in option_ids: option_id = title_id[1:] - # Some name may not has corresponding options + # Some title may not has corresponding options if option_id not in option_ids: continue group_option_ids += list(itertools.takewhile( @@ -486,52 +500,65 @@ class KeywordExtract: itertools.count(int(option_id)) )) if group_option_ids: - options_grouped[group_title_ids[0]] = group_option_ids - - for title_id, options in options_grouped.items(): - options_grouped[title_id] = list(clean_options(options)) - for title_id in list(options_grouped.keys()): - if len(options_grouped[title_id]) == 0: - options_grouped.pop(title_id) - option_dup_count = defaultdict(int) - for option_hash_list in options_grouped.values(): - for option_hash in option_hash_list: - if option_hash not in self.text_map['en']: - continue - _, option_text = self.find_keyword(option_hash, lang='en') - option_dup_count[text_to_variable(option_text)] += 1 + title_hash = event_title_ids[group_title_ids[0]] + options_grouped[title_hash] = group_option_ids - def option_text_convert(title_index): + for title_hash, options in options_grouped.items(): + options_grouped[title_hash] = list(clean_options(options)) + for title_hash in list(options_grouped.keys()): + if len(options_grouped[title_hash]) == 0: + options_grouped.pop(title_hash) + option_dup_count = defaultdict(int) + for option_hash in option_md5s.values(): + if option_hash not in self.text_map['en']: + continue + _, option_text = self.find_keyword(option_hash, lang='en') + option_dup_count[text_to_variable(option_text)] += 1 + + def option_text_convert(option_md5, md5_prefix_len=4): def wrapper(option_text): option_var = text_to_variable(option_text) if option_dup_count[option_var] > 1: - option_var = f'{option_var}_{title_index}' + option_var = f'{option_var}_{option_md5[:md5_prefix_len]}' return option_var return wrapper option_gen = None - last_id = 1 - option_id_map = dict() - for i, (title_id, option_ids) in enumerate(options_grouped.items(), start=1): - self.load_keywords(option_ids) + option_hash_to_keyword_id = dict() # option hash -> option keyword id + for i, (option_md5, option_hash) in enumerate(option_md5s.items(), start=1): + self.load_keywords([option_hash]) option_gen = self.write_keywords( keyword_class='RogueEventOption', - text_convert=option_text_convert(i), + text_convert=option_text_convert(option_md5), generator=option_gen ) - cur_id = option_gen.last_id + 1 - option_id_map[event_title_ids[title_id]] = list( - range(last_id, cur_id)) - last_id = cur_id + option_hash_to_keyword_id[option_hash] = i output_file = './tasks/rogue/keywords/event_option.py' print(f'Write {output_file}') option_gen.write(output_file) - self.load_keywords([event_title_ids[x] for x in options_grouped]) + + # title hash -> option keyword id + title_to_option_keyword_id = { + title_hash: sorted( + option_hash_to_keyword_id[x] for x in option_hashes + ) for title_hash, option_hashes in options_grouped.items() + } + self.load_keywords(options_grouped.keys()) self.write_keywords( keyword_class='RogueEventTitle', output_file='./tasks/rogue/keywords/event_title.py', - extra_attrs={'option_ids': option_id_map} + extra_attrs={'option_ids': title_to_option_keyword_id} ) + try: + from tasks.rogue.event.event import OcrRogueEventOption + except AttributeError: + logger.critical( + f'Importing OcrRogueEventOption fails, probably due to changes in {output_file}') + try: + from tasks.rogue.event.preset import STRATEGIES + except AttributeError: + logger.critical( + f'Importing preset strategies fails, probably due to changes in {output_file}') def iter_without_duplication(self, file: dict, keys): visited = set() diff --git a/tasks/rogue/event/event.py b/tasks/rogue/event/event.py index 7cb998051..e718dfaf4 100644 --- a/tasks/rogue/event/event.py +++ b/tasks/rogue/event/event.py @@ -89,17 +89,16 @@ class OcrRogueEventOption(OcrRogueEvent): OCR_REPLACE = { 'cn': [ # Special cases with placeholder - (KEYWORDS_ROGUE_EVENT_OPTION.Deposit_2_Cosmic_Fragments_93, '存入\d+.*'), - (KEYWORDS_ROGUE_EVENT_OPTION.Withdraw_2_Cosmic_Fragments_93, '取出\d+.*'), + (KEYWORDS_ROGUE_EVENT_OPTION.Deposit_2_Cosmic_Fragments, '存入\d+.*'), + (KEYWORDS_ROGUE_EVENT_OPTION.Withdraw_2_Cosmic_Fragments, '取出\d+.*'), (KEYWORDS_ROGUE_EVENT_OPTION.Record_of_the_Aeon_of_1, '^关于.*'), - (KEYWORDS_ROGUE_EVENT_OPTION.I_ll_buy_it, '我买下?了'), (KEYWORDS_ROGUE_EVENT_OPTION.Wait_for_them, '^等待.*'), (KEYWORDS_ROGUE_EVENT_OPTION.Choose_number_two_It_snores_like_Andatur_Zazzalo, '.*二号.*安达.*'), (KEYWORDS_ROGUE_EVENT_OPTION.Choose_number_three_Its_teeth_are_rusted, '.*三号.*牙齿.*'), ], 'en': [ - (KEYWORDS_ROGUE_EVENT_OPTION.Deposit_2_Cosmic_Fragments_93, 'Deposit \d+.*'), - (KEYWORDS_ROGUE_EVENT_OPTION.Withdraw_2_Cosmic_Fragments_93, 'Withdraw \d+.*'), + (KEYWORDS_ROGUE_EVENT_OPTION.Deposit_2_Cosmic_Fragments, 'Deposit \d+.*'), + (KEYWORDS_ROGUE_EVENT_OPTION.Withdraw_2_Cosmic_Fragments, 'Withdraw \d+.*'), (KEYWORDS_ROGUE_EVENT_OPTION.Record_of_the_Aeon_of_1, '^Record of the Aeon.*'), ] diff --git a/tasks/rogue/event/preset.py b/tasks/rogue/event/preset.py index d4a522889..0d93e5488 100644 --- a/tasks/rogue/event/preset.py +++ b/tasks/rogue/event/preset.py @@ -7,10 +7,10 @@ STRATEGY_COMMON = { KEYWORDS_ROGUE_EVENT_OPTION.Enhance_2_random_Blessings, KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_1_star_Blessing, KEYWORDS_ROGUE_EVENT_OPTION.Purchase_1_Curio, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_2 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_1436 ], KEYWORDS_ROGUE_EVENT_TITLE.Ruan_Mei: [ - KEYWORDS_ROGUE_EVENT_OPTION.Worship_Aeons_1, + KEYWORDS_ROGUE_EVENT_OPTION.Worship_Aeons, KEYWORDS_ROGUE_EVENT_OPTION.Want_lots_of_money ], KEYWORDS_ROGUE_EVENT_TITLE.Shopping_Channel: [ @@ -34,7 +34,8 @@ STRATEGY_COMMON = { KEYWORDS_ROGUE_EVENT_OPTION.I_hate_this_era ], [ - KEYWORDS_ROGUE_EVENT_OPTION.I_ll_buy_it, + KEYWORDS_ROGUE_EVENT_OPTION.I_ll_buy_it_f1b5, + KEYWORDS_ROGUE_EVENT_OPTION.I_ll_buy_it_f619, KEYWORDS_ROGUE_EVENT_OPTION.I_want_money, KEYWORDS_ROGUE_EVENT_OPTION.I_want_love ] @@ -49,26 +50,26 @@ STRATEGY_COMMON = { ], KEYWORDS_ROGUE_EVENT_TITLE.The_Architects: [ KEYWORDS_ROGUE_EVENT_OPTION.Thank_the_Aeon_Qlipoth, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_16 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_1436 ], KEYWORDS_ROGUE_EVENT_TITLE.Cosmic_Merchant_Part_1: [ KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_metal_Wish_In_A_Bottle, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_18, - KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_silver_ore_Wish_In_A_Bottle_18 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_4fa0, + KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_silver_ore_Wish_In_A_Bottle ], KEYWORDS_ROGUE_EVENT_TITLE.Cosmic_Con_Job_Part_2: [ - KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_supernium_Wish_In_A_Bottle_19, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_19, - KEYWORDS_ROGUE_EVENT_OPTION.Purchase_an_amber_Wish_In_A_Bottle_19 + KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_supernium_Wish_In_A_Bottle, + KEYWORDS_ROGUE_EVENT_OPTION.Leave_4fa0, + KEYWORDS_ROGUE_EVENT_OPTION.Purchase_an_amber_Wish_In_A_Bottle ], KEYWORDS_ROGUE_EVENT_TITLE.Cosmic_Altruist_Part_3: [ - KEYWORDS_ROGUE_EVENT_OPTION.Purchase_an_ore_box_20, - KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_diamond_box_20, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_20 + KEYWORDS_ROGUE_EVENT_OPTION.Purchase_an_ore_box, + KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_diamond_box, + KEYWORDS_ROGUE_EVENT_OPTION.Leave_4fa0 ], KEYWORDS_ROGUE_EVENT_TITLE.Bounty_Hunter: [ - KEYWORDS_ROGUE_EVENT_OPTION.Walk_away_25, + KEYWORDS_ROGUE_EVENT_OPTION.Walk_away, KEYWORDS_ROGUE_EVENT_OPTION.Give_him_the_fur_you_re_wearing ], KEYWORDS_ROGUE_EVENT_TITLE.Nomadic_Miners: [ @@ -77,7 +78,7 @@ STRATEGY_COMMON = { ], KEYWORDS_ROGUE_EVENT_TITLE.Jim_Hulk_and_Jim_Hall: [ KEYWORDS_ROGUE_EVENT_OPTION.Jim_Hulk_collection, - KEYWORDS_ROGUE_EVENT_OPTION.Walk_away_5 + KEYWORDS_ROGUE_EVENT_OPTION.Walk_away ], KEYWORDS_ROGUE_EVENT_TITLE.The_Cremators: [ KEYWORDS_ROGUE_EVENT_OPTION.Bear_ten_carats_of_trash, @@ -93,42 +94,42 @@ STRATEGY_COMMON = { ], KEYWORDS_ROGUE_EVENT_TITLE.Kindling_of_the_Self_Annihilator: [ KEYWORDS_ROGUE_EVENT_OPTION.Accept_the_flames_of_Self_destruction_and_destroy_the_black_box, - KEYWORDS_ROGUE_EVENT_OPTION.Refuse_17 + KEYWORDS_ROGUE_EVENT_OPTION.Refuse_54fd ], KEYWORDS_ROGUE_EVENT_TITLE.Saleo_Part_1: [ - KEYWORDS_ROGUE_EVENT_OPTION.Pick_Sal_22, - KEYWORDS_ROGUE_EVENT_OPTION.Pick_Leo_22 + KEYWORDS_ROGUE_EVENT_OPTION.Pick_Sal, + KEYWORDS_ROGUE_EVENT_OPTION.Pick_Leo ], KEYWORDS_ROGUE_EVENT_TITLE.Sal_Part_2: [ - KEYWORDS_ROGUE_EVENT_OPTION.Pick_Sal_23, - KEYWORDS_ROGUE_EVENT_OPTION.Let_Leo_out_23 + KEYWORDS_ROGUE_EVENT_OPTION.Pick_Sal, + KEYWORDS_ROGUE_EVENT_OPTION.Let_Leo_out ], KEYWORDS_ROGUE_EVENT_TITLE.Leo_Part_3: [ - KEYWORDS_ROGUE_EVENT_OPTION.Let_Sal_out_24, - KEYWORDS_ROGUE_EVENT_OPTION.Pick_Leo_24 + KEYWORDS_ROGUE_EVENT_OPTION.Let_Sal_out, + KEYWORDS_ROGUE_EVENT_OPTION.Pick_Leo ], KEYWORDS_ROGUE_EVENT_TITLE.Implement_of_Error: [ KEYWORDS_ROGUE_EVENT_OPTION.Pick_an_Error_Code_Curio, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_26 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_1436 ], KEYWORDS_ROGUE_EVENT_TITLE.Make_A_Wish: [ KEYWORDS_ROGUE_EVENT_OPTION.Exchange_for_a_3_star_Blessing, KEYWORDS_ROGUE_EVENT_OPTION.Exchange_for_a_2_star_Blessing, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_33 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_3c49 ], KEYWORDS_ROGUE_EVENT_TITLE.Let_Exchange_Gifts: [ KEYWORDS_ROGUE_EVENT_OPTION.Blessing_Exchange, KEYWORDS_ROGUE_EVENT_OPTION.Blessing_Reforge, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_32 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_3c49 ], KEYWORDS_ROGUE_EVENT_TITLE.Robot_Sales_Terminal: [ KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_1_3_star_Blessing, KEYWORDS_ROGUE_EVENT_OPTION.Purchase_a_1_2_star_Blessing, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_34 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_3c49 ], KEYWORDS_ROGUE_EVENT_TITLE.History_Fictionologists: [ KEYWORDS_ROGUE_EVENT_OPTION.Record_of_the_Aeon_of_1, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_4 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_1436 ], # Swarm Disaster KEYWORDS_ROGUE_EVENT_TITLE.Insights_from_the_Universal_Dancer: [ @@ -165,7 +166,7 @@ STRATEGY_COMBAT = { ], KEYWORDS_ROGUE_EVENT_TITLE.Three_Little_Pigs: [ KEYWORDS_ROGUE_EVENT_OPTION.Play_a_bit_with_Sequence_Trotters, - KEYWORDS_ROGUE_EVENT_OPTION.Leave_14 + KEYWORDS_ROGUE_EVENT_OPTION.Leave_b5f1 ] } # Aggressive diff --git a/tasks/rogue/keywords/event_option.py b/tasks/rogue/keywords/event_option.py index 13405db41..7750a4c68 100644 --- a/tasks/rogue/keywords/event_option.py +++ b/tasks/rogue/keywords/event_option.py @@ -3,9 +3,9 @@ from .classes import RogueEventOption # This file was auto-generated, do not modify it manually. To generate: # ``` python -m dev_tools.keyword_extract ``` -Worship_Aeons_1 = RogueEventOption( +Worship_Aeons = RogueEventOption( id=1, - name='Worship_Aeons_1', + name='Worship_Aeons', cn='信仰星神。', cht='信仰星神。', en='Worship Aeons.', @@ -48,27 +48,27 @@ Enhance_2_random_Blessings = RogueEventOption( jp='ランダムな祝福を2個強化する', es='Potencias 2 bendiciones al azar.', ) -Leave_2 = RogueEventOption( +Leave_1436 = RogueEventOption( id=6, - name='Leave_2', + name='Leave_1436', cn='离开。', cht='離開。', en='Leave.', jp='離れる', es='Márchate.', ) -Claim_an_equal_amount_of_Data_Exchange_2 = RogueEventOption( +Claim_an_equal_amount_of_Data_Exchange = RogueEventOption( id=7, - name='Claim_an_equal_amount_of_Data_Exchange_2', + name='Claim_an_equal_amount_of_Data_Exchange', cn='领取等量的『数据兑换』。', cht='領取等量的「資料兌換」。', en='Claim an equal amount of "Data Exchange."', jp='等量の『データ交換』を受け取る', es='Recoge la misma cantidad de "intercambio de datos".', ) -Leave_2 = RogueEventOption( +Leave_0837 = RogueEventOption( id=8, - name='Leave_2', + name='Leave_0837', cn='离开', cht='離開', en='Leave', @@ -120,17 +120,8 @@ Record_of_the_Aeon_of_1 = RogueEventOption( jp='#1の星神に関する記載', es='Registros del Eón (#1).', ) -Leave_4 = RogueEventOption( - id=14, - name='Leave_4', - cn='离开。', - cht='離開。', - en='Leave.', - jp='離れる', - es='Márchate.', -) Let_Elation_override_the_other_records = RogueEventOption( - id=15, + id=14, name='Let_Elation_override_the_other_records', cn='让「欢愉」覆盖别的记载!', cht='讓「歡愉」覆蓋別的記載!', @@ -139,7 +130,7 @@ Let_Elation_override_the_other_records = RogueEventOption( es='¡Deja que la Exultación sobrescriba los demás registros!', ) Editing_records_of_the_Remembrance = RogueEventOption( - id=16, + id=15, name='Editing_records_of_the_Remembrance', cn='改写关于「记忆」的记载。', cht='改寫關於「記憶」的記載。', @@ -148,7 +139,7 @@ Editing_records_of_the_Remembrance = RogueEventOption( es='Edita los registros de la Reminiscencia.', ) Jim_Hulk_collection = RogueEventOption( - id=17, + id=16, name='Jim_Hulk_collection', cn='杰姆·哈克的藏品。', cht='傑姆·哈克的收藏。', @@ -156,9 +147,9 @@ Jim_Hulk_collection = RogueEventOption( jp='ジェム・ハックの所蔵品', es='Colección de Jim Hulk.', ) -Walk_away_5 = RogueEventOption( - id=18, - name='Walk_away_5', +Walk_away = RogueEventOption( + id=17, + name='Walk_away', cn='转身走开。', cht='轉身走開。', en='Walk away.', @@ -166,7 +157,7 @@ Walk_away_5 = RogueEventOption( es='Te marchas.', ) Preserve_Jim_Hulk_remains = RogueEventOption( - id=19, + id=18, name='Preserve_Jim_Hulk_remains', cn='保存杰姆·哈克的遗体。', cht='保存傑姆•哈克的遺體。', @@ -175,7 +166,7 @@ Preserve_Jim_Hulk_remains = RogueEventOption( es='Conserva los restos de Jim Hulk.', ) Pay_the_price_Continue_its_operation = RogueEventOption( - id=20, + id=19, name='Pay_the_price_Continue_its_operation', cn='付出代价…延续它的运转。', cht='付出代價……延續它的運轉。', @@ -184,7 +175,7 @@ Pay_the_price_Continue_its_operation = RogueEventOption( es='Paga el precio... Y continúa las operaciones.', ) A_box_of_expired_doughnuts = RogueEventOption( - id=21, + id=20, name='A_box_of_expired_doughnuts', cn='一盒过期甜甜圈。', cht='一盒過期甜甜圈。', @@ -193,7 +184,7 @@ A_box_of_expired_doughnuts = RogueEventOption( es='Una caja de rosquillas caducadas.', ) A_lotus_that_can_sing_the_Happy_Birthday_song = RogueEventOption( - id=22, + id=21, name='A_lotus_that_can_sing_the_Happy_Birthday_song', cn='会唱生日快乐的莲花。', cht='會唱〈生日快樂〉的蓮花。', @@ -202,7 +193,7 @@ A_lotus_that_can_sing_the_Happy_Birthday_song = RogueEventOption( es='Un loto que puede cantar cumpleaños feliz.', ) A_mechanical_box = RogueEventOption( - id=23, + id=22, name='A_mechanical_box', cn='机械匣子。', cht='機械盒子。', @@ -211,7 +202,7 @@ A_mechanical_box = RogueEventOption( es='Una caja mecánica.', ) Leave_this_place = RogueEventOption( - id=24, + id=23, name='Leave_this_place', cn='离开这里。', cht='離開這裡。', @@ -220,7 +211,7 @@ Leave_this_place = RogueEventOption( es='Deja este lugar.', ) Smash_this_television = RogueEventOption( - id=25, + id=24, name='Smash_this_television', cn='打碎这个电视机!', cht='打碎這台電視機!', @@ -229,7 +220,7 @@ Smash_this_television = RogueEventOption( es='¡Destruye este televisor!', ) Give_everything_to_them = RogueEventOption( - id=26, + id=25, name='Give_everything_to_them', cn='将一切奉献给「祂」。', cht='將一切奉獻給「祂」。', @@ -238,7 +229,7 @@ Give_everything_to_them = RogueEventOption( es='Dedícalo todo a "ellos".', ) Bear_ten_carats_of_trash = RogueEventOption( - id=27, + id=26, name='Bear_ten_carats_of_trash', cn='承担十克拉的垃圾。', cht='承擔十克拉的垃圾。', @@ -247,7 +238,7 @@ Bear_ten_carats_of_trash = RogueEventOption( es='Toma 10 quilates de basura.', ) Worship_the_Aeon_of_Remembrance = RogueEventOption( - id=28, + id=27, name='Worship_the_Aeon_of_Remembrance', cn='信仰「记忆」的星神。', cht='信仰「記憶」的星神。', @@ -256,7 +247,7 @@ Worship_the_Aeon_of_Remembrance = RogueEventOption( es='Adora al Eón de la Reminiscencia.', ) Burn_the_memories_you_long_to_forget = RogueEventOption( - id=29, + id=28, name='Burn_the_memories_you_long_to_forget', cn='焚烧你渴望遗忘的「记忆」。', cht='焚燒你渴望遺忘的「記憶」。', @@ -265,7 +256,7 @@ Burn_the_memories_you_long_to_forget = RogueEventOption( es='Quema los recuerdos que quieres olvidar.', ) Musical = RogueEventOption( - id=30, + id=29, name='Musical', cn='歌舞片。', cht='歌舞片。', @@ -274,7 +265,7 @@ Musical = RogueEventOption( es='Musical.', ) Action = RogueEventOption( - id=31, + id=30, name='Action', cn='动作片。', cht='動作片。', @@ -283,7 +274,7 @@ Action = RogueEventOption( es='Acción.', ) Please_let_me_live = RogueEventOption( - id=32, + id=31, name='Please_let_me_live', cn='请放我一条生路。', cht='請放我一條生路。', @@ -292,7 +283,7 @@ Please_let_me_live = RogueEventOption( es='Por favor, déjame vivir.', ) Watch_the_secret_flick_A_Moment = RogueEventOption( - id=33, + id=32, name='Watch_the_secret_flick_A_Moment', cn='观看「瞬间」的秘密影片。', cht='觀看「瞬間」的秘密影片。', @@ -301,7 +292,7 @@ Watch_the_secret_flick_A_Moment = RogueEventOption( es='Ve la película secreta «Un instante».', ) Watch_the_secret_flick_Life = RogueEventOption( - id=34, + id=33, name='Watch_the_secret_flick_Life', cn='观看「生命」的秘密影片。', cht='觀看「生命」的秘密影片。', @@ -310,7 +301,7 @@ Watch_the_secret_flick_Life = RogueEventOption( es='Ve la película secreta «Vida».', ) Climb_into_the_pipes_to_the_left = RogueEventOption( - id=35, + id=34, name='Climb_into_the_pipes_to_the_left', cn='爬进左边的管道。', cht='爬進左邊的管道。', @@ -319,7 +310,7 @@ Climb_into_the_pipes_to_the_left = RogueEventOption( es='Sube a las tuberías de la izquierda.', ) Jump_onto_the_bricks_to_the_right = RogueEventOption( - id=36, + id=35, name='Jump_onto_the_bricks_to_the_right', cn='跳上右边的砖块。', cht='跳上右邊的磚塊。', @@ -328,7 +319,7 @@ Jump_onto_the_bricks_to_the_right = RogueEventOption( es='Salta sobre los ladrillos de la derecha.', ) Hop_around_and_explore_the_hidden_bricks = RogueEventOption( - id=37, + id=36, name='Hop_around_and_explore_the_hidden_bricks', cn='四处乱蹦,探索隐藏砖块!', cht='四處亂蹦,探索隱藏磚塊!', @@ -337,7 +328,7 @@ Hop_around_and_explore_the_hidden_bricks = RogueEventOption( es='¡Salta y explora los ladrillos ocultos!', ) Climb_the_farthest_vine = RogueEventOption( - id=38, + id=37, name='Climb_the_farthest_vine', cn='爬上最远端的藤蔓。', cht='爬上最遠端的藤蔓。', @@ -346,7 +337,7 @@ Climb_the_farthest_vine = RogueEventOption( es='Sube a la enredadera más lejana.', ) Pat_it_lightly = RogueEventOption( - id=39, + id=38, name='Pat_it_lightly', cn='轻轻拍它一下。', cht='輕輕拍它一下。', @@ -355,7 +346,7 @@ Pat_it_lightly = RogueEventOption( es='Le das unas palmaditas.', ) Hit_it_hard = RogueEventOption( - id=40, + id=39, name='Hit_it_hard', cn='狠狠重击!', cht='狠狠重擊!', @@ -364,7 +355,7 @@ Hit_it_hard = RogueEventOption( es='¡Dale fuerte!', ) Twist_the_switch_on_the_doll_bottom = RogueEventOption( - id=41, + id=40, name='Twist_the_switch_on_the_doll_bottom', cn='拧一下玩偶屁股上的开关!', cht='擰一下玩偶屁股上的開關!', @@ -372,18 +363,18 @@ Twist_the_switch_on_the_doll_bottom = RogueEventOption( jp='人形のお尻のスイッチを回す!', es='¡Gira el interruptor en la base de la muñeca!', ) -Directly_receive_the_I_O_U_Dispenser_investment_reward_10 = RogueEventOption( - id=42, - name='Directly_receive_the_I_O_U_Dispenser_investment_reward_10', +Directly_receive_the_I_O_U_Dispenser_investment_reward = RogueEventOption( + id=41, + name='Directly_receive_the_I_O_U_Dispenser_investment_reward', cn='直接获得谢债发行机的投资奖励。', cht='直接獲得謝債發行機的投資獎勵。', en="Directly receive the I.O.U. Dispenser's investment reward.", jp='謝債発行機の投資報酬を直接獲得する', es='Recibe directamente la recompensa de inversión del Dispensador de deuda.', ) -I_ll_buy_it = RogueEventOption( - id=43, - name='I_ll_buy_it', +I_ll_buy_it_f619 = RogueEventOption( + id=42, + name='I_ll_buy_it_f619', cn='我买下了。', cht='我買下了。', en="I'll buy it.", @@ -391,7 +382,7 @@ I_ll_buy_it = RogueEventOption( es='Lo compraré.', ) You_re_not_a_reliable_investment_manager = RogueEventOption( - id=44, + id=43, name='You_re_not_a_reliable_investment_manager', cn='你不是一个值得信任的*投资经理*。', cht='你不是一個值得信任的*投資經理*。', @@ -400,7 +391,7 @@ You_re_not_a_reliable_investment_manager = RogueEventOption( es='No eres {F#una}{M#un} "{F#gestora}{M#gestor} de inversiones" fiable.', ) I_hate_this_era = RogueEventOption( - id=45, + id=44, name='I_hate_this_era', cn='我讨厌这个时代。', cht='我討厭這個時代。', @@ -409,7 +400,7 @@ I_hate_this_era = RogueEventOption( es='Odio esta época.', ) I_want_money = RogueEventOption( - id=46, + id=45, name='I_want_money', cn='我想要钱。', cht='我想要錢。', @@ -418,7 +409,7 @@ I_want_money = RogueEventOption( es='Quiero dinero.', ) I_want_love = RogueEventOption( - id=47, + id=46, name='I_want_love', cn='我想要*爱*。', cht='我想要*愛*。', @@ -427,7 +418,7 @@ I_want_love = RogueEventOption( es='Quiero "amor".', ) I_don_t_want_anything_This_is_very_nihilistic = RogueEventOption( - id=48, + id=47, name='I_don_t_want_anything_This_is_very_nihilistic', cn='我什么也不想要,这很虚无。', cht='我什麼也不想要,這很虛無。', @@ -436,7 +427,7 @@ I_don_t_want_anything_This_is_very_nihilistic = RogueEventOption( es='No quiero nada. Esto es muy nihilista.', ) I_don_t_need_it = RogueEventOption( - id=49, + id=48, name='I_don_t_need_it', cn='我不需要。', cht='我不需要。', @@ -444,18 +435,18 @@ I_don_t_need_it = RogueEventOption( jp='必要ない', es='No lo necesito.', ) -Directly_receive_the_I_O_U_Dispenser_investment_reward_11 = RogueEventOption( - id=50, - name='Directly_receive_the_I_O_U_Dispenser_investment_reward_11', - cn='直接获得谢债发行机的投资奖励。', - cht='直接獲得謝債發行機的投資獎勵。', - en="Directly receive the I.O.U. Dispenser's investment reward.", - jp='謝債発行機の投資報酬を直接獲得する', - es='Recibe directamente la recompensa de inversión del Dispensador de deuda.', +I_ll_buy_it_f1b5 = RogueEventOption( + id=49, + name='I_ll_buy_it_f1b5', + cn='我买了。', + cht='我買了。', + en="I'll buy it.", + jp='買おう', + es='Lo compraré.', ) -Claim_an_investment_insurance_policy_11 = RogueEventOption( - id=51, - name='Claim_an_investment_insurance_policy_11', +Claim_an_investment_insurance_policy = RogueEventOption( + id=50, + name='Claim_an_investment_insurance_policy', cn='索求一份投资保险。', cht='索求一份投資保險。', en='Claim an investment insurance policy.', @@ -463,7 +454,7 @@ Claim_an_investment_insurance_policy_11 = RogueEventOption( es='Reclama una póliza de seguro de inversión.', ) Discard_the_statue_Be_decisive = RogueEventOption( - id=52, + id=51, name='Discard_the_statue_Be_decisive', cn='丢下雕像!要果断。', cht='丟下雕像!要果斷。', @@ -472,7 +463,7 @@ Discard_the_statue_Be_decisive = RogueEventOption( es='¡Suelta la estatua! Con decisión.', ) Believe_in_them_with_pure_devotion = RogueEventOption( - id=53, + id=52, name='Believe_in_them_with_pure_devotion', cn='对「祂」虔诚信仰,身心无垢。', cht='對「祂」虔誠信仰,身心無垢。', @@ -480,17 +471,8 @@ Believe_in_them_with_pure_devotion = RogueEventOption( jp='「其」に対する敬虔な信仰は、無垢である', es='Cree en "ellos" con gran devoción.', ) -Claim_an_investment_insurance_policy_12 = RogueEventOption( - id=54, - name='Claim_an_investment_insurance_policy_12', - cn='索求一份投资保险。', - cht='索求一份投資保險。', - en='Claim an investment insurance policy.', - jp='投資保険への加入を要請する', - es='Reclama una póliza de seguro de inversión.', -) Mania_takes_over_you = RogueEventOption( - id=55, + id=53, name='Mania_takes_over_you', cn='狂热吞没了你…', cht='狂熱吞沒了你……', @@ -499,7 +481,7 @@ Mania_takes_over_you = RogueEventOption( es='La locura se apodera de ti...', ) Go_deeper_into_the_insect_nest = RogueEventOption( - id=56, + id=54, name='Go_deeper_into_the_insect_nest', cn='深入虫巢。', cht='深入蟲巢。', @@ -508,7 +490,7 @@ Go_deeper_into_the_insect_nest = RogueEventOption( es='Adéntrate en el nido de insectos.', ) Hug_it = RogueEventOption( - id=57, + id=55, name='Hug_it', cn='拥抱它。', cht='擁抱它。', @@ -517,7 +499,7 @@ Hug_it = RogueEventOption( es='Abrázalo.', ) Wait_for_them = RogueEventOption( - id=58, + id=56, name='Wait_for_them', cn='等待「祂」。', cht='等待「祂」。', @@ -526,7 +508,7 @@ Wait_for_them = RogueEventOption( es='Espéralos.', ) Stop_at_the_entrance_of_the_nest = RogueEventOption( - id=59, + id=57, name='Stop_at_the_entrance_of_the_nest', cn='止步于巢穴门口。', cht='止步於巢穴門口。', @@ -535,7 +517,7 @@ Stop_at_the_entrance_of_the_nest = RogueEventOption( es='Detente en la entrada del nido.', ) Enter_the_Insect_Nest_and_snuff_them_out = RogueEventOption( - id=60, + id=58, name='Enter_the_Insect_Nest_and_snuff_them_out', cn='进入虫巢,绞杀它们!', cht='進入蟲巢,絞殺牠們!', @@ -544,7 +526,7 @@ Enter_the_Insect_Nest_and_snuff_them_out = RogueEventOption( es='¡Entra en el nido de insectos y sácalos!', ) Save_a_Bug_Bubble = RogueEventOption( - id=61, + id=59, name='Save_a_Bug_Bubble', cn='保存一枚「虫泡」。', cht='保存一枚「蟲泡」。', @@ -553,7 +535,7 @@ Save_a_Bug_Bubble = RogueEventOption( es='Guarda un saco de huevos.', ) Play_a_bit_with_Sequence_Trotters = RogueEventOption( - id=62, + id=60, name='Play_a_bit_with_Sequence_Trotters', cn='和序列扑满玩一下。', cht='和序列撲滿玩一下。', @@ -561,9 +543,9 @@ Play_a_bit_with_Sequence_Trotters = RogueEventOption( jp='序列プーマンと遊ぶ', es='Juega un rato con el Chanchito Secuencial.', ) -Leave_14 = RogueEventOption( - id=63, - name='Leave_14', +Leave_b5f1 = RogueEventOption( + id=61, + name='Leave_b5f1', cn='离去。', cht='離去。', en='Leave.', @@ -571,7 +553,7 @@ Leave_14 = RogueEventOption( es='Márchate.', ) Excellent_Trotter_catching_skills_Gotta_be_fast = RogueEventOption( - id=64, + id=62, name='Excellent_Trotter_catching_skills_Gotta_be_fast', cn='优秀的捉扑满技巧…速度要快!', cht='優秀的捉撲滿技巧……速度要快!', @@ -580,7 +562,7 @@ Excellent_Trotter_catching_skills_Gotta_be_fast = RogueEventOption( es='Excelentes habilidades para atrapar Chanchitos... ¡Hay que moverse con rapidez!', ) You_pass_on_a_good_sense_of_safeguarding_against_Trotters = RogueEventOption( - id=65, + id=63, name='You_pass_on_a_good_sense_of_safeguarding_against_Trotters', cn='你传达了良好的扑满保护意识。', cht='你傳達了良好的撲滿保護意識。', @@ -589,7 +571,7 @@ You_pass_on_a_good_sense_of_safeguarding_against_Trotters = RogueEventOption( es='Transmites mucha confianza en lo relativo a la protección de Chanchitos.', ) Head_into_the_darkness = RogueEventOption( - id=66, + id=64, name='Head_into_the_darkness', cn='前往黑暗。', cht='前往黑暗。', @@ -598,7 +580,7 @@ Head_into_the_darkness = RogueEventOption( es='Adéntrate en la oscuridad.', ) Fight_the_pull = RogueEventOption( - id=67, + id=65, name='Fight_the_pull', cn='对抗引力。', cht='對抗引力。', @@ -607,7 +589,7 @@ Fight_the_pull = RogueEventOption( es='Lucha contra la gravedad.', ) Enjoy_something = RogueEventOption( - id=68, + id=66, name='Enjoy_something', cn='享受其中…', cht='享受其中……', @@ -616,7 +598,7 @@ Enjoy_something = RogueEventOption( es='Disfruta de algo...', ) Thank_the_Aeon_Qlipoth = RogueEventOption( - id=69, + id=67, name='Thank_the_Aeon_Qlipoth', cn='感恩克里珀星神。', cht='感恩克里珀星神。', @@ -624,17 +606,8 @@ Thank_the_Aeon_Qlipoth = RogueEventOption( jp='星神クリフォトに感謝する', es='Gracias al Eón Qlipoth.', ) -Leave_16 = RogueEventOption( - id=70, - name='Leave_16', - cn='离开。', - cht='離開。', - en='Leave.', - jp='離れる', - es='Márchate.', -) Accept_the_flames_of_Self_destruction_and_destroy_the_black_box = RogueEventOption( - id=71, + id=68, name='Accept_the_flames_of_Self_destruction_and_destroy_the_black_box', cn='接受「自灭」的火种,摧毁黑匣。', cht='接受「自滅」的火種,摧毀黑盒子。', @@ -642,9 +615,9 @@ Accept_the_flames_of_Self_destruction_and_destroy_the_black_box = RogueEventOpti jp='「自滅」の火種を受け入れ、ブラックボックスを破壊する', es='Acepta las llamas de la "autodestrucción" y destruye la caja negra.', ) -Refuse_17 = RogueEventOption( - id=72, - name='Refuse_17', +Refuse_54fd = RogueEventOption( + id=69, + name='Refuse_54fd', cn='拒绝。', cht='拒絕。', en='Refuse.', @@ -652,7 +625,7 @@ Refuse_17 = RogueEventOption( es='Recházalo.', ) Hurry_and_terminate_black_box_Get_it_out = RogueEventOption( - id=73, + id=70, name='Hurry_and_terminate_black_box_Get_it_out', cn='抓紧时间终止黑匣;将其救出。', cht='抓緊時間終止黑匣,將其救出。', @@ -661,7 +634,7 @@ Hurry_and_terminate_black_box_Get_it_out = RogueEventOption( es='Date prisa y acaba con la caja negra. Sácalo todo.', ) Purchase_a_metal_Wish_In_A_Bottle = RogueEventOption( - id=74, + id=71, name='Purchase_a_metal_Wish_In_A_Bottle', cn='购买金属许愿瓶。', cht='購買金屬許願瓶。', @@ -669,153 +642,54 @@ Purchase_a_metal_Wish_In_A_Bottle = RogueEventOption( jp='金属のウィッシュボトルを買う', es='Compra una botella de los deseos de metal.', ) -Purchase_a_silver_ore_Wish_In_A_Bottle_18 = RogueEventOption( +Purchase_a_silver_ore_Wish_In_A_Bottle = RogueEventOption( + id=72, + name='Purchase_a_silver_ore_Wish_In_A_Bottle', + cn='购买银矿许愿瓶。', + cht='購買銀礦許願瓶。', + en='Purchase a silver ore Wish-In-A-Bottle.', + jp='銀鉱のウィッシュボトルを買う', + es='Compra una botella de los deseos de plata.', +) +Leave_4fa0 = RogueEventOption( + id=73, + name='Leave_4fa0', + cn='走开。', + cht='走開。', + en='Leave.', + jp='去る', + es='Márchate.', +) +Purchase_an_amber_Wish_In_A_Bottle = RogueEventOption( + id=74, + name='Purchase_an_amber_Wish_In_A_Bottle', + cn='购买琥珀许愿匣。', + cht='購買琥珀許願匣。', + en='Purchase an amber Wish-In-A-Bottle.', + jp='琥珀のウィッシュボックスを買う', + es='Compra una botella de los deseos de ámbar.', +) +Purchase_a_supernium_Wish_In_A_Bottle = RogueEventOption( id=75, - name='Purchase_a_silver_ore_Wish_In_A_Bottle_18', - cn='购买银矿许愿瓶。', - cht='購買銀礦許願瓶。', - en='Purchase a silver ore Wish-In-A-Bottle.', - jp='銀鉱のウィッシュボトルを買う', - es='Compra una botella de los deseos de plata.', + name='Purchase_a_supernium_Wish_In_A_Bottle', + cn='购买超钛许愿匣。', + cht='購買超鈦許願匣。', + en='Purchase a supernium Wish-In-A-Bottle.', + jp='スーパーチタンのウィッシュボックスを買う', + es='Compra una botella de los deseos de supernio.', ) -Leave_18 = RogueEventOption( +Purchase_a_diamond_box = RogueEventOption( id=76, - name='Leave_18', - cn='走开。', - cht='走開。', - en='Leave.', - jp='去る', - es='Márchate.', + name='Purchase_a_diamond_box', + cn='购买一个钻石盒。', + cht='購買一個鑽石盒。', + en='Purchase a diamond box.', + jp='ダイヤモンドケースを1つ買う', + es='Compra una caja de diamante.', ) -Purchase_an_amber_Wish_In_A_Bottle_18 = RogueEventOption( +Purchase_an_ore_box = RogueEventOption( id=77, - name='Purchase_an_amber_Wish_In_A_Bottle_18', - cn='购买琥珀许愿匣。', - cht='購買琥珀許願匣。', - en='Purchase an amber Wish-In-A-Bottle.', - jp='琥珀のウィッシュボックスを買う', - es='Compra una botella de los deseos de ámbar.', -) -Purchase_a_supernium_Wish_In_A_Bottle_18 = RogueEventOption( - id=78, - name='Purchase_a_supernium_Wish_In_A_Bottle_18', - cn='购买超钛许愿匣。', - cht='購買超鈦許願匣。', - en='Purchase a supernium Wish-In-A-Bottle.', - jp='スーパーチタンのウィッシュボックスを買う', - es='Compra una botella de los deseos de supernio.', -) -Purchase_a_diamond_box_18 = RogueEventOption( - id=79, - name='Purchase_a_diamond_box_18', - cn='购买一个钻石盒。', - cht='購買一個鑽石盒。', - en='Purchase a diamond box.', - jp='ダイヤモンドケースを1つ買う', - es='Compra una caja de diamante.', -) -Purchase_an_ore_box_18 = RogueEventOption( - id=80, - name='Purchase_an_ore_box_18', - cn='购买一个原矿盒。', - cht='購買一個原礦盒。', - en='Purchase an ore box.', - jp='原石ケースを1つ買う', - es='Compra una caja de mineral.', -) -Purchase_a_silver_ore_Wish_In_A_Bottle_19 = RogueEventOption( - id=81, - name='Purchase_a_silver_ore_Wish_In_A_Bottle_19', - cn='购买银矿许愿瓶。', - cht='購買銀礦許願瓶。', - en='Purchase a silver ore Wish-In-A-Bottle.', - jp='銀鉱のウィッシュボトルを買う', - es='Compra una botella de los deseos de plata.', -) -Leave_19 = RogueEventOption( - id=82, - name='Leave_19', - cn='走开。', - cht='走開。', - en='Leave.', - jp='去る', - es='Márchate.', -) -Purchase_an_amber_Wish_In_A_Bottle_19 = RogueEventOption( - id=83, - name='Purchase_an_amber_Wish_In_A_Bottle_19', - cn='购买琥珀许愿匣。', - cht='購買琥珀許願匣。', - en='Purchase an amber Wish-In-A-Bottle.', - jp='琥珀のウィッシュボックスを買う', - es='Compra una botella de los deseos de ámbar.', -) -Purchase_a_supernium_Wish_In_A_Bottle_19 = RogueEventOption( - id=84, - name='Purchase_a_supernium_Wish_In_A_Bottle_19', - cn='购买超钛许愿匣。', - cht='購買超鈦許願匣。', - en='Purchase a supernium Wish-In-A-Bottle.', - jp='スーパーチタンのウィッシュボックスを買う', - es='Compra una botella de los deseos de supernio.', -) -Purchase_a_diamond_box_19 = RogueEventOption( - id=85, - name='Purchase_a_diamond_box_19', - cn='购买一个钻石盒。', - cht='購買一個鑽石盒。', - en='Purchase a diamond box.', - jp='ダイヤモンドケースを1つ買う', - es='Compra una caja de diamante.', -) -Purchase_an_ore_box_19 = RogueEventOption( - id=86, - name='Purchase_an_ore_box_19', - cn='购买一个原矿盒。', - cht='購買一個原礦盒。', - en='Purchase an ore box.', - jp='原石ケースを1つ買う', - es='Compra una caja de mineral.', -) -Leave_20 = RogueEventOption( - id=87, - name='Leave_20', - cn='走开。', - cht='走開。', - en='Leave.', - jp='去る', - es='Márchate.', -) -Purchase_an_amber_Wish_In_A_Bottle_20 = RogueEventOption( - id=88, - name='Purchase_an_amber_Wish_In_A_Bottle_20', - cn='购买琥珀许愿匣。', - cht='購買琥珀許願匣。', - en='Purchase an amber Wish-In-A-Bottle.', - jp='琥珀のウィッシュボックスを買う', - es='Compra una botella de los deseos de ámbar.', -) -Purchase_a_supernium_Wish_In_A_Bottle_20 = RogueEventOption( - id=89, - name='Purchase_a_supernium_Wish_In_A_Bottle_20', - cn='购买超钛许愿匣。', - cht='購買超鈦許願匣。', - en='Purchase a supernium Wish-In-A-Bottle.', - jp='スーパーチタンのウィッシュボックスを買う', - es='Compra una botella de los deseos de supernio.', -) -Purchase_a_diamond_box_20 = RogueEventOption( - id=90, - name='Purchase_a_diamond_box_20', - cn='购买一个钻石盒。', - cht='購買一個鑽石盒。', - en='Purchase a diamond box.', - jp='ダイヤモンドケースを1つ買う', - es='Compra una caja de diamante.', -) -Purchase_an_ore_box_20 = RogueEventOption( - id=91, - name='Purchase_an_ore_box_20', + name='Purchase_an_ore_box', cn='购买一个原矿盒。', cht='購買一個原礦盒。', en='Purchase an ore box.', @@ -823,7 +697,7 @@ Purchase_an_ore_box_20 = RogueEventOption( es='Compra una caja de mineral.', ) Swallow_the_other_fish_eye_and_continue_to_enjoy_the_massage = RogueEventOption( - id=92, + id=78, name='Swallow_the_other_fish_eye_and_continue_to_enjoy_the_massage', cn='吞下另一只*鱼眼*,继续享受按摩。', cht='吞下另一隻*魚眼*,繼續享受按摩。', @@ -832,7 +706,7 @@ Swallow_the_other_fish_eye_and_continue_to_enjoy_the_massage = RogueEventOption( es='Te tragas el otro ojo de pez y sigues disfrutando del masaje.', ) Return_to_work = RogueEventOption( - id=93, + id=79, name='Return_to_work', cn='回去上班。', cht='回去上班。', @@ -841,7 +715,7 @@ Return_to_work = RogueEventOption( es='Vuelve al trabajo.', ) Never_go_to_work_again_Never = RogueEventOption( - id=94, + id=80, name='Never_go_to_work_again_Never', cn='永远的不上班了!永远的……', cht='永遠不上班了!永遠……', @@ -850,7 +724,7 @@ Never_go_to_work_again_Never = RogueEventOption( es='¡No vuelvas a trabajar! Nunca...', ) Catch_more_fish_eyes = RogueEventOption( - id=95, + id=81, name='Catch_more_fish_eyes', cn='捕获更多鱼眼……', cht='捕獲更多魚眼……', @@ -858,135 +732,45 @@ Catch_more_fish_eyes = RogueEventOption( jp='もっと多くの魚眼を捕獲する……', es='Atrapa más ojos de pez...', ) -Pick_Sal_22 = RogueEventOption( - id=96, - name='Pick_Sal_22', +Pick_Sal = RogueEventOption( + id=82, + name='Pick_Sal', cn='选择萨里。', cht='選擇薩里。', en='Pick Sal.', jp='サリを選ぶ', es='Elige a Sal.', ) -Pick_Leo_22 = RogueEventOption( - id=97, - name='Pick_Leo_22', +Pick_Leo = RogueEventOption( + id=83, + name='Pick_Leo', cn='选择里奥。', cht='選擇里奧。', en='Pick Leo.', jp='リオを選ぶ', es='Elige a Leo.', ) -Let_Leo_out_22 = RogueEventOption( - id=98, - name='Let_Leo_out_22', +Let_Leo_out = RogueEventOption( + id=84, + name='Let_Leo_out', cn='让里奥出来吧。', cht='讓里奧出來吧。', en='Let Leo out.', jp='リオに出てきてもらう', es='Deja salir a Leo.', ) -Let_Sal_out_22 = RogueEventOption( - id=99, - name='Let_Sal_out_22', +Let_Sal_out = RogueEventOption( + id=85, + name='Let_Sal_out', cn='让萨里出来吧。', cht='讓薩里出來吧。', en='Let Sal out.', jp='サリに出てきてもらう', es='Deja salir a Sal.', ) -Mix_the_two_personalities_together_22 = RogueEventOption( - id=100, - name='Mix_the_two_personalities_together_22', - cn='把两种人格混在一起。', - cht='把兩種人格混在一起。', - en='Mix the two personalities together.', - jp='2種類の人格を混ぜる', - es='Mezcla las dos personalidades.', -) -Pick_Leo_23 = RogueEventOption( - id=101, - name='Pick_Leo_23', - cn='选择里奥。', - cht='選擇里奧。', - en='Pick Leo.', - jp='リオを選ぶ', - es='Elige a Leo.', -) -Pick_Sal_23 = RogueEventOption( - id=102, - name='Pick_Sal_23', - cn='选择萨里。', - cht='選擇薩里。', - en='Pick Sal.', - jp='サリを選ぶ', - es='Elige a Sal.', -) -Let_Leo_out_23 = RogueEventOption( - id=103, - name='Let_Leo_out_23', - cn='让里奥出来吧。', - cht='讓里奧出來吧。', - en='Let Leo out.', - jp='リオに出てきてもらう', - es='Deja salir a Leo.', -) -Let_Sal_out_23 = RogueEventOption( - id=104, - name='Let_Sal_out_23', - cn='让萨里出来吧。', - cht='讓薩里出來吧。', - en='Let Sal out.', - jp='サリに出てきてもらう', - es='Deja salir a Sal.', -) -Mix_the_two_personalities_together_23 = RogueEventOption( - id=105, - name='Mix_the_two_personalities_together_23', - cn='把两种人格混在一起。', - cht='把兩種人格混在一起。', - en='Mix the two personalities together.', - jp='2種類の人格を混ぜる', - es='Mezcla las dos personalidades.', -) -Pick_Sal_24 = RogueEventOption( - id=106, - name='Pick_Sal_24', - cn='选择萨里。', - cht='選擇薩里。', - en='Pick Sal.', - jp='サリを選ぶ', - es='Elige a Sal.', -) -Let_Leo_out_24 = RogueEventOption( - id=107, - name='Let_Leo_out_24', - cn='让里奥出来吧。', - cht='讓里奧出來吧。', - en='Let Leo out.', - jp='リオに出てきてもらう', - es='Deja salir a Leo.', -) -Pick_Leo_24 = RogueEventOption( - id=108, - name='Pick_Leo_24', - cn='选择里奥。', - cht='選擇里奧。', - en='Pick Leo.', - jp='リオを選ぶ', - es='Elige a Leo.', -) -Let_Sal_out_24 = RogueEventOption( - id=109, - name='Let_Sal_out_24', - cn='让萨里出来吧。', - cht='讓薩里出來吧。', - en='Let Sal out.', - jp='サリに出てきてもらう', - es='Deja salir a Sal.', -) -Mix_the_two_personalities_together_24 = RogueEventOption( - id=110, - name='Mix_the_two_personalities_together_24', +Mix_the_two_personalities_together = RogueEventOption( + id=86, + name='Mix_the_two_personalities_together', cn='把两种人格混在一起。', cht='把兩種人格混在一起。', en='Mix the two personalities together.', @@ -994,7 +778,7 @@ Mix_the_two_personalities_together_24 = RogueEventOption( es='Mezcla las dos personalidades.', ) Give_him_the_fur_you_re_wearing = RogueEventOption( - id=111, + id=87, name='Give_him_the_fur_you_re_wearing', cn='把身上披的皮毛给他。', cht='把身上披的皮毛給他。', @@ -1002,17 +786,8 @@ Give_him_the_fur_you_re_wearing = RogueEventOption( jp='身にまとっている毛皮を彼にあげる', es='Dale la piel que llevas puesta.', ) -Walk_away_25 = RogueEventOption( - id=112, - name='Walk_away_25', - cn='转身走开。', - cht='轉身走開。', - en='Walk away.', - jp='その場から去る', - es='Te marchas.', -) Rip_off_his_badge = RogueEventOption( - id=113, + id=88, name='Rip_off_his_badge', cn='把他的徽章扯下来!', cht='把他的徽章扯下來!', @@ -1021,7 +796,7 @@ Rip_off_his_badge = RogueEventOption( es='¡Arráncale la placa!', ) Buy_his_calfskin_boots_for_cheap = RogueEventOption( - id=114, + id=89, name='Buy_his_calfskin_boots_for_cheap', cn='低价反收购他的*小牛皮靴*!', cht='低價反收購他的*小牛皮靴*!', @@ -1030,7 +805,7 @@ Buy_his_calfskin_boots_for_cheap = RogueEventOption( es='¡Cómprale sus botas de piel de becerro a bajo precio!', ) Pick_an_Error_Code_Curio = RogueEventOption( - id=115, + id=90, name='Pick_an_Error_Code_Curio', cn='选择一个错误代码奇物。', cht='選擇一個錯誤程式碼奇物。', @@ -1038,17 +813,8 @@ Pick_an_Error_Code_Curio = RogueEventOption( jp='エラーコードの奇物を1個選ぶ', es='Elige un objeto raro de código de error.', ) -Leave_26 = RogueEventOption( - id=116, - name='Leave_26', - cn='离开。', - cht='離開。', - en='Leave.', - jp='離れる', - es='Márchate.', -) Let_the_entropy_increase_more_violently = RogueEventOption( - id=117, + id=91, name='Let_the_entropy_increase_more_violently', cn='让熵增更猛烈些!', cht='讓熵增更猛烈點!', @@ -1057,7 +823,7 @@ Let_the_entropy_increase_more_violently = RogueEventOption( es='¡Que la entropía aumente con más violencia!', ) Recall_the_code_for_the_right_item = RogueEventOption( - id=118, + id=92, name='Recall_the_code_for_the_right_item', cn='回忆起「正确道具」的代码。', cht='回憶起「正確道具」的程式碼。', @@ -1066,7 +832,7 @@ Recall_the_code_for_the_right_item = RogueEventOption( es='Recuerda el código del "artículo correcto".', ) Pay = RogueEventOption( - id=119, + id=93, name='Pay', cn='付钱。', cht='付錢。', @@ -1075,7 +841,7 @@ Pay = RogueEventOption( es='Paga.', ) Protect_the_cowboy_final_honor = RogueEventOption( - id=120, + id=94, name='Protect_the_cowboy_final_honor', cn='保卫「牛仔」最后的名誉。', cht='保衛「牛仔」最後的名譽。', @@ -1084,7 +850,7 @@ Protect_the_cowboy_final_honor = RogueEventOption( es='Protege el honor que le queda al vaquero.', ) Let_them_experience_the_real_cowboy = RogueEventOption( - id=121, + id=95, name='Let_them_experience_the_real_cowboy', cn='让他们见识见识真正的「牛仔」。', cht='讓他們見識見識真正的「牛仔」。', @@ -1093,7 +859,7 @@ Let_them_experience_the_real_cowboy = RogueEventOption( es='Dejémosles probar al verdadero "vaquero".', ) Surrender_immediately = RogueEventOption( - id=122, + id=96, name='Surrender_immediately', cn='直接投降。', cht='直接投降。', @@ -1102,7 +868,7 @@ Surrender_immediately = RogueEventOption( es='Te rindes inmediatamente.', ) Give_up = RogueEventOption( - id=123, + id=97, name='Give_up', cn='放弃。', cht='放棄。', @@ -1111,7 +877,7 @@ Give_up = RogueEventOption( es='Ríndete.', ) Flip_the_card = RogueEventOption( - id=124, + id=98, name='Flip_the_card', cn='翻开牌。', cht='翻開牌。', @@ -1120,7 +886,7 @@ Flip_the_card = RogueEventOption( es='Dale la vuelta a la carta.', ) Fight_for_the_0_63_chance = RogueEventOption( - id=125, + id=99, name='Fight_for_the_0_63_chance', cn='为0.63%的概率而战。', cht='為0.63%的機率而戰。', @@ -1129,7 +895,7 @@ Fight_for_the_0_63_chance = RogueEventOption( es='Lucha por el 0.63% de probabilidades.', ) Pick_the_100_security = RogueEventOption( - id=126, + id=100, name='Pick_the_100_security', cn='选择100%的安全感。', cht='選擇100%的安全感。', @@ -1138,7 +904,7 @@ Pick_the_100_security = RogueEventOption( es='Elige el 100% de seguridad.', ) Acutely_sense_the_vulnerabilities_of_the_astral_computer = RogueEventOption( - id=127, + id=101, name='Acutely_sense_the_vulnerabilities_of_the_astral_computer', cn='敏锐察觉星体计算机的*漏洞*。', cht='敏銳察覺星體電腦的*漏洞*。', @@ -1147,7 +913,7 @@ Acutely_sense_the_vulnerabilities_of_the_astral_computer = RogueEventOption( es='Percibes de forma aguda las vulnerabilidades de la computadora estelar.', ) You_remember_its_rule_Scissors_first = RogueEventOption( - id=128, + id=102, name='You_remember_its_rule_Scissors_first', cn='你想起了它的规律!先出剪刀!', cht='你想起了它的規律!先出剪刀!', @@ -1156,7 +922,7 @@ You_remember_its_rule_Scissors_first = RogueEventOption( es='¡Recuerdas su regla! ¡Las tijeras primero!', ) Challenge_Mr_France_security_team = RogueEventOption( - id=129, + id=103, name='Challenge_Mr_France_security_team', cn='挑战弗朗斯先生的安保团队。', cht='挑戰弗朗斯先生的保全團隊。', @@ -1165,7 +931,7 @@ Challenge_Mr_France_security_team = RogueEventOption( es='Desafía al equipo de seguridad del Sr. France.', ) Challenge_the_burly_Avila_mercenary_company = RogueEventOption( - id=130, + id=104, name='Challenge_the_burly_Avila_mercenary_company', cn='挑战亚威拉壮汉的佣兵集团。', cht='挑戰亞威拉壯漢的傭兵集團。', @@ -1174,7 +940,7 @@ Challenge_the_burly_Avila_mercenary_company = RogueEventOption( es='Desafía a los fornidos mercenarios de Ávila.', ) Fight_both_together = RogueEventOption( - id=131, + id=105, name='Fight_both_together', cn='两个一起打!', cht='兩個一起打!', @@ -1183,7 +949,7 @@ Fight_both_together = RogueEventOption( es='¡Pelea contra dos!', ) And_you_long_for_stronger_guys_to_show_up = RogueEventOption( - id=132, + id=106, name='And_you_long_for_stronger_guys_to_show_up', cn='你还渴望*更强*的家伙出现…', cht='你還渴望*更強*的傢伙出現……', @@ -1192,7 +958,7 @@ And_you_long_for_stronger_guys_to_show_up = RogueEventOption( es='Y estás deseando que aparezcan tipos más fuertes...', ) Bet_on_the_name_of_a_competition_winner = RogueEventOption( - id=133, + id=107, name='Bet_on_the_name_of_a_competition_winner', cn='赌一个擂台赢家的*名字*!', cht='賭一個擂台贏家的*名字*!', @@ -1201,7 +967,7 @@ Bet_on_the_name_of_a_competition_winner = RogueEventOption( es='¡Apuestas por el nombre del ganador de la competición!', ) Hurry_and_delete_the_Cyclic_Demon_Lord_life_algorithm = RogueEventOption( - id=134, + id=108, name='Hurry_and_delete_the_Cyclic_Demon_Lord_life_algorithm', cn='抓紧时间,删除周期性魔王的生命方程。', cht='把握時間,刪除週期性魔王的生命方程式。', @@ -1210,7 +976,7 @@ Hurry_and_delete_the_Cyclic_Demon_Lord_life_algorithm = RogueEventOption( es='Date prisa y borra el algoritmo vital del Rey Demonio Cíclico.', ) Overload_the_Cyclic_Demon_Lord_life_algorithm_and_fight_on = RogueEventOption( - id=135, + id=109, name='Overload_the_Cyclic_Demon_Lord_life_algorithm_and_fight_on', cn='过载周期性魔王的生命方程,争取活下去!', cht='超載週期性魔王的生命方程式,努力活下去!', @@ -1219,7 +985,7 @@ Overload_the_Cyclic_Demon_Lord_life_algorithm_and_fight_on = RogueEventOption( es='¡Sobrecargas el algoritmo vital del Rey Demonio Cíclico y sigues peleando!', ) Blessing_Reforge = RogueEventOption( - id=136, + id=110, name='Blessing_Reforge', cn='祝福重铸', cht='祝福重鑄', @@ -1228,7 +994,7 @@ Blessing_Reforge = RogueEventOption( es='Reforja de bendición', ) Blessing_Exchange = RogueEventOption( - id=137, + id=111, name='Blessing_Exchange', cn='祝福交换', cht='祝福交換', @@ -1236,9 +1002,9 @@ Blessing_Exchange = RogueEventOption( jp='祝福交換', es='Intercambio de bendición', ) -Leave_32 = RogueEventOption( - id=138, - name='Leave_32', +Leave_3c49 = RogueEventOption( + id=112, + name='Leave_3c49', cn='离开', cht='離開', en='Leave', @@ -1246,7 +1012,7 @@ Leave_32 = RogueEventOption( es='Salir.', ) Exchange_your_memories = RogueEventOption( - id=139, + id=113, name='Exchange_your_memories', cn='互换你们的「记忆」。', cht='互換你們的「記憶」。', @@ -1255,7 +1021,7 @@ Exchange_your_memories = RogueEventOption( es='Intercambias recuerdos.', ) Throw_out_your_story_Then_loot_the_Fun_Experiences_from_the_car = RogueEventOption( - id=140, + id=114, name='Throw_out_your_story_Then_loot_the_Fun_Experiences_from_the_car', cn='抛出你的故事!然后从车厢中掠夺「趣味经历」。', cht='拋出你的故事!然後從車廂中掠奪「趣味經歷」。', @@ -1264,7 +1030,7 @@ Throw_out_your_story_Then_loot_the_Fun_Experiences_from_the_car = RogueEventOpti es='¡Te deshaces de tu historia! Acto seguido, saqueas las experiencias divertidas del auto.', ) Exchange_for_a_2_star_Blessing = RogueEventOption( - id=141, + id=115, name='Exchange_for_a_2_star_Blessing', cn='换取1个2星祝福', cht='換取1個二星祝福', @@ -1273,7 +1039,7 @@ Exchange_for_a_2_star_Blessing = RogueEventOption( es='Intercambia por 1 bendición de 2 estrellas', ) Exchange_for_a_3_star_Blessing = RogueEventOption( - id=142, + id=116, name='Exchange_for_a_3_star_Blessing', cn='换取1个3星祝福', cht='換取1個三星祝福', @@ -1281,17 +1047,8 @@ Exchange_for_a_3_star_Blessing = RogueEventOption( jp='★3の祝福を1個交換する', es='Intercambia por 1 bendición de 3 estrellas', ) -Leave_33 = RogueEventOption( - id=143, - name='Leave_33', - cn='离开', - cht='離開', - en='Leave', - jp='立ち去る', - es='Salir.', -) Let_the_sleeping_soldiers_wake_up_again = RogueEventOption( - id=144, + id=117, name='Let_the_sleeping_soldiers_wake_up_again', cn='让沉睡的士兵「再次醒来」。', cht='讓沉睡的士兵「再次醒來」。', @@ -1300,7 +1057,7 @@ Let_the_sleeping_soldiers_wake_up_again = RogueEventOption( es='Dejas que los soldados dormidos despierten nuevamente.', ) Purchase_a_1_2_star_Blessing = RogueEventOption( - id=145, + id=118, name='Purchase_a_1_2_star_Blessing', cn='购买1个1-2星祝福', cht='購買1個一至二星祝福', @@ -1309,7 +1066,7 @@ Purchase_a_1_2_star_Blessing = RogueEventOption( es='Compra 1 bendición de 1-2 estrellas.', ) Purchase_a_1_3_star_Blessing = RogueEventOption( - id=146, + id=119, name='Purchase_a_1_3_star_Blessing', cn='购买1个1-3星祝福', cht='購買1個一至三星祝福', @@ -1317,17 +1074,8 @@ Purchase_a_1_3_star_Blessing = RogueEventOption( jp='★1~3の祝福を1個購入する', es='Compra 1 bendición de 1-3 estrellas.', ) -Leave_34 = RogueEventOption( - id=147, - name='Leave_34', - cn='离开', - cht='離開', - en='Leave', - jp='立ち去る', - es='Salir.', -) You_recall_the_long_forgotten_bargaining_technique = RogueEventOption( - id=148, + id=120, name='You_recall_the_long_forgotten_bargaining_technique', cn='你回想起忘却已久的「还价技巧」。', cht='你回想起忘卻已久的「還價技巧」。', @@ -1336,7 +1084,7 @@ You_recall_the_long_forgotten_bargaining_technique = RogueEventOption( es='Recuerdas la olvidada técnica de regateo.', ) The_protective_net_that_surrounds_the_sales_terminal = RogueEventOption( - id=149, + id=121, name='The_protective_net_that_surrounds_the_sales_terminal', cn='吞没销售终端的「防护网」。', cht='吞沒銷售終端機的「防護網」。', @@ -1345,7 +1093,7 @@ The_protective_net_that_surrounds_the_sales_terminal = RogueEventOption( es='La red de protección que rodea la terminal de ventas.', ) Review_those_geniuse_manuscripts = RogueEventOption( - id=150, + id=122, name='Review_those_geniuse_manuscripts', cn='翻阅那些天才手稿。', cht='翻閱那些天才手稿。', @@ -1354,7 +1102,7 @@ Review_those_geniuse_manuscripts = RogueEventOption( es='Revisa los manuscritos de esos genios.', ) Let_burn_them_up = RogueEventOption( - id=151, + id=123, name='Let_burn_them_up', cn='干脆抢先烧了它!', cht='乾脆搶先燒了它!', @@ -1363,7 +1111,7 @@ Let_burn_them_up = RogueEventOption( es='¡Hay que quemarlo!', ) Speak_with_the_photo_frame = RogueEventOption( - id=152, + id=124, name='Speak_with_the_photo_frame', cn='对着相框说话。', cht='對著相框說話。', @@ -1372,7 +1120,7 @@ Speak_with_the_photo_frame = RogueEventOption( es='Habla con el marco de fotos.', ) Make_a_small_cut_with_a_small_knife = RogueEventOption( - id=153, + id=125, name='Make_a_small_cut_with_a_small_knife', cn='用小刀划一划!', cht='用小刀劃一劃!', @@ -1381,7 +1129,7 @@ Make_a_small_cut_with_a_small_knife = RogueEventOption( es='¡Haz un pequeño corte con un cuchillo!', ) Give_it_a_knock = RogueEventOption( - id=154, + id=126, name='Give_it_a_knock', cn='敲敲它。', cht='敲敲它。', @@ -1389,9 +1137,9 @@ Give_it_a_knock = RogueEventOption( jp='ノックする', es='Dale un golpecito.', ) -Leave_37 = RogueEventOption( - id=155, - name='Leave_37', +Leave_2a92 = RogueEventOption( + id=127, + name='Leave_2a92', cn='走开。', cht='走開。', en='Leave.', @@ -1399,7 +1147,7 @@ Leave_37 = RogueEventOption( es='Márchate.', ) A_certain_nobleman_once_recorded_before_he_fell_into_a_crazed_state = RogueEventOption( - id=156, + id=128, name='A_certain_nobleman_once_recorded_before_he_fell_into_a_crazed_state', cn='某位爵士,在他堕入疯狂之前曾记载…', cht='某位爵士在墮入瘋狂之前曾記載……', @@ -1408,7 +1156,7 @@ A_certain_nobleman_once_recorded_before_he_fell_into_a_crazed_state = RogueEvent es='Cierto noble lo registró alguna vez antes de caer en la locura...', ) A_certain_traveler_with_an_active_imagination_murmurs_to_himself_behind_the_glass_wall_after_being_confined = RogueEventOption( - id=157, + id=129, name='A_certain_traveler_with_an_active_imagination_murmurs_to_himself_behind_the_glass_wall_after_being_confined', cn='某擅长想象的头脑旅行家,在被禁闭后隔着玻璃墙喃喃自语…', cht='某位擅長想像的頭腦旅行家在被禁閉後,隔著玻璃牆喃喃自語……', @@ -1417,7 +1165,7 @@ A_certain_traveler_with_an_active_imagination_murmurs_to_himself_behind_the_glas es='Cierto viajero con una prolífica imaginación murmura para sí mismo detrás de la pared de cristal después de haber sido confinado...', ) A_piece_of_evidence_left_behind_by_a_certain_Armed_Archaeologist_before_they_were_murdered = RogueEventOption( - id=158, + id=130, name='A_piece_of_evidence_left_behind_by_a_certain_Armed_Archaeologist_before_they_were_murdered', cn='某考古武装学派成员,在被谋命前留下的考据…', cht='某考古武裝學派成員在被謀命前留下的考據……', @@ -1425,17 +1173,8 @@ A_piece_of_evidence_left_behind_by_a_certain_Armed_Archaeologist_before_they_wer jp='とある武装考古学派のメンバーが殺害される前に残した考証…', es='Una evidencia que cierto miembro del Cuerpo de Arqueólogos Armados dejó antes de ser asesinado...', ) -Leave_38 = RogueEventOption( - id=159, - name='Leave_38', - cn='走开。', - cht='走開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) Tell_her_about_the_fate_that_she_must_accept = RogueEventOption( - id=160, + id=131, name='Tell_her_about_the_fate_that_she_must_accept', cn='告诉她*必须接受*的命运。', cht='告訴她*必須接受*的命運。', @@ -1444,7 +1183,7 @@ Tell_her_about_the_fate_that_she_must_accept = RogueEventOption( es='Cuéntale sobre el destino que deberá aceptar.', ) It_better_to_seal_the_window_up = RogueEventOption( - id=161, + id=132, name='It_better_to_seal_the_window_up', cn='还是把窗封起来吧。', cht='還是把窗戶封起來吧。', @@ -1453,7 +1192,7 @@ It_better_to_seal_the_window_up = RogueEventOption( es='Será mejor sellar la ventana.', ) Participate_in_the_psychological_intervention_and_assistance_work_after_the_catastrophic_swarm_in_the_Elothean_Empire = RogueEventOption( - id=162, + id=133, name='Participate_in_the_psychological_intervention_and_assistance_work_after_the_catastrophic_swarm_in_the_Elothean_Empire', cn='参与艾洛蒂亚帝国·特大虫潮灾害后心理干预与救助', cht='參與艾洛蒂亞帝國•特大蟲潮災害後心理干預與救助', @@ -1462,7 +1201,7 @@ Participate_in_the_psychological_intervention_and_assistance_work_after_the_cata es='Participa en la intervención psicológica y asistencia tras la catástrofe del enjambre del Imperio Eloteano.', ) Sitting_beside_the_14th_Emperor_and_helping_him_equivocate_and_embellish = RogueEventOption( - id=163, + id=134, name='Sitting_beside_the_14th_Emperor_and_helping_him_equivocate_and_embellish', cn='坐在第十四世皇帝身边,帮他编篡…', cht='坐在第十四世皇帝身邊,幫他編篡……', @@ -1470,17 +1209,8 @@ Sitting_beside_the_14th_Emperor_and_helping_him_equivocate_and_embellish = Rogue jp='第14代皇帝のそばに座って、彼の編纂を手伝う…', es='Te sientas junto al Emperador XIV y lo ayudas a componer...', ) -Leave_40 = RogueEventOption( - id=164, - name='Leave_40', - cn='走开。', - cht='走開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) I_will_put_down_my_gun = RogueEventOption( - id=165, + id=135, name='I_will_put_down_my_gun', cn='我会放下枪。', cht='我會放下槍。', @@ -1489,7 +1219,7 @@ I_will_put_down_my_gun = RogueEventOption( es='Bajaré mi arma.', ) I_wanna_populate_my_insectoid_index = RogueEventOption( - id=166, + id=136, name='I_wanna_populate_my_insectoid_index', cn='我想收集虫类图鉴!', cht='我想蒐集蟲類圖鑑!', @@ -1498,7 +1228,7 @@ I_wanna_populate_my_insectoid_index = RogueEventOption( es='¡Quiero coleccionar enciclopedias de insectos!', ) Let_me_hear_its_voice = RogueEventOption( - id=167, + id=137, name='Let_me_hear_its_voice', cn='让我听听它的声音…', cht='讓我聽聽它的聲音……', @@ -1507,7 +1237,7 @@ Let_me_hear_its_voice = RogueEventOption( es='Déjame escuchar su voz...', ) Break_it = RogueEventOption( - id=168, + id=138, name='Break_it', cn='摔碎它!', cht='摔碎它!', @@ -1516,7 +1246,7 @@ Break_it = RogueEventOption( es='¡Rómpelo!', ) Before_entering_take_a_big_whiff = RogueEventOption( - id=169, + id=139, name='Before_entering_take_a_big_whiff', cn='进门前,嗅一嗅。', cht='進門前,嗅一嗅。', @@ -1525,7 +1255,7 @@ Before_entering_take_a_big_whiff = RogueEventOption( es='Antes de entrar, inhala profundamente.', ) Before_entering_take_off_your_shoes = RogueEventOption( - id=170, + id=140, name='Before_entering_take_off_your_shoes', cn='进门前,把自己的鞋子脱了!', cht='進門前,把自己的鞋子脫了!', @@ -1534,7 +1264,7 @@ Before_entering_take_off_your_shoes = RogueEventOption( es='¡Antes de entrar, quítate los zapatos!', ) I_will_join = RogueEventOption( - id=171, + id=141, name='I_will_join', cn='我会加入。', cht='我會加入。', @@ -1543,7 +1273,7 @@ I_will_join = RogueEventOption( es='Me uniré.', ) I_refuse = RogueEventOption( - id=172, + id=142, name='I_refuse', cn='我拒绝。', cht='我拒絕。', @@ -1552,7 +1282,7 @@ I_refuse = RogueEventOption( es='Mejor no.', ) Approach_and_strike_up_a_conversation = RogueEventOption( - id=173, + id=143, name='Approach_and_strike_up_a_conversation', cn='上前搭讪。', cht='上前搭訕。', @@ -1561,7 +1291,7 @@ Approach_and_strike_up_a_conversation = RogueEventOption( es='Acércate y entabla una conversación.', ) Expeditiously_avoid = RogueEventOption( - id=174, + id=144, name='Expeditiously_avoid', cn='匆匆逃开。', cht='匆匆逃開。', @@ -1570,7 +1300,7 @@ Expeditiously_avoid = RogueEventOption( es='Huye a toda prisa.', ) Eat_it_up = RogueEventOption( - id=175, + id=145, name='Eat_it_up', cn='把它吃掉!', cht='把牠吃掉!', @@ -1579,7 +1309,7 @@ Eat_it_up = RogueEventOption( es='¡Comételo!', ) Tell_it_its_name_when_it_was_alive = RogueEventOption( - id=176, + id=146, name='Tell_it_its_name_when_it_was_alive', cn='告诉它生前的名字。', cht='告訴牠生前的名字。', @@ -1588,7 +1318,7 @@ Tell_it_its_name_when_it_was_alive = RogueEventOption( es='Dile el nombre con el que nació.', ) Look_around_while_making_the_record = RogueEventOption( - id=177, + id=147, name='Look_around_while_making_the_record', cn='在记录时打量四周。', cht='在記錄時打量四周。', @@ -1597,7 +1327,7 @@ Look_around_while_making_the_record = RogueEventOption( es='Mira a tu alrededor mientras lo registras.', ) Stealthily_release_the_little_ones_he_had_caught = RogueEventOption( - id=178, + id=148, name='Stealthily_release_the_little_ones_he_had_caught', cn='悄悄把他捉来的小家伙们放生。', cht='悄悄把他捉來的小傢伙們放生。', @@ -1606,7 +1336,7 @@ Stealthily_release_the_little_ones_he_had_caught = RogueEventOption( es='Libera sigilosamente a los pequeños que había atrapado.', ) Sincere_praise = RogueEventOption( - id=179, + id=149, name='Sincere_praise', cn='善意地夸奖。', cht='善意地誇獎。', @@ -1615,7 +1345,7 @@ Sincere_praise = RogueEventOption( es='Elogio sincero.', ) Extend_an_index_finger = RogueEventOption( - id=180, + id=150, name='Extend_an_index_finger', cn='伸出一根食指……', cht='伸出一根食指……', @@ -1624,7 +1354,7 @@ Extend_an_index_finger = RogueEventOption( es='Extiende el dedo índice...', ) Kill_it_quick = RogueEventOption( - id=181, + id=151, name='Kill_it_quick', cn='快把它击毙!', cht='快把它擊斃!', @@ -1633,7 +1363,7 @@ Kill_it_quick = RogueEventOption( es='¡Rápido, mátala!', ) What_kind_of_a_Shadow_of_Nihility_is_it = RogueEventOption( - id=182, + id=152, name='What_kind_of_a_Shadow_of_Nihility_is_it', cn='那是个怎样的「虚无之影」?', cht='那是個怎樣的「虛無之影」?', @@ -1642,7 +1372,7 @@ What_kind_of_a_Shadow_of_Nihility_is_it = RogueEventOption( es='¿Qué tipo de Sombra de la Nihilidad es esta?', ) Hold_that_hand = RogueEventOption( - id=183, + id=153, name='Hold_that_hand', cn='握住那只手。', cht='握住那隻手。', @@ -1650,9 +1380,9 @@ Hold_that_hand = RogueEventOption( jp='あの手を掴む', es='Toma esa mano.', ) -Refuse_50 = RogueEventOption( - id=184, - name='Refuse_50', +Refuse_8f72 = RogueEventOption( + id=154, + name='Refuse_8f72', cn='拒绝。', cht='拒絕。', en='Refuse.', @@ -1660,7 +1390,7 @@ Refuse_50 = RogueEventOption( es='Recházala.', ) Attempt_to_call_the_system_contact_number = RogueEventOption( - id=185, + id=155, name='Attempt_to_call_the_system_contact_number', cn='尝试拨打星系联络电话。', cht='嘗試撥打星系聯絡電話。', @@ -1668,9 +1398,9 @@ Attempt_to_call_the_system_contact_number = RogueEventOption( jp='星間連絡電話をかけてみる', es='Intenta llamar al número de contacto del sistema.', ) -Wash_its_hands_again_52 = RogueEventOption( - id=186, - name='Wash_its_hands_again_52', +Wash_its_hands_again = RogueEventOption( + id=156, + name='Wash_its_hands_again', cn='再帮它洗一次手。', cht='再幫它洗一次手。', en='Wash its hands again.', @@ -1678,7 +1408,7 @@ Wash_its_hands_again_52 = RogueEventOption( es='Lava sus manos de nuevo.', ) Chase_it_away = RogueEventOption( - id=187, + id=157, name='Chase_it_away', cn='把它赶走。', cht='把它趕走。', @@ -1687,7 +1417,7 @@ Chase_it_away = RogueEventOption( es='Ahuyéntalo.', ) I_don_t_want_to_shoot = RogueEventOption( - id=188, + id=158, name='I_don_t_want_to_shoot', cn='我不想开枪。', cht='我不想開槍。', @@ -1696,7 +1426,7 @@ I_don_t_want_to_shoot = RogueEventOption( es='No quiero disparar.', ) Stay_alert = RogueEventOption( - id=189, + id=159, name='Stay_alert', cn='清醒点!', cht='清醒點!', @@ -1705,7 +1435,7 @@ Stay_alert = RogueEventOption( es='¡Mantente alerta!', ) Make_the_little_screws_quiet_down = RogueEventOption( - id=190, + id=160, name='Make_the_little_screws_quiet_down', cn='让小螺丝们安静点儿!', cht='讓小螺絲們安靜點!', @@ -1714,7 +1444,7 @@ Make_the_little_screws_quiet_down = RogueEventOption( es='¡Haz que esos tornillos se callen!', ) Touch_his_hat = RogueEventOption( - id=191, + id=161, name='Touch_his_hat', cn='伸手摸他的帽子!', cht='伸手摸他的帽子!', @@ -1722,17 +1452,8 @@ Touch_his_hat = RogueEventOption( jp='手を伸ばして彼の帽子に触れる', es='¡Toca su sombrero!', ) -Wash_its_hands_again_55 = RogueEventOption( - id=192, - name='Wash_its_hands_again_55', - cn='再帮它洗一次手。', - cht='再幫它洗一次手。', - en='Wash its hands again.', - jp='それの手洗いをもう1度手伝う', - es='Lava sus manos de nuevo.', -) Flick_them_off = RogueEventOption( - id=193, + id=162, name='Flick_them_off', cn='赶紧把它们掸下来。', cht='趕緊把牠們撣下來。', @@ -1741,7 +1462,7 @@ Flick_them_off = RogueEventOption( es='Espántalas.', ) Keep_them_on_your_palm_for_a_while_longer = RogueEventOption( - id=194, + id=163, name='Keep_them_on_your_palm_for_a_while_longer', cn='留在手上玩一会儿。', cht='留在手上玩一會。', @@ -1750,7 +1471,7 @@ Keep_them_on_your_palm_for_a_while_longer = RogueEventOption( es='Mantenlas en la palma de tu mano un rato más.', ) Catch_its_tail = RogueEventOption( - id=195, + id=164, name='Catch_its_tail', cn='抓起它的尾巴…', cht='抓起牠的尾巴……', @@ -1759,7 +1480,7 @@ Catch_its_tail = RogueEventOption( es='Agarra su cola...', ) I_don_t_want_to_be_near_it = RogueEventOption( - id=196, + id=165, name='I_don_t_want_to_be_near_it', cn='我不想靠近它…', cht='我不想靠近牠……', @@ -1768,7 +1489,7 @@ I_don_t_want_to_be_near_it = RogueEventOption( es='No quiero estar cerca...', ) Move_the_universe_sandbox = RogueEventOption( - id=197, + id=166, name='Move_the_universe_sandbox', cn='挪移这份宇宙沙盘。', cht='挪移這組宇宙沙盤。', @@ -1777,7 +1498,7 @@ Move_the_universe_sandbox = RogueEventOption( es='Mueve la caja de arena del universo.', ) I_m_more_concerned_about_the_origins_of_that_Depth_Crawler = RogueEventOption( - id=198, + id=167, name='I_m_more_concerned_about_the_origins_of_that_Depth_Crawler', cn='我还是比较关心那只渊兽的身世。', cht='我還是比較關心那隻淵獸的身世。', @@ -1786,7 +1507,7 @@ I_m_more_concerned_about_the_origins_of_that_Depth_Crawler = RogueEventOption( es='Me preocupa más el origen de la bestia del abismo.', ) Act_according_to_the_record = RogueEventOption( - id=199, + id=168, name='Act_according_to_the_record', cn='按照上述记载行动。', cht='按照上述記載行動。', @@ -1794,17 +1515,8 @@ Act_according_to_the_record = RogueEventOption( jp='上記通りに行動する', es='Actúa de acuerdo con el registro.', ) -Refuse_59 = RogueEventOption( - id=200, - name='Refuse_59', - cn='拒绝。', - cht='拒絕。', - en='Refuse.', - jp='拒否する', - es='Recházalo.', -) Flip_through = RogueEventOption( - id=201, + id=169, name='Flip_through', cn='翻翻。', cht='翻翻。', @@ -1813,7 +1525,7 @@ Flip_through = RogueEventOption( es='Echa un vistazo.', ) Not_looking_through = RogueEventOption( - id=202, + id=170, name='Not_looking_through', cn='不看。', cht='不看。', @@ -1822,7 +1534,7 @@ Not_looking_through = RogueEventOption( es='No mires.', ) And = RogueEventOption( - id=203, + id=171, name='And', cn='接着呢?', cht='接著呢?', @@ -1831,7 +1543,7 @@ And = RogueEventOption( es='¿Y?', ) Isn_t_it_dead = RogueEventOption( - id=204, + id=172, name='Isn_t_it_dead', cn='不是死亡了吗?', cht='不是死亡了嗎?', @@ -1840,7 +1552,7 @@ Isn_t_it_dead = RogueEventOption( es='¿No está muerto?', ) Do_I_really_not_know = RogueEventOption( - id=205, + id=173, name='Do_I_really_not_know', cn='我真的不知道吗?', cht='我真的不知道嗎?', @@ -1849,7 +1561,7 @@ Do_I_really_not_know = RogueEventOption( es='¿De verdad no lo sé?', ) The_name_not_bad = RogueEventOption( - id=206, + id=174, name='The_name_not_bad', cn='这个名字不错。', cht='這個名字不錯。', @@ -1858,7 +1570,7 @@ The_name_not_bad = RogueEventOption( es='Ese nombre no está mal.', ) I_think_it_needs_another_name = RogueEventOption( - id=207, + id=175, name='I_think_it_needs_another_name', cn='我觉得应该换个名字…', cht='我覺得應該換個名字……', @@ -1867,7 +1579,7 @@ I_think_it_needs_another_name = RogueEventOption( es='Creo que necesita otro nombre...', ) What_kind_of_experiences_did_he_have_when_he_was_alive = RogueEventOption( - id=208, + id=176, name='What_kind_of_experiences_did_he_have_when_he_was_alive', cn='他生前有什么经历吗?', cht='他生前有什麼經歷嗎?', @@ -1876,7 +1588,7 @@ What_kind_of_experiences_did_he_have_when_he_was_alive = RogueEventOption( es='¿Qué clase de experiencias tuvo en su vida?', ) How_did_he_pass_away = RogueEventOption( - id=209, + id=177, name='How_did_he_pass_away', cn='他如何逝世?', cht='他如何逝世的?', @@ -1885,7 +1597,7 @@ How_did_he_pass_away = RogueEventOption( es='¿Cómo murió?', ) Will_he_return = RogueEventOption( - id=210, + id=178, name='Will_he_return', cn='他还会回来吗?', cht='他還會回來嗎?', @@ -1894,7 +1606,7 @@ Will_he_return = RogueEventOption( es='¿Volverá?', ) I_want_to_leave_a_scathing_review = RogueEventOption( - id=211, + id=179, name='I_want_to_leave_a_scathing_review', cn='我也想给差评。', cht='我也想給負評。', @@ -1903,7 +1615,7 @@ I_want_to_leave_a_scathing_review = RogueEventOption( es='Quiero darle una mala crítica.', ) Touch_those_Memory_Bubbles = RogueEventOption( - id=212, + id=180, name='Touch_those_Memory_Bubbles', cn='摸摸那些忆泡。', cht='摸摸那些憶泡。', @@ -1912,7 +1624,7 @@ Touch_those_Memory_Bubbles = RogueEventOption( es='Toca la burbuja del recuerdo.', ) Hide_under_the_boat_together = RogueEventOption( - id=213, + id=181, name='Hide_under_the_boat_together', cn='一起藏在船底。', cht='一起躲在船底。', @@ -1921,7 +1633,7 @@ Hide_under_the_boat_together = RogueEventOption( es='Escóndanse junt{F#as}{M#os} debajo del bote.', ) Bottoms_up = RogueEventOption( - id=214, + id=182, name='Bottoms_up', cn='干杯!', cht='乾杯!', @@ -1929,17 +1641,8 @@ Bottoms_up = RogueEventOption( jp='乾杯!', es='¡Salud!', ) -Refuse_66 = RogueEventOption( - id=215, - name='Refuse_66', - cn='拒绝。', - cht='拒絕。', - en='Refuse.', - jp='拒否する', - es='Recházalo.', -) Dance_on_the_spot = RogueEventOption( - id=216, + id=183, name='Dance_on_the_spot', cn='原地跳舞!', cht='原地跳舞!', @@ -1948,7 +1651,7 @@ Dance_on_the_spot = RogueEventOption( es='¡Baila en tu sitio!', ) Burn_the_boat = RogueEventOption( - id=217, + id=184, name='Burn_the_boat', cn='把船烧了!', cht='把船燒了!', @@ -1957,7 +1660,7 @@ Burn_the_boat = RogueEventOption( es='¡Quema el barco!', ) Pretend_to_not_notice_that_something_was_off = RogueEventOption( - id=218, + id=185, name='Pretend_to_not_notice_that_something_was_off', cn='装作没发现哪里不对劲。', cht='裝作沒發現哪裡不對勁。', @@ -1966,7 +1669,7 @@ Pretend_to_not_notice_that_something_was_off = RogueEventOption( es='Finge que no te das cuenta de que algo anda mal.', ) They_re_here = RogueEventOption( - id=219, + id=186, name='They_re_here', cn='祂出现了!', cht='祂出現了!', @@ -1975,7 +1678,7 @@ They_re_here = RogueEventOption( es='¡Está aquí!', ) Accept_it = RogueEventOption( - id=220, + id=187, name='Accept_it', cn='收下它。', cht='收下它。', @@ -1984,7 +1687,7 @@ Accept_it = RogueEventOption( es='Acéptala.', ) Decline_respectfully = RogueEventOption( - id=221, + id=188, name='Decline_respectfully', cn='委婉地拒绝。', cht='委婉地拒絕。', @@ -1993,7 +1696,7 @@ Decline_respectfully = RogueEventOption( es='Recházala respetuosamente.', ) Put_the_fragments_back_together = RogueEventOption( - id=222, + id=189, name='Put_the_fragments_back_together', cn='把碎片拼好。', cht='把碎片拼好。', @@ -2002,7 +1705,7 @@ Put_the_fragments_back_together = RogueEventOption( es='Vuelve a juntar los fragmentos.', ) Calm_down_the_Self_Annihilator_first = RogueEventOption( - id=223, + id=190, name='Calm_down_the_Self_Annihilator_first', cn='先安抚「自灭者」。', cht='先安撫「自滅者」。', @@ -2011,7 +1714,7 @@ Calm_down_the_Self_Annihilator_first = RogueEventOption( es='Primero calma al Autodestructor.', ) Sit_on_that_chair = RogueEventOption( - id=224, + id=191, name='Sit_on_that_chair', cn='坐在那把椅子上。', cht='坐在那張椅子上。', @@ -2020,7 +1723,7 @@ Sit_on_that_chair = RogueEventOption( es='Siéntate en esa silla.', ) Join_this_choir = RogueEventOption( - id=225, + id=192, name='Join_this_choir', cn='加入这场合唱。', cht='加入這場合唱。', @@ -2029,7 +1732,7 @@ Join_this_choir = RogueEventOption( es='Únete a este coro.', ) Kneel_in_a_straight_angle_next_to_the_shore = RogueEventOption( - id=226, + id=193, name='Kneel_in_a_straight_angle_next_to_the_shore', cn='在岸边跪成直角型状。', cht='在岸邊跪成直角狀。', @@ -2038,7 +1741,7 @@ Kneel_in_a_straight_angle_next_to_the_shore = RogueEventOption( es='Arrodíllate en un ángulo recto junto a la orilla.', ) Devote_yourself_to_saving_him = RogueEventOption( - id=227, + id=194, name='Devote_yourself_to_saving_him', cn='现在投身去救他!', cht='現在投身去救他!', @@ -2047,7 +1750,7 @@ Devote_yourself_to_saving_him = RogueEventOption( es='¡Haz lo posible por salvarlo!', ) For_Equilibrium = RogueEventOption( - id=228, + id=195, name='For_Equilibrium', cn='为了均衡!', cht='為了均衡!', @@ -2056,7 +1759,7 @@ For_Equilibrium = RogueEventOption( es='¡Por el Equilibrio!', ) Can_I_refuse_Equilibrium = RogueEventOption( - id=229, + id=196, name='Can_I_refuse_Equilibrium', cn='可以拒绝均衡吗?', cht='可以拒絕均衡嗎?', @@ -2065,7 +1768,7 @@ Can_I_refuse_Equilibrium = RogueEventOption( es='¿Puedo rechazar al Equilibrio?', ) Plant_the_Synesthesia_Beacon_on_him = RogueEventOption( - id=230, + id=197, name='Plant_the_Synesthesia_Beacon_on_him', cn='给他插上联觉信标。', cht='為他插上聯覺信標。', @@ -2074,7 +1777,7 @@ Plant_the_Synesthesia_Beacon_on_him = RogueEventOption( es='Pon la baliza sinestésica en él.', ) Scratch_his_heel_with_the_Synesthesia_Beacon = RogueEventOption( - id=231, + id=198, name='Scratch_his_heel_with_the_Synesthesia_Beacon', cn='用联觉信标刮刮他的脚后跟。', cht='用聯覺信標刮刮他的腳後跟。', @@ -2083,7 +1786,7 @@ Scratch_his_heel_with_the_Synesthesia_Beacon = RogueEventOption( es='Raspa sus talones con la baliza sinestésica.', ) We_meet_again = RogueEventOption( - id=232, + id=199, name='We_meet_again', cn='又见面了!', cht='又見面了!', @@ -2092,7 +1795,7 @@ We_meet_again = RogueEventOption( es='¡Nos volvemos a encontrar!', ) Wait_with_him = RogueEventOption( - id=233, + id=200, name='Wait_with_him', cn='陪他一起等待。', cht='陪他一起等待。', @@ -2101,7 +1804,7 @@ Wait_with_him = RogueEventOption( es='Espera con él.', ) I_can_try = RogueEventOption( - id=234, + id=201, name='I_can_try', cn='我可以试试。', cht='我可以試試。', @@ -2110,7 +1813,7 @@ I_can_try = RogueEventOption( es='Puedo intentarlo.', ) I_don_t_think_this_is_effective = RogueEventOption( - id=235, + id=202, name='I_don_t_think_this_is_effective', cn='我不认为这样有效…', cht='我不認為這樣有效……', @@ -2118,62 +1821,8 @@ I_don_t_think_this_is_effective = RogueEventOption( jp='有効だと思わない…', es='No creo que esto funcione...', ) -Leave_77 = RogueEventOption( - id=236, - name='Leave_77', - cn='离开。', - cht='離開。', - en='Leave.', - jp='離れる', - es='Márchate.', -) -Claim_an_equal_amount_of_Data_Exchange_77 = RogueEventOption( - id=237, - name='Claim_an_equal_amount_of_Data_Exchange_77', - cn='领取等量的『数据兑换』。', - cht='領取等量的「資料兌換」。', - en='Claim an equal amount of "Data Exchange."', - jp='等量の『データ交換』を受け取る', - es='Recoge la misma cantidad de "intercambio de datos".', -) -Leave_77 = RogueEventOption( - id=238, - name='Leave_77', - cn='离开', - cht='離開', - en='Leave', - jp='立ち去る', - es='Salir', -) -Claim_an_equal_amount_of_Data_Exchange_78 = RogueEventOption( - id=239, - name='Claim_an_equal_amount_of_Data_Exchange_78', - cn='领取等量的『数据兑换』。', - cht='領取等量的「資料兌換」。', - en='Claim an equal amount of "Data Exchange."', - jp='等量の『データ交換』を受け取る', - es='Recoge la misma cantidad de "intercambio de datos".', -) -Leave_78 = RogueEventOption( - id=240, - name='Leave_78', - cn='离开', - cht='離開', - en='Leave', - jp='立ち去る', - es='Salir', -) -Leave_79 = RogueEventOption( - id=241, - name='Leave_79', - cn='离开', - cht='離開', - en='Leave', - jp='立ち去る', - es='Salir', -) Accept_help_from_the_Knight_of_Beauty_Stilott = RogueEventOption( - id=242, + id=203, name='Accept_help_from_the_Knight_of_Beauty_Stilott', cn='接受纯美骑士「斯狄洛特」的帮助。', cht='接受純美騎士「斯狄洛特」的幫助。', @@ -2182,7 +1831,7 @@ Accept_help_from_the_Knight_of_Beauty_Stilott = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Stilott.', ) Accept_help_from_the_Knight_of_Beauty_Odium = RogueEventOption( - id=243, + id=204, name='Accept_help_from_the_Knight_of_Beauty_Odium', cn='接受纯美骑士「憎」的帮助。', cht='接受純美騎士「憎」的幫助。', @@ -2191,7 +1840,7 @@ Accept_help_from_the_Knight_of_Beauty_Odium = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Odium.', ) Accept_help_from_the_Knight_of_Beauty_Argenti = RogueEventOption( - id=244, + id=205, name='Accept_help_from_the_Knight_of_Beauty_Argenti', cn='接受纯美骑士「银枝」的帮助。', cht='接受純美騎士「銀枝」的幫助。', @@ -2200,7 +1849,7 @@ Accept_help_from_the_Knight_of_Beauty_Argenti = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Argenti.', ) Accept_help_from_the_Knight_of_Beauty_Will_Garner = RogueEventOption( - id=245, + id=206, name='Accept_help_from_the_Knight_of_Beauty_Will_Garner', cn='接受纯美骑士「维尔•迦娜」的帮助。', cht='接受純美騎士「維爾•迦娜」的幫助。', @@ -2209,7 +1858,7 @@ Accept_help_from_the_Knight_of_Beauty_Will_Garner = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Will Garner.', ) Accept_help_from_the_Knight_of_Beauty_Pomaine = RogueEventOption( - id=246, + id=207, name='Accept_help_from_the_Knight_of_Beauty_Pomaine', cn='接受纯美骑士「波美茵」的帮助。', cht='接受純美騎士「波美茵」的幫助。', @@ -2218,7 +1867,7 @@ Accept_help_from_the_Knight_of_Beauty_Pomaine = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Pomaine.', ) Accept_help_from_the_Knight_of_Beauty_Anoklay = RogueEventOption( - id=247, + id=208, name='Accept_help_from_the_Knight_of_Beauty_Anoklay', cn='接受纯美骑士「阿诺克雷」的帮助。', cht='接受純美騎士「阿諾克雷」的幫助。', @@ -2227,7 +1876,7 @@ Accept_help_from_the_Knight_of_Beauty_Anoklay = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Anoklay.', ) Accept_help_from_the_Knight_of_Beauty_Holvisio = RogueEventOption( - id=248, + id=209, name='Accept_help_from_the_Knight_of_Beauty_Holvisio', cn='接受纯美骑士「全视」的帮助。', cht='接受純美騎士「全視」的幫助。', @@ -2236,7 +1885,7 @@ Accept_help_from_the_Knight_of_Beauty_Holvisio = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Holvisio.', ) Accept_help_from_the_Knight_of_Beauty_Galahad_Icahn = RogueEventOption( - id=249, + id=210, name='Accept_help_from_the_Knight_of_Beauty_Galahad_Icahn', cn='接受纯美骑士「加莱哈德•伊坎」的帮助。', cht='接受純美騎士「加拉哈德•伊坎」的幫助。', @@ -2245,7 +1894,7 @@ Accept_help_from_the_Knight_of_Beauty_Galahad_Icahn = RogueEventOption( es='Acepta la ayuda del Caballero de la Belleza, Galahad Icahn.', ) Listen = RogueEventOption( - id=250, + id=211, name='Listen', cn='听一听。', cht='聽一聽。', @@ -2254,7 +1903,7 @@ Listen = RogueEventOption( es='Escúchalo.', ) Don_t_listen = RogueEventOption( - id=251, + id=212, name='Don_t_listen', cn='不听。', cht='不聽。', @@ -2263,7 +1912,7 @@ Don_t_listen = RogueEventOption( es='No lo escuches.', ) Join_the_choir = RogueEventOption( - id=252, + id=213, name='Join_the_choir', cn='参与大合唱!', cht='參與大合唱!', @@ -2272,7 +1921,7 @@ Join_the_choir = RogueEventOption( es='¡Únete al coro!', ) Add_sugar = RogueEventOption( - id=253, + id=214, name='Add_sugar', cn='加入糖。', cht='加入糖。', @@ -2281,7 +1930,7 @@ Add_sugar = RogueEventOption( es='Añade azúcar.', ) Add_toothpaste = RogueEventOption( - id=254, + id=215, name='Add_toothpaste', cn='加入牙膏。', cht='加入牙膏。', @@ -2290,7 +1939,7 @@ Add_toothpaste = RogueEventOption( es='Agrega pasta de dientes.', ) Stir_vigorously = RogueEventOption( - id=255, + id=216, name='Stir_vigorously', cn='大力搅拌!', cht='大力攪拌!', @@ -2299,7 +1948,7 @@ Stir_vigorously = RogueEventOption( es='¡Remuévelo con fuerza!', ) Stir_gently = RogueEventOption( - id=256, + id=217, name='Stir_gently', cn='轻轻搅拌…', cht='輕輕攪拌……', @@ -2308,7 +1957,7 @@ Stir_gently = RogueEventOption( es='Remuévelo suavemente...', ) Give_in_to_the_sleepiness = RogueEventOption( - id=257, + id=218, name='Give_in_to_the_sleepiness', cn='顺着睡意昏沉睡去…', cht='順著睡意昏沉睡去……', @@ -2317,7 +1966,7 @@ Give_in_to_the_sleepiness = RogueEventOption( es='Entrégate al sueño...', ) First_take_care_of_the_unfriendly_eyes_around_you = RogueEventOption( - id=258, + id=219, name='First_take_care_of_the_unfriendly_eyes_around_you', cn='先解决身边不友好的目光!', cht='先解決身邊不友好的目光!', @@ -2326,7 +1975,7 @@ First_take_care_of_the_unfriendly_eyes_around_you = RogueEventOption( es='Para empezar, ¡cuídate de los ojos maliciosos que te rodean!', ) Deal_with_the_mutant = RogueEventOption( - id=259, + id=220, name='Deal_with_the_mutant', cn='解决变异者。', cht='解決變異者。', @@ -2335,7 +1984,7 @@ Deal_with_the_mutant = RogueEventOption( es='Enfrenta al mutante.', ) A_glass_of_wine_should_learn_to_swirl_itself = RogueEventOption( - id=260, + id=221, name='A_glass_of_wine_should_learn_to_swirl_itself', cn='一杯酒应学会自己搅拌自己。', cht='一杯酒應學會自己攪拌自己。', @@ -2344,7 +1993,7 @@ A_glass_of_wine_should_learn_to_swirl_itself = RogueEventOption( es='Una copa de vino debería aprender a girarse sola.', ) You_decide_to_add_more_weird_stuff_to_it = RogueEventOption( - id=261, + id=222, name='You_decide_to_add_more_weird_stuff_to_it', cn='你决定加更多奇怪的东西进去…', cht='你決定加更多奇怪的東西進去……', @@ -2353,7 +2002,7 @@ You_decide_to_add_more_weird_stuff_to_it = RogueEventOption( es='Decides añadirle más cosas raras...', ) Help_the_young_beasts_get_free = RogueEventOption( - id=262, + id=223, name='Help_the_young_beasts_get_free', cn='帮助幼兽「解脱」。', cht='幫助幼獸「解脫」。', @@ -2362,7 +2011,7 @@ Help_the_young_beasts_get_free = RogueEventOption( es='Ayuda a las bestias jóvenes a "liberarse".', ) Take_care_of_the_adult_beast_pain = RogueEventOption( - id=263, + id=224, name='Take_care_of_the_adult_beast_pain', cn='解决成年巨兽的「痛苦」。', cht='解決成年巨獸的「痛苦」。', @@ -2371,7 +2020,7 @@ Take_care_of_the_adult_beast_pain = RogueEventOption( es='Atiende el "dolor" de la bestia adulta.', ) Release_them_together_from_the_pain = RogueEventOption( - id=264, + id=225, name='Release_them_together_from_the_pain', cn='将它们一并从「痛苦」中释放。', cht='將牠們一併從「痛苦」中釋放。', @@ -2380,7 +2029,7 @@ Release_them_together_from_the_pain = RogueEventOption( es='Libéral{F#as}{M#os} junt{F#as}{M#os} del "dolor".', ) Repair_a_damaged_Curio = RogueEventOption( - id=265, + id=226, name='Repair_a_damaged_Curio', cn='修理一个损毁的奇物。', cht='修理一個損毀的奇物。', @@ -2389,7 +2038,7 @@ Repair_a_damaged_Curio = RogueEventOption( es='Reparas un objeto raro destruido.', ) Repair_all_damaged_Curios = RogueEventOption( - id=266, + id=227, name='Repair_all_damaged_Curios', cn='修理全部损毁的奇物。', cht='修理全部損毀的奇物。', @@ -2398,7 +2047,7 @@ Repair_all_damaged_Curios = RogueEventOption( es='Reparas todos los objetos raros destruidos.', ) Express_friendship_to_the_inorganic_life = RogueEventOption( - id=267, + id=228, name='Express_friendship_to_the_inorganic_life', cn='向无机生命表示友好。', cht='向無機生命表示友好。', @@ -2407,7 +2056,7 @@ Express_friendship_to_the_inorganic_life = RogueEventOption( es='Expresa tu amistad a la vida inorgánica.', ) Have_a_pleasant_inorganic_exchange = RogueEventOption( - id=268, + id=229, name='Have_a_pleasant_inorganic_exchange', cn='进行一次愉快的无机交流!', cht='進行一次愉快的無機交流!', @@ -2415,9 +2064,9 @@ Have_a_pleasant_inorganic_exchange = RogueEventOption( jp='愉快な無機交流を1回行う!', es='¡Ten un placentero intercambio inorgánico!', ) -Leave_84 = RogueEventOption( - id=269, - name='Leave_84', +Leave_7e11 = RogueEventOption( + id=230, + name='Leave_7e11', cn='离开。', cht='離開。', en='Leave.', @@ -2425,7 +2074,7 @@ Leave_84 = RogueEventOption( es='Márchate.', ) Select_the_cup_on_the_left = RogueEventOption( - id=270, + id=231, name='Select_the_cup_on_the_left', cn='选择左边的杯子。', cht='選擇左邊的杯子。', @@ -2434,7 +2083,7 @@ Select_the_cup_on_the_left = RogueEventOption( es='Selecciona la copa de la izquierda.', ) Select_the_cup_on_the_right = RogueEventOption( - id=271, + id=232, name='Select_the_cup_on_the_right', cn='选择右边的杯子。', cht='選擇右邊的杯子。', @@ -2443,7 +2092,7 @@ Select_the_cup_on_the_right = RogueEventOption( es='Selecciona la copa de la derecha.', ) I_m_voting_for_Oswald_Schneider = RogueEventOption( - id=272, + id=233, name='I_m_voting_for_Oswald_Schneider', cn='我要为「奥施瓦尔多·施耐德」的竞选投票!', cht='我要為「奧施瓦爾多•施耐德」的競選投票!', @@ -2452,7 +2101,7 @@ I_m_voting_for_Oswald_Schneider = RogueEventOption( es='¡Voto por Oswaldo Schneider!', ) I_want_to_get_the_Double_Delight_experience = RogueEventOption( - id=273, + id=234, name='I_want_to_get_the_Double_Delight_experience', cn='我要得到「双乐透」体验!', cht='我要得到「雙樂透」體驗!', @@ -2460,26 +2109,8 @@ I_want_to_get_the_Double_Delight_experience = RogueEventOption( jp='「ダブルロッタリー」体験を手に入れる!', es='¡Quiero conseguir la experiencia de la doble lotería!', ) -Refuse_86 = RogueEventOption( - id=274, - name='Refuse_86', - cn='拒绝。', - cht='拒絕。', - en='Refuse.', - jp='拒否する', - es='Recházalo.', -) -Worship_Aeons_87 = RogueEventOption( - id=275, - name='Worship_Aeons_87', - cn='信仰星神。', - cht='信仰星神。', - en='Worship Aeons.', - jp='星神を信仰する', - es='Adora a los Eones.', -) Steal_some_goodies_from_Herta = RogueEventOption( - id=276, + id=235, name='Steal_some_goodies_from_Herta', cn='偷拿点黑塔的好东西。', cht='偷拿點黑塔的好東西。', @@ -2488,7 +2119,7 @@ Steal_some_goodies_from_Herta = RogueEventOption( es='Roba algunas cosas de Herta.', ) More_opportunities_to_cheat_against_Stephen = RogueEventOption( - id=277, + id=236, name='More_opportunities_to_cheat_against_Stephen', cn='更多与斯蒂芬作对的作弊机会。', cht='更多與史帝芬作對的作弊機會。', @@ -2497,7 +2128,7 @@ More_opportunities_to_cheat_against_Stephen = RogueEventOption( es='Más oportunidades de hacer trampa a Stephen.', ) Embark_on_the_challenge_to_become_the_perfect_man_for_one_time = RogueEventOption( - id=278, + id=237, name='Embark_on_the_challenge_to_become_the_perfect_man_for_one_time', cn='开展一次*完美型男*挑战!', cht='展開一次*完美型男*挑戰!', @@ -2505,17 +2136,8 @@ Embark_on_the_challenge_to_become_the_perfect_man_for_one_time = RogueEventOptio jp='※美形ハンサム※チャレンジを始める!', es='¡Acepta el desafío para convertirte en una persona perfecta!', ) -Leave_88 = RogueEventOption( - id=279, - name='Leave_88', - cn='走开。', - cht='走開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) A_perfect_man_needs_a_clay_doll = RogueEventOption( - id=280, + id=238, name='A_perfect_man_needs_a_clay_doll', cn='完美型男需要「黏土玩偶」。', cht='完美型男需要「黏土玩偶」。', @@ -2524,7 +2146,7 @@ A_perfect_man_needs_a_clay_doll = RogueEventOption( es='Una persona perfecta necesita un muñeco de cerámica.', ) A_perfect_man_needs_a_popular_gacha_toy = RogueEventOption( - id=281, + id=239, name='A_perfect_man_needs_a_popular_gacha_toy', cn='完美型男需要「潮流扭蛋人」。', cht='完美型男需要「潮流扭蛋人」。', @@ -2533,7 +2155,7 @@ A_perfect_man_needs_a_popular_gacha_toy = RogueEventOption( es='Una persona perfecta necesita un juguete gacha popular.', ) Halfheartedly_sell_Interastral_Peace_Groceries = RogueEventOption( - id=282, + id=240, name='Halfheartedly_sell_Interastral_Peace_Groceries', cn='敷衍地售卖「星际和平杂货」。', cht='敷衍地販售「星際和平雜貨」。', @@ -2541,567 +2163,162 @@ Halfheartedly_sell_Interastral_Peace_Groceries = RogueEventOption( jp='「スターピース雑貨」を形だけ販売する', es='Vendes de mala gana Comestibles de la Paz Interastral.', ) -Secretly_goof_off_89 = RogueEventOption( - id=283, - name='Secretly_goof_off_89', +Secretly_goof_off = RogueEventOption( + id=241, + name='Secretly_goof_off', cn='悄悄偷懒。', cht='悄悄偷懶。', en='Secretly goof off.', jp='こっそりサボる', es='Holgazaneas en secreto.', ) -Dedicate_off_duty_time_to_the_Amber_Lord_89 = RogueEventOption( - id=284, - name='Dedicate_off_duty_time_to_the_Amber_Lord_89', +Dedicate_off_duty_time_to_the_Amber_Lord = RogueEventOption( + id=242, + name='Dedicate_off_duty_time_to_the_Amber_Lord', cn='将下班时间献给琥珀王。', cht='將下班時間獻給琥珀王。', en='Dedicate off-duty time to the Amber Lord.', jp='退勤時間を琥珀の王に捧げる', es='Dedicas tu tiempo libre al Señor del Ámbar.', ) -Accurately_find_the_target_to_sell_star_systems_to_89 = RogueEventOption( - id=285, - name='Accurately_find_the_target_to_sell_star_systems_to_89', +Accurately_find_the_target_to_sell_star_systems_to = RogueEventOption( + id=243, + name='Accurately_find_the_target_to_sell_star_systems_to', cn='精准地寻找目标销售星系。', cht='精準地尋找目標銷售星系。', en='Accurately find the target to sell star systems to.', jp='目標の販売星系を正確に探す', es='Encuentras con precisión el objetivo al que vender sistemas estelares.', ) -Convene_the_Universal_Finance_Conference_89 = RogueEventOption( - id=286, - name='Convene_the_Universal_Finance_Conference_89', +Convene_the_Universal_Finance_Conference = RogueEventOption( + id=244, + name='Convene_the_Universal_Finance_Conference', cn='召开「宇宙金融会议」。', cht='召開「宇宙金融會議」。', en='Convene the "Universal Finance Conference."', jp='「宇宙金融会議」を開催する', es='Convocas la Conferencia Financiera Universal.', ) -Settle_the_Expert_Skills_Training_89 = RogueEventOption( - id=287, - name='Settle_the_Expert_Skills_Training_89', +Settle_the_Expert_Skills_Training = RogueEventOption( + id=245, + name='Settle_the_Expert_Skills_Training', cn='沉淀「专家技能培训」。', cht='沉澱「專家技能培訓」。', en='Settle the "Expert Skills Training."', jp='「専門家スキル研修」を結集させる', es='Convocas el Entrenamiento de Habilidades para Expertos.', ) -Care_for_the_physical_and_mental_health_of_the_temporary_workers_89 = RogueEventOption( - id=288, - name='Care_for_the_physical_and_mental_health_of_the_temporary_workers_89', +Care_for_the_physical_and_mental_health_of_the_temporary_workers = RogueEventOption( + id=246, + name='Care_for_the_physical_and_mental_health_of_the_temporary_workers', cn='关心临时雇佣工的身心健康。', cht='關心臨時工的身心健康。', en='Care for the physical and mental health of the temporary workers.', jp='臨時従業員の心身の健康に注意を払う', es='Velas por la salud física y mental de los trabajadores temporales.', ) -Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_89 = RogueEventOption( - id=289, - name='Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_89', +Fully_book_the_following_week_with_the_Interspecies_Bonding_Party = RogueEventOption( + id=247, + name='Fully_book_the_following_week_with_the_Interspecies_Bonding_Party', cn='把下周约满*跨物种联谊派对*!', cht='把下週約滿*跨物種聯誼派對*!', en='Fully book the following week with the Interspecies Bonding Party!', jp='翌週を※種族間合コンパーティー※の予定でいっぱいにする!', es='¡Reservas íntegramente la semana siguiente para la Fiesta de Cortejo Interespecies!', ) -Launch_Celebrity_High_Social_89 = RogueEventOption( - id=290, - name='Launch_Celebrity_High_Social_89', +Launch_Celebrity_High_Social = RogueEventOption( + id=248, + name='Launch_Celebrity_High_Social', cn='展开「名流高级社交」。', cht='展開「名流高級社交」。', en='Launch "Celebrity High Social."', jp='「上流社会交流」を推し進める', es='Lanzas el evento Celebridades de la Alta Sociedad.', ) -Give_a_shocking_interstellar_speech_89 = RogueEventOption( - id=291, - name='Give_a_shocking_interstellar_speech_89', +Give_a_shocking_interstellar_speech = RogueEventOption( + id=249, + name='Give_a_shocking_interstellar_speech', cn='发表震撼人心的「星际演讲」!', cht='發表震撼人心的「星際演講」!', en='Give a shocking "interstellar speech"!', jp='心に響く「スタースピーチ」を発表する!', es='¡Pronuncias un impactante discurso interastral!', ) -You_are_eager_to_beat_the_big_shots_89 = RogueEventOption( - id=292, - name='You_are_eager_to_beat_the_big_shots_89', +You_are_eager_to_beat_the_big_shots = RogueEventOption( + id=250, + name='You_are_eager_to_beat_the_big_shots', cn='你渴望打败大人物!', cht='你渴望打敗大人物!', en='You are eager to beat the big shots!', jp='大人物を打ち倒したいと切望している!', es='¡Estás deseando vencer a los peces gordos!', ) -Review_the_secrets_of_interstellar_success_89 = RogueEventOption( - id=293, - name='Review_the_secrets_of_interstellar_success_89', +Review_the_secrets_of_interstellar_success = RogueEventOption( + id=251, + name='Review_the_secrets_of_interstellar_success', cn='回顾星际成功秘传…', cht='回顧星際成功秘傳……', en='Review the secrets of interstellar success...', jp='銀河で成功する秘密を振り返る…', es='Repasa los secretos del éxito interastral...', ) -Directly_provoke_P_48_Taravan_Keane_89 = RogueEventOption( - id=294, - name='Directly_provoke_P_48_Taravan_Keane_89', +Directly_provoke_P_48_Taravan_Keane = RogueEventOption( + id=252, + name='Directly_provoke_P_48_Taravan_Keane', cn='…直接挑衅「P-48」塔拉梵•基恩!', cht='……直接挑釁「P-48」塔拉梵•基恩!', en='...Directly provoke P-48 Taravan Keane!', jp='…「P-48」タラファン・キーンに直接挑む!', es='... ¡Provocas directamente a Taravan Keane P-48!', ) -Directly_provoke_P_48_Madam_Scarred_Eye_89 = RogueEventOption( - id=295, - name='Directly_provoke_P_48_Madam_Scarred_Eye_89', +Directly_provoke_P_48_Madam_Scarred_Eye = RogueEventOption( + id=253, + name='Directly_provoke_P_48_Madam_Scarred_Eye', cn='…直接挑衅「P-48」疤眼夫人!', cht='……直接挑釁「P-48」疤眼夫人!', en='...Directly provoke P-48 Madam Scarred Eye!', jp='…「P-48」スカー・アイ夫人に直接挑む!', es='... ¡Provocas directamente a la señora Ojo Marcado P-48!', ) -You_look_at_the_emptiness_all_around_you_89 = RogueEventOption( - id=296, - name='You_look_at_the_emptiness_all_around_you_89', +You_look_at_the_emptiness_all_around_you = RogueEventOption( + id=254, + name='You_look_at_the_emptiness_all_around_you', cn='你望着四周空荡荡的一片。', cht='你望著四周空蕩蕩的一片。', en='You look at the emptiness all around you.', jp='何もない周囲を見渡す', es='Contemplas el vacío a tu alrededor.', ) -Secretly_goof_off_90 = RogueEventOption( - id=297, - name='Secretly_goof_off_90', - cn='悄悄偷懒。', - cht='悄悄偷懶。', - en='Secretly goof off.', - jp='こっそりサボる', - es='Holgazaneas en secreto.', -) -Dedicate_off_duty_time_to_the_Amber_Lord_90 = RogueEventOption( - id=298, - name='Dedicate_off_duty_time_to_the_Amber_Lord_90', - cn='将下班时间献给琥珀王。', - cht='將下班時間獻給琥珀王。', - en='Dedicate off-duty time to the Amber Lord.', - jp='退勤時間を琥珀の王に捧げる', - es='Dedicas tu tiempo libre al Señor del Ámbar.', -) -Accurately_find_the_target_to_sell_star_systems_to_90 = RogueEventOption( - id=299, - name='Accurately_find_the_target_to_sell_star_systems_to_90', - cn='精准地寻找目标销售星系。', - cht='精準地尋找目標銷售星系。', - en='Accurately find the target to sell star systems to.', - jp='目標の販売星系を正確に探す', - es='Encuentras con precisión el objetivo al que vender sistemas estelares.', -) -Convene_the_Universal_Finance_Conference_90 = RogueEventOption( - id=300, - name='Convene_the_Universal_Finance_Conference_90', - cn='召开「宇宙金融会议」。', - cht='召開「宇宙金融會議」。', - en='Convene the "Universal Finance Conference."', - jp='「宇宙金融会議」を開催する', - es='Convocas la Conferencia Financiera Universal.', -) -Settle_the_Expert_Skills_Training_90 = RogueEventOption( - id=301, - name='Settle_the_Expert_Skills_Training_90', - cn='沉淀「专家技能培训」。', - cht='沉澱「專家技能培訓」。', - en='Settle the "Expert Skills Training."', - jp='「専門家スキル研修」を結集させる', - es='Convocas el Entrenamiento de Habilidades para Expertos.', -) -Care_for_the_physical_and_mental_health_of_the_temporary_workers_90 = RogueEventOption( - id=302, - name='Care_for_the_physical_and_mental_health_of_the_temporary_workers_90', - cn='关心临时雇佣工的身心健康。', - cht='關心臨時工的身心健康。', - en='Care for the physical and mental health of the temporary workers.', - jp='臨時従業員の心身の健康に注意を払う', - es='Velas por la salud física y mental de los trabajadores temporales.', -) -Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_90 = RogueEventOption( - id=303, - name='Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_90', - cn='把下周约满*跨物种联谊派对*!', - cht='把下週約滿*跨物種聯誼派對*!', - en='Fully book the following week with the Interspecies Bonding Party!', - jp='翌週を※種族間合コンパーティー※の予定でいっぱいにする!', - es='¡Reservas íntegramente la semana siguiente para la Fiesta de Cortejo Interespecies!', -) -Launch_Celebrity_High_Social_90 = RogueEventOption( - id=304, - name='Launch_Celebrity_High_Social_90', - cn='展开「名流高级社交」。', - cht='展開「名流高級社交」。', - en='Launch "Celebrity High Social."', - jp='「上流社会交流」を推し進める', - es='Lanzas el evento Celebridades de la Alta Sociedad.', -) -Give_a_shocking_interstellar_speech_90 = RogueEventOption( - id=305, - name='Give_a_shocking_interstellar_speech_90', - cn='发表震撼人心的「星际演讲」!', - cht='發表震撼人心的「星際演講」!', - en='Give a shocking "interstellar speech"!', - jp='心に響く「スタースピーチ」を発表する!', - es='¡Pronuncias un impactante discurso interastral!', -) -You_are_eager_to_beat_the_big_shots_90 = RogueEventOption( - id=306, - name='You_are_eager_to_beat_the_big_shots_90', - cn='你渴望打败大人物!', - cht='你渴望打敗大人物!', - en='You are eager to beat the big shots!', - jp='大人物を打ち倒したいと切望している!', - es='¡Estás deseando vencer a los peces gordos!', -) -Review_the_secrets_of_interstellar_success_90 = RogueEventOption( - id=307, - name='Review_the_secrets_of_interstellar_success_90', - cn='回顾星际成功秘传…', - cht='回顧星際成功秘傳……', - en='Review the secrets of interstellar success...', - jp='銀河で成功する秘密を振り返る…', - es='Repasa los secretos del éxito interastral...', -) -Directly_provoke_P_48_Taravan_Keane_90 = RogueEventOption( - id=308, - name='Directly_provoke_P_48_Taravan_Keane_90', - cn='…直接挑衅「P-48」塔拉梵•基恩!', - cht='……直接挑釁「P-48」塔拉梵•基恩!', - en='...Directly provoke P-48 Taravan Keane!', - jp='…「P-48」タラファン・キーンに直接挑む!', - es='... ¡Provocas directamente a Taravan Keane P-48!', -) -Directly_provoke_P_48_Madam_Scarred_Eye_90 = RogueEventOption( - id=309, - name='Directly_provoke_P_48_Madam_Scarred_Eye_90', - cn='…直接挑衅「P-48」疤眼夫人!', - cht='……直接挑釁「P-48」疤眼夫人!', - en='...Directly provoke P-48 Madam Scarred Eye!', - jp='…「P-48」スカー・アイ夫人に直接挑む!', - es='... ¡Provocas directamente a la señora Ojo Marcado P-48!', -) -You_look_at_the_emptiness_all_around_you_90 = RogueEventOption( - id=310, - name='You_look_at_the_emptiness_all_around_you_90', - cn='你望着四周空荡荡的一片。', - cht='你望著四周空蕩蕩的一片。', - en='You look at the emptiness all around you.', - jp='何もない周囲を見渡す', - es='Contemplas el vacío a tu alrededor.', -) -Dedicate_off_duty_time_to_the_Amber_Lord_91 = RogueEventOption( - id=311, - name='Dedicate_off_duty_time_to_the_Amber_Lord_91', - cn='将下班时间献给琥珀王。', - cht='將下班時間獻給琥珀王。', - en='Dedicate off-duty time to the Amber Lord.', - jp='退勤時間を琥珀の王に捧げる', - es='Dedicas tu tiempo libre al Señor del Ámbar.', -) -Accurately_find_the_target_to_sell_star_systems_to_91 = RogueEventOption( - id=312, - name='Accurately_find_the_target_to_sell_star_systems_to_91', - cn='精准地寻找目标销售星系。', - cht='精準地尋找目標銷售星系。', - en='Accurately find the target to sell star systems to.', - jp='目標の販売星系を正確に探す', - es='Encuentras con precisión el objetivo al que vender sistemas estelares.', -) -Convene_the_Universal_Finance_Conference_91 = RogueEventOption( - id=313, - name='Convene_the_Universal_Finance_Conference_91', - cn='召开「宇宙金融会议」。', - cht='召開「宇宙金融會議」。', - en='Convene the "Universal Finance Conference."', - jp='「宇宙金融会議」を開催する', - es='Convocas la Conferencia Financiera Universal.', -) -Settle_the_Expert_Skills_Training_91 = RogueEventOption( - id=314, - name='Settle_the_Expert_Skills_Training_91', - cn='沉淀「专家技能培训」。', - cht='沉澱「專家技能培訓」。', - en='Settle the "Expert Skills Training."', - jp='「専門家スキル研修」を結集させる', - es='Convocas el Entrenamiento de Habilidades para Expertos.', -) -Care_for_the_physical_and_mental_health_of_the_temporary_workers_91 = RogueEventOption( - id=315, - name='Care_for_the_physical_and_mental_health_of_the_temporary_workers_91', - cn='关心临时雇佣工的身心健康。', - cht='關心臨時工的身心健康。', - en='Care for the physical and mental health of the temporary workers.', - jp='臨時従業員の心身の健康に注意を払う', - es='Velas por la salud física y mental de los trabajadores temporales.', -) -Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_91 = RogueEventOption( - id=316, - name='Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_91', - cn='把下周约满*跨物种联谊派对*!', - cht='把下週約滿*跨物種聯誼派對*!', - en='Fully book the following week with the Interspecies Bonding Party!', - jp='翌週を※種族間合コンパーティー※の予定でいっぱいにする!', - es='¡Reservas íntegramente la semana siguiente para la Fiesta de Cortejo Interespecies!', -) -Launch_Celebrity_High_Social_91 = RogueEventOption( - id=317, - name='Launch_Celebrity_High_Social_91', - cn='展开「名流高级社交」。', - cht='展開「名流高級社交」。', - en='Launch "Celebrity High Social."', - jp='「上流社会交流」を推し進める', - es='Lanzas el evento Celebridades de la Alta Sociedad.', -) -Give_a_shocking_interstellar_speech_91 = RogueEventOption( - id=318, - name='Give_a_shocking_interstellar_speech_91', - cn='发表震撼人心的「星际演讲」!', - cht='發表震撼人心的「星際演講」!', - en='Give a shocking "interstellar speech"!', - jp='心に響く「スタースピーチ」を発表する!', - es='¡Pronuncias un impactante discurso interastral!', -) -You_are_eager_to_beat_the_big_shots_91 = RogueEventOption( - id=319, - name='You_are_eager_to_beat_the_big_shots_91', - cn='你渴望打败大人物!', - cht='你渴望打敗大人物!', - en='You are eager to beat the big shots!', - jp='大人物を打ち倒したいと切望している!', - es='¡Estás deseando vencer a los peces gordos!', -) -Review_the_secrets_of_interstellar_success_91 = RogueEventOption( - id=320, - name='Review_the_secrets_of_interstellar_success_91', - cn='回顾星际成功秘传…', - cht='回顧星際成功秘傳……', - en='Review the secrets of interstellar success...', - jp='銀河で成功する秘密を振り返る…', - es='Repasa los secretos del éxito interastral...', -) -Directly_provoke_P_48_Taravan_Keane_91 = RogueEventOption( - id=321, - name='Directly_provoke_P_48_Taravan_Keane_91', - cn='…直接挑衅「P-48」塔拉梵•基恩!', - cht='……直接挑釁「P-48」塔拉梵•基恩!', - en='...Directly provoke P-48 Taravan Keane!', - jp='…「P-48」タラファン・キーンに直接挑む!', - es='... ¡Provocas directamente a Taravan Keane P-48!', -) -Directly_provoke_P_48_Madam_Scarred_Eye_91 = RogueEventOption( - id=322, - name='Directly_provoke_P_48_Madam_Scarred_Eye_91', - cn='…直接挑衅「P-48」疤眼夫人!', - cht='……直接挑釁「P-48」疤眼夫人!', - en='...Directly provoke P-48 Madam Scarred Eye!', - jp='…「P-48」スカー・アイ夫人に直接挑む!', - es='... ¡Provocas directamente a la señora Ojo Marcado P-48!', -) -You_look_at_the_emptiness_all_around_you_91 = RogueEventOption( - id=323, - name='You_look_at_the_emptiness_all_around_you_91', - cn='你望着四周空荡荡的一片。', - cht='你望著四周空蕩蕩的一片。', - en='You look at the emptiness all around you.', - jp='何もない周囲を見渡す', - es='Contemplas el vacío a tu alrededor.', -) -Accurately_find_the_target_to_sell_star_systems_to_92 = RogueEventOption( - id=324, - name='Accurately_find_the_target_to_sell_star_systems_to_92', - cn='精准地寻找目标销售星系。', - cht='精準地尋找目標銷售星系。', - en='Accurately find the target to sell star systems to.', - jp='目標の販売星系を正確に探す', - es='Encuentras con precisión el objetivo al que vender sistemas estelares.', -) -Convene_the_Universal_Finance_Conference_92 = RogueEventOption( - id=325, - name='Convene_the_Universal_Finance_Conference_92', - cn='召开「宇宙金融会议」。', - cht='召開「宇宙金融會議」。', - en='Convene the "Universal Finance Conference."', - jp='「宇宙金融会議」を開催する', - es='Convocas la Conferencia Financiera Universal.', -) -Settle_the_Expert_Skills_Training_92 = RogueEventOption( - id=326, - name='Settle_the_Expert_Skills_Training_92', - cn='沉淀「专家技能培训」。', - cht='沉澱「專家技能培訓」。', - en='Settle the "Expert Skills Training."', - jp='「専門家スキル研修」を結集させる', - es='Convocas el Entrenamiento de Habilidades para Expertos.', -) -Care_for_the_physical_and_mental_health_of_the_temporary_workers_92 = RogueEventOption( - id=327, - name='Care_for_the_physical_and_mental_health_of_the_temporary_workers_92', - cn='关心临时雇佣工的身心健康。', - cht='關心臨時工的身心健康。', - en='Care for the physical and mental health of the temporary workers.', - jp='臨時従業員の心身の健康に注意を払う', - es='Velas por la salud física y mental de los trabajadores temporales.', -) -Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_92 = RogueEventOption( - id=328, - name='Fully_book_the_following_week_with_the_Interspecies_Bonding_Party_92', - cn='把下周约满*跨物种联谊派对*!', - cht='把下週約滿*跨物種聯誼派對*!', - en='Fully book the following week with the Interspecies Bonding Party!', - jp='翌週を※種族間合コンパーティー※の予定でいっぱいにする!', - es='¡Reservas íntegramente la semana siguiente para la Fiesta de Cortejo Interespecies!', -) -Launch_Celebrity_High_Social_92 = RogueEventOption( - id=329, - name='Launch_Celebrity_High_Social_92', - cn='展开「名流高级社交」。', - cht='展開「名流高級社交」。', - en='Launch "Celebrity High Social."', - jp='「上流社会交流」を推し進める', - es='Lanzas el evento Celebridades de la Alta Sociedad.', -) -Give_a_shocking_interstellar_speech_92 = RogueEventOption( - id=330, - name='Give_a_shocking_interstellar_speech_92', - cn='发表震撼人心的「星际演讲」!', - cht='發表震撼人心的「星際演講」!', - en='Give a shocking "interstellar speech"!', - jp='心に響く「スタースピーチ」を発表する!', - es='¡Pronuncias un impactante discurso interastral!', -) -You_are_eager_to_beat_the_big_shots_92 = RogueEventOption( - id=331, - name='You_are_eager_to_beat_the_big_shots_92', - cn='你渴望打败大人物!', - cht='你渴望打敗大人物!', - en='You are eager to beat the big shots!', - jp='大人物を打ち倒したいと切望している!', - es='¡Estás deseando vencer a los peces gordos!', -) -Review_the_secrets_of_interstellar_success_92 = RogueEventOption( - id=332, - name='Review_the_secrets_of_interstellar_success_92', - cn='回顾星际成功秘传…', - cht='回顧星際成功秘傳……', - en='Review the secrets of interstellar success...', - jp='銀河で成功する秘密を振り返る…', - es='Repasa los secretos del éxito interastral...', -) -Directly_provoke_P_48_Taravan_Keane_92 = RogueEventOption( - id=333, - name='Directly_provoke_P_48_Taravan_Keane_92', - cn='…直接挑衅「P-48」塔拉梵•基恩!', - cht='……直接挑釁「P-48」塔拉梵•基恩!', - en='...Directly provoke P-48 Taravan Keane!', - jp='…「P-48」タラファン・キーンに直接挑む!', - es='... ¡Provocas directamente a Taravan Keane P-48!', -) -Directly_provoke_P_48_Madam_Scarred_Eye_92 = RogueEventOption( - id=334, - name='Directly_provoke_P_48_Madam_Scarred_Eye_92', - cn='…直接挑衅「P-48」疤眼夫人!', - cht='……直接挑釁「P-48」疤眼夫人!', - en='...Directly provoke P-48 Madam Scarred Eye!', - jp='…「P-48」スカー・アイ夫人に直接挑む!', - es='... ¡Provocas directamente a la señora Ojo Marcado P-48!', -) -You_look_at_the_emptiness_all_around_you_92 = RogueEventOption( - id=335, - name='You_look_at_the_emptiness_all_around_you_92', - cn='你望着四周空荡荡的一片。', - cht='你望著四周空蕩蕩的一片。', - en='You look at the emptiness all around you.', - jp='何もない周囲を見渡す', - es='Contemplas el vacío a tu alrededor.', -) -Deposit_2_Cosmic_Fragments_93 = RogueEventOption( - id=336, - name='Deposit_2_Cosmic_Fragments_93', +Deposit_2_Cosmic_Fragments = RogueEventOption( + id=255, + name='Deposit_2_Cosmic_Fragments', cn='存入#2宇宙碎片。', cht='存入#2宇宙碎片。', en='Deposit #2 Cosmic Fragment(s).', jp='宇宙の欠片を#2振り込む', es='Depositas #2 fragmentos cósmicos.', ) -Leave_93 = RogueEventOption( - id=337, - name='Leave_93', - cn='走开。', - cht='走開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) -Tamper_with_the_bank_teller_memory_93 = RogueEventOption( - id=338, - name='Tamper_with_the_bank_teller_memory_93', +Tamper_with_the_bank_teller_memory = RogueEventOption( + id=256, + name='Tamper_with_the_bank_teller_memory', cn='篡改银行柜员的记忆。', cht='篡改銀行行員的記憶。', en="Tamper with the bank teller's memory.", jp='銀行の窓口係の記憶を書き換える', es='Saboteas la memoria del cajero del banco.', ) -Show_off_your_muscles_to_the_teller_93 = RogueEventOption( - id=339, - name='Show_off_your_muscles_to_the_teller_93', +Show_off_your_muscles_to_the_teller = RogueEventOption( + id=257, + name='Show_off_your_muscles_to_the_teller', cn='向柜员秀出你的肌肉!', cht='向行員秀出你的肌肉!', en='Show off your muscles to the teller!', jp='窓口係に自分の筋肉を見せつける!', es='¡Muestras tus músculos al cajero!', ) -Withdraw_2_Cosmic_Fragments_93 = RogueEventOption( - id=340, - name='Withdraw_2_Cosmic_Fragments_93', - cn='取出#2宇宙碎片。', - cht='取出#2宇宙碎片。', - en='Withdraw #2 Cosmic Fragment(s).', - jp='宇宙の欠片を#2引き出す', - es='Retiras #2 fragmentos cósmicos.', -) -Deposit_2_Cosmic_Fragments_94 = RogueEventOption( - id=341, - name='Deposit_2_Cosmic_Fragments_94', - cn='存入#2宇宙碎片。', - cht='存入#2宇宙碎片。', - en='Deposit #2 Cosmic Fragment(s).', - jp='宇宙の欠片を#2振り込む', - es='Depositas #2 fragmentos cósmicos.', -) -Leave_94 = RogueEventOption( - id=342, - name='Leave_94', - cn='走开。', - cht='走開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) -Tamper_with_the_bank_teller_memory_94 = RogueEventOption( - id=343, - name='Tamper_with_the_bank_teller_memory_94', - cn='篡改银行柜员的记忆。', - cht='篡改銀行行員的記憶。', - en="Tamper with the bank teller's memory.", - jp='銀行の窓口係の記憶を書き換える', - es='Saboteas la memoria del cajero del banco.', -) -Show_off_your_muscles_to_the_teller_94 = RogueEventOption( - id=344, - name='Show_off_your_muscles_to_the_teller_94', - cn='向柜员秀出你的肌肉!', - cht='向行員秀出你的肌肉!', - en='Show off your muscles to the teller!', - jp='窓口係に自分の筋肉を見せつける!', - es='¡Muestras tus músculos al cajero!', -) -Withdraw_2_Cosmic_Fragments_94 = RogueEventOption( - id=345, - name='Withdraw_2_Cosmic_Fragments_94', +Withdraw_2_Cosmic_Fragments = RogueEventOption( + id=258, + name='Withdraw_2_Cosmic_Fragments', cn='取出#2宇宙碎片。', cht='取出#2宇宙碎片。', en='Withdraw #2 Cosmic Fragment(s).', @@ -3109,7 +2326,7 @@ Withdraw_2_Cosmic_Fragments_94 = RogueEventOption( es='Retiras #2 fragmentos cósmicos.', ) Feed_the_Erethian_galaxy_sea_salt_snack = RogueEventOption( - id=346, + id=259, name='Feed_the_Erethian_galaxy_sea_salt_snack', cn='喂食厄勒特希亚星系「海盐点心」。', cht='餵食厄勒特希亞星系「海鹽點心」。', @@ -3117,134 +2334,62 @@ Feed_the_Erethian_galaxy_sea_salt_snack = RogueEventOption( jp='エルトシア星系の「海塩菓子」を与える', es='Le das un bocadillo de sal marina de la galaxia de Erethia.', ) -Use_the_specialty_cleaning_foam_of_Washtopia_95 = RogueEventOption( - id=347, - name='Use_the_specialty_cleaning_foam_of_Washtopia_95', +Use_the_specialty_cleaning_foam_of_Washtopia = RogueEventOption( + id=260, + name='Use_the_specialty_cleaning_foam_of_Washtopia', cn='使用洗车星埠口特产「清洁泡沫」。', cht='使用洗車星埠口特產「清潔泡沫」。', en='Use the specialty "cleaning foam" of Washtopia.', jp='洗車星埠頭の特産品「洗浄フォーム」を使用する', es='Utilizas la espuma limpiadora especial de Lavatopia.', ) -Feed_the_Vortex_Colony_special_milk_tea_95 = RogueEventOption( - id=348, - name='Feed_the_Vortex_Colony_special_milk_tea_95', +Feed_the_Vortex_Colony_special_milk_tea = RogueEventOption( + id=261, + name='Feed_the_Vortex_Colony_special_milk_tea', cn='喂食漩涡星聚落「特饮奶茶」。', cht='餵食漩渦星聚落「特調奶茶」。', en='Feed the Vortex Colony\'s "special milk tea."', jp='ヴォルテックス星の集落の「特製ミルクティー」を与える', es='Le das un té con leche especial de la colonia Vórtice.', ) -Use_your_own_blood_to_feed_it_95 = RogueEventOption( - id=349, - name='Use_your_own_blood_to_feed_it_95', +Use_your_own_blood_to_feed_it = RogueEventOption( + id=262, + name='Use_your_own_blood_to_feed_it', cn='用自己的血液喂饱*它*。', cht='用自己的血液餵飽*牠*。', en='Use your own blood to feed "it."', jp='自分の血を※それ※に与える', es='Usas tu propia sangre para alimentar "eso".', ) -Take_care_of_it_wholeheartedly_95 = RogueEventOption( - id=350, - name='Take_care_of_it_wholeheartedly_95', +Take_care_of_it_wholeheartedly = RogueEventOption( + id=263, + name='Take_care_of_it_wholeheartedly', cn='用心呵护*它*。', cht='用心呵護*牠*。', en='Take care of "it" wholeheartedly.', jp='※それ※を大切にする', es='Cuidas de "eso" con todo tu corazón.', ) -Accept_the_Heartfelt_Gift_95 = RogueEventOption( - id=351, - name='Accept_the_Heartfelt_Gift_95', +Accept_the_Heartfelt_Gift = RogueEventOption( + id=264, + name='Accept_the_Heartfelt_Gift', cn='接受「爱心小礼物」。', cht='接受「愛心小禮物」。', en='Accept the "Heartfelt Gift."', jp='「思いやりのプレゼント」を受け取る', es='Aceptas el regalo de corazón.', ) -Accept_the_Life_Favor_95 = RogueEventOption( - id=352, - name='Accept_the_Life_Favor_95', +Accept_the_Life_Favor = RogueEventOption( + id=265, + name='Accept_the_Life_Favor', cn='接受「生命的回馈」。', cht='接受「生命的回饋」。', en='Accept the "Life\'s Favor."', jp='「命の贈物」を受け取る', es='Aceptas el favor de la vida.', ) -Refuse_95 = RogueEventOption( - id=353, - name='Refuse_95', - cn='拒绝。', - cht='拒絕。', - en='Refuse.', - jp='拒否する', - es='Recházalo.', -) -Use_the_specialty_cleaning_foam_of_Washtopia_96 = RogueEventOption( - id=354, - name='Use_the_specialty_cleaning_foam_of_Washtopia_96', - cn='使用洗车星埠口特产「清洁泡沫」。', - cht='使用洗車星埠口特產「清潔泡沫」。', - en='Use the specialty "cleaning foam" of Washtopia.', - jp='洗車星埠頭の特産品「洗浄フォーム」を使用する', - es='Utilizas la espuma limpiadora especial de Lavatopia.', -) -Feed_the_Vortex_Colony_special_milk_tea_96 = RogueEventOption( - id=355, - name='Feed_the_Vortex_Colony_special_milk_tea_96', - cn='喂食漩涡星聚落「特饮奶茶」。', - cht='餵食漩渦星聚落「特調奶茶」。', - en='Feed the Vortex Colony\'s "special milk tea."', - jp='ヴォルテックス星の集落の「特製ミルクティー」を与える', - es='Le das un té con leche especial de la colonia Vórtice.', -) -Use_your_own_blood_to_feed_it_96 = RogueEventOption( - id=356, - name='Use_your_own_blood_to_feed_it_96', - cn='用自己的血液喂饱*它*。', - cht='用自己的血液餵飽*牠*。', - en='Use your own blood to feed "it."', - jp='自分の血を※それ※に与える', - es='Usas tu propia sangre para alimentar "eso".', -) -Take_care_of_it_wholeheartedly_96 = RogueEventOption( - id=357, - name='Take_care_of_it_wholeheartedly_96', - cn='用心呵护*它*。', - cht='用心呵護*牠*。', - en='Take care of "it" wholeheartedly.', - jp='※それ※を大切にする', - es='Cuidas de "eso" con todo tu corazón.', -) -Accept_the_Heartfelt_Gift_96 = RogueEventOption( - id=358, - name='Accept_the_Heartfelt_Gift_96', - cn='接受「爱心小礼物」。', - cht='接受「愛心小禮物」。', - en='Accept the "Heartfelt Gift."', - jp='「思いやりのプレゼント」を受け取る', - es='Aceptas el regalo de corazón.', -) -Accept_the_Life_Favor_96 = RogueEventOption( - id=359, - name='Accept_the_Life_Favor_96', - cn='接受「生命的回馈」。', - cht='接受「生命的回饋」。', - en='Accept the "Life\'s Favor."', - jp='「命の贈物」を受け取る', - es='Aceptas el favor de la vida.', -) -Refuse_96 = RogueEventOption( - id=360, - name='Refuse_96', - cn='拒绝。', - cht='拒絕。', - en='Refuse.', - jp='拒否する', - es='Recházalo.', -) Toss_your_trash_in = RogueEventOption( - id=361, + id=266, name='Toss_your_trash_in', cn='把你的废物丢进去!', cht='把你的垃圾丟進去!', @@ -3252,17 +2397,8 @@ Toss_your_trash_in = RogueEventOption( jp='自分のゴミを投げ捨てよう!', es='¡Arrojas tu basura adentro!', ) -Leave_97 = RogueEventOption( - id=362, - name='Leave_97', - cn='离开。', - cht='離開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) Quickly_take_it_while_he_not_paying_attention = RogueEventOption( - id=363, + id=267, name='Quickly_take_it_while_he_not_paying_attention', cn='趁他不注意,快速窃取!', cht='趁他不注意,快速竊取!', @@ -3271,7 +2407,7 @@ Quickly_take_it_while_he_not_paying_attention = RogueEventOption( es='Rápido, ¡llévatelo mientras no está prestando atención!', ) You_recall_the_past_lives_of_these_discarded_objects = RogueEventOption( - id=364, + id=268, name='You_recall_the_past_lives_of_these_discarded_objects', cn='你想起了这些废弃物品的前世今生。', cht='你想起了這些廢棄物品的前世今生。', @@ -3280,7 +2416,7 @@ You_recall_the_past_lives_of_these_discarded_objects = RogueEventOption( es='Recuerdas las vidas pasadas de estos objetos desechados.', ) Make_a_detour = RogueEventOption( - id=365, + id=269, name='Make_a_detour', cn='绕路。', cht='繞路。', @@ -3288,305 +2424,107 @@ Make_a_detour = RogueEventOption( jp='回り道', es='Das un rodeo.', ) -Take_spore_98 = RogueEventOption( - id=366, - name='Take_spore_98', +Take_spore = RogueEventOption( + id=270, + name='Take_spore', cn='窃取「孢子」。', cht='竊取「孢子」。', en='Take "spore."', jp='「胞子」を盗む', es='Tomas esporas.', ) -Leave_98 = RogueEventOption( - id=367, - name='Leave_98', - cn='离开。', - cht='離開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) -Help_the_Nameless_98 = RogueEventOption( - id=368, - name='Help_the_Nameless_98', +Help_the_Nameless = RogueEventOption( + id=271, + name='Help_the_Nameless', cn='解救「无名客」。', cht='解救「無名客」。', en='Help the "Nameless."', jp='「ナナシビト」を救う', es='Ayudas a los Anónimos.', ) -Leave_immediately_98 = RogueEventOption( - id=369, - name='Leave_immediately_98', +Leave_immediately = RogueEventOption( + id=272, + name='Leave_immediately', cn='立刻后退。', cht='立刻後退。', en='Leave immediately.', jp='直ちに後退する', es='Márchate inmediatamente.', ) -Tidy_things_up_98 = RogueEventOption( - id=370, - name='Tidy_things_up_98', +Tidy_things_up = RogueEventOption( + id=273, + name='Tidy_things_up', cn='清理它们。', cht='清理牠們。', en='Tidy things up.', jp='奴らを一掃する', es='Pones algo de orden.', ) -Take_spore_99 = RogueEventOption( - id=371, - name='Take_spore_99', - cn='窃取「孢子」。', - cht='竊取「孢子」。', - en='Take "spore."', - jp='「胞子」を盗む', - es='Tomas esporas.', -) -Leave_99 = RogueEventOption( - id=372, - name='Leave_99', - cn='离开。', - cht='離開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) -Help_the_Nameless_99 = RogueEventOption( - id=373, - name='Help_the_Nameless_99', - cn='解救「无名客」。', - cht='解救「無名客」。', - en='Help the "Nameless."', - jp='「ナナシビト」を救う', - es='Ayudas a los Anónimos.', -) -Leave_immediately_99 = RogueEventOption( - id=374, - name='Leave_immediately_99', - cn='立刻后退。', - cht='立刻後退。', - en='Leave immediately.', - jp='直ちに後退する', - es='Márchate inmediatamente.', -) -Tidy_things_up_99 = RogueEventOption( - id=375, - name='Tidy_things_up_99', - cn='清理它们。', - cht='清理牠們。', - en='Tidy things up.', - jp='奴らを一掃する', - es='Pones algo de orden.', -) -Leave_100 = RogueEventOption( - id=376, - name='Leave_100', - cn='离开。', - cht='離開。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) -Help_the_Nameless_100 = RogueEventOption( - id=377, - name='Help_the_Nameless_100', - cn='解救「无名客」。', - cht='解救「無名客」。', - en='Help the "Nameless."', - jp='「ナナシビト」を救う', - es='Ayudas a los Anónimos.', -) -Leave_immediately_100 = RogueEventOption( - id=378, - name='Leave_immediately_100', - cn='立刻后退。', - cht='立刻後退。', - en='Leave immediately.', - jp='直ちに後退する', - es='Márchate inmediatamente.', -) -Tidy_things_up_100 = RogueEventOption( - id=379, - name='Tidy_things_up_100', - cn='清理它们。', - cht='清理牠們。', - en='Tidy things up.', - jp='奴らを一掃する', - es='Pones algo de orden.', -) -Absorb_its_power_101 = RogueEventOption( - id=380, - name='Absorb_its_power_101', +Absorb_its_power = RogueEventOption( + id=274, + name='Absorb_its_power', cn='「吸取」它的力量。', cht='「吸取」牠的力量。', en='"Absorb" its power.', jp='その力を「吸い取る」', es='Absorbes su poder.', ) -Give_it_power_101 = RogueEventOption( - id=381, - name='Give_it_power_101', +Give_it_power = RogueEventOption( + id=275, + name='Give_it_power', cn='「给予」它力量', cht='「給予」牠力量', en='"Give" it power.', jp='それに力を「与える」', es='Darle fuerza.', ) -Give_it_power_102 = RogueEventOption( - id=382, - name='Give_it_power_102', - cn='「给予」它力量', - cht='「給予」牠力量', - en='"Give" it power.', - jp='それに力を「与える」', - es='Darle fuerza.', -) -Absorb_its_power_102 = RogueEventOption( - id=383, - name='Absorb_its_power_102', - cn='「吸取」它的力量。', - cht='「吸取」牠的力量。', - en='"Absorb" its power.', - jp='その力を「吸い取る」', - es='Absorbes su poder.', -) -Absorb_its_power_103 = RogueEventOption( - id=384, - name='Absorb_its_power_103', - cn='「吸取」它的力量。', - cht='「吸取」牠的力量。', - en='"Absorb" its power.', - jp='その力を「吸い取る」', - es='Absorbes su poder.', -) -Give_it_power_103 = RogueEventOption( - id=385, - name='Give_it_power_103', - cn='「给予」它力量', - cht='「給予」牠力量', - en='"Give" it power.', - jp='それに力を「与える」', - es='Darle fuerza.', -) -Kill_them_104 = RogueEventOption( - id=386, - name='Kill_them_104', +Kill_them = RogueEventOption( + id=276, + name='Kill_them', cn='进入杀死它们。', cht='進入殺死牠們。', en='Kill them.', jp='中に入って彼らを一掃する', es='Los matas.', ) -Leave_quietly_104 = RogueEventOption( - id=387, - name='Leave_quietly_104', +Leave_quietly = RogueEventOption( + id=277, + name='Leave_quietly', cn='悄悄离开。', cht='悄悄離開。', en='Leave quietly.', jp='静かに立ち去る', es='Te marchas en silencio.', ) -Leave_hurriedly_104 = RogueEventOption( - id=388, - name='Leave_hurriedly_104', +Leave_hurriedly = RogueEventOption( + id=278, + name='Leave_hurriedly', cn='慌忙逃走。', cht='慌忙逃走。', en='Leave hurriedly.', jp='逃げる', es='Márchate de prisa.', ) -Leave_quietly_105 = RogueEventOption( - id=389, - name='Leave_quietly_105', - cn='悄悄离开。', - cht='悄悄離開。', - en='Leave quietly.', - jp='静かに立ち去る', - es='Te marchas en silencio.', -) -Kill_them_105 = RogueEventOption( - id=390, - name='Kill_them_105', - cn='进入杀死它们。', - cht='進入殺死牠們。', - en='Kill them.', - jp='中に入って彼らを一掃する', - es='Los matas.', -) -Leave_hurriedly_105 = RogueEventOption( - id=391, - name='Leave_hurriedly_105', - cn='慌忙逃走。', - cht='慌忙逃走。', - en='Leave hurriedly.', - jp='逃げる', - es='Márchate de prisa.', -) -Kill_them_106 = RogueEventOption( - id=392, - name='Kill_them_106', - cn='进入杀死它们。', - cht='進入殺死牠們。', - en='Kill them.', - jp='中に入って彼らを一掃する', - es='Los matas.', -) -Leave_quietly_106 = RogueEventOption( - id=393, - name='Leave_quietly_106', - cn='悄悄离开。', - cht='悄悄離開。', - en='Leave quietly.', - jp='静かに立ち去る', - es='Te marchas en silencio.', -) -Leave_hurriedly_106 = RogueEventOption( - id=394, - name='Leave_hurriedly_106', - cn='慌忙逃走。', - cht='慌忙逃走。', - en='Leave hurriedly.', - jp='逃げる', - es='Márchate de prisa.', -) -Enter_and_explore_the_Nameless_relics_107 = RogueEventOption( - id=395, - name='Enter_and_explore_the_Nameless_relics_107', +Enter_and_explore_the_Nameless_relics = RogueEventOption( + id=279, + name='Enter_and_explore_the_Nameless_relics', cn='进入探取无名客遗物。', cht='進入探取無名客遺物。', en='Enter and explore the Nameless relics.', jp='中に入ってナナシビトの遺物を探す', es='Entras y explora las reliquias de los Anónimos.', ) -Join_the_Combatobug_combat_unit_107 = RogueEventOption( - id=396, - name='Join_the_Combatobug_combat_unit_107', +Join_the_Combatobug_combat_unit = RogueEventOption( + id=280, + name='Join_the_Combatobug_combat_unit', cn='加入「鏖兜虫」作战单位。', cht='加入「鏖兜蟲」作戰單位。', en='Join the "Combatobug" combat unit.', jp='「鏖兜虫」の戦闘ユニットに加わる', es='Te unes a la unidad de combate Puñoinsecto.', ) -Join_the_Combatobug_combat_unit_108 = RogueEventOption( - id=397, - name='Join_the_Combatobug_combat_unit_108', - cn='加入「鏖兜虫」作战单位。', - cht='加入「鏖兜蟲」作戰單位。', - en='Join the "Combatobug" combat unit.', - jp='「鏖兜虫」の戦闘ユニットに加わる', - es='Te unes a la unidad de combate Puñoinsecto.', -) -Enter_and_explore_the_Nameless_relics_108 = RogueEventOption( - id=398, - name='Enter_and_explore_the_Nameless_relics_108', - cn='进入探取无名客遗物。', - cht='進入探取無名客遺物。', - en='Enter and explore the Nameless relics.', - jp='中に入ってナナシビトの遺物を探す', - es='Entras y explora las reliquias de los Anónimos.', -) Invite_the_Device_Assistant_to_arrange_remotely = RogueEventOption( - id=399, + id=281, name='Invite_the_Device_Assistant_to_arrange_remotely', cn='邀请「设备助理」远程布局。', cht='邀請「設備助理」遠端佈局。', @@ -3594,99 +2532,36 @@ Invite_the_Device_Assistant_to_arrange_remotely = RogueEventOption( jp='「デバイスアシスタント」を招待してリモート構成をする', es='Invitas al asistente de dispositivos a organizarlo a distancia.', ) -Take_care_of_the_surrounding_Swarm_109 = RogueEventOption( - id=400, - name='Take_care_of_the_surrounding_Swarm_109', +Take_care_of_the_surrounding_Swarm = RogueEventOption( + id=282, + name='Take_care_of_the_surrounding_Swarm', cn='解决周围的虫群。', cht='解決周圍的蟲群。', en='Take care of the surrounding Swarm.', jp='周囲のスウォームを倒す', es='Te encargas del Enjambre de alrededor.', ) -Drink_the_Doctors_of_Chaos_medicine_109 = RogueEventOption( - id=401, - name='Drink_the_Doctors_of_Chaos_medicine_109', +Drink_the_Doctors_of_Chaos_medicine = RogueEventOption( + id=283, + name='Drink_the_Doctors_of_Chaos_medicine', cn='喝下「混沌医师」的药。', cht='喝下「混沌醫師」的藥。', en='Drink the Doctors of Chaos medicine.', jp='「混沌医師」の薬を飲む', es='Bebes la medicina de los Doctores del Caos.', ) -Charge_head_on_109 = RogueEventOption( - id=402, - name='Charge_head_on_109', +Charge_head_on = RogueEventOption( + id=284, + name='Charge_head_on', cn='正面突入!', cht='正面突入!', en='Charge head-on!', jp='正面から突入する!', es='¡A la carga de frente!', ) -It_is_an_all_or_nothing_move_109 = RogueEventOption( - id=403, - name='It_is_an_all_or_nothing_move_109', - cn='这是一场孤注一掷的行动。', - cht='這是一場孤注一擲的行動。', - en='It is an all-or-nothing move.', - jp='これは一か八かの作戦だ', - es='Es una acción desesperada.', -) -Take_care_of_the_surrounding_Swarm_110 = RogueEventOption( - id=404, - name='Take_care_of_the_surrounding_Swarm_110', - cn='解决周围的虫群。', - cht='解決周圍的蟲群。', - en='Take care of the surrounding Swarm.', - jp='周囲のスウォームを倒す', - es='Te encargas del Enjambre de alrededor.', -) -Drink_the_Doctors_of_Chaos_medicine_110 = RogueEventOption( - id=405, - name='Drink_the_Doctors_of_Chaos_medicine_110', - cn='喝下「混沌医师」的药。', - cht='喝下「混沌醫師」的藥。', - en='Drink the Doctors of Chaos medicine.', - jp='「混沌医師」の薬を飲む', - es='Bebes la medicina de los Doctores del Caos.', -) -Charge_head_on_110 = RogueEventOption( - id=406, - name='Charge_head_on_110', - cn='正面突入!', - cht='正面突入!', - en='Charge head-on!', - jp='正面から突入する!', - es='¡A la carga de frente!', -) -It_is_an_all_or_nothing_move_110 = RogueEventOption( - id=407, - name='It_is_an_all_or_nothing_move_110', - cn='这是一场孤注一掷的行动。', - cht='這是一場孤注一擲的行動。', - en='It is an all-or-nothing move.', - jp='これは一か八かの作戦だ', - es='Es una acción desesperada.', -) -Drink_the_Doctors_of_Chaos_medicine_111 = RogueEventOption( - id=408, - name='Drink_the_Doctors_of_Chaos_medicine_111', - cn='喝下「混沌医师」的药。', - cht='喝下「混沌醫師」的藥。', - en='Drink the Doctors of Chaos medicine.', - jp='「混沌医師」の薬を飲む', - es='Bebes la medicina de los Doctores del Caos.', -) -Charge_head_on_111 = RogueEventOption( - id=409, - name='Charge_head_on_111', - cn='正面突入!', - cht='正面突入!', - en='Charge head-on!', - jp='正面から突入する!', - es='¡A la carga de frente!', -) -It_is_an_all_or_nothing_move_111 = RogueEventOption( - id=410, - name='It_is_an_all_or_nothing_move_111', +It_is_an_all_or_nothing_move = RogueEventOption( + id=285, + name='It_is_an_all_or_nothing_move', cn='这是一场孤注一掷的行动。', cht='這是一場孤注一擲的行動。', en='It is an all-or-nothing move.', @@ -3694,7 +2569,7 @@ It_is_an_all_or_nothing_move_111 = RogueEventOption( es='Es una acción desesperada.', ) Tell_fortune = RogueEventOption( - id=411, + id=286, name='Tell_fortune', cn='抽签。', cht='抽籤。', @@ -3703,7 +2578,7 @@ Tell_fortune = RogueEventOption( es='Quieres saber tu fortuna.', ) Refuse_invitation = RogueEventOption( - id=412, + id=287, name='Refuse_invitation', cn='拒绝邀请。', cht='拒絕邀請。', @@ -3712,7 +2587,7 @@ Refuse_invitation = RogueEventOption( es='Rechazas la invitación.', ) Choose_number_four_It_has_a_tiny_bow = RogueEventOption( - id=413, + id=288, name='Choose_number_four_It_has_a_tiny_bow', cn='选择四号:它装饰着小蝴蝶结!', cht='選擇四號:它裝飾著小蝴蝶結!', @@ -3721,7 +2596,7 @@ Choose_number_four_It_has_a_tiny_bow = RogueEventOption( es='Eliges la número 4: ¡tiene un lacito!', ) Choose_number_three_Its_teeth_are_rusted = RogueEventOption( - id=414, + id=289, name='Choose_number_three_Its_teeth_are_rusted', cn='选择三号:它的牙齿生锈了…', cht='選擇三號:它的牙齒生鏽了……', @@ -3730,7 +2605,7 @@ Choose_number_three_Its_teeth_are_rusted = RogueEventOption( es='Eliges la número 3: tiene los dientes podridos...', ) Choose_number_two_It_snores_like_Andatur_Zazzalo = RogueEventOption( - id=415, + id=290, name='Choose_number_two_It_snores_like_Andatur_Zazzalo', cn='选择二号:它打了个安达吐尔•扎罗式呼噜。', cht='選擇二號:它打了個安達吐爾•扎羅式式呼嚕。', @@ -3739,7 +2614,7 @@ Choose_number_two_It_snores_like_Andatur_Zazzalo = RogueEventOption( es='Eliges la número 2: ronca igual que Andatur Zazzalo.', ) Light_the_first_candle = RogueEventOption( - id=416, + id=291, name='Light_the_first_candle', cn='点亮第一盏烛火。', cht='點亮第一盞燭火。', @@ -3748,7 +2623,7 @@ Light_the_first_candle = RogueEventOption( es='Enciende la primera vela.', ) Light_the_second_candle = RogueEventOption( - id=417, + id=292, name='Light_the_second_candle', cn='点亮第二盏烛火。', cht='點亮第二盞燭火。', @@ -3757,7 +2632,7 @@ Light_the_second_candle = RogueEventOption( es='Enciende la segunda vela.', ) Light_the_third_candle = RogueEventOption( - id=418, + id=293, name='Light_the_third_candle', cn='点亮第三盏烛火。', cht='點亮第三盞燭火。', @@ -3765,17 +2640,8 @@ Light_the_third_candle = RogueEventOption( jp='3つ目のロウソクを灯す', es='Enciende la tercera vela.', ) -Leave_114 = RogueEventOption( - id=419, - name='Leave_114', - cn='离去。', - cht='離去。', - en='Leave.', - jp='立ち去る', - es='Márchate.', -) Silently_recite_what_you_want = RogueEventOption( - id=420, + id=294, name='Silently_recite_what_you_want', cn='默念你想要的。', cht='默唸你想要的。', @@ -3784,7 +2650,7 @@ Silently_recite_what_you_want = RogueEventOption( es='Recitas silenciosamente lo que quieres.', ) Make_a_wish_to_get_her_out_of_the_mirror = RogueEventOption( - id=421, + id=295, name='Make_a_wish_to_get_her_out_of_the_mirror', cn='许愿让她从镜子里出来。', cht='許願讓她從鏡子裡出來。', @@ -3793,7 +2659,7 @@ Make_a_wish_to_get_her_out_of_the_mirror = RogueEventOption( es='Pides un deseo para sacarla del espejo.', ) Give_me_some_startup_capital = RogueEventOption( - id=422, + id=296, name='Give_me_some_startup_capital', cn='给我一些启动资金吧', cht='給我一些啟動資金吧', @@ -3801,45 +2667,18 @@ Give_me_some_startup_capital = RogueEventOption( jp='起業資金をください', es='¡Necesito un capital inicial!', ) -Give_me_some_good_stuff_115 = RogueEventOption( - id=423, - name='Give_me_some_good_stuff_115', +Give_me_some_good_stuff = RogueEventOption( + id=297, + name='Give_me_some_good_stuff', cn='给我点好东西吧', cht='給我點好東西吧', en='Give me some good stuff', jp='いい物をください', es='¡Dame algo bueno!', ) -Do_nothing_115 = RogueEventOption( - id=424, - name='Do_nothing_115', - cn='什么也不做', - cht='什麼也不做', - en='Do nothing', - jp='何もしない', - es='No hacer nada.', -) -Give_me_some_good_stuff_116 = RogueEventOption( - id=425, - name='Give_me_some_good_stuff_116', - cn='给我点好东西吧', - cht='給我點好東西吧', - en='Give me some good stuff', - jp='いい物をください', - es='¡Dame algo bueno!', -) -Do_nothing_116 = RogueEventOption( - id=426, - name='Do_nothing_116', - cn='什么也不做', - cht='什麼也不做', - en='Do nothing', - jp='何もしない', - es='No hacer nada.', -) -Do_nothing_117 = RogueEventOption( - id=427, - name='Do_nothing_117', +Do_nothing = RogueEventOption( + id=298, + name='Do_nothing', cn='什么也不做', cht='什麼也不做', en='Do nothing', diff --git a/tasks/rogue/keywords/event_title.py b/tasks/rogue/keywords/event_title.py index 38632d80f..da954ce96 100644 --- a/tasks/rogue/keywords/event_title.py +++ b/tasks/rogue/keywords/event_title.py @@ -41,7 +41,7 @@ History_Fictionologists = RogueEventTitle( en='History Fictionologists', jp='虚構歴史学者', es='Historiador Espurio', - option_ids=[13, 14, 15, 16], + option_ids=[6, 13, 14, 15], ) Jim_Hulk_and_Jim_Hall = RogueEventTitle( id=5, @@ -51,7 +51,7 @@ Jim_Hulk_and_Jim_Hall = RogueEventTitle( en='Jim Hulk and Jim Hall', jp='ジャック・ハックとジャック・ハウル', es='Jim Hulk y Jim Hall', - option_ids=[17, 18, 19, 20], + option_ids=[16, 17, 18, 19], ) Shopping_Channel = RogueEventTitle( id=6, @@ -61,7 +61,7 @@ Shopping_Channel = RogueEventTitle( en='Shopping Channel', jp='テレビショッピングチャンネル', es='Teletienda', - option_ids=[21, 22, 23, 24, 25], + option_ids=[20, 21, 22, 23, 24], ) The_Cremators = RogueEventTitle( id=7, @@ -71,7 +71,7 @@ The_Cremators = RogueEventTitle( en='The Cremators', jp='焼却人', es='Incineradores', - option_ids=[26, 27, 28, 29], + option_ids=[25, 26, 27, 28], ) Interactive_Arts = RogueEventTitle( id=8, @@ -81,7 +81,7 @@ Interactive_Arts = RogueEventTitle( en='Interactive Arts', jp='相互性芸術', es='Arte interactivo', - option_ids=[30, 31, 32, 33, 34], + option_ids=[29, 30, 31, 32, 33], ) Pixel_World = RogueEventTitle( id=9, @@ -91,7 +91,7 @@ Pixel_World = RogueEventTitle( en='Pixel World', jp='ピクセルワールド', es='Mundo de píxeles', - option_ids=[35, 36, 37, 38], + option_ids=[34, 35, 36, 37], ) Aha_Stuffed_Toy = RogueEventTitle( id=10, @@ -101,7 +101,7 @@ Aha_Stuffed_Toy = RogueEventTitle( en='Aha Stuffed Toy', jp='アッハ人形', es='Muñeco de Aha', - option_ids=[39, 40, 41, 42], + option_ids=[38, 39, 40, 41], ) I_O_U_Dispenser = RogueEventTitle( id=11, @@ -111,7 +111,7 @@ I_O_U_Dispenser = RogueEventTitle( en='I.O.U. Dispenser', jp='謝債発行機', es='Dispensador de deuda', - option_ids=[43, 44, 45, 46, 47, 48, 49, 50, 51], + option_ids=[41, 42, 43, 44, 45, 46, 47, 48, 49, 50], ) Statue = RogueEventTitle( id=12, @@ -121,7 +121,7 @@ Statue = RogueEventTitle( en='Statue', jp='彫像', es='Estatua', - option_ids=[52, 53, 54, 55], + option_ids=[50, 51, 52, 53], ) Insect_Nest = RogueEventTitle( id=13, @@ -131,7 +131,7 @@ Insect_Nest = RogueEventTitle( en='Insect Nest', jp='蟲の巣', es='Nido de insectos', - option_ids=[56, 57, 58, 59, 60, 61], + option_ids=[54, 55, 56, 57, 58, 59], ) Three_Little_Pigs = RogueEventTitle( id=14, @@ -141,7 +141,7 @@ Three_Little_Pigs = RogueEventTitle( en='Three Little Pigs', jp='三匹の子豚', es='Los tres cerditos', - option_ids=[62, 63, 64, 65], + option_ids=[60, 61, 62, 63], ) Unending_Darkness = RogueEventTitle( id=15, @@ -151,7 +151,7 @@ Unending_Darkness = RogueEventTitle( en='Unending Darkness', jp='果て無き暗闇', es='Oscuridad infinita', - option_ids=[66, 67, 68], + option_ids=[64, 65, 66], ) The_Architects = RogueEventTitle( id=16, @@ -161,7 +161,7 @@ The_Architects = RogueEventTitle( en='The Architects', jp='建創者', es='Los Arquitectos', - option_ids=[69, 70], + option_ids=[6, 67], ) Kindling_of_the_Self_Annihilator = RogueEventTitle( id=17, @@ -171,7 +171,7 @@ Kindling_of_the_Self_Annihilator = RogueEventTitle( en='Kindling of the Self-Annihilator', jp='自滅者の火種', es='Yesca del Autodestructor', - option_ids=[71, 72, 73], + option_ids=[68, 69, 70], ) Cosmic_Merchant_Part_1 = RogueEventTitle( id=18, @@ -181,7 +181,7 @@ Cosmic_Merchant_Part_1 = RogueEventTitle( en='Cosmic Merchant (Part 1)', jp='銀河の商人(その1)', es='Comerciante galáctico (I)', - option_ids=[74, 75, 76, 77, 78, 79, 80], + option_ids=[71, 72, 73, 74, 75, 76, 77], ) Cosmic_Con_Job_Part_2 = RogueEventTitle( id=19, @@ -191,7 +191,7 @@ Cosmic_Con_Job_Part_2 = RogueEventTitle( en='Cosmic Con Job (Part 2)', jp='銀河のペテン師(その2)', es='Engaño galáctico (II)', - option_ids=[81, 82, 83, 84, 85, 86], + option_ids=[72, 73, 74, 75, 76, 77], ) Cosmic_Altruist_Part_3 = RogueEventTitle( id=20, @@ -201,7 +201,7 @@ Cosmic_Altruist_Part_3 = RogueEventTitle( en='Cosmic Altruist (Part 3)', jp='銀河のお人好し(その3)', es='Altruismo galáctico (III)', - option_ids=[87, 88, 89, 90, 91], + option_ids=[73, 74, 75, 76, 77], ) Societal_Dreamscape = RogueEventTitle( id=21, @@ -211,7 +211,7 @@ Societal_Dreamscape = RogueEventTitle( en='Societal Dreamscape', jp='社会性の夢', es='Sueños de sociedad', - option_ids=[92, 93, 94, 95], + option_ids=[78, 79, 80, 81], ) Saleo_Part_1 = RogueEventTitle( id=22, @@ -221,7 +221,7 @@ Saleo_Part_1 = RogueEventTitle( en='Saleo (Part 1)', jp='サリオ(その1)', es='Saleo (I)', - option_ids=[96, 97, 98, 99, 100], + option_ids=[82, 83, 84, 85, 86], ) Sal_Part_2 = RogueEventTitle( id=23, @@ -231,7 +231,7 @@ Sal_Part_2 = RogueEventTitle( en='Sal (Part 2)', jp='サリ(その2)', es='Sal (II)', - option_ids=[101, 102, 103, 104, 105], + option_ids=[82, 83, 84, 85, 86], ) Leo_Part_3 = RogueEventTitle( id=24, @@ -241,7 +241,7 @@ Leo_Part_3 = RogueEventTitle( en='Leo (Part 3)', jp='リオ(その3)', es='Leo (III)', - option_ids=[106, 107, 108, 109, 110], + option_ids=[82, 83, 84, 85, 86], ) Bounty_Hunter = RogueEventTitle( id=25, @@ -251,7 +251,7 @@ Bounty_Hunter = RogueEventTitle( en='Bounty Hunter', jp='賞金稼ぎ', es='Cazarrecompensas', - option_ids=[111, 112, 113, 114], + option_ids=[17, 87, 88, 89], ) Implement_of_Error = RogueEventTitle( id=26, @@ -261,7 +261,7 @@ Implement_of_Error = RogueEventTitle( en='Implement of Error', jp='エラーアイテム', es='Objeto erróneo', - option_ids=[115, 116, 117, 118], + option_ids=[6, 90, 91, 92], ) We_Are_Cowboys = RogueEventTitle( id=27, @@ -271,7 +271,7 @@ We_Are_Cowboys = RogueEventTitle( en='We Are Cowboys', jp='俺たちカウボーイ', es='Somos vaqueros', - option_ids=[119, 120, 121, 122], + option_ids=[93, 94, 95, 96], ) Nildis = RogueEventTitle( id=28, @@ -281,7 +281,7 @@ Nildis = RogueEventTitle( en='Nildis', jp='ニールディスカード', es='Nildis', - option_ids=[123, 124], + option_ids=[97, 98], ) Rock_Paper_Scissors = RogueEventTitle( id=29, @@ -291,7 +291,7 @@ Rock_Paper_Scissors = RogueEventTitle( en='Rock, Paper, Scissors', jp='じゃんけん', es='Piedra, papel o tijera', - option_ids=[125, 126, 127, 128], + option_ids=[99, 100, 101, 102], ) Tavern = RogueEventTitle( id=30, @@ -301,7 +301,7 @@ Tavern = RogueEventTitle( en='Tavern', jp='パブ', es='Taberna', - option_ids=[129, 130, 131, 132, 133], + option_ids=[103, 104, 105, 106, 107], ) Periodic_Demon_Lord = RogueEventTitle( id=31, @@ -311,7 +311,7 @@ Periodic_Demon_Lord = RogueEventTitle( en='Periodic Demon Lord', jp='周期性大魔王', es='Rey Demonio Cíclico', - option_ids=[134, 135], + option_ids=[108, 109], ) Let_Exchange_Gifts = RogueEventTitle( id=32, @@ -321,7 +321,7 @@ Let_Exchange_Gifts = RogueEventTitle( en="Let's Exchange Gifts", jp='プレゼントを交換しようよ', es='¡Intercambiemos regalos!', - option_ids=[136, 137, 138, 139, 140], + option_ids=[110, 111, 112, 113, 114], ) Make_A_Wish = RogueEventTitle( id=33, @@ -331,7 +331,7 @@ Make_A_Wish = RogueEventTitle( en='Make A Wish', jp='願い事しようよ', es='Pide un deseo', - option_ids=[141, 142, 143, 144], + option_ids=[112, 115, 116, 117], ) Robot_Sales_Terminal = RogueEventTitle( id=34, @@ -341,7 +341,7 @@ Robot_Sales_Terminal = RogueEventTitle( en='Robot Sales Terminal', jp='ロボット販売端末', es='Terminal de venta de robots', - option_ids=[145, 146, 147, 148, 149], + option_ids=[112, 118, 119, 120, 121], ) Sand_King_Tayzzyronth_Part_1 = RogueEventTitle( id=35, @@ -351,7 +351,7 @@ Sand_King_Tayzzyronth_Part_1 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 1)', jp='「砂の王-タイズルス」・その1', es='Rey de la Arena: Tayzzyronth(I)', - option_ids=[150, 151], + option_ids=[122, 123], ) Sand_King_Tayzzyronth_Part_2 = RogueEventTitle( id=36, @@ -361,7 +361,7 @@ Sand_King_Tayzzyronth_Part_2 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 2)', jp='「砂の王-タイズルス」・その2', es='Rey de la Arena: Tayzzyronth(II)', - option_ids=[152, 153], + option_ids=[124, 125], ) Sand_King_Tayzzyronth_Part_3 = RogueEventTitle( id=37, @@ -371,7 +371,7 @@ Sand_King_Tayzzyronth_Part_3 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 3)', jp='「砂の王-タイズルス」・その3', es='Rey de la Arena: Tayzzyronth(III)', - option_ids=[154, 155], + option_ids=[126, 127], ) Sand_King_Tayzzyronth_Part_4 = RogueEventTitle( id=38, @@ -381,7 +381,7 @@ Sand_King_Tayzzyronth_Part_4 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 4)', jp='「砂の王-タイズルス」・その4', es='Rey de la Arena: Tayzzyronth(IV)', - option_ids=[156, 157, 158, 159], + option_ids=[127, 128, 129, 130], ) Sand_King_Tayzzyronth_Part_5 = RogueEventTitle( id=39, @@ -391,7 +391,7 @@ Sand_King_Tayzzyronth_Part_5 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 5)', jp='「砂の王-タイズルス」・その5', es='Rey de la Arena: Tayzzyronth(V)', - option_ids=[160, 161], + option_ids=[131, 132], ) Sand_King_Tayzzyronth_Part_6 = RogueEventTitle( id=40, @@ -401,7 +401,7 @@ Sand_King_Tayzzyronth_Part_6 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 6)', jp='「砂の王-タイズルス」・その6', es='Rey de la Arena: Tayzzyronth(VI)', - option_ids=[162, 163, 164], + option_ids=[127, 133, 134], ) Sand_King_Tayzzyronth_Part_7 = RogueEventTitle( id=41, @@ -411,7 +411,7 @@ Sand_King_Tayzzyronth_Part_7 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 7)', jp='「砂の王-タイズルス」・その7', es='Rey de la Arena: Tayzzyronth(VII)', - option_ids=[165, 166], + option_ids=[135, 136], ) Sand_King_Tayzzyronth_Part_8 = RogueEventTitle( id=42, @@ -421,7 +421,7 @@ Sand_King_Tayzzyronth_Part_8 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 8)', jp='「砂の王-タイズルス」・その8', es='Rey de la Arena: Tayzzyronth(VIII)', - option_ids=[167, 168], + option_ids=[137, 138], ) Sand_King_Tayzzyronth_Part_9 = RogueEventTitle( id=43, @@ -431,7 +431,7 @@ Sand_King_Tayzzyronth_Part_9 = RogueEventTitle( en='Sand King: Tayzzyronth (Part 9)', jp='「砂の王-タイズルス」・その9', es='Rey de la Arena: Tayzzyronth(IX)', - option_ids=[169, 170], + option_ids=[139, 140], ) Lepismat_System_Massacre_Saga_Part_1 = RogueEventTitle( id=44, @@ -441,7 +441,7 @@ Lepismat_System_Massacre_Saga_Part_1 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 1)', jp='「蟲星系-虐殺紀」・その1', es='Galaxia de Insectiria: saga de la masacre(I)', - option_ids=[171, 172], + option_ids=[141, 142], ) Lepismat_System_Massacre_Saga_Part_2 = RogueEventTitle( id=45, @@ -451,7 +451,7 @@ Lepismat_System_Massacre_Saga_Part_2 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 2)', jp='「蟲星系-虐殺紀」・その2', es='Galaxia de Insectiria: saga de la masacre(II)', - option_ids=[173, 174], + option_ids=[143, 144], ) Lepismat_System_Massacre_Saga_Part_3 = RogueEventTitle( id=46, @@ -461,7 +461,7 @@ Lepismat_System_Massacre_Saga_Part_3 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 3)', jp='「蟲星系-虐殺紀」・その3', es='Galaxia de Insectiria: saga de la masacre(III)', - option_ids=[175, 176], + option_ids=[145, 146], ) Lepismat_System_Massacre_Saga_Part_4 = RogueEventTitle( id=47, @@ -471,7 +471,7 @@ Lepismat_System_Massacre_Saga_Part_4 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 4)', jp='「蟲星系-虐殺紀」・その4', es='Galaxia de Insectiria: saga de la masacre(IV)', - option_ids=[177, 178], + option_ids=[147, 148], ) Lepismat_System_Massacre_Saga_Part_5 = RogueEventTitle( id=48, @@ -481,7 +481,7 @@ Lepismat_System_Massacre_Saga_Part_5 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 5)', jp='「蟲星系-虐殺紀」・その5', es='Galaxia de Insectiria: saga de la masacre(V)', - option_ids=[179, 180], + option_ids=[149, 150], ) Lepismat_System_Massacre_Saga_Part_6 = RogueEventTitle( id=49, @@ -491,7 +491,7 @@ Lepismat_System_Massacre_Saga_Part_6 = RogueEventTitle( en='Lepismat System: Massacre Saga (Part 6)', jp='「蟲星系-虐殺紀」・その6', es='Galaxia de Insectiria: saga de la masacre(VI)', - option_ids=[181, 182], + option_ids=[151, 152], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_1 = RogueEventTitle( id=50, @@ -501,7 +501,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_1 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 1)', jp='「賞金稼ぎ-洗狩紀」・その1', es='Cazarrecompensas: crónica de la depuración carmesí(I)', - option_ids=[183, 184], + option_ids=[153, 154], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_2 = RogueEventTitle( id=51, @@ -511,7 +511,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_2 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 2)', jp='「賞金稼ぎ-洗狩紀」・その2', es='Cazarrecompensas: crónica de la depuración carmesí(II)', - option_ids=[185], + option_ids=[155], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_3 = RogueEventTitle( id=52, @@ -521,7 +521,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_3 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 3)', jp='「賞金稼ぎ-洗狩紀」・その3', es='Cazarrecompensas: crónica de la depuración carmesí(III)', - option_ids=[186, 187], + option_ids=[156, 157], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_4 = RogueEventTitle( id=53, @@ -531,7 +531,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_4 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 4)', jp='「賞金稼ぎ-洗狩紀」・その4', es='Cazarrecompensas: crónica de la depuración carmesí(IV)', - option_ids=[188, 189], + option_ids=[158, 159], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_5 = RogueEventTitle( id=54, @@ -541,7 +541,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_5 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 5)', jp='「賞金稼ぎ-洗狩紀」・その5', es='Cazarrecompensas: crónica de la depuración carmesí(V)', - option_ids=[190, 191], + option_ids=[160, 161], ) Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_6 = RogueEventTitle( id=55, @@ -551,7 +551,7 @@ Bounty_Hunter_Crimson_Cleansing_Chronicle_Part_6 = RogueEventTitle( en='Bounty Hunter: Crimson Cleansing Chronicle (Part 6)', jp='「賞金稼ぎ-洗狩紀」・その6', es='Cazarrecompensas: crónica de la depuración carmesí(VI)', - option_ids=[192], + option_ids=[156], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_1 = RogueEventTitle( id=56, @@ -561,7 +561,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_1 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 1)', jp='「凶と虫-諸星消滅紀」・その1', es='Tragedia e insectos: el ocaso de las estrellas(I)', - option_ids=[193, 194], + option_ids=[162, 163], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_2 = RogueEventTitle( id=57, @@ -571,7 +571,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_2 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 2)', jp='「凶と虫-諸星消滅紀」・その2', es='Tragedia e insectos: el ocaso de las estrellas(II)', - option_ids=[195, 196], + option_ids=[164, 165], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_3 = RogueEventTitle( id=58, @@ -581,7 +581,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_3 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 3)', jp='「凶と虫-諸星消滅紀」・その3', es='Tragedia e insectos: el ocaso de las estrellas(III)', - option_ids=[197, 198], + option_ids=[166, 167], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_4 = RogueEventTitle( id=59, @@ -591,7 +591,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_4 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 4)', jp='「凶と虫-諸星消滅紀」・その4', es='Tragedia e insectos: el ocaso de las estrellas(IV)', - option_ids=[199, 200], + option_ids=[69, 168], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_5 = RogueEventTitle( id=60, @@ -601,7 +601,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_5 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 5)', jp='「凶と虫-諸星消滅紀」・その5', es='Tragedia e insectos: el ocaso de las estrellas(V)', - option_ids=[201, 202], + option_ids=[169, 170], ) Tragedy_and_Insects_The_Dwindling_of_Stars_Part_6 = RogueEventTitle( id=61, @@ -611,7 +611,7 @@ Tragedy_and_Insects_The_Dwindling_of_Stars_Part_6 = RogueEventTitle( en='Tragedy and Insects: The Dwindling of Stars (Part 6)', jp='「凶と虫-諸星消滅紀」・その6', es='Tragedia e insectos: el ocaso de las estrellas(VI)', - option_ids=[203, 204, 205], + option_ids=[171, 172, 173], ) Genius_Society_Regular_Experiments_Part_1 = RogueEventTitle( id=62, @@ -621,7 +621,7 @@ Genius_Society_Regular_Experiments_Part_1 = RogueEventTitle( en='Genius Society: Regular Experiments (Part 1)', jp='「天才クラブ-通常実験」・その1', es='Círculo de Genios: experimentos cotidianos(I)', - option_ids=[206, 207], + option_ids=[174, 175], ) Genius_Society_Regular_Experiments_Part_2 = RogueEventTitle( id=63, @@ -631,7 +631,7 @@ Genius_Society_Regular_Experiments_Part_2 = RogueEventTitle( en='Genius Society: Regular Experiments (Part 2)', jp='「天才クラブ-通常実験」・その2', es='Círculo de Genios: experimentos cotidianos(II)', - option_ids=[208, 209], + option_ids=[176, 177], ) Genius_Society_Regular_Experiments_Part_3 = RogueEventTitle( id=64, @@ -641,7 +641,7 @@ Genius_Society_Regular_Experiments_Part_3 = RogueEventTitle( en='Genius Society: Regular Experiments (Part 3)', jp='「天才クラブ-通常実験」・その3', es='Círculo de Genios: experimentos cotidianos(III)', - option_ids=[210, 211], + option_ids=[178, 179], ) Gondola_Helping_Gods_Part_1 = RogueEventTitle( id=65, @@ -651,7 +651,7 @@ Gondola_Helping_Gods_Part_1 = RogueEventTitle( en='Gondola: Helping Gods! (Part 1)', jp='「ゴンドラ-神を助ける!」・その1', es='Góndola: ¡ayudando a los dioses!(I)', - option_ids=[212, 213], + option_ids=[180, 181], ) Gondola_Helping_Gods_Part_2 = RogueEventTitle( id=66, @@ -661,7 +661,7 @@ Gondola_Helping_Gods_Part_2 = RogueEventTitle( en='Gondola: Helping Gods! (Part 2)', jp='「ゴンドラ-神を助ける!」・その2', es='Góndola: ¡ayudando a los dioses!(II)', - option_ids=[214, 215], + option_ids=[69, 182], ) Gondola_Helping_Gods_Part_3 = RogueEventTitle( id=67, @@ -671,7 +671,7 @@ Gondola_Helping_Gods_Part_3 = RogueEventTitle( en='Gondola: Helping Gods! (Part 3)', jp='「ゴンドラ-神を助ける!」・その3', es='Góndola: ¡ayudando a los dioses!(III)', - option_ids=[216, 217], + option_ids=[183, 184], ) Gondola_Helping_Gods_Part_4 = RogueEventTitle( id=68, @@ -681,7 +681,7 @@ Gondola_Helping_Gods_Part_4 = RogueEventTitle( en='Gondola: Helping Gods! (Part 4)', jp='「ゴンドラ-神を助ける!」・その4', es='Góndola: ¡ayudando a los dioses!(IV)', - option_ids=[218, 219], + option_ids=[185, 186], ) Gondola_Helping_Gods_Part_5 = RogueEventTitle( id=69, @@ -691,7 +691,7 @@ Gondola_Helping_Gods_Part_5 = RogueEventTitle( en='Gondola: Helping Gods! (Part 5)', jp='「ゴンドラ-神を助ける!」・その5', es='Góndola: ¡ayudando a los dioses!(V)', - option_ids=[220, 221], + option_ids=[187, 188], ) Gondola_Helping_Gods_Part_6 = RogueEventTitle( id=70, @@ -701,7 +701,7 @@ Gondola_Helping_Gods_Part_6 = RogueEventTitle( en='Gondola: Helping Gods! (Part 6)', jp='「ゴンドラ-神を助ける!」・その6', es='Góndola: ¡ayudando a los dioses!(VI)', - option_ids=[222, 223], + option_ids=[189, 190], ) Beyond_the_Sky_Choir_Anomaly_Archives_Part_1 = RogueEventTitle( id=71, @@ -711,7 +711,7 @@ Beyond_the_Sky_Choir_Anomaly_Archives_Part_1 = RogueEventTitle( en='Beyond the Sky Choir: Anomaly Archives (Part 1)', jp='「天外聖歌隊-異象紀」・その1', es='Coro del Firmamento: crónicas sobre anomalías(I)', - option_ids=[224, 225], + option_ids=[191, 192], ) Beyond_the_Sky_Choir_Anomaly_Archives_Part_2 = RogueEventTitle( id=72, @@ -721,7 +721,7 @@ Beyond_the_Sky_Choir_Anomaly_Archives_Part_2 = RogueEventTitle( en='Beyond the Sky Choir: Anomaly Archives (Part 2)', jp='「天外聖歌隊-異象紀」・その2', es='Coro del Firmamento: crónicas sobre anomalías(II)', - option_ids=[226, 227], + option_ids=[193, 194], ) Beyond_the_Sky_Choir_Anomaly_Archives_Part_3 = RogueEventTitle( id=73, @@ -731,7 +731,7 @@ Beyond_the_Sky_Choir_Anomaly_Archives_Part_3 = RogueEventTitle( en='Beyond the Sky Choir: Anomaly Archives (Part 3)', jp='「天外聖歌隊-異象紀」・その3', es='Coro del Firmamento: crónicas sobre anomalías(III)', - option_ids=[228, 229], + option_ids=[195, 196], ) The_Architects_Annals_of_Fortification_Part_1 = RogueEventTitle( id=74, @@ -741,7 +741,7 @@ The_Architects_Annals_of_Fortification_Part_1 = RogueEventTitle( en='The Architects: Annals of Fortification (Part 1)', jp='「建創者-修築紀」・その1', es='Los Arquitectos: anales de la fortificación(I)', - option_ids=[230, 231], + option_ids=[197, 198], ) The_Architects_Annals_of_Fortification_Part_2 = RogueEventTitle( id=75, @@ -751,7 +751,7 @@ The_Architects_Annals_of_Fortification_Part_2 = RogueEventTitle( en='The Architects: Annals of Fortification (Part 2)', jp='「建創者-修築紀」・その2', es='Los Arquitectos: anales de la fortificación(II)', - option_ids=[232, 233], + option_ids=[199, 200], ) The_Architects_Annals_of_Fortification_Part_3 = RogueEventTitle( id=76, @@ -761,7 +761,7 @@ The_Architects_Annals_of_Fortification_Part_3 = RogueEventTitle( en='The Architects: Annals of Fortification (Part 3)', jp='「建創者-修築紀」・その3', es='Los Arquitectos: anales de la fortificación(III)', - option_ids=[234, 235], + option_ids=[201, 202], ) Screwllum_Blessing_Store = RogueEventTitle( id=77, @@ -771,7 +771,7 @@ Screwllum_Blessing_Store = RogueEventTitle( en="Screwllum's Blessing Store", jp='スクリューガムの祝福ショップ', es='Tienda de bendiciones de Tornillum', - option_ids=[236, 237, 238], + option_ids=[6, 7, 8], ) Herta_Store = RogueEventTitle( id=78, @@ -781,7 +781,7 @@ Herta_Store = RogueEventTitle( en="Herta's Store", jp='ヘルタショップ', es='Tienda de Herta', - option_ids=[239, 240], + option_ids=[7, 8], ) Screwllum_Store = RogueEventTitle( id=79, @@ -791,7 +791,7 @@ Screwllum_Store = RogueEventTitle( en="Screwllum's Store", jp='スクリューガムショップ', es='Tienda de Tornillum', - option_ids=[241], + option_ids=[8], ) Knights_of_Beauty_to_the_Rescue = RogueEventTitle( id=80, @@ -801,7 +801,7 @@ Knights_of_Beauty_to_the_Rescue = RogueEventTitle( en='Knights of Beauty to the Rescue', jp='純美の騎士の助け', es='Caballeros de la Belleza al rescate', - option_ids=[242, 243, 244, 245, 246, 247, 248, 249], + option_ids=[203, 204, 205, 206, 207, 208, 209, 210], ) Cosmic_Crescendo = RogueEventTitle( id=81, @@ -811,7 +811,7 @@ Cosmic_Crescendo = RogueEventTitle( en='Cosmic Crescendo', jp='天外大合唱', es='Crescendo cósmico', - option_ids=[250, 251, 252], + option_ids=[211, 212, 213], ) Genius_Society_55_Yu_Qingtu = RogueEventTitle( id=82, @@ -821,7 +821,7 @@ Genius_Society_55_Yu_Qingtu = RogueEventTitle( en='Genius Society #55 Yu Qingtu', jp='天才クラブ#55余清塗', es='Yu Qingtu, miembro n.º 55 del Círculo de Genios', - option_ids=[253, 254, 255, 256, 257, 258, 259, 260, 261], + option_ids=[214, 215, 216, 217, 218, 219, 220, 221, 222], ) Beast_Horde_Voracious_Catastrophe = RogueEventTitle( id=83, @@ -831,7 +831,7 @@ Beast_Horde_Voracious_Catastrophe = RogueEventTitle( en='Beast Horde: Voracious Catastrophe', jp='獣の群れ・貪慾の災厄', es='Horda de bestias: catástrofe voraz', - option_ids=[262, 263, 264], + option_ids=[223, 224, 225], ) The_Curio_Fixer = RogueEventTitle( id=84, @@ -841,7 +841,7 @@ The_Curio_Fixer = RogueEventTitle( en='The Curio Fixer', jp='奇物修理エキスパート', es='Reparador de objetos raros', - option_ids=[265, 266, 267, 268, 269], + option_ids=[226, 227, 228, 229, 230], ) Showman_Sleight = RogueEventTitle( id=85, @@ -851,7 +851,7 @@ Showman_Sleight = RogueEventTitle( en="Showman's Sleight", jp='伶人の手品', es='El truco del actor', - option_ids=[270, 271], + option_ids=[231, 232], ) The_Double_Lottery_Experience = RogueEventTitle( id=86, @@ -861,7 +861,7 @@ The_Double_Lottery_Experience = RogueEventTitle( en='The Double Lottery Experience', jp='ダブルロッタリー体験', es='La experiencia de la doble lotería', - option_ids=[272, 273, 274], + option_ids=[69, 233, 234], ) Ruan_Mei_Part_2 = RogueEventTitle( id=87, @@ -871,7 +871,7 @@ Ruan_Mei_Part_2 = RogueEventTitle( en='Ruan Mei (Part 2)', jp='ルアン・メェイ(2)', es='Ruan Mei II', - option_ids=[275, 276, 277], + option_ids=[1, 235, 236], ) The_Perfect_Grand_Challenge = RogueEventTitle( id=88, @@ -881,7 +881,7 @@ The_Perfect_Grand_Challenge = RogueEventTitle( en='The *Perfect* Grand Challenge!', jp='※完璧※大挑戦!', es='¡El gran desafío perfecto!', - option_ids=[278, 279, 280, 281], + option_ids=[127, 237, 238, 239], ) The_IPC_Promotion_Saga_Part_1 = RogueEventTitle( id=89, @@ -891,7 +891,7 @@ The_IPC_Promotion_Saga_Part_1 = RogueEventTitle( en='The IPC Promotion Saga (Part 1)', jp='スターピースカンパニー「昇進記」(1)', es='La saga del ascenso de la Corporación I', - option_ids=[282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296], + option_ids=[240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254], ) The_IPC_Promotion_Saga_Part_2 = RogueEventTitle( id=90, @@ -901,7 +901,7 @@ The_IPC_Promotion_Saga_Part_2 = RogueEventTitle( en='The IPC Promotion Saga (Part 2)', jp='スターピースカンパニー「昇進記」(2)', es='La saga del ascenso de la Corporación II', - option_ids=[297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310], + option_ids=[241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254], ) The_IPC_Promotion_Saga_Part_3 = RogueEventTitle( id=91, @@ -911,7 +911,7 @@ The_IPC_Promotion_Saga_Part_3 = RogueEventTitle( en='The IPC Promotion Saga (Part 3)', jp='スターピースカンパニー「昇進記」(3)', es='La saga del ascenso de la Corporación III', - option_ids=[311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323], + option_ids=[242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254], ) The_IPC_Promotion_Saga_Part_4 = RogueEventTitle( id=92, @@ -921,7 +921,7 @@ The_IPC_Promotion_Saga_Part_4 = RogueEventTitle( en='The IPC Promotion Saga (Part 4)', jp='スターピースカンパニー「昇進記」(4)', es='La saga del ascenso de la Corporación IV', - option_ids=[324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335], + option_ids=[243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254], ) Ka_ching_IPC_Banking_Part_1 = RogueEventTitle( id=93, @@ -931,7 +931,7 @@ Ka_ching_IPC_Banking_Part_1 = RogueEventTitle( en='Ka-ching! IPC Banking (Part 1)', jp='カチャッ――スターピース銀行!(1)', es='El banco de la Corporación I', - option_ids=[336, 337, 338, 339, 340], + option_ids=[127, 255, 256, 257, 258], ) Ka_ching_IPC_Banking_Part_2 = RogueEventTitle( id=94, @@ -941,7 +941,7 @@ Ka_ching_IPC_Banking_Part_2 = RogueEventTitle( en='Ka-ching! IPC Banking (Part 2)', jp='カチャッ――スターピース銀行!(2)', es='El banco de la Corporación II', - option_ids=[341, 342, 343, 344, 345], + option_ids=[127, 255, 256, 257, 258], ) Loneliness_Costic_Beauty_Bugs_Simulated_Universe_Part_1 = RogueEventTitle( id=95, @@ -951,7 +951,7 @@ Loneliness_Costic_Beauty_Bugs_Simulated_Universe_Part_1 = RogueEventTitle( en='Loneliness, Costic Beauty Bugs, Simulated Universe (Part 1)', jp='孤独、宇宙の美虫、模擬宇宙(1)', es='Soledad, gusanos espaciales y el Universo Simulado I', - option_ids=[346, 347, 348, 349, 350, 351, 352, 353], + option_ids=[69, 259, 260, 261, 262, 263, 264, 265], ) Loneliness_Costic_Beauty_Bugs_Simulated_Universe_Part_2 = RogueEventTitle( id=96, @@ -961,7 +961,7 @@ Loneliness_Costic_Beauty_Bugs_Simulated_Universe_Part_2 = RogueEventTitle( en='Loneliness, Costic Beauty Bugs, Simulated Universe (Part 2)', jp='孤独、宇宙の美虫、模擬宇宙(2)', es='Soledad, gusanos espaciales y el Universo Simulado II', - option_ids=[354, 355, 356, 357, 358, 359, 360], + option_ids=[69, 260, 261, 262, 263, 264, 265], ) Ace_Trash_Digger = RogueEventTitle( id=97, @@ -971,7 +971,7 @@ Ace_Trash_Digger = RogueEventTitle( en='Ace Trash Digger', jp='ゴミ箱あさりの達人', es='Gran rebuscador de la basura', - option_ids=[361, 362, 363, 364], + option_ids=[230, 266, 267, 268], ) Swarm_Slumbering_Overlord_First_Praetorian = RogueEventTitle( id=98, @@ -981,7 +981,7 @@ Swarm_Slumbering_Overlord_First_Praetorian = RogueEventTitle( en='Swarm: Slumbering Overlord (First Praetorian)', jp='虫の潮・深眠の領主(一級守備)', es='Enjambre: Cacique dormido (primer pretoriano)', - option_ids=[365, 366, 367, 368, 369, 370], + option_ids=[230, 269, 270, 271, 272, 273], ) Swarm_Slumbering_Overlord_Second_Praetorian = RogueEventTitle( id=99, @@ -991,7 +991,7 @@ Swarm_Slumbering_Overlord_Second_Praetorian = RogueEventTitle( en='Swarm: Slumbering Overlord (Second Praetorian)', jp='虫の潮・深眠の領主(二級守備)', es='Enjambre: Cacique dormido (segundo pretoriano)', - option_ids=[371, 372, 373, 374, 375], + option_ids=[230, 270, 271, 272, 273], ) Swarm_Slumbering_Overlord_Third_Praetorian = RogueEventTitle( id=100, @@ -1001,7 +1001,7 @@ Swarm_Slumbering_Overlord_Third_Praetorian = RogueEventTitle( en='Swarm: Slumbering Overlord (Third Praetorian)', jp='虫の潮・深眠の領主(三級守備)', es='Enjambre: Cacique dormido (tercer pretoriano)', - option_ids=[376, 377, 378, 379], + option_ids=[230, 271, 272, 273], ) Propagation_Slumbering_Overlord_First_Praetorian = RogueEventTitle( id=101, @@ -1011,7 +1011,7 @@ Propagation_Slumbering_Overlord_First_Praetorian = RogueEventTitle( en='Propagation: Slumbering Overlord (First Praetorian)', jp='繁殖・深眠の領主(一級守備)', es='Propagación: Cacique dormido (primer pretoriano)', - option_ids=[380, 381], + option_ids=[274, 275], ) Propagation_Slumbering_Overlord_Second_Praetorian = RogueEventTitle( id=102, @@ -1021,7 +1021,7 @@ Propagation_Slumbering_Overlord_Second_Praetorian = RogueEventTitle( en='Propagation: Slumbering Overlord (Second Praetorian)', jp='繁殖・深眠の領主(二級守備)', es='Propagación: Cacique dormido (segundo pretoriano)', - option_ids=[382, 383], + option_ids=[274, 275], ) Propagation_Slumbering_Overlord_Third_Praetorian = RogueEventTitle( id=103, @@ -1031,7 +1031,7 @@ Propagation_Slumbering_Overlord_Third_Praetorian = RogueEventTitle( en='Propagation: Slumbering Overlord (Third Praetorian)', jp='繁殖・深眠の領主(三級守備)', es='Propagación: Cacique dormido (tercer pretoriano)', - option_ids=[384, 385], + option_ids=[274, 275], ) Swarm_Nest_Exploration_First_Praetorian = RogueEventTitle( id=104, @@ -1041,7 +1041,7 @@ Swarm_Nest_Exploration_First_Praetorian = RogueEventTitle( en='Swarm: Nest Exploration (First Praetorian)', jp='虫の潮・虫の巣探険(一級守備)', es='Enjambre: Exploración del nido (primer pretoriano)', - option_ids=[386, 387, 388], + option_ids=[276, 277, 278], ) Swarm_Nest_Exploration_Second_Praetorian = RogueEventTitle( id=105, @@ -1051,7 +1051,7 @@ Swarm_Nest_Exploration_Second_Praetorian = RogueEventTitle( en='Swarm: Nest Exploration (Second Praetorian)', jp='虫の潮・虫の巣探険(二級守備)', es='Enjambre: Exploración del nido (segundo pretoriano)', - option_ids=[389, 390, 391], + option_ids=[276, 277, 278], ) Swarm_Nest_Exploration_Third_Praetorian = RogueEventTitle( id=106, @@ -1061,7 +1061,7 @@ Swarm_Nest_Exploration_Third_Praetorian = RogueEventTitle( en='Swarm: Nest Exploration (Third Praetorian)', jp='虫の潮・虫の巣探険(三級守備)', es='Enjambre: Exploración del nido (tercer pretoriano)', - option_ids=[392, 393, 394], + option_ids=[276, 277, 278], ) Propagation_Nest_Exploration_First_Praetorian = RogueEventTitle( id=107, @@ -1071,7 +1071,7 @@ Propagation_Nest_Exploration_First_Praetorian = RogueEventTitle( en='Propagation: Nest Exploration (First Praetorian)', jp='繁殖・虫の巣探険(一級守備)', es='Propagación: Exploración del nido (primer pretoriano)', - option_ids=[395, 396], + option_ids=[279, 280], ) Propagation_Nest_Exploration_Second_Praetorian = RogueEventTitle( id=108, @@ -1081,7 +1081,7 @@ Propagation_Nest_Exploration_Second_Praetorian = RogueEventTitle( en='Propagation: Nest Exploration (Second Praetorian)', jp='繁殖・虫の巣探険(二級守備)', es='Propagación: Exploración del nido (segundo pretoriano)', - option_ids=[397, 398], + option_ids=[279, 280], ) Swarm_Mind_of_the_Domain_First_Praetorian = RogueEventTitle( id=109, @@ -1091,7 +1091,7 @@ Swarm_Mind_of_the_Domain_First_Praetorian = RogueEventTitle( en='Swarm: Mind of the Domain (First Praetorian)', jp='虫の潮・区域脳(一級守備)', es='Enjambre: Mente de zona (primer pretoriano)', - option_ids=[399, 400, 401, 402, 403], + option_ids=[281, 282, 283, 284, 285], ) Swarm_Mind_of_the_Domain_Second_Praetorian = RogueEventTitle( id=110, @@ -1101,7 +1101,7 @@ Swarm_Mind_of_the_Domain_Second_Praetorian = RogueEventTitle( en='Swarm: Mind of the Domain (Second Praetorian)', jp='虫の潮・区域脳(二級守備)', es='Enjambre: Mente de zona (segundo pretoriano)', - option_ids=[404, 405, 406, 407], + option_ids=[282, 283, 284, 285], ) Swarm_Mind_of_the_Domain_Third_Praetorian = RogueEventTitle( id=111, @@ -1111,7 +1111,7 @@ Swarm_Mind_of_the_Domain_Third_Praetorian = RogueEventTitle( en='Swarm: Mind of the Domain (Third Praetorian)', jp='虫の潮・区域脳(三級守備)', es='Enjambre: Mente de zona (tercer pretoriano)', - option_ids=[408, 409, 410], + option_ids=[283, 284, 285], ) Insights_from_the_Universal_Dancer = RogueEventTitle( id=112, @@ -1121,7 +1121,7 @@ Insights_from_the_Universal_Dancer = RogueEventTitle( en='Insights from the Universal Dancer', jp='世界の踊り手の啓示', es='Reflexiones del bailarín universal', - option_ids=[411, 412], + option_ids=[286, 287], ) Pixel_World_Hidden_Stage = RogueEventTitle( id=113, @@ -1131,7 +1131,7 @@ Pixel_World_Hidden_Stage = RogueEventTitle( en='Pixel World: Hidden Stage', jp='ピクセルワールド・隠しステージ', es='Mundo de píxeles: Mecanismo invisible', - option_ids=[413, 414, 415], + option_ids=[288, 289, 290], ) Mirror_of_Transcendence = RogueEventTitle( id=114, @@ -1141,7 +1141,7 @@ Mirror_of_Transcendence = RogueEventTitle( en='Mirror of Transcendence', jp='超越の鏡', es='Espejo de la Trascendencia', - option_ids=[416, 417, 418, 419, 420, 421], + option_ids=[61, 291, 292, 293, 294, 295], ) The_Cuckoo_Clock_Fanatic_Part_1 = RogueEventTitle( id=115, @@ -1151,7 +1151,7 @@ The_Cuckoo_Clock_Fanatic_Part_1 = RogueEventTitle( en='The Cuckoo Clock Fanatic (Part 1)', jp='鳩時計の熱狂的ファン(1)', es='El fanático del reloj de cuco I', - option_ids=[422, 423, 424], + option_ids=[296, 297, 298], ) The_Cuckoo_Clock_Fanatic_Part_2 = RogueEventTitle( id=116, @@ -1161,7 +1161,7 @@ The_Cuckoo_Clock_Fanatic_Part_2 = RogueEventTitle( en='The Cuckoo Clock Fanatic (Part 2)', jp='鳩時計の熱狂的ファン(2)', es='El fanático del reloj de cuco II', - option_ids=[425, 426], + option_ids=[297, 298], ) The_Cuckoo_Clock_Fanatic_Part_3 = RogueEventTitle( id=117, @@ -1171,5 +1171,5 @@ The_Cuckoo_Clock_Fanatic_Part_3 = RogueEventTitle( en='The Cuckoo Clock Fanatic (Part 3)', jp='鳩時計の熱狂的ファン(3)', es='El fanático del reloj de cuco III', - option_ids=[427], + option_ids=[298], )