import random
class Player:
def __init__(self):
self.x = 0
self.y = 0
self.hp = 100
self.attack = 10
self.defense = 5
self.level = 1
self.exp = 0
def move(self, direction):
if direction == 'w' and self.y > 0:
self.y -= 1
elif direction == 's' and self.y < 9:
self.y += 1
elif direction == 'a' and self.x > 0:
self.x -= 1
elif direction == 'd' and self.x < 9:
self.x += 1
else:
print("不能移动!")
def show_status(self):
print(f"位置: ({self.x}, {self.y})")
print(f"生命值: {self.hp}")
print(f"攻击力: {self.attack}")
print(f"防御力: {self.defense}")
print(f"等级: {self.level}")
print(f"经验值: {self.exp}/{self.level*100}")
class Monster:
def __init__(self, level):
self.hp = random.randint(10, 20) * level
self.attack = random.randint(5, 10) * level
self.defense = random.randint(2, 5) * level
self.exp = random.randint(10, 20) * level
def is_alive(self):
return self.hp > 0
def battle(player, monster):
print("遇到怪物!战斗开始!")
while monster.is_alive() and player.hp > 0:
# 玩家攻击
damage = max(0, player.attack - monster.defense)
monster.hp -= damage
print(f"你对怪物造成了 {damage} 点伤害!")
if not monster.is_alive():
break
# 怪物攻击
damage = max(0, monster.attack - player.defense)
player.hp -= damage
print(f"怪物对你造成了 {damage} 点伤害!")
if player.hp > 0:
print("你击败了怪物!")
player.exp += monster.exp
if player.exp >= player.level * 100:
player.level += 1
player.attack += 5
player.defense += 2
player.hp = 100
player.exp = 0
print(f"你升级了!现在是等级 {player.level}!")
else:
print("你被怪物击败了...游戏结束!")
return False
return True
def main():
player = Player()
print("欢迎来到荒岛冒险!")
print("使用 w(上), s(下), a(左), d(右) 移动,q 退出游戏")
while True:
player.show_status()
command = input("请输入命令:").lower()
if command == 'q':
print("游戏结束!")
break
elif command in ['w', 's', 'a', 'd']:
player.move(command)
# 30% 概率遇到怪物
if random.random() < 0.3:
monster = Monster(player.level)
if not battle(player, monster):
break
else:
print("无效命令!")
if __name__ == "__main__":
main()
不过,我这二天折腾了很久的cline+MCP,各种弱智问题,暂时没有解决生产力提升的手段。比如用MCP方式打开浏览器分析指定网页,取回特定的数据并写个程序去分析,各种坑点,还在解决中。