示例#1
0
 async def force_update(self, ctx: commands.Context):
     if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                   Util.ChannelType.RPG_GUILD):
         return
     results = StatusUtil.getAllStatus(StatusType.REST)
     rest_over = []
     now = datetime.now()
     status: RPGStatus
     for status in results:
         if status.expire_time < now:
             rest_over.append(status)
     msg = f"目前休息中的人為 {len(results)}人\n"
     msg += f"可以解除休息的人數為 {len(rest_over)}人\n"
     if len(rest_over) > 0:
         msg += f"解除休息中..."
     await ctx.send(msg)
     for status in rest_over:
         character = RPGCharacterUtil.getRPGCharacter(status.member_id)
         user = self.bot.get_user(status.member_id)
         name = await NicknameUtil.get_user_name(ctx.guild, user)
         if character == None:
             msg = f"找不到人物{status.member_id}, 刪除舊狀態..."
         else:
             msg = f"刪除'{name}'的休息狀態..."
             RPGCharacterUtil.changeHp(character, status.buff.buff_value)
         await ctx.send(msg)
         status.delete_instance()
         await ctx.send(f"'{name}'的休息狀態成功")
示例#2
0
 async def profile_on_message(self, message: Message):
     if message.author.bot:
         return
     if message.channel == None or not message.channel.guild.id in whitelist or message.author.bot:
         return
     if self.populateChannels(message, self.isTest):
         return
     if not self.channelAllowed(message.channel.id, self.isTest):
         return
     member: Member = self.db.get_member(message.author.id)
     if not member:
         self.db.add_member(message.author.id)
         member = self.db.get_member(message.author.id)
     increaseNumber = randint(10, 25)
     rank = self.db.increase_exp(message.channel.guild.id,
                                 message.channel.id, message.author.id,
                                 increaseNumber)
     assert rank > 0, 'method increase_xp should not retrun less than 1 in profile_on_message'
     if member.rank != rank:
         channel = ChannelUtil.getMessageChannelId(message.guild.id)
         if channel == None:
             channelToUse = message.channel
         else:
             channelToUse = message.guild.get_channel(channel)
         RPGCharacterUtil.levelUpCharacter(message.author.id, member.rank,
                                           rank)
         await channelToUse.send('恭喜<@{}> 等級提升至{}。'.format(
             message.author.id, rank))
         await self.updateUserKfpRoles(message, rank, channelToUse)
     self.db.increase_coin(message.guild.id, message.author.id,
                           increaseNumber)
示例#3
0
    async def init_rpg_character(self, ctx: commands.Context):
        if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                      Util.ChannelType.RPG_GUILD):
            return
        if RPGCharacterUtil.hasAdventureStared(ctx.author.id):
            await ctx.send("你的冒險已經啟程")
            return

        member: Member = MemberUtil.get_or_add_member(ctx.author.id)
        if member.coin < 5000:
            await ctx.send(f"看來你的硬幣不足呢, 先在群裡說說話賺取經驗吧.")
            return

        isNew = True
        if RPGCharacterUtil.getRPGCharacter(ctx.author.id) != None:
            isNew = False
        if RPGCharacterUtil.createNewRPGCharacter(ctx.author.id) != None:
            user = self.bot.get_user(ctx.author.id)
            name = await NicknameUtil.get_user_name(ctx.guild, user)
            MemberUtil.add_coin(ctx.author.id, -5000)
            MemberUtil.add_coin(ctx.bot.user.id, 5000)
            if isNew:
                await ctx.send(f"歡迎冒險者'{name}'的加入, 從現在開始你的冒險之旅吧!")
            else:
                await ctx.send(f"歡迎回來'{name}', 已恢復您冒險者的身分!")
            return

        await ctx.send(f"看起來你的行李好像還沒準備好, 詳情請洽冒險者公會員工.")
示例#4
0
    def test_applyExpiredStatus_success(self):
        c: RPGCharacter = RPGCharacterUtil.createNewRPGCharacter(1)
        RPGCharacterUtil.changeHp(c, -1000)
        StatusUtil.createRestStatus(1, 1, 20, -500)  # expired status
        StatusUtil.applyExpiredStatus()

        assert None == StatusUtil.getStatus(1, 1, StatusType.REST)

        c = RPGCharacterUtil.getRPGCharacter(1)
        assert c.hp_current > 0
