2分钟用AI写了一个游戏

四级用户 hawkli 19天前 1182

我也有点不信,但是我空想了一个游戏出来,结果真的完成了,而且基本功能和我要求的一样。


333.png

这是他生成的代码,而且自动运行一次成功能玩!
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方式打开浏览器分析指定网页,取回特定的数据并写个程序去分析,各种坑点,还在解决中。


上一篇:娜扎2定档了,3月28
下一篇:春~
最新回复 (10)
  • 四级用户 hawkli 19天前
    2 2
    这游戏花了我6分钱!
  • 六级用户 进站劣人 19天前
    0 3
    厉害啊。是RPG游戏吗?
  • 四级用户 hawkli 19天前
    0 4
    进站劣人 厉害啊。是RPG游戏吗?
    啥游戏不重要吧,游戏只是一个形式
  • 三级用户 Leon的小鱼缸 19天前
    0 5
    不如aiA片儿🌝🌝
  • 三级用户 有点无聊 19天前
    0 6
    厉害了
  • 六级用户 大内高高手 19天前
    1 7
    目前的ai理科确实还凑合,文科方面就是个傻批
  • 五级用户 老夫聊发少年狂 19天前
    1 8
    大内高高手 目前的ai理科确实还凑合,文科方面就是个傻批
    还是胡说八道的大嘴巴
  • 四级用户 pzani1 18天前
    0 9
    请问用的是哪个ai工具?
  • 三级用户 flying19880517 18天前
    0 10
    用的是哪个模型?Claude?
  • 四级用户 whffs 18天前
    0 11
    厉害,我也想学
    • 老男人游戏网配套论坛
      12
        立即登录 立即注册
发新帖
本论坛禁止发布SWITCH和PS4相关资源,若有其他侵权内容,请致邮3360342659#qq.com(#替换成@)删除。