【Python】200行的文字RPG游戏

import time,os,random class 人物: def __init__(self,name,maxhp=100,ac=10,speed=1.0,money=0): self.name=name self.hp=maxhp self.maxhp=maxhp self.minac=int(ac*0.5)
相关文章
相关标签/搜索