示例#5
0
    async def sneak_attack_character(self, ctx: commands.Context, user: User):
        if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                      Util.ChannelType.RPG_BATTLE_GROUND):
            return
        if not RPGCharacterUtil.hasAdventureStared(ctx.author.id):
            await ctx.send("看起來你還沒開始你的旅程呢. 請先申請成為冒險者吧")
            return
        if not RPGCharacterUtil.hasAdventureStared(user.id):
            await ctx.send("看起來對方不是冒險者呢. 請不要偷襲平民")
            return
        author: RPGCharacter = RPGCharacterUtil.getRPGCharacter(ctx.author.id)
        other: RPGCharacter = RPGCharacterUtil.getRPGCharacter(user.id)
        author_name = await NicknameUtil.get_user_name(ctx.guild, ctx.author)
        name = await NicknameUtil.get_user_name(ctx.guild, user)
        guild = self.bot.get_guild(ctx.guild.id)
        member = guild.get_member(user.id)

        if StatusUtil.isResting(ctx.author, ctx.guild.id):
            await ctx.send("你正在休息. 偷襲無效.")
            return
        if StatusUtil.isComa(user, ctx.guild.id):
            await ctx.send(f"哎不是! '{name}'都已經昏厥了你還偷襲? 偷襲無效啦!")
            return
        if StatusUtil.isComa(ctx.author, ctx.guild.id):
            await ctx.send(f"你都沒有體力了! 要怎麼偷襲! 偷襲無效.")
            return
        if author.character.member_id == user.id:
            dead = RPGCharacterUtil.changeHp(other, -1 * author.hp_max)
            if dead:
                StatusUtil.createComaStatus(ctx.guild.id, user, other.hp_max)
            await ctx.send(f"{name} 查覺到自己的行為, 但是阻止不了自己偷襲自己. 於是流血過多而昏厥過去. 攻擊成功")
            return
        if StatusUtil.isAlerted(user, ctx.guild.id):
            await ctx.send(f"由於已經被偷襲過, '{name}'現在非常警戒並擋下了你的攻擊! 攻擊失敗!")
            msg = f"注意!{author_name}企圖偷襲你但是被你識破了!"
            await member.send(msg)
            return

        # try to sneak attack
        success = random.randint(0, 1) == 0
        if success:
            multiplier = [2, 2, 2, 2, 2, 2, 8, 8, 10, 20]
            random_index = random.randrange(len(multiplier))
            atk = RPGCharacterUtil.getAttackPoint(
                author) * multiplier[random_index]
            dead = RPGCharacterUtil.changeHp(other, -1 * atk)
            if dead:
                StatusUtil.createComaStatus(ctx.guild.id, user, other.hp_max)
            RPGCharacterUtil.attackSuccess(author)
            await ctx.send(f"'{name}' 減少了 {atk}點體力. 偷襲成功!")

            if StatusUtil.isComa(user, ctx.guild.id):
                await ctx.send(f"由於你的攻擊, '{name}'生命力歸零昏厥了過去")
            # sent a message let member know is being attack
            msg = f"注意!你被{author_name}偷襲了!"
            await member.send(msg)
        else:
            await ctx.send(f"由於你的腳步聲太大, '{name}'注意到並擋下了你的攻擊! 攻擊失敗!")
        # the other person is now alerted
        StatusUtil.createOrUpdateAlertStatus(member.id, ctx.guild.id, 86400)
示例#6
0
    def test_changeHp_success(self):
        member = self.database.add_member(100)
        rpg: RPGCharacterUtil = RPGCharacterUtil.createNewRPGCharacter(member)
        expected_hp = rpg.hp_current
        dead = RPGCharacterUtil.changeHp(rpg, -10000)
        assert (rpg.hp_current == 0) and (dead is True)

        dead = RPGCharacterUtil.changeHp(rpg, +100)
        assert (rpg.hp_current == expected_hp) and (dead is not True)
    
        
