async def giveup(self, ctx): """Give up on today's PADle""" if await self.do_quit_early(ctx): return confirmation = await get_user_confirmation( ctx, "Are you sure you would like to give up?", timeout=20) dbcog = await self.get_dbcog() if not confirmation: if confirmation is None: await send_cancellation_message(ctx, "Confirmation timeout.") return monster = dbcog.get_monster(int(await self.config.padle_today())) await self.config.user(ctx.author).done.set(True) m_embed = EmbedView( EmbedMain(title=MonsterHeader.menu_title(monster).to_markdown(), description="PADle #{}".format(await self.config.num_days()), url=MonsterLink.ilmina(monster), color=discord.Color.red()), embed_thumbnail=EmbedThumbnail( MonsterImage.icon(monster.monster_id))).to_embed() await ctx.send(embed=m_embed) await ctx.send(f"Use `{ctx.prefix}padle score` to share your score!") async with self.config.user(ctx.author).score() as scores: scores.append("\N{CROSS MARK}") async with self.config.all_scores() as all_scores: all_scores.append("X") cur_day = await self.config.num_days() todays_guesses = await self.config.user(ctx.author).todays_guesses() async with self.config.user(ctx.author).all_guesses() as all_guesses: all_guesses[str(cur_day)] = todays_guesses
def embed(cls, state: MaterialsViewState): # m: "MonsterModel", mats, usedin, gemid, gemusedin, skillups, skillup_evo_count, link return EmbedView( EmbedMain(color=state.query_settings.embedcolor, title=MonsterHeader.menu_title( state.monster, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(state.monster, state.query_settings)), embed_thumbnail=EmbedThumbnail( MonsterImage.icon(state.monster.monster_id)), embed_footer=embed_footer_with_state(state), embed_fields=[ f for f in [ mat_use_field(state.mats, "Evo materials", query_settings=state.query_settings) if state.mats or not (state.monster.is_stackable or state.gem_override) else None, mat_use_field(state.usedin, "Material for", 10, state. query_settings) if state.usedin else None, mat_use_field( state.gemusedin, "Evo gem ({}) is mat for". format(state.gemid), 10 if state.gem_override else 5, state.query_settings) if state.gemusedin else None, skillup_field(state.skillups, state.skillup_evo_count, state.link, state.query_settings) if not (state.monster.is_stackable or state.gem_override ) else None ] if f is not None ] + [cls.evos_embed_field(state)])
def embed(cls, state: EvosViewState): fields = [ EmbedField( ("{} evolution" if len(state.alt_versions) == 1 else "{} evolutions").format(len(state.alt_versions)), Box(*EvosView._evo_lines(state.alt_versions, state.monster, state.query_settings))) ] if state.gem_versions: fields.append( EmbedField( ("{} evolve gem" if len(state.gem_versions) == 1 else "{} evolve gems").format(len(state.gem_versions)), Box(*EvosView._evo_lines(state.gem_versions, state.monster)))) return EmbedView(EmbedMain( color=state.query_settings.embedcolor, title=MonsterHeader.menu_title( state.monster, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(state.monster, state.query_settings)), embed_thumbnail=EmbedThumbnail( MonsterImage.icon(state.monster.monster_id)), embed_footer=embed_footer_with_state(state), embed_fields=fields)
def embed(m: "MonsterModel", query_settings: QuerySettings): return EmbedView( EmbedMain(color=query_settings.embedcolor, title=MonsterHeader.menu_title(m).to_markdown(), description=LinksView.linksbox(m), url=MonsterLink.header_link(m, query_settings)), embed_thumbnail=EmbedThumbnail(MonsterImage.icon(m.monster_id)))
def embed(cls, state: OtherInfoViewState): m: "MonsterModel" = state.monster return EmbedView( EmbedMain(color=state.query_settings.embedcolor, title=MonsterHeader.menu_title( state.monster, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(m, state.query_settings)), embed_footer=embed_footer_with_state(state), embed_fields=[ EmbedField( "Stats at +297:", Box( # need to put these on the same line to get around discord's insane # whitespace margins around code blocks Text(statsbox(m, plus=297) + 'Stats at +0:'), Text(statsbox(m, plus=0)), LabeledText("JP Name", m.name_ja), LinksView.linksbox(m), LabeledText("JP Added", str(m.reg_date)) if m.reg_date else None, LabeledText("Series", m.series.name_en), Box(LabeledText("Sell MP", '{:,}'.format(m.sell_mp)), LabeledText("Buy MP", '{:,}'.format(m.buy_mp)) if m.buy_mp else None, delimiter=' '), Box( LabeledText("Sell Gold", '{:,}'.format(m.sell_gold))), Box(LabeledText( "XP to Max", '{:.1f}'.format(m.exp / 1000000).rstrip('0').rstrip('.') + 'M' if m.exp >= 1000000 else '{:,}'.format(m.exp)), LabeledText("Max Level", str(m.level)), delimiter=' '), Box(LabeledText("Weighted Stats", str(m.stats()[3])), Text('LB {} (+{}%)'.format( m.stats(lv=110)[3], m.limit_mult)) if m.limit_mult > 0 else None, delimiter=' | '), LabeledText("Fodder EXP", '{:,}'.format(m.fodder_exp)), Box(LabeledText("Rarity", str(m.rarity)), LabeledText("Cost", str(m.cost)), delimiter=' '))), cls.evos_embed_field(state) ])
def embed(cls, state: PantheonViewState): fields = [EmbedField( 'Pantheon: {}'.format(state.series_name), Box(*_pantheon_lines(state.pantheon_list, state.base_monster, state.query_settings)) ), cls.evos_embed_field(state)] return EmbedView( EmbedMain( color=state.query_settings.embedcolor, title=MonsterHeader.menu_title(state.monster, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(state.monster, state.query_settings)), embed_footer=embed_footer_with_state(state), embed_fields=fields, embed_thumbnail=EmbedThumbnail(MonsterImage.icon(state.monster.monster_id)), )
async def do_query(dbcog, monster): db_context = dbcog.database mats = db_context.graph.evo_mats(monster) usedin = db_context.graph.material_of_monsters(monster) evo_gem = db_context.graph.evo_gem_monster(monster) gemid = str(evo_gem.monster_no_na) if evo_gem else None gemusedin = db_context.graph.material_of_monsters( evo_gem) if evo_gem else [] skillups = [] skillup_evo_count = 0 link = MonsterLink.ilmina(monster) if monster.active_skill: sums = [ m for m in db_context.get_monsters_by_active( monster.active_skill.active_skill_id, server=monster.server_priority) if db_context.graph.monster_is_farmable_evo(m) ] sugs = [db_context.graph.evo_gem_monster(su) for su in sums] vsums = [] for su in sums: if not any(susu in vsums for susu in db_context.graph.get_alt_monsters(su)): vsums.append(su) skillups = [ su for su in vsums if db_context.graph.monster_is_farmable_evo(su) and db_context.graph.get_base_id(su) != db_context.graph.get_base_id(monster) and su not in sugs ] if monster.active_skill else [] skillup_evo_count = len(sums) - len(vsums) gem_override = False if not any( [mats, usedin, gemusedin, skillups and not monster.is_stackable]): return None, None, None, None, None, None, None, None if not any([mats, usedin, skillups and not monster.is_stackable]): mats, gemusedin, _, usedin, skillups, skillup_evo_count, link, _ \ = await MaterialsViewState.do_query(dbcog, evo_gem) gem_override = True return mats, usedin, gemid, gemusedin, skillups, skillup_evo_count, link, gem_override
def embed(cls, state: IdViewState): m = state.monster fields = [ EmbedField( '/'.join(['{}'.format(t.name) for t in m.types]), Box(IdView.all_awakenings_row(m, state.transform_base), cls.killers_row(m, state.transform_base))), EmbedField( 'Inheritable' if m.is_inheritable else 'Not inheritable', IdView.misc_info(m, state.true_evo_type_raw, state.acquire_raw, state.base_rarity), inline=True), EmbedField(IdView.stats_header(m, state.previous_evolutions, state.query_settings).to_markdown(), IdView.stats(m, state.previous_evolutions, state.query_settings), inline=True), EmbedField( cls.active_skill_header( m, state.previous_transforms).to_markdown(), Text( cls.active_skill_text(m.active_skill, state.awoken_skill_map))), EmbedField( cls.leader_skill_header(m, state.query_settings.lsmultiplier, state.transform_base).to_markdown(), Text(m.leader_skill.desc if m.leader_skill else 'None')), cls.evos_embed_field(state) ] return EmbedView( EmbedMain(color=state.query_settings.embedcolor, title=MonsterHeader.menu_title( m, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(m, state.query_settings)), embed_thumbnail=EmbedThumbnail(MonsterImage.icon(m.monster_id)), embed_footer=embed_footer_with_state(state), embed_fields=fields)
def embed(state: ClosableEmbedViewState, props: AwakeningHelpViewProps): monster = props.monster show_help = state.query_settings.showhelp.value token_map = props.token_map fields = [ EmbedField('Normal Awakenings', get_normal_awakenings(monster, show_help, token_map)), EmbedField('Super Awakenings', get_super_awakenings(monster, show_help, token_map)) ] return EmbedView( EmbedMain(color=state.query_settings.embedcolor, description='This monster has no awakenings.' if not monster.awakenings else ''), embed_author=EmbedAuthor( MonsterHeader.menu_title(monster).to_markdown(), MonsterLink.header_link(monster, query_settings=state.query_settings), MonsterImage.icon(monster.monster_id)), embed_footer=embed_footer_with_state(state), embed_fields=fields)
def embed(cls, state: PicViewState): url = MonsterImage.picture(state.monster.monster_id) animated = state.monster.has_animation fields = [EmbedField( 'Extra Links', Box( Box( Text('Animation:'), LinkedText('(MP4)', MonsterImage.video(state.monster.monster_no_jp)), Text('|'), LinkedText('(GIF)', MonsterImage.gif(state.monster.monster_no_jp)), delimiter=' ' ) if animated else None, Box( Text('Orb Skin:'), LinkedText('Regular', MonsterImage.orb_skin(state.monster.orb_skin_id)), Text('|'), LinkedText('Color Blind', MonsterImage.orb_skin_colorblind(state.monster.orb_skin_id)), delimiter=' ' ) if state.monster.orb_skin_id else None, ) ), cls.evos_embed_field(state) ] return EmbedView( EmbedMain( color=state.query_settings.embedcolor, title=MonsterHeader.menu_title(state.monster, is_tsubaki=state.alt_monsters[0].monster.monster_id == cls.TSUBAKI, is_jp_buffed=state.is_jp_buffed).to_markdown(), url=MonsterLink.header_link(state.monster, state.query_settings) ), embed_footer=embed_footer_with_state(state), embed_fields=fields, embed_body_image=EmbedBodyImage(url), )
def embed(state, props: ExperienceCurveViewProps): regular = get_normal_exp_difference(props.monster, props.low, props.high, props.offset) lb = get_lb_exp_difference(props.monster, props.low, props.high, props.offset) slb = get_slb_exp_difference(props.monster, props.low, props.high, props.offset) is_light = props.monster.full_damage_attr.value == 3 return EmbedView( EmbedMain( color=state.query_settings.embedcolor, title=MonsterHeader.menu_title(props.monster, use_emoji=True), url=MonsterLink.header_link( props.monster, query_settings=state.query_settings), description=Text(f'lv{props.low} -> lv{props.high} (' + (trunc_humanize(props.monster.exp_curve) if props.monster.exp_curve else "no") + f' curve)'), ), embed_thumbnail=EmbedThumbnail( MonsterImage.icon(props.monster.monster_id)), embed_fields=[ EmbedField(title='Exact', body=Box( LabeledText("Reg", humanize_number(regular)), LabeledText("LB", humanize_number(lb)), LabeledText("SLB", humanize_number(slb)), LabeledText("Net", humanize_number(regular + lb + slb))), inline=True), EmbedField(title='Approx', body=Box( LabeledText("Reg", trunc_humanize(regular)), LabeledText("LB", trunc_humanize(lb)), LabeledText("SLB", trunc_humanize(slb)), LabeledText("Net", trunc_humanize(regular + lb + slb))), inline=True), EmbedField( title='Resources', body=Box( LabeledText( "Globes " + emoji_cache.get_emoji( f'orb_{props.monster.full_damage_attr.name.lower()}' ), str( get_total_needed( props.monster, props.low, props.high, props.offset, ceil(1.5 * GLOBE_EXP[ props.monster.full_damage_attr.value]), is_light))), LabeledText( "TA2", str( get_total_needed(props.monster, props.low, props.high, props.offset, TA2_EXP, is_light))), LabeledText( "TA3", str( get_total_needed(props.monster, props.low, props.high, props.offset, TA3_EXP, is_light))), ), inline=True) ], embed_footer=embed_footer_with_state(state))
def embed(m: "MonsterModel", query_settings: QuerySettings): return EmbedView(EmbedMain(color=query_settings.embedcolor), embed_author=EmbedAuthor( MonsterHeader.menu_title(m).to_markdown(), MonsterLink.header_link(m, query_settings), MonsterImage.icon(m.monster_id)))
def embed(cls, state: ButtonInfoViewState): is_coop = state.display_options.players == ButtonInfoOptions.coop is_desktop = state.display_options.device == ButtonInfoOptions.desktop max_110 = state.display_options.max_level == ButtonInfoOptions.limit_break monster = state.monster info = state.info fields = [ EmbedField( # this block does not change if the lv110/lv120 toggle is clicked ButtonInfoView.get_max_level_text(monster, True), Box( Text('Without Latents'), # avoid whitespace after code block Box(get_stat_block(info.coop if is_coop else info.solo), Text('With Latents (Atk+)'), delimiter=''), get_stat_block( info.coop_latent if is_coop else info.solo_latent)), inline=True), EmbedField( 'Lv. 120', Box( Text('Without Latents'), # avoid whitespace after code block Box(get_stat_block( info.coop_slb if is_coop else info.solo_slb), Text('With Latents (Atk++)'), delimiter=''), get_stat_block(info.coop_slb_latent if is_coop else info. solo_slb_latent)), inline=True) if monster.limit_mult != 0 else None, EmbedField( ButtonInfoView.get_common_buttons_title_text(monster, max_110), Box( Text( '*Inherits are assumed to be the max possible level (up to 110) and +297.*' ), # janky, but python gives DeprecationWarnings when using \* in a regular string Text(r'*\* = on-color stat bonus applied*'), Text('Card Button Damage'), # done this way to not have the whitespace after code block Box(BlockText(info.get_card_btn_str(is_coop, max_110)), Text('Team Button Contribution'), delimiter=''), BlockText(info.get_team_btn_str(is_coop, max_110)))) if is_desktop else None, EmbedField( ButtonInfoView.get_common_buttons_title_text(monster, max_110), Box( Text( '*Inherits are assumed to be the max possible level (up to 110) and +297.*' ), # janky, but python gives DeprecationWarnings when using \* in a regular string Text(r'*\* = on-color stat bonus applied*'))) if not is_desktop else None, EmbedField('Card Button Damage', BlockText( get_mobile_btn_str( info.get_card_btn_str(is_coop, max_110))), inline=True) if not is_desktop else None, EmbedField('Team Button Contribution', BlockText( get_mobile_btn_str( info.get_team_btn_str(is_coop, max_110))), inline=True) if not is_desktop else None, cls.evos_embed_field(state) ] return EmbedView(EmbedMain( color=state.query_settings.embedcolor, description='(Co-op mode)' if is_coop else '(Singleplayer mode)'), embed_author=EmbedAuthor( MonsterHeader.menu_title(monster).to_markdown(), MonsterLink.header_link(monster, state.query_settings), MonsterImage.icon(monster.monster_id)), embed_footer=embed_footer_with_state(state), embed_fields=fields)
def linksbox(m): return Box(LinkedText('YouTube', MonsterLink.youtube_search(m)), LinkedText('Skyozora', MonsterLink.skyozora(m)), LinkedText('PADIndex', MonsterLink.padindex(m)), LinkedText('Ilmina', MonsterLink.ilmina(m)), delimiter=' | ')