示例#7
0
 async def draft_character(self, ctx: commands.Context, user: User):
     if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                   Util.ChannelType.RPG_GUILD):
         return
     name = await NicknameUtil.get_user_name(ctx.guild, user)
     if RPGCharacterUtil.hasAdventureStared(user.id):
         await ctx.send(f"'{name}'已經是冒險者了, 不需要再招募.")
         return
     if RPGCharacterUtil.createNewRPGCharacter(user.id) != None:
         await ctx.send(f"非常感謝, '{name}'現在已經在冒險者公會登記為冒險者了!")
         return
     await ctx.send(f"看起來招募中心已滿, 詳情請洽冒險者公會員工.")
示例#8
0
    async def attack_character(self, ctx: commands.Context, user: User):
        if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                      Util.ChannelType.RPG_BATTLE_GROUND):
            return
        if not RPGCharacterUtil.hasAdventureStared(ctx.author.id):
            await ctx.send("看起來你還沒開始你的旅程呢. 請先申請成為冒險者吧")
            return
        if not RPGCharacterUtil.hasAdventureStared(user.id):
            await ctx.send("看起來對方不是冒險者呢. 請不要攻擊平民")
            return
        author: RPGCharacter = RPGCharacterUtil.getRPGCharacter(ctx.author.id)
        other: RPGCharacter = RPGCharacterUtil.getRPGCharacter(user.id)
        author_name = await NicknameUtil.get_user_name(ctx.guild, ctx.author)
        name = await NicknameUtil.get_user_name(ctx.guild, user)
        guild = self.bot.get_guild(ctx.guild.id)
        member = guild.get_member(user.id)

        if StatusUtil.isResting(ctx.author, ctx.guild.id):
            await ctx.send("你正在休息. 攻擊無效.")
            return
        if StatusUtil.isComa(user, ctx.guild.id) or StatusUtil.isResting(
                user, ctx.guild.id):
            await ctx.send(f"哎不是! '{name}'都已經昏厥了你還攻擊? 攻擊無效啦!")
            return
        if StatusUtil.isResting(user, ctx.guild.id):
            await ctx.send(f"卑鄙源之助! '{name}'正在休息你還攻擊? 攻擊無效啦!")
            return
        if StatusUtil.isComa(ctx.author, ctx.guild.id):
            await ctx.send(f"你都沒有體力了! 先去休息啦! 攻擊無效.")
            return
        if author.character.member_id == user.id:
            dead = RPGCharacterUtil.changeHp(other, -1 * author.hp_max)
            if dead:
                StatusUtil.createComaStatus(guild_id=ctx.guild.id,
                                            user=user,
                                            hp_max=other.hp_max)
            await ctx.send(f"{name} 決定朝自己的腹部捅一刀, 因為流血過多而昏厥過去了. 攻擊成功")
            return
        if RPGCharacterUtil.tryToAttack(author, other):
            atk = RPGCharacterUtil.getAttackPoint(author)
            dead = RPGCharacterUtil.changeHp(other, -1 * atk)
            if dead:
                StatusUtil.createComaStatus(ctx.guild.id, user, other.hp_max)
            RPGCharacterUtil.attackSuccess(author)
            await ctx.send(f"'{name}' 減少了 {atk}點體力. 攻擊成功!")

            if StatusUtil.isComa(user, ctx.guild.id):
                await ctx.send(f"由於你的攻擊, '{name}'生命力歸零昏厥了過去")
            # sent a message let member know is being attack
            msg = f"注意!你被{author_name}攻擊了!"
            await member.send(msg)
        else:
            await ctx.send(f"'{name}'成功的擋下了你的攻擊! 攻擊失敗!")
示例#9
0
    def test_levelUpCharacter_success(self):
        member = self.database.add_member(100)
        rpg: RPGCharacterUtil = RPGCharacterUtil.createNewRPGCharacter(member)
        old_hp = rpg.hp_max 
        old_mp = rpg.mp_max
        old_atk = rpg.attack_basic
        old_def = rpg.defense_basic
        RPGCharacterUtil.levelUpCharacter(member.member_id, 1, 10)
        rpg: RPGCharacterUtil = RPGCharacterUtil.getRPGCharacter(member.member_id)

        assert rpg.hp_max > old_hp
        assert rpg.mp_max > old_mp
        assert rpg.attack_basic > old_atk
        assert rpg.defense_basic > old_def
示例#10
0
 async def revive_rpg_character(self, ctx: commands.Command, user: User):
     if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                   Util.ChannelType.BANK):
         return
     if not RPGCharacterUtil.hasAdventureStared(user.id):
         await ctx.send("看起來對方不是冒險者呢. 無法回血")
         return
     other: RPGCharacter = RPGCharacterUtil.getRPGCharacter(user.id)
     author: RPGCharacter = RPGCharacterUtil.getRPGCharacter(ctx.author.id)
     name = await NicknameUtil.get_user_name(ctx.guild, user)
     if author.character.member_id == user.id:
         await ctx.send(f"此功能不是拿來幫你自己加血的, 請不要濫用職權.")
         return
     RPGCharacterUtil.changeHp(other, other.hp_max)
     await ctx.send(f"{name}生命值回復成功.")
示例#11
0
    async def show_character_stats(self, ctx: commands.Context, public=""):
        if not RPGCharacterUtil.hasAdventureStared(ctx.author.id):
            await ctx.send("看起來你還沒開始你的旅程呢. 請先申請成為冒險者吧")
            return
        name = await NicknameUtil.get_user_name(ctx.guild, ctx.author)
        rpg: RPGCharacter = RPGCharacterUtil.getRPGCharacter(ctx.author.id)
        result = f"冒險者: {name}\n"
        result += f"體力: {rpg.hp_current}/{rpg.hp_max}\n"
        result += f"魔力: {rpg.mp_current}/{rpg.mp_max}\n"
        result += f"攻擊力: {rpg.attack_basic}\n"
        result += f"防禦力: {rpg.defense_basic}\n"

        if public == "public":
            await ctx.send(result)
        else:
            await ctx.author.send(result)
示例#12
0
 def startResting(user: User, guild_id: int):
     rpg: RPGCharacter = RPGCharacterUtil.getRPGCharacter(user.id)
     if StatusUtil.getStatus(user.id, guild_id,
                             StatusType.COMA) is not None:
         StatusUtil._removeComaStatus(user.id)
     StatusUtil.createRestStatus(user.id, guild_id, rpg.hp_max, 300)  # 5分鐘
     pass
示例#13
0
 async def retire_rpg_character(self, ctx: commands.Context):
     if not ChannelUtil.hasChannel(ctx.guild.id, ctx.channel.id,
                                   Util.ChannelType.RPG_GUILD):
         return
     if not RPGCharacterUtil.hasAdventureStared(ctx.author.id):
         await ctx.send("看起來你還沒開始你的旅程呢. 在開始前就放棄的概念?")
         return
     if StatusUtil.isResting(ctx.author, ctx.guild.id):
         await ctx.send("你正在休息. 休息的人是不會申請退休的(~~除非你在夢遊~~).")
         return
     author: RPGCharacter = RPGCharacterUtil.getRPGCharacter(ctx.author.id)
     if StatusUtil.isComa(ctx.author, ctx.guild.id):
         await ctx.send(f"你都沒有體力了! 先去休息啦!")
         return
     if author.last_attack + timedelta(hours=12) > datetime.now():
         await ctx.send(f"由於你在過去12個小時內攻擊過其他人, 所以不能退休哦")
         return
     RPGCharacterUtil.retireRPGCharacter(ctx.author.id)
     await ctx.send(f"冒險者{ctx.author.display_name}申請退休成功, 辛苦你了!")
示例#14
0
 async def character_rest(self, ctx: commands.Context):
     if not RPGCharacterUtil.hasAdventureStared(ctx.author.id):
         await ctx.send(f"非冒險者就回家睡覺啦... 在這邊幹嘛?")
         return
     if StatusUtil.isResting(ctx.author, ctx.guild.id):
         await ctx.send(f"你正在休息中... 請稍後")
         return
     StatusUtil.startResting(ctx.author, ctx.guild.id)
     name = await NicknameUtil.get_user_name(ctx.guild, ctx.author)
     await ctx.send(f"{name}正在休息中...")
示例#15
0
 def test_removeComaStatusToRest(self):
     c: RPGCharacter = RPGCharacterUtil.createNewRPGCharacter(1)
     StatusUtil.createComaStatus(guild_id=1, user=c, hp_max=c.hp_max)
     StatusUtil.startResting(guild_id=1, user=c)
     status = StatusUtil.getStatus(guild_id=1,
                                   member_id=c.id,
                                   type=StatusType.COMA)
     assert status is None
     status = StatusUtil.getStatus(guild_id=1,
                                   member_id=c.id,
                                   type=StatusType.REST)
     assert status is not None
示例#16
0
 def test_createComaStatus_success(self):
     c: RPGCharacter = RPGCharacterUtil.createNewRPGCharacter(1)
     comaStatus = StatusUtil.createComaStatus(guild_id=1,
                                              user=c,
                                              hp_max=c.hp_max)
     status = StatusUtil.getStatus(guild_id=1,
                                   member_id=c.id,
                                   type=StatusType.COMA)
     assert comaStatus == status
     statuslist = StatusUtil.reviveComaStatus()
     assert len(statuslist) == 0
     ch: RPGCharacter = RPGCharacterUtil.createNewRPGCharacter(2)
     comaStatus1 = StatusUtil.createComaStatus(guild_id=1,
                                               user=ch,
                                               hp_max=ch.hp_max)
     status1 = StatusUtil.getStatus(guild_id=1,
                                    member_id=ch.id,
                                    type=StatusType.COMA)
     assert comaStatus1 == status1
     statuslist = StatusUtil.reviveComaStatus()
     assert len(statuslist) == 0
     assert c.hp_max == c.hp_current
示例#17
0
 def _cleanUpStatus(status: RPGStatus):
     if not RPGCharacterUtil.hasAdventureStared(status.member_id):
         return
     character = RPGCharacterUtil.getRPGCharacter(status.member_id)
     if status.type == StatusType.REST.value:
         RPGCharacterUtil.changeHp(character, status.buff.buff_value)
     if status.type == StatusType.COMA.value:
         RPGCharacterUtil.changeHp(character, status.buff.buff_value)
示例#18
0
 def test_createNewCharacter_success(self):
     member = self.database.add_member(33)
     character = RPGCharacterUtil.createNewRPGCharacter(member)
     assert character.character == member
示例#19
0
 def test_hasAdventureStarted_noMember(self):
     assert not RPGCharacterUtil.hasAdventureStared(100)
示例#20
0
 def test_retireCharacter_success(self):
     member = self.database.add_member(33)
     RPGCharacterUtil.createNewRPGCharacter(member)
     RPGCharacterUtil.retireRPGCharacter(member.member_id)
     assert not RPGCharacterUtil.hasAdventureStared(member.member_id)
示例#21
0
 def test_getRPGCharacter_successWithId(self):
     member = self.database.add_member(100)
     rpg = RPGCharacterUtil.createNewRPGCharacter(member)
     rpg_get = RPGCharacterUtil.getRPGCharacter(member.member_id)
     assert rpg_get == rpg
示例#22
0
 def test_retireCharacter_notAdventurer(self):
     member = self.database.add_member(33)
     assert not RPGCharacterUtil.retireRPGCharacter(member.member_id)
示例#23
0
 def test_retireCharacter_notExist(self):
     assert not RPGCharacterUtil.retireRPGCharacter(123)
示例#24
0
 def test_createExistedCharacter_false(self):
     member = self.database.add_member(33)
     RPGCharacterUtil.createNewRPGCharacter(member)
     character = RPGCharacterUtil.createNewRPGCharacter(member)
     assert character == None
示例#25
0
 def test_hasAdventureStarted_hasMember_notStarted(self):
     self.database.add_member(20)
     assert not RPGCharacterUtil.hasAdventureStared(20)
示例#26
0
 def test_hasAdventureStarted_started(self):
     member = self.database.add_member(33)
     RPGCharacterUtil.createNewRPGCharacter(member)
     assert RPGCharacterUtil.hasAdventureStared(33)